/* ── VARIABLES ──────────────────────────────────────────────────── */
:root {
  --bg: #f4f3ee;
  --bg-alt: #eceae1;
  --surface: #ffffff;
  --border: #ddd8cc;
  --text: #1a1a2e;
  --text-muted: #666655;
  --accent: #c8f000;       /* electric lime */
  --accent-dark: #8fb800;
  --accent2: #ff4d4d;      /* red for cons */
  --accent3: #00c896;      /* teal for pros */
  --navy: #1a1a2e;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── UTILS ──────────────────────────────────────────────────────── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.w-full { width: 100%; }

/* ── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--accent);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none;
}
.logo-mark { display: flex; align-items: center; flex-shrink: 0; transition: var(--transition); }
.nav-logo:hover .logo-mark { transform: rotate(-6deg) scale(1.08); }
.logo-text {
  display: flex; flex-direction: column;
  line-height: 1.1; gap: 1px;
}
.logo-flippa {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.logo-deal {
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-links li a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem; font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links li a:hover, .nav-links li a.active {
  color: var(--accent);
  background: rgba(200,240,0,0.1);
}
.nav-admin-link { color: var(--accent) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  margin-left: auto; padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: var(--transition);
}

/* ── FLASH ──────────────────────────────────────────────────────── */
.flash-container { position: fixed; top: 72px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 8px; }
.flash {
  padding: 12px 20px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500;
  animation: slideIn 0.3s ease;
  box-shadow: var(--shadow);
}
.flash-success { background: var(--accent); color: var(--navy); }
.flash-error { background: var(--accent2); color: #fff; }
.flash-info { background: var(--navy); color: var(--accent); }
@keyframes slideIn { from { transform: translateX(20px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 100px 0 0;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,240,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,240,0,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px 80px;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,240,0,0.12);
  border: 1px solid rgba(200,240,0,0.3);
  color: var(--accent);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.05;
  color: #fff; letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-title em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.65);
  max-width: 520px; margin-bottom: 36px; line-height: 1.6;
}
.hero-cta { display: flex; gap: 12px; margin-bottom: 56px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 0.92rem; font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--navy); }
.btn-primary:hover { background: #d4ff00; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(200,240,0,0.35); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

.hero-stats {
  display: flex; align-items: center; gap: 32px;
}
.hstat { display: flex; flex-direction: column; gap: 2px; }
.hstat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.hstat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.hstat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

.hero-ticker {
  background: var(--accent);
  overflow: hidden; white-space: nowrap;
  padding: 10px 0;
}
.ticker-track {
  display: inline-block;
  animation: ticker 25s linear infinite;
  color: var(--navy); font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTIONS ────────────────────────────────────────────────────── */
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 32px;
}
.section-header h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  letter-spacing: -0.5px;
}
.see-all { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.see-all:hover { color: var(--navy); }

.featured-section { padding: 80px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.latest-section { padding: 80px 0; }
.cta-banner {
  background: var(--navy); padding: 80px 0;
  border-top: 3px solid var(--accent);
}
.cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: center; }
.cta-banner h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 28px; font-size: 1.05rem; }

/* ── SLIDER ──────────────────────────────────────────────────────── */
.slider-wrapper { position: relative; overflow: hidden; border-radius: var(--radius); }
.slider { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.slide-card {
  min-width: 100%; display: flex;
  background: var(--bg); border-radius: var(--radius);
  overflow: hidden;
}
.slide-img {
  width: 50%; flex-shrink: 0;
  background-size: cover; background-position: center;
  min-height: 380px;
}
.slide-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt); font-size: 3rem; color: var(--border);
}
.slide-body { flex: 1; padding: 40px; display: flex; flex-direction: column; gap: 12px; }
.slide-meta { display: flex; align-items: center; gap: 10px; }
.tag {
  background: var(--accent); color: var(--navy);
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.slide-date { font-size: 0.82rem; color: var(--text-muted); }
.slide-body h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; line-height: 1.2; }
.slide-body h3 a:hover { color: var(--accent-dark); }
.slide-body p { color: var(--text-muted); font-size: 0.95rem; }
.slide-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.mini-stat {
  background: var(--navy); color: var(--accent);
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
}
.mini-rating { font-size: 1rem; color: #f59e0b; }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; }
.slider-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: var(--accent);
  font-size: 1rem; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--accent); color: var(--navy); }
.slider-dots { display: flex; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: var(--transition); }
.dot.active { background: var(--navy); width: 20px; border-radius: 4px; }

/* ── REVIEW GRID ─────────────────────────────────────────────────── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden; display: flex; flex-direction: column;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

.card-img-link { display: block; }
.card-img {
  height: 200px; background-size: cover; background-position: center;
  transition: var(--transition);
}
.review-card:hover .card-img { transform: scale(1.03); }
.card-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--accent);
  font-size: 2rem;
}

.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; }
.card-meta time { font-size: 0.8rem; color: var(--text-muted); }
.card-rating { font-size: 0.85rem; color: #f59e0b; letter-spacing: 1px; }
.card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
.card-title a:hover { color: var(--accent-dark); }
.card-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.card-deal-stats { display: flex; gap: 8px; flex-wrap: wrap; }
.ds { display: flex; flex-direction: column; background: var(--bg-alt); padding: 6px 10px; border-radius: var(--radius-sm); }
.ds-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); font-weight: 600; }
.ds-val { font-size: 0.88rem; font-weight: 700; font-family: var(--font-display); }
.card-link { font-size: 0.85rem; font-weight: 600; color: var(--navy); transition: var(--transition); }
.card-link:hover { color: var(--accent-dark); }

/* ── PAGE HEADER ─────────────────────────────────────────────────── */
.page-header {
  background: var(--navy); padding: 60px 0;
  border-bottom: 3px solid var(--accent);
}
.page-header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.page-header h1 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1rem; }

.reviews-page-section { padding: 60px 0; }

/* ── PAGINATION ──────────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; flex-wrap: wrap; }
.page-btn {
  padding: 8px 16px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  font-size: 0.9rem; font-weight: 500; transition: var(--transition);
}
.page-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.page-btn.active { background: var(--navy); color: var(--accent); border-color: var(--navy); font-weight: 700; }
.page-ellipsis { padding: 8px 4px; color: var(--text-muted); }

/* ── DETAIL PAGE ─────────────────────────────────────────────────── */
.detail-hero {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.detail-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.2;
}
.detail-hero-content { position: relative; z-index: 1; padding: 60px 0; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--accent); }
.detail-title { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 16px; letter-spacing: -1px; }
.detail-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.detail-meta time { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.detail-rating { display: flex; align-items: center; gap: 6px; }
.stars { color: #f59e0b; font-size: 1rem; }
.rating-num { color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 600; }
.detail-excerpt { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.6; max-width: 620px; }

.detail-layout { padding: 60px 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.detail-main { display: flex; flex-direction: column; gap: 40px; }
.detail-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 80px; }

/* ── STATS BLOCK ─────────────────────────────────────────────────── */
.stats-block {
  background: var(--navy); border-radius: var(--radius);
  padding: 32px; border: 3px solid var(--accent);
}
.stats-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; }
.stats-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 16px; }
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,240,0,0.2);
  border-radius: var(--radius-sm);
  padding: 16px; display: flex; flex-direction: column; gap: 4px;
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--accent); background: rgba(200,240,0,0.08); }
.stat-icon { font-size: 1.2rem; }
.stat-val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── RICH TEXT ───────────────────────────────────────────────────── */
.richtext { line-height: 1.75; }
.richtext h1, .richtext h2, .richtext h3, .richtext h4 {
  font-family: var(--font-display); font-weight: 700;
  margin: 2em 0 0.6em; line-height: 1.2;
}
.richtext h2 { font-size: 1.6rem; }
.richtext h3 { font-size: 1.3rem; }
.richtext h4 { font-size: 1.1rem; }
.richtext p { margin-bottom: 1.2em; }
.richtext a { color: var(--accent-dark); text-decoration: underline; }
.richtext ul, .richtext ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.richtext li { margin-bottom: 0.4em; list-style: disc; }
.richtext ol li { list-style: decimal; }
.richtext blockquote {
  border-left: 4px solid var(--accent);
  padding: 1em 1.5em;
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5em 0; font-style: italic;
}
.richtext pre {
  background: var(--navy); color: var(--accent);
  padding: 1.5em; border-radius: var(--radius-sm);
  overflow-x: auto; font-size: 0.9em; margin-bottom: 1.2em;
}
.richtext code { background: var(--bg-alt); padding: 2px 6px; border-radius: 4px; font-size: 0.88em; }
.richtext pre code { background: none; padding: 0; }
.richtext img { max-width: 100%; border-radius: var(--radius-sm); margin: 1em 0; }
.richtext table { border-collapse: collapse; width: 100%; margin-bottom: 1.2em; }
.richtext td, .richtext th { border: 1px solid var(--border); padding: 8px 12px; }
.richtext th { background: var(--bg-alt); font-weight: 600; }

/* ── PROS / CONS ─────────────────────────────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros, .cons {
  border-radius: var(--radius); padding: 24px;
}
.pros { background: #f0fdf4; border: 1.5px solid #86efac; }
.cons { background: #fff5f5; border: 1.5px solid #fca5a5; }
.pros h3, .cons h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.pros h3 { color: #16a34a; }
.cons h3 { color: #dc2626; }
.pros ul, .cons ul { padding: 0; }
.pros li, .cons li { padding: 6px 0; font-size: 0.92rem; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; align-items: flex-start; gap: 8px; }
.pros li::before { content: '✓'; color: #16a34a; font-weight: 700; flex-shrink: 0; }
.cons li::before { content: '✗'; color: #dc2626; font-weight: 700; flex-shrink: 0; }
.pros li:last-child, .cons li:last-child { border-bottom: none; }

/* ── AFFILIATE CTA ───────────────────────────────────────────────── */
.affiliate-cta {
  background: var(--navy); border-radius: var(--radius);
  border: 3px solid var(--accent); padding: 32px;
}
.affiliate-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 12px; }
.affiliate-inner h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.affiliate-inner p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.affiliate-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── SIDEBAR WIDGETS ─────────────────────────────────────────────── */
.sidebar-widget {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.sidebar-widget h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; color: var(--text-muted); }
.rating-widget { background: var(--navy); border-color: var(--accent); text-align: center; }
.rating-widget h4 { color: rgba(255,255,255,0.6); }
.big-rating { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.big-stars { font-size: 1.3rem; color: #f59e0b; margin: 4px 0 12px; }
.rating-bar { height: 6px; background: rgba(255,255,255,0.15); border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; background: var(--accent); border-radius: 3px; }
.summary-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.summary-table td { padding: 7px 4px; border-bottom: 1px solid var(--border); }
.summary-table td:first-child { color: var(--text-muted); }
.summary-table td:last-child { font-weight: 700; text-align: right; font-family: var(--font-display); }
.sidebar-btn { display: block; text-align: center; }
.related-link { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.related-link:last-child { border-bottom: none; }
.related-link img { width: 50px; height: 50px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.related-placeholder { width: 50px; height: 50px; background: var(--bg-alt); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-muted); flex-shrink: 0; }
.related-link div { display: flex; flex-direction: column; gap: 2px; }
.related-link strong { font-size: 0.82rem; font-weight: 600; line-height: 1.3; }
.related-link span { font-size: 0.75rem; color: var(--text-muted); }

/* ── ABOUT ───────────────────────────────────────────────────────── */
.about-section { padding: 60px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 320px; gap: 60px; }
.about-content h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin: 1.8em 0 0.6em; }
.about-content h2:first-child { margin-top: 0; }
.about-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1em; }
.about-aside { display: flex; flex-direction: column; gap: 16px; }
.about-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.about-icon { font-size: 1.5rem; margin-bottom: 8px; }
.about-card h3 { font-family: var(--font-display); font-weight: 700; margin-bottom: 6px; }
.about-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ── CONTACT ─────────────────────────────────────────────────────── */
.contact-section { padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item span { font-size: 1.3rem; margin-top: 2px; }
.contact-item strong { display: block; font-weight: 600; margin-bottom: 2px; }
.contact-item a { color: var(--accent-dark); }
.contact-stub {
  background: var(--bg-alt); border-radius: var(--radius); padding: 48px 32px;
  text-align: center; border: 2px dashed var(--border);
}
.contact-stub span { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.contact-stub h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; }
.contact-stub p { color: var(--text-muted); font-size: 0.9rem; }
.contact-stub a { color: var(--accent-dark); }

/* ── ADMIN ───────────────────────────────────────────────────────── */
.admin-login-body {
  background: var(--navy); display: flex;
  align-items: center; justify-content: center; min-height: 100vh;
}
.login-box {
  background: var(--surface); border-radius: var(--radius);
  padding: 48px; width: 100%; max-width: 420px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
}
.login-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.login-box h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }

.admin-header { background: var(--navy); padding: 32px 0; border-bottom: 3px solid var(--accent); }
.admin-header-inner { display: flex; align-items: center; justify-content: space-between; }
.admin-header h1 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: #fff; }
.admin-header-actions { display: flex; gap: 10px; }
.admin-section { padding: 40px 0; }

.admin-table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.admin-table { width: 100%; border-collapse: collapse; background: var(--surface); }
.admin-table th { background: var(--bg-alt); padding: 12px 16px; text-align: left; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); font-weight: 700; }
.admin-table td { padding: 12px 16px; border-top: 1px solid var(--border); font-size: 0.9rem; vertical-align: middle; }
.admin-table tr:hover td { background: var(--bg); }
.admin-table a { color: var(--navy); font-weight: 500; }
.admin-table a:hover { color: var(--accent-dark); }
.table-actions { display: flex; gap: 8px; }
.table-btn { padding: 5px 12px; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 600; border: 1.5px solid var(--border); color: var(--navy); transition: var(--transition); }
.table-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.table-btn-danger { color: var(--accent2); border-color: #fca5a5; }
.table-btn-danger:hover { background: var(--accent2); color: #fff; border-color: var(--accent2); }
.badge { display: inline-block; padding: 2px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }
.badge-green { background: #dcfce7; color: #16a34a; }
.badge-gray { background: var(--bg-alt); color: var(--text-muted); }

/* ── EDIT FORM ───────────────────────────────────────────────────── */
.edit-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-4 { grid-template-columns: repeat(4, 1fr); }
.form-group-lg { grid-column: span 1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group textarea, .form-group select {
  padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font: inherit; font-size: 0.95rem;
  background: var(--surface); color: var(--text);
  transition: var(--transition); resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,26,46,0.08); }
.form-section-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; padding-top: 8px; border-top: 1px solid var(--border); margin-top: 8px; }
.form-actions { display: flex; gap: 12px; padding-top: 16px; }
.form-check .check-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.95rem; font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }
.form-hint { font-size: 0.82rem; color: var(--text-muted); }
.current-image { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.current-image img { width: 80px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); }
.current-image span { font-size: 0.82rem; color: var(--text-muted); }

/* ── EMPTY STATE ─────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 24px; color: var(--text-muted); }
.empty-state span { font-size: 3rem; display: block; margin-bottom: 16px; }
.empty-state p { font-size: 1rem; }
.empty-state a { color: var(--accent-dark); font-weight: 600; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy); border-top: 3px solid var(--accent);
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-start;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-brand p { font-family: var(--font-body); font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 4px; }
.footer-links { display: flex; gap: 20px; align-items: center; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-disclaimer { width: 100%; font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .slide-card { flex-direction: column; }
  .slide-img { width: 100%; min-height: 220px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 12px 16px; border-radius: 0; }
  .nav-toggle { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .review-grid { grid-template-columns: 1fr; }
  .form-row-4 { grid-template-columns: 1fr 1fr; }
  .affiliate-inner { flex-direction: column; align-items: flex-start; }
  .stats-cards { grid-template-columns: 1fr 1fr; }
}
