/* ============================================================
   Premium Dark Review Platform — Clean & Approachable
   ============================================================ */

/* === VARIABLES === */
:root {
  --bg:         #f8fafc;
  --bg-2:       #f1f5f9;
  --bg-3:       #e2e8f0;
  --card:       #ffffff;
  --card-solid: #ffffff;
  --border:     rgba(15,23,42,0.1);
  --border-2:   rgba(15,23,42,0.18);
  --text:       #0f172a;
  --text-2:     #334155;
  --text-3:     #475569;
  --muted:      #64748b;
  --accent:     #4f46e5;
  --accent-2:   #6366f1;
  --accent-3:   #818cf8;
  --gold:       #d97706;
  --green:      #16a34a;
  --red:        #dc2626;
  --mono:       'JetBrains Mono', monospace;
  --sans:       'Inter', sans-serif;
  --radius:     12px;
  --radius-lg:  18px;
  --shadow-sm:  0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.05);
  --shadow-md:  0 6px 20px rgba(15,23,42,0.12), 0 2px 6px rgba(15,23,42,0.08);
  --shadow-lg:  0 16px 40px rgba(15,23,42,0.18), 0 6px 12px rgba(15,23,42,0.08);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--sans); font-size: inherit; }

/* Background aura */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(99,102,241,0.08), transparent 60%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(99,102,241,0.05), transparent 60%);
  z-index: 0;
}

.site-wrapper { position: relative; z-index: 1; }

/* === NAVIGATION === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 55px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 9px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(15,23,42,0.05); }
.nav-links a.active { color: var(--accent-3); background: rgba(99,102,241,0.18); }
.nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15,23,42,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 14px;
  color: var(--text-3);
  font-size: 13px;
  min-width: 220px;
  cursor: text;
  transition: all 0.2s;
}
.nav-search:hover { border-color: var(--border-2); color: var(--text-2); }
.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  color: var(--text-2);
  padding: 8px 10px;
  font-size: 18px;
}

/* === HERO === */
.hero {
  padding: 70px 32px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.13);
  border: 1px solid rgba(79,70,229,0.35);
  color: var(--accent-3);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-h1 span {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 32px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 10px;
  border: none;
  transition: all 0.22s;
  box-shadow: 0 4px 20px rgba(99,102,241,0.35);
}
.btn-primary:hover { transform: translateY(-1px); background: #7579f5; box-shadow: 0 6px 24px rgba(99,102,241,0.5); color: #fff; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-2);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 10px;
  border: 1px solid var(--border-2);
  transition: all 0.22s;
}
.btn-ghost:hover { color: var(--text); background: rgba(15,23,42,0.05); border-color: rgba(15,23,42,0.15); }

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}
.hero-stat-num span { color: var(--accent-2); }
.hero-stat-label { font-size: 12px; color: var(--text-3); letter-spacing: 0.5px; text-transform: uppercase; margin-top: 4px; }

/* === SECTION HEADER === */
.section-head {
  padding: 0 32px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 6px;
}
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.6px;
  line-height: 1.2;
}
.section-sub { font-size: 14px; color: var(--text-3); margin-top: 4px; }
.section-link {
  font-size: 13px;
  color: var(--accent-3);
  font-weight: 600;
  transition: color 0.2s;
}
.section-link:hover { color: var(--accent-2); }

/* === BENTO GRID (Top Picks) === */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
  padding: 0 32px 50px;
}
.bento-card {
  background: var(--card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,70,229,0.4);
  box-shadow: var(--shadow-lg);
}
.bento-main {
  border-color: rgba(217,119,6,0.4);
  background: linear-gradient(135deg, rgba(245,158,11,0.06), var(--card));
  box-shadow: 0 0 0 1px rgba(245,158,11,0.1);
}
.bento-main:hover { border-color: rgba(245,158,11,0.55); box-shadow: 0 12px 40px rgba(245,158,11,0.18), var(--shadow-lg); }
.bento-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.badge-best  { background: rgba(245,158,11,0.18); color: var(--gold); border: 1px solid rgba(217,119,6,0.5); }
.badge-value { background: rgba(22,163,74,0.15); color: var(--green); border: 1px solid rgba(22,163,74,0.4); }
.badge-new   { background: rgba(99,102,241,0.18); color: var(--accent-2); border: 1px solid rgba(79,70,229,0.4); }
.badge-hot   { background: rgba(220,38,38,0.15); color: var(--red); border: 1px solid rgba(220,38,38,0.4); }
.bento-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  padding: 24px;
}
.bento-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.bento-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.bento-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 14px;
}
.bento-desc { display: none; }
.bento-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.bento-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}
.bento-price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; margin-left: 6px; font-weight: 500; }

/* === AI SCORE RING === */
.score-ring { position: relative; width: 60px; height: 60px; flex-shrink: 0; }
.score-ring svg { width: 60px; height: 60px; transform: rotate(-90deg); }
.score-ring-bg { fill: none; stroke: rgba(15,23,42,0.07); stroke-width: 4; }
.score-ring-fill { fill: none; stroke-width: 4; stroke-linecap: round; transition: stroke-dashoffset 1s ease; }
.score-ring-fill.gold   { stroke: var(--gold); filter: drop-shadow(0 0 6px rgba(245,158,11,0.5)); }
.score-ring-fill.accent { stroke: var(--accent-2); filter: drop-shadow(0 0 6px rgba(129,140,248,0.5)); }
.score-ring-fill.green  { stroke: var(--green); filter: drop-shadow(0 0 6px rgba(34,197,94,0.5)); }
.score-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.score-ring-val { font-size: 14px; font-weight: 800; color: var(--text); line-height: 1; }
.score-ring-max { font-size: 8px; color: var(--text-3); }


/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 32px 50px;
}
.product-card {
  background: var(--card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,70,229,0.4);
  box-shadow: var(--shadow-lg);
}
.product-card a { display: block; }
.product-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  padding: 20px;
  transition: transform 0.35s;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
.product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 40px;
}
.product-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.product-stars .star-empty { color: rgba(245,158,11,0.25); }
.product-stars .review-count { font-size: 12px; color: var(--text-3); font-weight: 400; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--border); }
.product-price { font-size: 18px; font-weight: 800; color: var(--text); }
.product-score-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(99,102,241,0.18);
  border: 1px solid rgba(79,70,229,0.4);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

/* === CATEGORY PAGE === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 32px 0;
  font-size: 13px;
  color: var(--text-3);
}
.breadcrumb a { color: var(--accent-3); font-weight: 500; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb .sep { color: var(--muted); }

.cat-hero {
  padding: 20px 32px 32px;
}
.cat-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 10px;
}
.cat-hero p {
  font-size: 15px;
  color: var(--text-3);
  max-width: 640px;
  line-height: 1.6;
}
.cat-hero-meta {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cat-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
}
.cat-hero-meta-item strong { color: var(--text); font-weight: 700; }

.cat-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 0 32px 40px;
}

/* Sidebar filters */
.filter-card {
  background: var(--card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky;
  top: 88px;
  align-self: start;
}
.filter-toggle {
  display: none;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.filter-toggle-arrow { transition: transform 0.25s; color: var(--text-3); }
.filter-card.open .filter-toggle-arrow { transform: rotate(180deg); }
.filter-head {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.filter-section { margin-bottom: 22px; }
.filter-section:last-child { margin-bottom: 0; }
.filter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
  display: block;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-2);
  transition: color 0.2s;
}
.filter-check:hover { color: var(--text); }
.filter-check input { accent-color: var(--accent); width: 15px; height: 15px; }
.filter-check .count { margin-left: auto; font-size: 12px; color: var(--muted); }
.filter-range-vals {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 8px;
  font-weight: 500;
}
.filter-range {
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  background: rgba(15,23,42,0.1);
  border-radius: 2px;
  outline: none;
}
.filter-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px rgba(99,102,241,0.5);
  cursor: pointer;
}

/* Toolbar */
.cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}
.cat-count { font-size: 13px; color: var(--text-3); }
.cat-count strong { color: var(--text); }
.cat-sort select {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 9px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 13px;
  padding: 9px 14px;
  cursor: pointer;
  outline: none;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; }
.pagination button {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--border-2);
  background: var(--card);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.pagination button:hover { color: var(--text); border-color: rgba(99,102,241,0.4); }
.pagination button.active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 4px 14px rgba(99,102,241,0.35); }

/* === PRODUCT / REVIEW PAGE === */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  padding: 0 32px 50px;
}
.review-layout { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

.review-main { min-width: 0; }

/* Review header card */
.review-hero {
  background: var(--card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}
.review-hero-img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(99,102,241,0.18));
}
.review-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99,102,241,0.18);
  border: 1px solid rgba(79,70,229,0.4);
  color: var(--accent-3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.review-title {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.7px;
  margin-bottom: 14px;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.review-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.review-rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}
.review-score-big {
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}
.review-score-big span { font-size: 18px; color: var(--text-3); font-weight: 500; }
.review-stars-big { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 4px; }
.review-stars-label { font-size: 12px; color: var(--text-3); }
.review-price-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.review-price-big { font-size: 32px; font-weight: 800; color: var(--text); letter-spacing: -1px; }
.review-price-big .old { font-size: 17px; color: var(--muted); text-decoration: line-through; margin-left: 10px; font-weight: 500; }
.review-price-big .save { font-size: 12px; color: var(--green); margin-left: 10px; font-weight: 600; }

/* Section card */
.card {
  background: var(--card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 20px;
}
.card h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.4px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.card h2 .h-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(99,102,241,0.18);
  border: 1px solid rgba(99,102,241,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin: 22px 0 10px; }
.card p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 14px; }
.card p:last-child { margin-bottom: 0; }

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature {
  background: rgba(15,23,42,0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all 0.25s;
}
.feature:hover { border-color: rgba(79,70,229,0.4); background: rgba(99,102,241,0.05); transform: translateY(-2px); }
.feature-icon { font-size: 26px; margin-bottom: 10px; }
.feature-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.feature-desc { font-size: 13px; color: var(--text-3); line-height: 1.5; }

/* Score breakdown */
.score-breakdown { display: flex; flex-direction: column; gap: 16px; }
.score-row { display: flex; align-items: center; gap: 14px; }
.score-row-label { min-width: 140px; font-size: 14px; font-weight: 600; color: var(--text-2); }
.score-row-bar { flex: 1; height: 8px; background: rgba(15,23,42,0.08); border-radius: 100px; overflow: hidden; }
.score-row-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 100px; transition: width 1s ease; }
.score-row-fill.gold { background: linear-gradient(90deg, #fbbf24, var(--gold)); }
.score-row-val { font-size: 15px; font-weight: 800; color: var(--text); min-width: 36px; text-align: right; }

/* Pros / Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pros, .cons { padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.pros { background: rgba(34,197,94,0.05); border-color: rgba(34,197,94,0.2); }
.cons { background: rgba(239,68,68,0.04); border-color: rgba(239,68,68,0.18); }
.pros h3, .cons h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; margin-top: 0; }
.pros h3 { color: var(--green); }
.cons h3 { color: var(--red); }
.pros ul li, .cons ul li {
  font-size: 14px;
  color: var(--text-2);
  padding: 9px 0 9px 26px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid rgba(15,23,42,0.05);
}
.pros ul li:last-child, .cons ul li:last-child { border-bottom: none; }
.pros ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.cons ul li::before { content: '✕'; position: absolute; left: 0; color: var(--red); font-weight: 800; }

/* Specs table */
.specs { width: 100%; border-collapse: collapse; }
.specs tr { border-bottom: 1px solid var(--border); }
.specs tr:last-child { border-bottom: none; }
.specs td { padding: 13px 16px; font-size: 14px; }
.specs td:first-child { color: var(--text-3); width: 42%; font-weight: 500; }
.specs td:last-child { color: var(--text); font-weight: 600; }
.specs tr:nth-child(odd) { background: rgba(15,23,42,0.035); }

/* Price graph */
.price-graph {
  background: rgba(15,23,42,0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.price-graph-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}
.price-graph-title { font-size: 14px; font-weight: 700; color: var(--text); }
.price-graph-signal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.35);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.price-graph-signal .g-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.price-graph svg { width: 100%; height: auto; display: block; }
.price-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-3); margin-top: 8px; }
.price-tip {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.price-tip strong { color: var(--green); }

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: rgba(15,23,42,0.035);
}
.faq-q {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--text); }
.faq-q-icon { color: var(--accent-2); font-size: 20px; font-weight: 400; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--text); }
.faq-a { padding: 0 20px 18px; font-size: 14px; line-height: 1.7; color: var(--text-3); display: none; }
.faq-item.open .faq-a { display: block; }

/* Customer reviews */
.reviews { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.review-user-card {
  background: rgba(15,23,42,0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.25s;
}
.review-user-card:hover { border-color: var(--border-2); }
.review-user-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.review-user-name { font-weight: 700; font-size: 14px; color: var(--text); }
.review-user-date { font-size: 11px; color: var(--text-3); }
.review-user-stars { color: var(--gold); font-size: 13px; margin-bottom: 10px; letter-spacing: 1px; }
.review-user-text { font-size: 13px; line-height: 1.65; color: var(--text-2); }

/* Verdict banner */
.verdict {
  background: linear-gradient(135deg, rgba(99,102,241,0.13), rgba(245,158,11,0.05));
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.verdict::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(245,158,11,0.08), transparent 70%);
}
.verdict > * { position: relative; z-index: 1; }
.verdict-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(217,119,6,0.4);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.verdict-score {
  font-size: 72px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
  text-shadow: 0 0 40px rgba(217,119,6,0.5);
}
.verdict-score span { font-size: 28px; color: var(--text-3); font-weight: 500; }
.verdict-stars { font-size: 26px; color: var(--gold); letter-spacing: 4px; margin: 12px 0 16px; }
.verdict-title { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.verdict-text { font-size: 15px; color: var(--text-2); line-height: 1.7; max-width: 600px; margin: 0 auto 28px; }

/* CTA Button (big) */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 40px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 28px rgba(99,102,241,0.45);
  transition: all 0.25s;
  letter-spacing: 0.3px;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(99,102,241,0.6); color: #fff; }
.cta-btn-sub { font-size: 12px; color: var(--text-3); margin-top: 12px; }

/* Sidebar */
.side { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 88px; align-self: start; }
.side-card {
  background: var(--card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.side-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.side-buy { text-align: center; }
.side-price { font-size: 30px; font-weight: 800; color: var(--text); margin-bottom: 4px; letter-spacing: -0.8px; }
.side-price .old { font-size: 15px; color: var(--muted); text-decoration: line-through; margin-left: 8px; font-weight: 500; }
.side-save { font-size: 12px; color: var(--green); font-weight: 600; margin-bottom: 16px; }
.side-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
  transition: all 0.25s;
  margin-bottom: 10px;
}
.side-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(99,102,241,0.55); color: #fff; }
.side-trust { font-size: 11px; color: var(--text-3); line-height: 1.6; display: flex; align-items: flex-start; gap: 6px; padding-top: 10px; border-top: 1px solid var(--border); margin-top: 14px; }

.side-mini { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.side-mini:last-child { border-bottom: none; }
.side-mini img {
  width: 64px; height: 64px;
  object-fit: contain;
  background: rgba(15,23,42,0.05);
  border-radius: 8px;
  padding: 6px;
  flex-shrink: 0;
}
.side-mini-info { flex: 1; min-width: 0; }
.side-mini-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.35; margin-bottom: 4px; }
.side-mini-title:hover { color: var(--accent-2); }
.side-mini-meta { font-size: 11px; color: var(--text-3); display: flex; align-items: center; gap: 6px; }
.side-mini-price { font-size: 13px; font-weight: 700; color: var(--accent-2); }

/* Related */
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* === FOOTER === */
.footer {
  background: rgba(248,250,252,0.92);
  border-top: 1px solid var(--border);
  padding: 56px 32px 0;
  margin-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-logo img { height: 50px; width: auto; margin-bottom: 16px; }
.footer p { font-size: 13px; color: var(--text-3); line-height: 1.7; }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 18px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 13px; color: var(--text-3); transition: color 0.2s; }
.footer ul li a:hover { color: var(--accent-2); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); margin-left: 18px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent-2); }
.footer-disclosure { padding: 18px 0; border-top: 1px solid rgba(15,23,42,0.05); }
.footer-disclosure p { font-size: 11px; color: var(--muted); font-style: italic; line-height: 1.6; max-width: 900px; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-layout { grid-template-columns: 220px 1fr; gap: 22px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .review-layout { grid-template-columns: 1fr; }
  .side { position: static; flex-direction: column; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-search { display: none; }
}
@media (max-width: 768px) {
  .site-nav { padding: 0 16px; height: 80px; }
  .nav-logo { height: 80px; }
  .nav-logo img { height: 70px; width: auto; max-width: 50vw; object-fit: contain; }
  .nav-links { display: none; }
  .nav-hamburger { display: inline-flex; }
  .hero { padding: 44px 16px 36px; }
  .hero-h1 { font-size: 30px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { padding: 12px 22px; font-size: 13px; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    margin-top: 32px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 10px; }
  .section-head, .bento-grid, .product-grid, .cat-layout, .breadcrumb, .cat-hero, .review-layout, .footer { padding-left: 16px; padding-right: 16px; }
  .section-head { margin-bottom: 18px; }
  .section-title { font-size: 22px; }
  .bento-grid { grid-template-columns: 1fr; gap: 14px; padding-bottom: 36px; }
  .bento-img { height: 180px; padding: 18px; }
  .bento-body { padding: 16px 18px; }
  .bento-title { font-size: 14px; margin-bottom: 10px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding-bottom: 36px; }
  .product-img { height: 150px; padding: 14px; }
  .product-body { padding: 14px; }
  .product-title { font-size: 12px; min-height: 34px; margin-bottom: 10px; }
  .product-cat { font-size: 10px; margin-bottom: 6px; }
  .product-stars { font-size: 11px; margin-bottom: 8px; }
  .product-stars .review-count { font-size: 10px; }
  .product-price { font-size: 15px; }
  .product-score-pill { font-size: 10px; padding: 3px 8px; }
  .product-foot { padding-top: 8px; }
  .cat-hero { padding: 16px 16px 20px; }
  .cat-hero h1 { font-size: 24px; margin-bottom: 6px; letter-spacing: -0.5px; }
  .cat-hero p { font-size: 13px; line-height: 1.55; }
  .cat-hero-meta { gap: 10px 16px; margin-top: 12px; }
  .cat-hero-meta-item { font-size: 11px; }
  .cat-layout { grid-template-columns: 1fr; gap: 16px; }
  .filter-card { position: static; padding: 14px 18px; }
  .filter-toggle { display: flex; }
  .filter-card .filter-head,
  .filter-card .filter-section { display: none; }
  .filter-card.open .filter-head,
  .filter-card.open .filter-section { display: block; }
  .filter-card.open .filter-toggle { margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
  .cat-toolbar { margin-bottom: 14px; }
  .cat-count { font-size: 12px; }
  .cat-sort select { font-size: 12px; padding: 8px 10px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .review-hero { grid-template-columns: 1fr; padding: 22px; gap: 20px; }
  .review-title { font-size: 22px; }
  .review-score-big { font-size: 32px; }
  .review-price-big { font-size: 26px; }
  .card { padding: 20px; }
  .card h2 { font-size: 17px; }
  .features { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding-top: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom a { margin: 0 10px; }
  .verdict-score { font-size: 56px; }
  .verdict { padding: 32px 20px; }
  .verdict-title { font-size: 20px; }
  .score-row-label { min-width: 100px; font-size: 13px; }
}
@media (max-width: 420px) {
  .hero-h1 { font-size: 26px; }
  .hero-stats { max-width: 280px; gap: 16px 12px; }
  .hero-stat-num { font-size: 19px; }
  .product-grid { gap: 10px; }
  .product-img { height: 130px; padding: 12px; }
  .product-title { font-size: 11px; }
  .cat-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
:root{--gallery-border:rgba(139,92,246,0.2);--gallery-active:#7c3aed;--gallery-glow:rgba(124,58,237,0.2)}

/* Trust Badges - Light Premium */
.trust-badges { gap: 10px; margin: 0 0 20px; }
.trust-badge { background: var(--bg-2); border: 1px solid var(--border-2); padding: 12px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 600; color: var(--accent); }

/* Lede Features - Light Premium */
.lede-features { gap: 6px; }
.lede-feature { background: var(--bg-2); border: 1px solid var(--border); padding: 12px 18px; border-radius: var(--radius); font-size: 14px; color: var(--text-2); border-left: 3px solid var(--accent); }

/* Hide duplicate verdict from stored content */
.card .final-verdict { display: none; }
