@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Nunito:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════════
   GIANT FESTIVALITY — Complete Professional Design System
   Theme: Hobbies, Leisure & Entertainment Party Supplies
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Brand Colors */
  --purple-950: #1e0a3c;
  --purple-900: #2d1063;
  --purple-800: #4c1d95;
  --purple-700: #6d28d9;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-100: #ede9fe;
  --purple-50: #f5f3ff;

  --pink-700: #be185d;
  --pink-600: #db2777;
  --pink-500: #ec4899;
  --pink-100: #fce7f3;

  --gold-600: #d97706;
  --gold: #f59e0b;
  --gold-400: #fbbf24;
  --gold-300: #fcd34d;
  --gold-light: #fef3c7;
  --gold-50: #fffbeb;

  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-100: #ccfbf1;

  /* Neutral */
  --bg: #fafafa;
  --surface: #ffffff;
  --surface2: #f8f7ff;
  --surface3: #f3f4f6;
  --text: #111827;
  --text-2: #374151;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --border: #e5e7eb;
  --border-2: #d1d5db;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #1e0a3c 0%, #4c1d95 40%, #7c3aed 70%, #db2777 100%);
  --grad-brand: linear-gradient(135deg, #6d28d9, #db2777);
  --grad-gold: linear-gradient(90deg, #f59e0b, #fcd34d, #f59e0b);
  --grad-card: linear-gradient(135deg, #f5f3ff, #fce7f3);
  --grad-cta: linear-gradient(135deg, #7c3aed, #db2777);

  /* UI */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 2px 16px rgba(109,40,217,.08);
  --shadow-md: 0 4px 24px rgba(109,40,217,.12);
  --shadow-lg: 0 8px 48px rgba(109,40,217,.18);
  --shadow-xl: 0 16px 64px rgba(109,40,217,.22);

  /* Typography */
  --font-head: 'Poppins', sans-serif;
  --font-sub: 'Nunito', sans-serif;
  --font: 'Inter', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
a { color: var(--purple-700); text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── Section Headings ──────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-head .divider {
  width: 64px; height: 4px;
  background: var(--grad-brand);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--purple-950);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
  transition: background .3s, box-shadow .3s;
}
header.scrolled { background: rgba(30,10,60,.97); box-shadow: 0 4px 32px rgba(0,0,0,.45); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; padding: 0 32px; max-width: 1400px; margin: 0 auto;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: 1.45rem; font-weight: 800;
  color: #fff; letter-spacing: -0.03em; flex-shrink: 0;
  position: relative;
}
.logo:hover { text-decoration: none; }
.logo-img {
  width: 44px; height: 44px; border-radius: 12px; object-fit: cover;
  border: 2px solid rgba(245,158,11,.5);
  box-shadow: 0 0 16px rgba(245,158,11,.3);
  flex-shrink: 0;
}
.logo-text-primary { color: #fff; }
.logo-text-accent {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; margin-bottom: 2px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(1.4); } }

/* Nav */
.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav a {
  color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 500;
  padding: 8px 16px; border-radius: 8px;
  transition: all .2s; letter-spacing: .01em;
  position: relative;
}
.header-nav a:hover { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }
.header-nav a.active { color: var(--gold); }

/* Nav Category Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 500;
  padding: 8px 16px; border-radius: 8px;
  cursor: pointer; user-select: none;
  transition: all .2s; background: none; border: none;
  font-family: var(--font);
}
.nav-dropdown-toggle:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav-dropdown-toggle::after { content: '▾'; font-size: .7rem; opacity: .7; transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--purple-900); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 8px;
  min-width: 220px; box-shadow: var(--shadow-xl); z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 9px 14px; border-radius: 6px;
  color: rgba(255,255,255,.8); font-size: .85rem;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,.1); color: #fff; }

/* Nav CTA Button */
.nav-cta {
  background: var(--grad-cta) !important;
  color: #fff !important; font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 16px rgba(124,58,237,.4) !important;
  transition: all .25s !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 24px rgba(124,58,237,.5) !important;
  text-decoration: none !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px 4px; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 0 90px;
  background: var(--grad-hero);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .22; mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,10,60,.88) 0%, rgba(76,29,149,.7) 50%, rgba(219,39,119,.6) 100%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-particles::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(245,158,11,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236,72,153,.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139,92,246,.1) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 780px; margin: 0 auto;
}

/* Hero Logo Decoration */
.hero-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; gap: 18px;
}
.hero-logo-img {
  width: 90px; height: 90px; border-radius: 22px; object-fit: cover;
  border: 3px solid rgba(245,158,11,.6);
  box-shadow: 0 0 0 6px rgba(245,158,11,.15), 0 12px 48px rgba(0,0,0,.4);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-logo-decor {
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
}
.hero-logo-decor-line { height: 3px; background: var(--grad-gold); border-radius: 2px; }
.hero-logo-decor-line:nth-child(1) { width: 48px; }
.hero-logo-decor-line:nth-child(2) { width: 32px; opacity: .7; }
.hero-logo-decor-line:nth-child(3) { width: 20px; opacity: .4; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.4);
  color: var(--gold-300); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge::before { content: '🎉'; font-size: .9rem; }

.hero h1 {
  font-family: var(--font-head); font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900; color: #fff; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero h1 .highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.hero p {
  color: rgba(255,255,255,.82); font-size: 1.15rem;
  max-width: 560px; margin: 0 auto 40px;
  font-family: var(--font-sub);
}

/* Hero Stats */
.hero-stats {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px; padding: 20px 32px; backdrop-filter: blur(12px);
  max-width: 520px; margin: 0 auto;
}
.hero-stat {
  flex: 1; min-width: 100px; padding: 0 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hero-stat-label { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }

/* ══════════════════════════════════════════════════════════════
   AFFILIATE BAR
   ══════════════════════════════════════════════════════════════ */
.aff-bar {
  background: linear-gradient(90deg, rgba(245,158,11,.1), rgba(109,40,217,.08), rgba(245,158,11,.1));
  border-bottom: 1px solid rgba(245,158,11,.25);
  padding: 10px 0; text-align: center; font-size: .82rem; color: var(--muted);
}
.aff-bar strong { color: var(--text); }

/* ══════════════════════════════════════════════════════════════
   EDITOR'S TOP PICKS — Completely Different Design
   ══════════════════════════════════════════════════════════════ */
.top-picks {
  padding: 80px 0;
  background: linear-gradient(160deg, #1e0a3c 0%, #2d1063 50%, #1e0a3c 100%);
  position: relative; overflow: hidden;
}
.top-picks::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,158,11,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(236,72,153,.08) 0%, transparent 60%);
  pointer-events: none;
}
.top-picks .section-head h2 { color: #fff; }
.top-picks .section-head p { color: rgba(255,255,255,.65); }
.top-picks .section-head .divider { background: var(--grad-gold); }

.picks-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.3);
  color: var(--gold-300); font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 5px 16px;
  border-radius: 50px; margin-bottom: 14px;
}

/* Horizontal scrollable picks strip */
.picks-track-wrap { overflow: hidden; position: relative; }
.picks-track {
  display: flex; gap: 24px;
  padding: 8px 0 24px;
  overflow-x: auto; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
}
.picks-track::-webkit-scrollbar { display: none; }

.pick-card {
  flex: 0 0 320px; min-width: 320px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column;
  color: inherit; text-decoration: none;
  position: relative;
}
.pick-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(245,158,11,.5);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  text-decoration: none; color: inherit;
}
.pick-card-rank {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 900; color: var(--purple-950);
  font-family: var(--font-head);
  box-shadow: 0 4px 12px rgba(245,158,11,.4);
}
.pick-card-img { height: 200px; overflow: hidden; position: relative; }
.pick-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pick-card:hover .pick-card-img img { transform: scale(1.07); }
.pick-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,10,60,.7) 0%, transparent 60%);
}
.pick-card-body { padding: 20px; flex: 1; }
.pick-card-category {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold-400); margin-bottom: 8px;
}
.pick-card-title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: #fff; line-height: 1.4; margin-bottom: 10px;
}
.pick-card-stars {
  color: var(--gold); font-size: .9rem; letter-spacing: 2px; margin-bottom: 4px;
}
.pick-card-rating { color: rgba(255,255,255,.7); font-size: .82rem; }
.pick-card-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-top: 1px solid rgba(255,255,255,.1);
  color: var(--gold-300); font-size: .84rem; font-weight: 600;
}
.pick-card-cta span { font-size: .95rem; }

.picks-nav {
  display: flex; justify-content: center; gap: 12px; margin-top: 24px;
}
.picks-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.picks-nav-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--purple-950); }

/* ══════════════════════════════════════════════════════════════
   CATEGORY FILTER — Beautiful Pill Tabs
   ══════════════════════════════════════════════════════════════ */
.filter-section {
  background: var(--surface2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 24px 0;
  position: sticky; top: 76px; z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.filter-inner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.filter-inner-label {
  font-size: .75rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em; flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
}
.filter-inner-label::before { content: '⚡'; font-size: .9rem; }
.category-pills { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 18px; border-radius: 50px;
  border: 1.5px solid var(--border); background: var(--surface);
  font-size: .82rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .2s; user-select: none;
  white-space: nowrap;
}
.cat-pill:hover {
  border-color: var(--purple-600); color: var(--purple-600);
  background: var(--purple-50); transform: translateY(-1px);
}
.cat-pill.active {
  background: var(--grad-brand); color: #fff; border-color: transparent;
  box-shadow: 0 4px 12px rgba(109,40,217,.3);
  transform: translateY(-1px);
}
.cat-pill .pill-icon { font-size: .9rem; }
.filter-results { font-size: .82rem; color: var(--muted); margin-left: auto; white-space: nowrap; font-weight: 500; }

/* Brand filter (secondary) */
.brand-filter-section { background: var(--bg); padding: 16px 0; border-bottom: 1px solid var(--border); }
.brand-cloud-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--muted); margin-bottom: 10px;
}
.brand-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.brand-tag {
  display: inline-block; padding: 4px 12px;
  border: 1.5px solid var(--border); border-radius: 50px;
  font-size: .76rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .18s; background: var(--surface);
  user-select: none; line-height: 1.5;
}
.brand-tag:hover { border-color: var(--purple-600); color: var(--purple-600); background: var(--purple-50); }
.brand-tag.active { background: var(--purple-700); color: #fff; border-color: var(--purple-700); }

/* ══════════════════════════════════════════════════════════════
   TOP 10 PRODUCTS — Awesome Block
   ══════════════════════════════════════════════════════════════ */
.top10-section {
  background: var(--surface3); padding: 80px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.top10-section .section-head h2 {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top10-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media(max-width: 900px) { .top10-grid { grid-template-columns: 1fr; } }

.top10-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
  box-shadow: var(--shadow);
  transition: all .25s; cursor: pointer; text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.top10-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--grad-brand);
  border-radius: 4px 0 0 4px;
  opacity: 0; transition: opacity .2s;
}
.top10-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-100);
  text-decoration: none; color: inherit;
}
.top10-card:hover::before { opacity: 1; }
.top10-rank {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 900;
  color: var(--border-2); min-width: 36px; text-align: center; flex-shrink: 0;
  line-height: 1;
}
.top10-card:nth-child(1) .top10-rank { color: var(--gold); font-size: 2rem; }
.top10-card:nth-child(2) .top10-rank { color: #9ca3af; font-size: 1.8rem; }
.top10-card:nth-child(3) .top10-rank { color: #cd7c2f; font-size: 1.7rem; }
.top10-img {
  width: 68px; height: 68px; border-radius: 12px; object-fit: cover;
  flex-shrink: 0; border: 1px solid var(--border); background: var(--surface2);
}
.top10-info { flex: 1; min-width: 0; }
.top10-brand {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--purple-600); margin-bottom: 4px;
}
.top10-title {
  font-family: var(--font-sub); font-size: .9rem; font-weight: 700;
  color: var(--text); line-height: 1.35; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.top10-stars { color: var(--gold); font-size: .8rem; letter-spacing: 2px; }
.top10-score {
  font-size: .82rem; font-weight: 700; color: var(--text-2); margin-left: 4px;
}
.top10-arrow {
  font-size: 1.2rem; color: var(--purple-500); flex-shrink: 0;
  opacity: 0; transform: translateX(-4px); transition: all .2s;
}
.top10-card:hover .top10-arrow { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════════════════
   PRODUCTS COMPARE TABLE — Full Row Clickable
   ══════════════════════════════════════════════════════════════ */
.compare-section { background: var(--surface2); padding: 80px 0; }
.compare-section .section-head h2 { color: var(--text); }
.compare-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 800px; background: var(--surface); }
.compare-table thead tr { background: var(--grad-brand); }
.compare-table th {
  color: #fff; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 16px 18px; text-align: left; white-space: nowrap;
  font-family: var(--font-sub);
}
.compare-table tbody tr {
  cursor: pointer; transition: background .15s;
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--purple-50); }
.compare-table td { padding: 16px 18px; font-size: .87rem; vertical-align: middle; }
.compare-rank { font-size: 1.5rem; text-align: center; }
.compare-img {
  width: 62px; height: 62px; object-fit: cover; border-radius: 10px;
  border: 2px solid var(--border);
}
.compare-name {
  font-family: var(--font-sub); font-weight: 700; font-size: .9rem;
  color: var(--text); margin-bottom: 4px; line-height: 1.35;
}
.compare-brand-tag {
  font-size: .68rem; color: var(--purple-600); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--purple-50); padding: 2px 8px; border-radius: 50px;
  display: inline-block;
}
.compare-bar { height: 6px; background: var(--border); border-radius: 3px; margin-top: 6px; overflow: hidden; }
.compare-bar-fill { height: 100%; background: var(--grad-brand); border-radius: 3px; }
.compare-score { font-weight: 800; color: var(--purple-700); font-size: 1rem; }
.compare-link {
  display: inline-block; background: var(--purple-700); color: #fff;
  padding: 7px 16px; border-radius: 8px; font-size: .8rem; font-weight: 600;
  transition: all .2s; white-space: nowrap;
}
.compare-link:hover { background: var(--purple-600); transform: scale(1.03); color: #fff; }
.compare-cat-badge {
  display: inline-block; padding: 4px 10px; border-radius: 50px;
  font-size: .72rem; font-weight: 700; background: var(--gold-50);
  color: var(--gold-600); border: 1px solid rgba(245,158,11,.3);
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT GRID
   ══════════════════════════════════════════════════════════════ */
.products-section { padding: 80px 0; }
.products-section .section-head { margin-bottom: 36px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media(max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 768px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media(max-width: 480px)  { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
  color: inherit; text-decoration: none; cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-100);
  text-decoration: none; color: inherit;
}
.card-img-wrap { position: relative; height: 210px; overflow: hidden; background: var(--surface3); }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .card-img-wrap img { transform: scale(1.06); }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--grad-brand); color: #fff;
  font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .06em;
}
.card-cat-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,.6); color: rgba(255,255,255,.9);
  font-size: .65rem; font-weight: 600; padding: 3px 9px; border-radius: 50px;
  backdrop-filter: blur(8px); letter-spacing: .04em;
}
.card-rating-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(30,10,60,.9); color: #fff;
  font-size: .8rem; font-weight: 700; padding: 4px 9px; border-radius: 8px;
  display: flex; align-items: center; gap: 3px; backdrop-filter: blur(4px);
}
.card-rating-badge .si { color: var(--gold); font-size: .85rem; }

.card-body { padding: 18px 18px 12px; flex: 1; display: flex; flex-direction: column; }
.card-brand {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--purple-600); margin-bottom: 6px;
}
.card-title {
  font-family: var(--font-sub); font-size: .95rem; font-weight: 700;
  line-height: 1.4; margin-bottom: 8px; color: var(--text);
}
.stars-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.stars-char { color: var(--gold); font-size: .9rem; letter-spacing: 1px; }
.rating-num { font-weight: 700; font-size: .88rem; color: var(--text); }
.rating-count { font-size: .78rem; color: var(--muted); }
.card-snippet {
  font-size: .83rem; color: var(--muted); line-height: 1.6; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-footer { padding: 12px 18px; border-top: 1px solid var(--border); }
.btn-review {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--purple-50); color: var(--purple-700);
  padding: 9px 16px; border-radius: 8px; font-size: .84rem; font-weight: 700;
  transition: all .2s; border: 1.5px solid var(--purple-100);
}
.btn-review:hover {
  background: var(--grad-brand); color: #fff; border-color: transparent;
  text-decoration: none;
}

/* ── Pagination ── */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.page-btn {
  width: 42px; height: 42px; border: 1.5px solid var(--border);
  background: var(--surface); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 600; cursor: pointer;
  transition: all .2s; color: var(--text); font-family: var(--font);
}
.page-btn:hover, .page-btn.active { background: var(--purple-700); color: #fff; border-color: var(--purple-700); }
.page-btn.disabled { opacity: .4; pointer-events: none; }
.page-nav { padding: 0 16px; width: auto; font-size: .85rem; }

/* ══════════════════════════════════════════════════════════════
   SIDEBAR — Full Row Clickable
   ══════════════════════════════════════════════════════════════ */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 44px; align-items: start; }
@media(max-width: 1060px) { .content-with-sidebar { grid-template-columns: 1fr; } .sidebar { display: none; } }
.sidebar-widget {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); position: sticky; top: 100px;
}
.sidebar-widget h3 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  color: var(--text); display: flex; align-items: center; gap: 8px;
}
.sidebar-list { display: flex; flex-direction: column; gap: 0; }
.sidebar-item {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 8px; border-bottom: 1px solid var(--border);
  cursor: pointer; border-radius: 8px;
  transition: background .15s; text-decoration: none; color: inherit;
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item:hover { background: var(--purple-50); text-decoration: none; color: inherit; }
.sidebar-rank { font-size: .82rem; font-weight: 700; color: var(--gold); min-width: 20px; text-align: center; flex-shrink: 0; }
.sidebar-img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; border: 1px solid var(--border); }
.sidebar-info { flex: 1; min-width: 0; }
.sidebar-name {
  font-size: .78rem; font-weight: 600; color: var(--text); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 2px;
}
.sidebar-stars { color: var(--gold); font-size: .7rem; }
.sidebar-link { font-size: .7rem; color: var(--purple-600); font-weight: 600; display: block; margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════
   PRODUCT PAGE
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--grad-hero); padding: 28px 0;
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: rgba(255,255,255,.65); flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb sep { color: rgba(255,255,255,.4); margin: 0 2px; }

.product-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start; padding: 56px 0;
}
@media(max-width: 900px) { .product-layout { grid-template-columns: 1fr; gap: 36px; } }

/* Gallery */
.gallery { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 96px; }
.gallery-main {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--surface3);
  border: 1px solid var(--border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb {
  flex: 0 0 auto; width: 76px; height: 76px;
  border-radius: var(--radius-sm); cursor: pointer;
  border: 2.5px solid var(--border); transition: all .2s;
  opacity: .65; background: var(--surface2);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.gallery-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; border-color: var(--purple-600); box-shadow: 0 0 0 3px rgba(109,40,217,.2); }

/* Product Info */
.p-brand {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--purple-50); color: var(--purple-700);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 14px;
  border: 1px solid var(--purple-100);
}
.p-title {
  font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 18px;
  letter-spacing: -0.02em; color: var(--text);
}
.p-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.p-rating .stars-char { font-size: 1.15rem; color: var(--gold); }
.p-rating .score { font-size: 1.15rem; font-weight: 800; color: var(--text); }
.p-rating .reviews-ct { font-size: .85rem; color: var(--muted); }

.score-bar-wrap {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px; margin-bottom: 22px;
}
.score-bar-label { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.score-bar-track { height: 10px; background: var(--border); border-radius: 5px; overflow: hidden; }
.score-bar-fill { height: 100%; background: var(--grad-brand); border-radius: 5px; }

/* Verdict */
.verdict-box {
  background: linear-gradient(135deg, var(--purple-50), var(--pink-100));
  border: 1px solid var(--purple-100); border-radius: var(--radius); padding: 22px; margin-bottom: 26px;
}
.verdict-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--purple-700); margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.verdict-label::before { content: '✦'; color: var(--gold); }
.verdict-text { font-size: .93rem; color: var(--text-2); line-height: 1.7; }

/* CTA */
.cta-group { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.btn-read-reviews {
  flex: 1; min-width: 140px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--grad-cta); color: #fff; padding: 13px 22px;
  border-radius: 10px; font-weight: 700; font-size: .9rem;
  transition: all .2s; box-shadow: 0 4px 16px rgba(109,40,217,.3);
}
.btn-read-reviews:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(109,40,217,.4); color: #fff; }

/* Features */
.features-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.features-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; line-height: 1.5; }
.features-list li::before { content: '✓'; color: var(--purple-600); font-weight: 700; flex-shrink: 0; margin-top: 2px; background: var(--purple-50); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; }

/* Pros/Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 52px 0; }
@media(max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box, .cons-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.pros-box { border-top: 4px solid #10b981; }
.cons-box { border-top: 4px solid #ef4444; }
.box-head { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; font-family: var(--font-sub); }
.pros-box .box-head { color: #059669; }
.cons-box .box-head { color: #dc2626; }
.pros-box ul, .cons-box ul { display: flex; flex-direction: column; gap: 10px; }
.pros-box li, .cons-box li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; line-height: 1.55; }
.pros-box li::before { content: '✓'; color: #059669; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cons-box li::before { content: '✕'; color: #dc2626; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Description */
.product-desc { margin: 0 0 52px; }
.product-desc h2 {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
  margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 2px solid var(--border); color: var(--text);
  letter-spacing: -0.02em;
}
.product-desc p { margin-bottom: 18px; color: var(--text-2); font-size: .96rem; line-height: 1.8; }

/* Reviews */
.reviews-section { margin: 0 0 64px; }
.reviews-section h2 {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
  margin-bottom: 28px; padding-bottom: 14px;
  border-bottom: 2px solid var(--border); color: var(--text);
}
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; }
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.reviewer-name { font-weight: 700; font-size: .92rem; font-family: var(--font-sub); }
.review-date { font-size: .76rem; color: var(--muted); background: var(--surface3); padding: 2px 8px; border-radius: 50px; }
.review-stars { color: var(--gold); font-size: .9rem; margin-bottom: 6px; letter-spacing: 1px; }
.review-title { font-weight: 700; font-size: .88rem; margin-bottom: 8px; color: var(--text); }
.review-text { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* Related */
.related-section { background: var(--surface3); padding: 64px 0; border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
@media(max-width: 960px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 520px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
  display: block; color: inherit; text-decoration: none;
}
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); text-decoration: none; color: inherit; }
.related-img { height: 160px; overflow: hidden; background: var(--surface2); }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.related-card:hover .related-img img { transform: scale(1.07); }
.related-body { padding: 14px; }
.related-brand { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--purple-600); margin-bottom: 5px; }
.related-title { font-size: .84rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-family: var(--font-sub); }
.related-stars { color: var(--gold); font-size: .8rem; letter-spacing: 1px; }
.related-link { display: block; margin-top: 10px; text-align: center; background: var(--purple-50); color: var(--purple-700); padding: 7px; border-radius: 7px; font-size: .8rem; font-weight: 700; transition: all .2s; border: 1px solid var(--purple-100); }
.related-link:hover { background: var(--grad-brand); color: #fff; border-color: transparent; }

/* ══════════════════════════════════════════════════════════════
   STATIC PAGES (About, Terms, Cookie)
   ══════════════════════════════════════════════════════════════ */
.static-hero {
  background: var(--grad-hero); padding: 72px 0;
  position: relative; overflow: hidden;
}
.static-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='8'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.static-hero-inner { position: relative; z-index: 1; }
.static-hero h1 {
  font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 14px;
}
.static-hero p { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-top: 10px; max-width: 600px; }
.static-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.35);
  color: var(--gold-300); font-size: .76rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 16px;
  border-radius: 50px; margin-bottom: 18px;
}

.static-content { max-width: 840px; margin: 0 auto; padding: 72px 24px 96px; }
.static-content h2 {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
  margin: 44px 0 16px; color: var(--text); letter-spacing: -0.02em;
  padding-left: 16px; border-left: 4px solid var(--purple-600);
}
.static-content h2:first-of-type { margin-top: 0; }
.static-content h3 { font-family: var(--font-sub); font-size: 1.1rem; font-weight: 700; margin: 24px 0 12px; color: var(--text-2); }
.static-content p { margin-bottom: 18px; line-height: 1.85; font-size: .96rem; color: var(--text-2); }
.static-content ul { margin: 12px 0 22px 0; display: flex; flex-direction: column; gap: 9px; }
.static-content ul li { font-size: .95rem; color: var(--text-2); line-height: 1.7; padding-left: 22px; position: relative; }
.static-content ul li::before { content: '▸'; position: absolute; left: 0; color: var(--purple-600); font-size: .8rem; top: 3px; }
.static-content a { color: var(--purple-700); font-weight: 600; }
.static-content a:hover { text-decoration: underline; }

/* About page */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 44px 0; }
@media(max-width: 700px) { .about-grid { grid-template-columns: 1fr; } }
.about-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 24px; text-align: center;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
  border-top: 4px solid transparent; border-image: var(--grad-brand) 1;
  border-image-slice: 1; border-top-left-radius: var(--radius); border-top-right-radius: var(--radius);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-icon { font-size: 2.4rem; margin-bottom: 16px; }
.about-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.about-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* Team cards */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0; }
@media(max-width: 700px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow); }
.team-avatar { width: 70px; height: 70px; background: var(--grad-brand); border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.team-name { font-family: var(--font-sub); font-weight: 700; font-size: .95rem; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: .78rem; color: var(--purple-600); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

/* Terms / cookie callout boxes */
.info-box {
  background: var(--purple-50); border: 1px solid var(--purple-100);
  border-radius: 12px; padding: 20px 22px; margin: 28px 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.info-box-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-box-text { font-size: .9rem; color: var(--text-2); line-height: 1.7; }
.info-box-text strong { color: var(--purple-800); }
.warning-box { background: #fffbeb; border-color: rgba(245,158,11,.3); }
.warning-box .info-box-text strong { color: var(--gold-600); }

/* ══════════════════════════════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--purple-950); border-top: 3px solid var(--gold);
  padding: 20px 0; box-shadow: 0 -8px 40px rgba(0,0,0,.35);
  transform: translateY(100%); transition: transform .5s cubic-bezier(.23,1,.32,1);
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-icon { font-size: 2rem; flex-shrink: 0; }
.cookie-text { flex: 1; font-size: .85rem; color: rgba(255,255,255,.85); min-width: 220px; line-height: 1.6; }
.cookie-text a { color: var(--gold-300); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--grad-gold); color: var(--purple-950);
  border: none; padding: 10px 24px; border-radius: 8px;
  font-size: .85rem; font-weight: 800; cursor: pointer; transition: all .2s;
  font-family: var(--font-sub);
}
.cookie-accept:hover { opacity: .9; transform: scale(1.03); }
.cookie-decline {
  background: transparent; color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.25); padding: 9px 18px;
  border-radius: 8px; font-size: .85rem; cursor: pointer; transition: all .2s;
  font-family: var(--font);
}
.cookie-decline:hover { border-color: rgba(255,255,255,.55); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
footer {
  background: var(--purple-950);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
@media(max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 800;
  color: #fff; margin-bottom: 14px;
}
.footer-brand .footer-logo-img {
  width: 40px; height: 40px; border-radius: 10px; object-fit: cover;
  border: 2px solid rgba(245,158,11,.4);
}
.footer-brand p { font-size: .85rem; line-height: 1.75; color: rgba(255,255,255,.6); max-width: 280px; }
.footer-disclaimer { margin-top: 14px; font-size: .76rem; color: rgba(255,255,255,.4); line-height: 1.65; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 1rem;
  transition: all .2s; text-decoration: none;
}
.footer-social-btn:hover { background: var(--gold); color: var(--purple-950); border-color: var(--gold); }

footer h4 {
  color: #fff; font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px;
  font-family: var(--font-sub);
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1);
}
footer ul { display: flex; flex-direction: column; gap: 10px; }
footer ul li a { color: rgba(255,255,255,.6); font-size: .85rem; transition: color .2s; }
footer ul li a:hover { color: var(--gold-300); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0; margin-top: 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .78rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold-300); }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2);
  color: var(--gold-300); font-size: .72rem; padding: 3px 12px; border-radius: 50px;
}

/* ══════════════════════════════════════════════════════════════
   AD PLACEMENTS
   ══════════════════════════════════════════════════════════════ */
.ad-placement { margin: 48px auto; text-align: center; }
.ad-placement-inner { display: inline-flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ad-unit { width: 300px; height: 250px; background: transparent; border: 1px dashed rgba(0,0,0,.08); border-radius: 4px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media(max-width: 768px) {
  .header-inner { height: 64px; padding: 0 16px; }
  .logo { font-size: 1.25rem; }
  .logo-img { width: 38px; height: 38px; }
  .hero { padding: 72px 0 64px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero p { font-size: 1rem; }
  .hero-stats { padding: 16px 24px; }
  .hero-stat-num { font-size: 1.4rem; }
  .hero-logo-img { width: 72px; height: 72px; }
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .nav-toggle { display: flex; }
  .header-nav { display: none !important; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; background: var(--purple-950); padding: 10px 16px 16px; box-shadow: 0 8px 32px rgba(0,0,0,.35); z-index: 199; }
  header.nav-open .header-nav { display: flex !important; }
  header.nav-open .header-nav a { padding: 11px 14px; font-size: .92rem; border-radius: 7px; }
  .filter-section { top: 64px; }
  .footer-grid { gap: 28px; }
}
@media(max-width: 480px) {
  .gallery { position: static; }
  .picks-track { gap: 16px; }
  .pick-card { flex: 0 0 280px; min-width: 280px; }
}
