/* =========================================================
   MOBILE AURAS — Design System v2
   A premium, editorial design language for mobile reviews
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  /* Brand */
  --brand-50:  #eef0ff;
  --brand-100: #dde2ff;
  --brand-200: #bcc7ff;
  --brand-300: #94a4ff;
  --brand-400: #7d87ff;
  --brand-500: #6366f1;
  --brand-600: #4f46e5;
  --brand-700: #4338ca;
  --brand-800: #3730a3;
  --brand-900: #1e1b4b;

  --accent-cyan: #06b6d4;
  --accent-violet: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-amber: #f59e0b;
  --accent-emerald: #10b981;

  /* Neutrals */
  --ink-900: #0b0f1a;
  --ink-800: #111827;
  --ink-700: #1f2937;
  --ink-600: #374151;
  --ink-500: #4b5563;
  --ink-400: #6b7280;
  --ink-300: #9ca3af;
  --ink-200: #d1d5db;
  --ink-100: #e5e7eb;
  --ink-50:  #f3f4f6;

  --paper:    #ffffff;
  --canvas:   #fafbff;
  --canvas-2: #f4f6fc;
  --line:     #e6e9f2;
  --line-2:   #d8dcec;

  /* Semantic */
  --text:     var(--ink-900);
  --text-2:   var(--ink-600);
  --muted:    var(--ink-400);

  /* Effects */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(15,23,42,.05);
  --shadow-sm: 0 2px 6px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow:    0 8px 24px -8px rgba(15,23,42,.10), 0 4px 10px -6px rgba(15,23,42,.06);
  --shadow-lg: 0 24px 60px -16px rgba(15,23,42,.18), 0 8px 24px -10px rgba(15,23,42,.12);
  --shadow-glow: 0 0 0 1px rgba(99,102,241,.18), 0 16px 40px -12px rgba(99,102,241,.30);

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  --grad-brand-soft: linear-gradient(135deg, #eef0ff 0%, #ede9fe 50%, #cffafe 100%);
  --grad-night: linear-gradient(135deg, #0b0f1a 0%, #1e1b4b 50%, #0b0f1a 100%);
  --grad-aurora: radial-gradient(1200px 600px at 20% 10%, rgba(139,92,246,.35) 0%, transparent 60%),
                 radial-gradient(800px 500px at 80% 30%, rgba(6,182,212,.25) 0%, transparent 55%),
                 linear-gradient(135deg, #0b0f1a 0%, #1e1b4b 100%);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --container: 1200px;
  --container-lg: 1280px;
}

/* ---------- Base reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01','cv11','cv02';
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-600); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--brand-700); }
button { font-family: inherit; }
::selection { background: var(--brand-200); color: var(--brand-900); }

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  line-height: 1.18;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); letter-spacing: -0.035em; font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; color: var(--text-2); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   HEADER + NAV
   ========================================================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.06);
  transition: box-shadow .2s ease, background .2s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

/* Logo / Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-decoration: none;
}
.brand:hover { color: var(--ink-900); }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-brand);
  padding: 5px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px -6px rgba(99,102,241,.55), inset 0 1px 0 rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.35), transparent 55%);
  pointer-events: none;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name b {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.18rem;
  background: linear-gradient(120deg, var(--ink-900) 0%, var(--brand-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-name span {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-top: 4px;
}

/* Primary nav */
.nav-primary {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-primary a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .94rem;
  color: var(--ink-700);
  transition: all .18s ease;
}
.nav-primary a:hover { color: var(--brand-700); background: var(--brand-50); }
.nav-primary a.active { color: var(--brand-700); background: var(--brand-50); }
.nav-primary a.nav-cta {
  background: var(--ink-900);
  color: white;
  padding: 10px 18px;
  margin-left: 8px;
  border-radius: 10px;
  box-shadow: 0 6px 14px -6px rgba(15,23,42,.4);
}
.nav-primary a.nav-cta:hover {
  background: var(--brand-700);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(67,56,202,.55);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ink-700);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-aurora);
  color: white;
  padding: 100px 0 110px;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.webp');
  background-size: cover;
  background-position: center right;
  opacity: .55;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 12% 30%, rgba(11,15,26,.85), transparent 70%),
    linear-gradient(90deg, rgba(11,15,26,.92) 0%, rgba(11,15,26,.55) 45%, rgba(11,15,26,.25) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .02em;
  color: white;
  backdrop-filter: blur(8px);
}
.eyebrow .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid; place-items: center;
  box-shadow: 0 0 12px rgba(99,102,241,.6);
}

.hero h1 {
  color: white;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 22px 0 18px;
  font-weight: 800;
}
.hero h1 .grad-text {
  background: linear-gradient(120deg, #c4b5fd 0%, #67e8f9 50%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .96rem;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: white;
  color: var(--ink-900);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.08);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -10px rgba(0,0,0,.5);
  color: var(--brand-700);
}
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.14);
  color: white;
  border-color: rgba(255,255,255,.35);
}

/* Trust strip — replaces the boring stats block */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.trust-card {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.04) 100%);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(280px 120px at 0% 0%, rgba(139,92,246,.25), transparent 60%);
  pointer-events: none;
}
.trust-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.28); }
.trust-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(99,102,241,.35), rgba(6,182,212,.35));
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.trust-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin: 0 0 4px;
}
.trust-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.45;
}

/* Hero visual: animated logo orbit */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}
.orbit-stage {
  position: relative;
  width: 360px;
  height: 360px;
  display: grid;
  place-items: center;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.18);
  animation: spin 40s linear infinite;
}
.orbit-ring.r1 { width: 360px; height: 360px; }
.orbit-ring.r2 { width: 280px; height: 280px; animation-duration: 28s; animation-direction: reverse; border-color: rgba(255,255,255,.12); }
.orbit-ring.r3 { width: 210px; height: 210px; animation-duration: 22s; border-color: rgba(255,255,255,.22); }
.orbit-ring::before, .orbit-ring::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 16px rgba(6,182,212,.8);
}
.orbit-ring.r1::before { top: -4px; left: 50%; transform: translateX(-50%); background: #c4b5fd; box-shadow: 0 0 16px rgba(196,181,253,.9); }
.orbit-ring.r1::after  { bottom: -4px; left: 30%; }
.orbit-ring.r2::before { top: 50%; right: -4px; background: var(--accent-pink); box-shadow: 0 0 16px rgba(236,72,153,.7); }
.orbit-ring.r3::after  { top: 20%; left: -4px; background: #a5b4fc; box-shadow: 0 0 14px rgba(165,180,252,.8); }

.orbit-glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.45) 0%, rgba(99,102,241,0) 65%);
  filter: blur(8px);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.logo-tile {
  position: relative;
  width: 168px;
  height: 168px;
  border-radius: 36px;
  background: linear-gradient(160deg, #ffffff 0%, #eef0ff 100%);
  display: grid;
  place-items: center;
  box-shadow:
    0 30px 80px -20px rgba(99,102,241,.65),
    0 0 0 1px rgba(255,255,255,.5),
    inset 0 1px 0 rgba(255,255,255,.9);
  z-index: 2;
}
.logo-tile::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 38px;
  background: var(--grad-brand);
  z-index: -1;
  filter: blur(14px);
  opacity: .8;
}
.logo-tile img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.hero-caption {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}
.hero-caption b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.hero-caption span {
  font-size: .78rem;
  color: rgba(255,255,255,.62);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Disclosure bar */
.aff-bar {
  background: linear-gradient(90deg, var(--canvas-2), var(--canvas));
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: .86rem;
  color: var(--text-2);
}
.aff-bar strong { color: var(--ink-800); margin-right: 6px; }
.aff-bar .container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.aff-bar .icon-i {
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-700);
  font-weight: 700;
  font-size: .7rem;
  flex-shrink: 0;
}

/* =========================================================
   SECTIONS — heads + dividers
   ========================================================= */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-canvas { background: var(--canvas-2); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.section-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  margin: 0 0 12px;
  color: var(--ink-900);
}
.section-head p {
  font-size: 1.05rem;
  color: var(--text-2);
  margin: 0;
}

/* =========================================================
   EDITOR'S TOP PICKS — completely new design
   ========================================================= */
.top-picks-section {
  background: var(--paper);
  position: relative;
}
.top-picks-section::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 320px;
  background: linear-gradient(180deg, rgba(238,240,255,.7) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.picks-shelf {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  z-index: 1;
}

/* Hero pick (#1) — large, premium */
.pick {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink-900);
  isolation: isolate;
}
.pick:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-300);
  color: var(--ink-900);
}

.pick-hero { grid-row: span 2; }

.pick-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--ink-50) 0%, var(--canvas) 100%);
  overflow: hidden;
}
.pick-hero .pick-media { aspect-ratio: 4 / 3.4; }
.pick-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.pick:hover .pick-media img { transform: scale(1.05); }

.pick-rank {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(11,15,26,.85);
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.pick-rank.gold {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: 0 8px 22px -8px rgba(239,68,68,.7);
}
.pick-rank.silver {
  background: linear-gradient(135deg, #94a3b8, #475569);
  box-shadow: 0 8px 22px -8px rgba(71,85,105,.6);
}
.pick-rank.bronze {
  background: linear-gradient(135deg, #f97316, #c2410c);
  box-shadow: 0 8px 22px -8px rgba(194,65,12,.55);
}
.pick-rank::before {
  content: '★';
  font-size: .9rem;
}

.pick-score {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,.95);
  border-radius: 12px;
  padding: 6px 10px 6px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.pick-score::before { content: '★'; color: #f59e0b; }

.pick-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pick-hero .pick-body { padding: 28px 28px 30px; }

.pick-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-600);
  margin-bottom: 8px;
}
.pick-meta::before {
  content: '';
  width: 18px; height: 2px; background: var(--brand-500); border-radius: 2px;
}
.pick-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 10px;
  line-height: 1.3;
}
.pick-hero .pick-title { font-size: 1.55rem; line-height: 1.22; }
.pick-snippet {
  font-size: .94rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pick-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-weight: 600;
  font-size: .92rem;
  color: var(--brand-700);
}
.pick-cta::after {
  content: '→';
  transition: transform .2s ease;
}
.pick:hover .pick-cta::after { transform: translateX(4px); }

/* =========================================================
   PRODUCTS GRID
   ========================================================= */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.toolbar-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.toolbar-select {
  appearance: none;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 9px 36px 9px 14px;
  background: var(--canvas) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e") no-repeat right 12px center;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.toolbar-select:hover { border-color: var(--brand-300); }
.toolbar-select:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(99,102,241,.18); }

.toolbar-reset {
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 9px 14px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink-600);
  cursor: pointer;
  transition: all .15s ease;
}
.toolbar-reset:hover { background: var(--ink-900); color: white; border-color: var(--ink-900); }
.toolbar-results {
  font-size: .88rem;
  color: var(--muted);
  font-weight: 500;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink-900);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: var(--shadow-xs);
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow);
  color: var(--ink-900);
}
.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--ink-50), var(--canvas));
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .card-media img { transform: scale(1.04); }
.card-brand-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  color: var(--ink-800);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: var(--shadow-xs);
}
.card-rating-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11,15,26,.85);
  color: white;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-rating-pill::before { content: '★'; color: #fcd34d; }

.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 3.2rem;
  background: linear-gradient(160deg, var(--ink-50), var(--brand-50));
  color: var(--brand-400);
}

.card-content {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 6px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink-900);
  line-height: 1.32;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: .85rem;
  color: var(--text-2);
}
.card-stars .stars { color: #f59e0b; letter-spacing: .03em; }
.card-stars .num { font-weight: 700; color: var(--ink-800); }
.card-stars .count { color: var(--muted); }
.card-snippet {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--brand-700);
  margin-top: auto;
}
.card-action::after { content: '→'; transition: transform .2s ease; }
.product-card:hover .card-action::after { transform: translateX(4px); }

.pg-empty {
  text-align: center;
  padding: 40px 24px;
  background: var(--canvas-2);
  border-radius: 14px;
  margin-top: 20px;
  color: var(--text-2);
}
.pg-empty-btn {
  margin-left: 8px;
  background: var(--ink-900);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* Price pricing — cards */
.card-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 14px;
  padding: 10px 12px;
  background: linear-gradient(135deg, var(--brand-50), #fff);
  border: 1px solid var(--brand-100);
  border-radius: 10px;
}
.card-price .price-now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.card-price .price-msrp {
  font-size: .82rem;
  color: var(--muted);
  text-decoration: line-through;
}
.card-price .price-save {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #047857;
  background: #d1fae5;
  padding: 3px 8px;
  border-radius: 999px;
}

/* Pick price */
.pick-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 12px;
  background: var(--brand-50);
  border-radius: 10px;
  margin: 0 0 16px;
  border: 1px solid var(--brand-100);
}
.pick-price .price-now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink-900);
}
.pick-price .price-msrp {
  font-size: .86rem;
  color: var(--muted);
  text-decoration: line-through;
}

/* Compare-row price */
.compare-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.compare-price .price-now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink-900);
}
.compare-price .price-msrp {
  font-size: .76rem;
  color: var(--muted);
  text-decoration: line-through;
}

/* Card alert badges */
.card-alert-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: white;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.35);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.card-alert-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 8px rgba(255,255,255,.8);
  animation: blink 1.6s infinite;
}
.alert-drop  { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.alert-deal  { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.alert-hot   { background: linear-gradient(135deg, #f97316, #ea580c); }
.alert-value { background: linear-gradient(135deg, #10b981, #047857); }
.alert-lowest{ background: linear-gradient(135deg, #0ea5e9, #0369a1); }
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* Product-page price block */
.p-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--brand-50), white);
  border: 1px solid var(--brand-200);
  border-radius: 14px;
}
.p-price-now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--ink-900);
  letter-spacing: -0.025em;
}
.p-price-msrp {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}
.p-price-save {
  margin-left: auto;
  background: linear-gradient(135deg, #10b981, #047857);
  color: white;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

/* Price history chart card */
.price-section {
  margin: 8px 0 56px;
}
.price-section-title {
  font-size: 1.6rem;
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 14px;
}
.price-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 56px; height: 3px;
  background: var(--grad-brand);
  border-radius: 3px;
}
.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px 24px;
  box-shadow: var(--shadow-sm);
}
.price-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.price-card-eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 6px;
}
.price-card-now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--ink-900);
  letter-spacing: -0.025em;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.price-card-msrp {
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.price-trend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
}
.price-trend-down { background: #d1fae5; color: #047857; }
.price-trend-up   { background: #fee2e2; color: #b91c1c; }
.price-trend-flat { background: var(--ink-50); color: var(--ink-600); }

.price-card-chart { margin: 4px -8px 8px; }
.pc-svg { width: 100%; height: auto; display: block; max-width: 100%; }
.pc-axis { font-family: var(--font-mono); font-size: 11px; fill: var(--ink-400); }
.pc-grid { stroke: var(--ink-100); stroke-dasharray: 3 4; }
.pc-dot { fill: white; stroke: var(--brand-500); stroke-width: 1.5; opacity: .7; }
.pc-now { fill: var(--brand-600); }
.pc-now-halo { fill: rgba(99,102,241,.25); }
.pc-now-line { stroke: var(--brand-300); stroke-dasharray: 2 3; }
.pc-msrp-line { stroke: #f59e0b; stroke-dasharray: 4 4; opacity: .65; }
.pc-msrp-label { font-family: var(--font-mono); font-size: 10px; fill: #b45309; font-weight: 600; }

.price-card-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
}
.price-card-foot > span { display: inline-flex; align-items: center; gap: 6px; }
.pc-dot-key {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
}
.pc-dot-key.now { background: var(--brand-600); box-shadow: 0 0 0 3px rgba(99,102,241,.18); }
.pc-dot-key.msrp { background: transparent; border: 2px dashed #f59e0b; }
.price-card-disclaimer {
  margin-left: auto;
  font-size: .76rem;
  color: var(--ink-300);
  max-width: 360px;
  text-align: right;
  line-height: 1.5;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  background: white;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink-700);
  cursor: pointer;
  transition: all .15s ease;
}
.page-btn:hover:not(.disabled) { border-color: var(--brand-400); color: var(--brand-700); }
.page-btn.active { background: var(--ink-900); color: white; border-color: var(--ink-900); }
.page-btn.disabled { opacity: .45; cursor: not-allowed; }
.page-btn.page-nav { font-weight: 600; }

/* =========================================================
   COMPARE TABLE
   ========================================================= */
.compare-section { background: var(--canvas); }
.compare-table-wrap {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
}
.compare-table th {
  background: var(--ink-900);
  color: white;
  text-align: left;
  padding: 16px 18px;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.compare-table td {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  vertical-align: middle;
}
.compare-row { cursor: pointer; transition: background .12s ease; }
.compare-row:hover { background: var(--brand-50); }
.compare-rank { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink-700); }
.compare-img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
.compare-name { font-weight: 700; color: var(--ink-900); margin-bottom: 2px; }
.compare-brand-tag {
  display: inline-block;
  background: var(--brand-50);
  color: var(--brand-700);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.compare-score { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink-900); }
.compare-bar { width: 100px; height: 6px; background: var(--ink-100); border-radius: 999px; overflow: hidden; margin-top: 6px; }
.compare-bar-fill { height: 100%; background: linear-gradient(90deg, var(--brand-500), var(--accent-violet)); border-radius: 999px; }
.compare-link {
  display: inline-block;
  padding: 8px 14px;
  background: var(--ink-900);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: .82rem;
  white-space: nowrap;
}
.compare-link:hover { background: var(--brand-700); color: white; }

/* =========================================================
   PRODUCT PAGE
   ========================================================= */
.page-hero {
  background: var(--canvas-2);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .86rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--text-2); font-weight: 500; }
.breadcrumb a:hover { color: var(--brand-600); }
.breadcrumb sep { color: var(--ink-300); }
.breadcrumb span:last-child { color: var(--ink-800); font-weight: 600; }

.product-page { padding: 40px 0 60px; }

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.gallery {
  position: sticky;
  top: 100px;
}
.gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, white, var(--canvas-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
  transition: transform .3s ease;
}
.gallery-main:hover img { transform: scale(1.04); }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.gallery-thumb {
  aspect-ratio: 1 / 1;
  background: white;
  border: 2px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
}
.gallery-thumb:hover { border-color: var(--brand-400); }
.gallery-thumb.active { border-color: var(--brand-600); transform: translateY(-2px); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; padding: 4px; }

.product-info { padding-top: 4px; }
.p-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-50);
  color: var(--brand-700);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.p-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--ink-900);
}
.p-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 0 0;
  margin-bottom: 18px;
}
.p-rating .stars-char { color: #f59e0b; font-size: 1.15rem; letter-spacing: .04em; }
.p-rating .score { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink-900); }
.p-rating .reviews-ct { color: var(--muted); font-size: .9rem; }

.score-bar-wrap {
  background: var(--canvas-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.score-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.score-bar-track {
  height: 8px;
  background: var(--ink-100);
  border-radius: 999px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-violet), var(--accent-cyan));
  border-radius: 999px;
}

.verdict-box {
  position: relative;
  background: linear-gradient(135deg, var(--brand-50) 0%, #fff 100%);
  border: 1px solid var(--brand-200);
  border-left: 4px solid var(--brand-600);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 24px;
}
.verdict-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-700);
  margin-bottom: 8px;
}
.verdict-label::before { content: '✦'; color: var(--brand-600); }
.verdict-text { margin: 0; color: var(--ink-700); font-size: .98rem; line-height: 1.6; }

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.btn-buy {
  flex: 1;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  background: linear-gradient(135deg, var(--brand-600), var(--accent-violet));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all .2s ease;
  box-shadow: 0 14px 30px -10px rgba(99,102,241,.55);
}
.btn-buy:hover {
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 20px 40px -12px rgba(99,102,241,.7);
}
.btn-read-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 22px;
  background: white;
  color: var(--ink-800);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}
.btn-read-reviews:hover { border-color: var(--brand-400); color: var(--brand-700); }
.cta-disclosure {
  font-size: .76rem;
  color: var(--muted);
  margin: 8px 0 22px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.features-list li {
  position: relative;
  padding: 10px 12px 10px 38px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .92rem;
  color: var(--ink-700);
  line-height: 1.5;
}
.features-list li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background: var(--grad-brand);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px white, 0 0 0 1.5px var(--brand-600);
}
.features-heading {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-700);
  margin: 0 0 14px;
}

/* Pros / Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 8px 0 56px;
}
.pros-box, .cons-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
}
.pros-box::before, .cons-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.pros-box::before { background: linear-gradient(90deg, #10b981, #34d399); }
.cons-box::before { background: linear-gradient(90deg, #ef4444, #fb923c); }
.box-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.pros-box .box-head { color: #047857; }
.cons-box .box-head { color: #b91c1c; }
.pros-box ul, .cons-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.pros-box li, .cons-box li {
  position: relative;
  padding-left: 26px;
  font-size: .94rem;
  color: var(--ink-700);
  line-height: 1.55;
}
.pros-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px; height: 18px;
  background: #d1fae5;
  color: #047857;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.cons-box li::before {
  content: '−';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px; height: 18px;
  background: #fee2e2;
  color: #b91c1c;
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* Full review prose */
.product-desc {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 56px;
  box-shadow: var(--shadow-xs);
}
.product-desc h2 {
  font-size: 1.6rem;
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 14px;
}
.product-desc h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 56px; height: 3px;
  background: var(--grad-brand);
  border-radius: 3px;
}
.product-desc p { font-size: 1.02rem; line-height: 1.75; color: var(--ink-700); }
.product-desc p:last-child { margin-bottom: 0; }

/* Reviews */
.reviews-section {
  background: var(--canvas-2);
  padding: 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 56px;
}
.reviews-section h2 {
  font-size: 1.6rem;
  margin: 0 0 24px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
}
.reviewer-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink-900);
  font-size: .94rem;
}
.reviewer-name::before {
  content: '';
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: inline-block;
}
.review-date { font-size: .82rem; color: var(--muted); }
.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: .04em; margin-bottom: 6px; }
.review-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.review-text { font-size: .92rem; color: var(--text-2); line-height: 1.6; margin: 0; }

/* Related products */
.related-section { padding: 60px 0 80px; background: white; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.related-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink-900);
  transition: all .2s ease;
}
.related-card:hover { transform: translateY(-3px); border-color: var(--brand-300); box-shadow: var(--shadow); color: var(--ink-900); }
.related-img {
  aspect-ratio: 4 / 3;
  background: var(--canvas-2);
  overflow: hidden;
}
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.related-card:hover .related-img img { transform: scale(1.05); }
.related-body { padding: 14px 16px 16px; }
.related-brand {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 4px;
}
.related-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink-900);
  margin-bottom: 6px;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-stars { font-size: .82rem; color: #f59e0b; margin-bottom: 8px; }
.related-link { font-size: .85rem; color: var(--brand-700); font-weight: 600; }

/* =========================================================
   STATIC PAGES (about, privacy, terms, cookies)
   ========================================================= */
.static-hero {
  background: var(--grad-aurora);
  color: white;
  padding: 70px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.static-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(139,92,246,.3), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(6,182,212,.25), transparent 40%);
  pointer-events: none;
}
.static-hero h1 { color: white; margin-bottom: 14px; }
.static-hero p { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

.static-content {
  max-width: 820px;
  margin: 0 auto;
  background: white;
  padding: 56px 60px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.static-content h2 {
  font-size: 1.45rem;
  margin: 36px 0 14px;
  padding-bottom: 12px;
  position: relative;
}
.static-content h2:first-child { margin-top: 0; }
.static-content h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 3px;
  background: var(--grad-brand);
  border-radius: 3px;
}
.static-content p, .static-content li {
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.75;
}
.static-content ul {
  padding-left: 0;
  list-style: none;
}
.static-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
.static-content ul li::before {
  content: '';
  position: absolute;
  left: 6px; top: 11px;
  width: 6px; height: 6px;
  background: var(--brand-500);
  border-radius: 50%;
}
.static-content strong { color: var(--ink-900); }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.72);
  padding: 64px 0 28px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-500), var(--accent-cyan), transparent);
}
footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 10% 0%, rgba(99,102,241,.12), transparent 60%),
    radial-gradient(500px 250px at 90% 100%, rgba(6,182,212,.08), transparent 60%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.footer-brand .brand {
  margin-bottom: 18px;
  color: white;
}
.footer-brand .brand-name b {
  background: linear-gradient(120deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-brand .brand-name span { color: var(--accent-cyan); }
.footer-about {
  font-size: .94rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin: 0 0 16px;
  max-width: 480px;
}
.footer-disclaimer {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border-left: 2px solid var(--brand-500);
  border-radius: 4px;
  max-width: 480px;
}
footer h4 {
  color: white;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul li { margin-bottom: 10px; }
footer ul a {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  transition: color .15s ease;
}
footer ul a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  position: relative;
  z-index: 1;
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: white; }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
#cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 200;
  background: var(--ink-900);
  color: white;
  padding: 16px 0;
  border-radius: 16px;
  box-shadow: 0 24px 60px -10px rgba(0,0,0,.45);
  transform: translateY(180%);
  transition: transform .35s cubic-bezier(.2,.9,.3,1);
  border: 1px solid rgba(255,255,255,.1);
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-text { margin: 0; flex: 1; min-width: 240px; font-size: .92rem; color: rgba(255,255,255,.85); }
.cookie-text a { color: var(--accent-cyan); }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept, .cookie-decline {
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .15s ease;
}
.cookie-accept {
  background: white;
  color: var(--ink-900);
}
.cookie-accept:hover { background: var(--brand-200); }
.cookie-decline {
  background: rgba(255,255,255,.08);
  color: white;
  border: 1px solid rgba(255,255,255,.18);
}
.cookie-decline:hover { background: rgba(255,255,255,.15); }

/* Ad placement */
.ad-placement {
  padding: 32px 0;
  background: var(--canvas);
}
.ad-placement-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.ad-unit {
  background: white;
  border: 1px dashed var(--line-2);
  border-radius: 8px;
  min-height: 4px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 320px; }
  .orbit-stage { width: 280px; height: 280px; }
  .orbit-ring.r1 { width: 280px; height: 280px; }
  .orbit-ring.r2 { width: 220px; height: 220px; }
  .orbit-ring.r3 { width: 160px; height: 160px; }
  .logo-tile { width: 132px; height: 132px; border-radius: 28px; }

  .picks-shelf { grid-template-columns: 1fr 1fr; }
  .pick-hero { grid-row: span 1; grid-column: span 2; }
  .pick-hero .pick-media { aspect-ratio: 16 / 9; }

  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-hero { grid-template-columns: 1fr; gap: 32px; }
  .gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .static-content { padding: 36px 28px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-primary {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }
  header.nav-open .nav-primary {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-primary a { padding: 12px 14px; }
  .nav-primary a.nav-cta { margin-left: 0; margin-top: 6px; text-align: center; justify-content: center; }

  .hero { padding: 70px 0 80px; }
  .trust-strip { grid-template-columns: 1fr; }
  .picks-shelf { grid-template-columns: 1fr; }
  .pick-hero { grid-column: span 1; }
  .products-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .product-desc { padding: 24px 22px; }
  .reviews-section { padding: 24px; }
  .static-content { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .toolbar { gap: 8px; padding: 14px; }
  .toolbar-reset { margin-left: 0; }
  .compare-table th, .compare-table td { padding: 12px 10px; font-size: .85rem; }
  .compare-img { width: 48px; height: 48px; }
  .price-card { padding: 22px 18px; }
  .price-card-now { font-size: 1.6rem; }
  .price-card-disclaimer { margin-left: 0; text-align: left; }
  .p-price-now { font-size: 1.5rem; }
  .p-price-save { margin-left: 0; }
  .p-price { padding: 14px 16px; }
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
