/* ============================================================
   DESIGN 5 — Synthwave / Neon Retro-Futurism
   Deep purple bg, hot pink + cyan neon glows, scanlines
   ============================================================ */

:root {
  --bg:         #07051a;
  --bg-2:       #0d0828;
  --bg-3:       #150c3a;
  --card:       rgba(21, 12, 58, 0.6);
  --ink:        #f0e7ff;
  --ink-2:      #b5a8d9;
  --ink-3:      #7a6ba3;
  --ink-4:      #4a3f6b;
  --pink:       #ff2d92;
  --pink-d:     #e01080;
  --cyan:       #00f0ff;
  --cyan-d:     #00c8d4;
  --purple:     #b838ff;
  --yellow:     #ffee00;
  --magenta:    #ff00e5;
  --orange:     #ff6b00;
  --grid:       rgba(184, 56, 255, 0.08);
  --border:     rgba(255, 45, 146, 0.25);
  --border-2:   rgba(0, 240, 255, 0.25);
  --glow-pink:  0 0 24px rgba(255,45,146,0.5), 0 0 48px rgba(255,45,146,0.2);
  --glow-cyan:  0 0 24px rgba(0,240,255,0.5), 0 0 48px rgba(0,240,255,0.2);
  --glow-purple:0 0 24px rgba(184,56,255,0.5), 0 0 48px rgba(184,56,255,0.2);
  --display:    'Orbitron', 'Inter', system-ui, sans-serif;
  --sans:       'Inter', system-ui, -apple-system, sans-serif;
}

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

/* Grid background + sun glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(184,56,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,56,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, #000 40%, transparent 100%);
}
/* Aurora neon glow */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 700px 400px at 20% 15%, rgba(255,45,146,0.18), transparent 60%),
    radial-gradient(ellipse 700px 500px at 80% 40%, rgba(0,240,255,0.14), transparent 60%),
    radial-gradient(ellipse 500px 400px at 50% 90%, rgba(184,56,255,0.15), transparent 60%);
}
.wrap { position: relative; z-index: 1; }

/* Scanlines */
.wrap::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0) 4px
  );
}

.display { font-family: var(--display); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
.glow-pink { color: var(--pink); text-shadow: var(--glow-pink); }
.glow-cyan { color: var(--cyan); text-shadow: var(--glow-cyan); }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 5, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 1px 0 0 rgba(0,240,255,0.15), 0 20px 40px -20px rgba(255,45,146,0.15);
}
.nav::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
  opacity: 0.5;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-logo img { height: 75px; width: auto; max-width: 300px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(255,45,146,0.4)); }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  color: var(--ink-2);
  transition: all 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--cyan); text-shadow: 0 0 12px var(--cyan); }
.nav-links a.active { color: var(--pink); text-shadow: 0 0 12px var(--pink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1px;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.nav-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.2); }
}
.nav-hamburger {
  display: none;
  padding: 9px 14px;
  border: 1px solid var(--border);
  color: var(--pink);
  background: rgba(255,45,146,0.08);
}

/* === HERO === */
.hero {
  padding: 90px 32px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Retro sun */
.hero-sun {
  position: absolute;
  left: 50%;
  top: 150px;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(255,45,146,0.35) 0%,
    rgba(255,45,146,0.15) 25%,
    rgba(184,56,255,0.1) 45%,
    transparent 70%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -12px); }
}

.hero-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 12px;
  background: rgba(255,45,146,0.08);
  border: 1px solid var(--border);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 32px;
  box-shadow: var(--glow-pink);
}
.hero-tag-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
  animation: pulse 1.5s ease-in-out infinite;
}
.hero-h1 {
  position: relative;
  font-family: var(--display);
  font-size: clamp(44px, 8vw, 120px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--ink);
  text-shadow: 0 0 40px rgba(255,45,146,0.3);
}
.hero-h1 .neon-pink {
  color: var(--pink);
  text-shadow:
    0 0 10px var(--pink),
    0 0 24px var(--pink),
    0 0 60px rgba(255,45,146,0.6);
}
.hero-h1 .neon-cyan {
  color: var(--cyan);
  text-shadow:
    0 0 10px var(--cyan),
    0 0 24px var(--cyan),
    0 0 60px rgba(0,240,255,0.6);
}
.hero-sub {
  position: relative;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero-ctas {
  position: relative;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Neon buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 2px solid currentColor;
  background: transparent;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 0.12; }
.btn-pink {
  color: var(--pink);
  box-shadow: inset 0 0 12px rgba(255,45,146,0.1), var(--glow-pink);
}
.btn-pink:hover { color: #fff; background: var(--pink); box-shadow: var(--glow-pink); }
.btn-cyan {
  color: var(--cyan);
  box-shadow: inset 0 0 12px rgba(0,240,255,0.1), var(--glow-cyan);
}
.btn-cyan:hover { color: var(--bg); background: var(--cyan); box-shadow: var(--glow-cyan); }
.btn span { position: relative; }

/* Hero feature pane */
.hero-feature {
  position: relative;
  margin: 60px auto 0;
  max-width: 900px;
  background: var(--card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
  box-shadow:
    0 0 0 1px rgba(0,240,255,0.1),
    0 0 40px rgba(255,45,146,0.15),
    inset 0 1px 0 rgba(0,240,255,0.3);
}
.hero-feature::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
}
.hero-feature::after {
  content: '';
  position: absolute;
  bottom: -2px; left: -2px; right: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--cyan), transparent);
}
.hero-feature-img {
  background: linear-gradient(135deg, rgba(255,45,146,0.1), rgba(0,240,255,0.06));
  border: 1px solid var(--border-2);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
}
.hero-feature-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(255,45,146,0.35)) drop-shadow(0 0 12px rgba(0,240,255,0.25));
}
.hero-feature-img .corner { position: absolute; width: 18px; height: 18px; border: 2px solid var(--cyan); }
.hero-feature-img .corner.tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.hero-feature-img .corner.tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.hero-feature-img .corner.bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.hero-feature-img .corner.br { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.hero-feature-cat {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0,240,255,0.5);
  margin-bottom: 10px;
}
.hero-feature-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--ink);
}
.hero-feature-desc { font-size: 14px; color: var(--ink-2); line-height: 1.6; margin-bottom: 22px; }
.hero-feature-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  text-align: left;
}
.hero-feature-price {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  text-shadow: 0 0 16px rgba(255,45,146,0.5);
  line-height: 1;
}
.hero-feature-price s { font-size: 14px; color: var(--ink-4); font-weight: 400; margin-left: 6px; }
.hero-feature-score {
  margin-left: auto;
  text-align: center;
}
.hero-feature-score-num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 0.9;
  text-shadow: 0 0 20px var(--cyan);
}
.hero-feature-score-label {
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 4px;
}

/* === STATS STRIP === */
.stats {
  padding: 50px 32px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.stat {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 22px;
  position: relative;
  text-align: center;
  transition: all 0.25s;
}
.stat:hover { border-color: var(--pink); box-shadow: var(--glow-pink); transform: translateY(-3px); }
.stat:nth-child(2) { border-color: var(--border-2); }
.stat:nth-child(2):hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.stat:nth-child(3) { border-color: rgba(184,56,255,0.25); }
.stat:nth-child(3):hover { border-color: var(--purple); box-shadow: var(--glow-purple); }
.stat:nth-child(4) { border-color: rgba(255,238,0,0.25); }
.stat:nth-child(4):hover { border-color: var(--yellow); box-shadow: 0 0 24px rgba(255,238,0,0.5); }
.stat-num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.stat:nth-child(1) .stat-num { color: var(--pink); text-shadow: 0 0 14px rgba(255,45,146,0.5); }
.stat:nth-child(2) .stat-num { color: var(--cyan); text-shadow: 0 0 14px rgba(0,240,255,0.5); }
.stat:nth-child(3) .stat-num { color: var(--purple); text-shadow: 0 0 14px rgba(184,56,255,0.5); }
.stat:nth-child(4) .stat-num { color: var(--yellow); text-shadow: 0 0 14px rgba(255,238,0,0.5); }
.stat-label {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* === SECTION HEAD === */
.section-head {
  padding: 80px 32px 28px;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,240,255,0.5);
  margin-bottom: 18px;
}
.section-kicker::before, .section-kicker::after {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title span { color: var(--pink); text-shadow: 0 0 20px var(--pink); }
.section-sub { font-size: 15px; color: var(--ink-2); line-height: 1.6; max-width: 560px; margin: 0 auto; }

/* === PRODUCT GRID === */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 32px 60px;
  max-width: 1240px;
  margin: 0 auto;
}
.card {
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 18px;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
  box-shadow: 0 12px 40px rgba(255,45,146,0.2), inset 0 0 30px rgba(0,240,255,0.05);
}
.card:hover::before { opacity: 1; }
.card-img {
  aspect-ratio: 1/1;
  border: 1px solid var(--border-2);
  background: linear-gradient(135deg, rgba(255,45,146,0.05), rgba(0,240,255,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255,45,146,0.2));
  transition: all 0.35s;
}
.card:hover .card-img img { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(255,45,146,0.35)) drop-shadow(0 0 10px rgba(0,240,255,0.25)); }
.card-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--pink);
  color: var(--pink);
  background: rgba(255,45,146,0.08);
  text-shadow: 0 0 6px rgba(255,45,146,0.5);
}
.card-tag.cyan { border-color: var(--cyan); color: var(--cyan); background: rgba(0,240,255,0.08); text-shadow: 0 0 6px rgba(0,240,255,0.5); }
.card-tag.purple { border-color: var(--purple); color: var(--purple); background: rgba(184,56,255,0.08); text-shadow: 0 0 6px rgba(184,56,255,0.5); }
.card-tag.yellow { border-color: var(--yellow); color: var(--yellow); background: rgba(255,238,0,0.08); text-shadow: 0 0 6px rgba(255,238,0,0.5); }

.card-cat {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
  min-height: 40px;
  color: var(--ink);
}
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.card-price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.card-price s { font-size: 12px; color: var(--ink-4); margin-left: 4px; font-weight: 400; }
.card-score {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,240,255,0.6);
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border: 1px solid var(--cyan);
  background: rgba(0,240,255,0.05);
}

/* === CATEGORY PAGE === */
.breadcrumb {
  padding: 28px 32px 0;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.breadcrumb a { color: var(--cyan); text-shadow: 0 0 6px rgba(0,240,255,0.4); transition: all 0.2s; }
.breadcrumb a:hover { color: var(--pink); text-shadow: 0 0 10px rgba(255,45,146,0.6); }
.breadcrumb .sep { color: var(--ink-4); }

.cat-hero {
  padding: 40px 32px 36px;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,45,146,0.08), transparent 60%);
  pointer-events: none;
}
.cat-hero h1 {
  position: relative;
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--ink);
}
.cat-hero h1 span { color: var(--pink); text-shadow: 0 0 30px var(--pink); }
.cat-hero p { position: relative; font-size: 15px; color: var(--ink-2); max-width: 560px; margin: 0 auto 26px; line-height: 1.6; }

.cat-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 30px 32px 60px;
  max-width: 1240px;
  margin: 0 auto;
}
.filter {
  background: var(--card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  padding: 22px;
  position: sticky;
  top: 90px;
  align-self: start;
  box-shadow: 0 0 40px rgba(255,45,146,0.08);
}
.filter-head {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  text-shadow: 0 0 8px rgba(255,45,146,0.4);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.filter-section { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,45,146,0.12); }
.filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-label {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.filter-chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chip {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--ink-4);
  color: var(--ink-2);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--cyan); color: var(--cyan); }
.filter-chip.active { border-color: var(--pink); color: var(--pink); background: rgba(255,45,146,0.08); text-shadow: 0 0 6px rgba(255,45,146,0.5); }
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 0.2s;
}
.filter-check:hover { color: var(--cyan); }
.filter-check input { accent-color: var(--pink); width: 14px; height: 14px; }
.filter-check .count {
  margin-left: auto;
  font-family: var(--display);
  font-size: 10px;
  color: var(--ink-4);
}
.filter-range { width: 100%; accent-color: var(--pink); height: 2px; }
.filter-range-vals {
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cyan);
  margin-bottom: 10px;
}

.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 14px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.cat-count {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.cat-count em { color: var(--pink); font-style: normal; text-shadow: 0 0 6px rgba(255,45,146,0.4); }
.cat-sort select {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  color: var(--cyan);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 30px 8px 14px;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3e%3cpath d='M2 4l4 4 4-4' stroke='%2300f0ff' stroke-width='1.5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; flex-wrap: wrap; }
.pagination button {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ink-4);
  background: transparent;
  color: var(--ink-2);
  transition: all 0.2s;
}
.pagination button:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: var(--glow-cyan); }
.pagination button.active { border-color: var(--pink); color: var(--pink); background: rgba(255,45,146,0.08); text-shadow: 0 0 8px rgba(255,45,146,0.5); box-shadow: var(--glow-pink); }

/* === REVIEW PAGE === */
.review-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  padding: 40px 32px 60px;
  max-width: 1240px;
  margin: 0 auto;
}
.review-main { min-width: 0; }

.review-hero {
  background: var(--card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  padding: 40px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  box-shadow: 0 0 60px rgba(255,45,146,0.12);
}
.review-hero::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), var(--cyan), transparent);
}
.review-hero-img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, rgba(255,45,146,0.08), rgba(0,240,255,0.05));
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}
.review-hero-img img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 0 24px rgba(255,45,146,0.35)) drop-shadow(0 0 16px rgba(0,240,255,0.25)); }
.review-hero-img .corner { position: absolute; width: 22px; height: 22px; border: 2px solid var(--pink); box-shadow: 0 0 8px var(--pink); }
.review-hero-img .corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.review-hero-img .corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.review-hero-img .corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.review-hero-img .corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.review-hero-img .pill {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: var(--pink);
  color: #fff;
  box-shadow: var(--glow-pink);
}

.review-cat {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0,240,255,0.4);
  margin-bottom: 14px;
}
.review-title {
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--ink);
}
.review-title span { color: var(--pink); text-shadow: 0 0 18px var(--pink); }
.review-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.review-meta strong { color: var(--cyan); font-weight: 700; }
.review-score-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
}
.score-big {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 800;
  line-height: 0.85;
  color: var(--pink);
  text-shadow: 0 0 24px var(--pink), 0 0 48px rgba(255,45,146,0.4);
}
.score-big-denom { font-size: 20px; color: var(--ink-3); text-shadow: none; }
.score-stars { color: var(--yellow); font-size: 18px; letter-spacing: 3px; text-shadow: 0 0 10px rgba(255,238,0,0.5); margin-bottom: 4px; }
.score-stars-label { font-family: var(--display); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.review-price-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--border); }
.review-price-big {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  text-shadow: 0 0 14px rgba(255,45,146,0.4);
  line-height: 1;
}
.review-price-big s { font-size: 16px; color: var(--ink-4); font-weight: 400; margin-left: 6px; }
.review-save-tag {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  background: rgba(0,240,255,0.05);
  text-shadow: 0 0 6px rgba(0,240,255,0.5);
}

/* Content blocks */
.block {
  background: var(--card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  padding: 32px 36px;
  margin-bottom: 20px;
  position: relative;
}
.block::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 60px; height: 2px;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}
.block h2 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.block h2 .icon {
  width: 36px; height: 36px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 10px rgba(0,240,255,0.3), inset 0 0 10px rgba(0,240,255,0.1);
  flex-shrink: 0;
}
.block h2 span { color: var(--pink); text-shadow: 0 0 14px var(--pink); }
.block p { font-size: 15px; line-height: 1.75; color: var(--ink-2); margin-bottom: 14px; }
.block p:last-child { margin-bottom: 0; }
.block p strong { color: var(--ink); font-weight: 600; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
  background: linear-gradient(135deg, rgba(255,45,146,0.05), rgba(0,240,255,0.03));
  border: 1px solid var(--border);
  padding: 22px;
  text-align: center;
  transition: all 0.3s;
}
.feature:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  font-size: 24px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  margin-bottom: 12px;
  box-shadow: var(--glow-cyan);
}
.feature-title { font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; color: var(--ink); }
.feature-desc { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* Scores */
.scores { display: flex; flex-direction: column; gap: 18px; }
.score-row { display: grid; grid-template-columns: 140px 1fr 50px; gap: 16px; align-items: center; }
.score-label { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); }
.score-bar { height: 6px; background: rgba(0,240,255,0.08); border: 1px solid rgba(0,240,255,0.15); position: relative; }
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 12px rgba(255,45,146,0.5);
}
.score-val {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--pink);
  text-align: right;
  text-shadow: 0 0 10px var(--pink);
}

/* Pros / Cons */
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.verdict-col {
  padding: 26px;
  border: 1px solid var(--border);
  background: rgba(21, 12, 58, 0.4);
  position: relative;
}
.verdict-col.wins { border-color: rgba(0,240,255,0.3); box-shadow: inset 0 0 40px rgba(0,240,255,0.04); }
.verdict-col.weak { border-color: rgba(255,45,146,0.3); box-shadow: inset 0 0 40px rgba(255,45,146,0.04); }
.verdict-col h3 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.verdict-col.wins h3 { color: var(--cyan); text-shadow: 0 0 10px rgba(0,240,255,0.5); }
.verdict-col.weak h3 { color: var(--pink); text-shadow: 0 0 10px rgba(255,45,146,0.5); }
.verdict-col ul li {
  font-size: 13px;
  color: var(--ink-2);
  padding: 10px 0 10px 24px;
  position: relative;
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}
.verdict-col ul li:last-child { border-bottom: none; }
.verdict-col.wins ul li::before {
  content: '>';
  position: absolute; left: 0;
  color: var(--cyan);
  font-family: var(--display);
  font-weight: 800;
  text-shadow: 0 0 6px var(--cyan);
}
.verdict-col.weak ul li::before {
  content: '!';
  position: absolute; left: 0;
  color: var(--pink);
  font-family: var(--display);
  font-weight: 800;
  text-shadow: 0 0 6px var(--pink);
}

/* Specs */
.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 0; font-size: 13px; vertical-align: top; }
.specs td:first-child {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  width: 42%;
  font-weight: 600;
}
.specs td:last-child { font-family: var(--display); font-size: 14px; color: var(--cyan); text-shadow: 0 0 4px rgba(0,240,255,0.3); font-weight: 600; }

/* FAQ */
.faq-item { border: 1px solid var(--border); margin-bottom: 10px; background: rgba(21, 12, 58, 0.3); transition: all 0.25s; }
.faq-item:hover { border-color: var(--cyan); }
.faq-item.open { border-color: var(--pink); box-shadow: 0 0 18px rgba(255,45,146,0.15); }
.faq-q {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
  gap: 14px;
}
.faq-q-icon {
  font-family: var(--display);
  width: 28px; height: 28px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  box-shadow: 0 0 8px rgba(0,240,255,0.3);
}
.faq-item.open .faq-q-icon { background: var(--pink); color: var(--bg); border-color: var(--pink); box-shadow: var(--glow-pink); transform: rotate(45deg); }
.faq-a { padding: 0 22px 20px; font-size: 13px; line-height: 1.7; color: var(--ink-2); display: none; }
.faq-item.open .faq-a { display: block; }

/* Reader reviews */
.user-reviews { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.user-review {
  background: rgba(21, 12, 58, 0.5);
  border: 1px solid var(--border);
  padding: 22px;
  transition: all 0.25s;
}
.user-review:hover { border-color: var(--cyan); box-shadow: 0 0 20px rgba(0,240,255,0.15); }
.user-review-stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; text-shadow: 0 0 8px rgba(255,238,0,0.5); margin-bottom: 12px; }
.user-review-text { font-size: 13px; line-height: 1.65; color: var(--ink-2); margin-bottom: 14px; }
.user-review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.user-review-name { color: var(--cyan); font-weight: 700; }

/* Verdict banner */
.verdict-banner {
  background: linear-gradient(135deg, rgba(255,45,146,0.08), rgba(0,240,255,0.05));
  border: 1px solid var(--pink);
  padding: 56px 40px;
  margin: 28px 0;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(255,45,146,0.2), inset 0 0 80px rgba(0,240,255,0.05);
}
.verdict-banner::before {
  content: '';
  position: absolute;
  top: -2px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), var(--cyan), transparent);
}
.verdict-banner::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--cyan), var(--pink), transparent);
}
.verdict-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0,240,255,0.5);
  margin-bottom: 22px;
}
.verdict-score-big {
  font-family: var(--display);
  font-size: 112px;
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--pink);
  text-shadow:
    0 0 20px var(--pink),
    0 0 48px var(--pink),
    0 0 96px rgba(255,45,146,0.5);
  margin-bottom: 8px;
}
.verdict-score-big sub { font-size: 32px; color: var(--ink-3); text-shadow: none; vertical-align: baseline; }
.verdict-stars { font-size: 28px; color: var(--yellow); text-shadow: 0 0 14px rgba(255,238,0,0.5); letter-spacing: 4px; margin-bottom: 18px; }
.verdict-banner h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}
.verdict-banner h2 span { color: var(--cyan); text-shadow: 0 0 14px var(--cyan); }
.verdict-banner p { font-size: 15px; color: var(--ink-2); line-height: 1.65; max-width: 540px; margin: 0 auto 28px; }

/* Sidebar */
.side { position: sticky; top: 90px; align-self: start; display: flex; flex-direction: column; gap: 20px; }
.side-buy {
  background: var(--card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--pink);
  padding: 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--glow-pink);
}
.side-buy::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--cyan));
}
.side-price {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  line-height: 0.9;
  color: var(--ink);
  text-shadow: 0 0 20px rgba(255,45,146,0.5);
  margin-bottom: 4px;
}
.side-price s { font-size: 16px; color: var(--ink-4); margin-left: 8px; font-weight: 400; text-shadow: none; }
.side-save {
  display: inline-block;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  text-shadow: 0 0 6px rgba(0,240,255,0.4);
  margin-bottom: 22px;
}
.side-cta {
  display: block;
  width: 100%;
  background: var(--pink);
  color: #fff;
  border: 1px solid var(--pink);
  padding: 16px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 0 24px rgba(255,45,146,0.5), inset 0 0 12px rgba(255,255,255,0.1);
  transition: all 0.25s;
  margin-bottom: 12px;
}
.side-cta:hover { background: transparent; color: var(--pink); box-shadow: var(--glow-pink); text-shadow: 0 0 8px var(--pink); }
.side-note { font-family: var(--display); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); padding-top: 14px; border-top: 1px solid var(--border); margin-top: 12px; line-height: 1.6; }

.side-related {
  background: var(--card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  padding: 22px;
}
.side-related h4 {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 6px rgba(0,240,255,0.4);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.side-related-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.side-related-item:last-child { border-bottom: none; }
.side-related-item img {
  width: 52px; height: 52px;
  object-fit: contain;
  background: rgba(0,240,255,0.04);
  border: 1px solid var(--border-2);
  padding: 4px;
}
.side-related-title { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.3; margin-bottom: 4px; color: var(--ink); }
.side-related-price { font-family: var(--display); font-size: 12px; font-weight: 700; color: var(--pink); text-shadow: 0 0 6px rgba(255,45,146,0.4); }
.side-related-price em { color: var(--cyan); font-style: normal; margin-left: 6px; text-shadow: 0 0 6px rgba(0,240,255,0.4); }

/* === FOOTER === */
.footer {
  padding: 80px 32px 36px;
  margin-top: 80px;
  border-top: 1px solid var(--border);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 30%; right: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), var(--cyan), transparent);
}
.footer-mega {
  font-family: var(--display);
  font-size: clamp(48px, 10vw, 140px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 56px;
  text-align: center;
}
.footer-mega span { color: var(--pink); text-shadow: 0 0 28px var(--pink); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  margin-bottom: 40px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.footer-col p { font-size: 13px; color: var(--ink-2); line-height: 1.7; }
.footer-col-title {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0,240,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--ink-2); transition: all 0.2s; }
.footer-col ul li a:hover { color: var(--pink); text-shadow: 0 0 6px rgba(255,45,146,0.5); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
}
.footer-bottom a { margin-left: 18px; color: var(--ink-3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--cyan); text-shadow: 0 0 6px var(--cyan); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { padding: 70px 24px 30px; }
  .hero-feature { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 40px 24px 10px; }
  .grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px 50px; }
  .section-head { padding: 60px 24px 22px; }
  .cat-layout { grid-template-columns: 1fr; padding: 24px 24px 50px; }
  .filter { position: static; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .review-wrap { grid-template-columns: 1fr; padding: 30px 24px 50px; }
  .side { position: static; }
  .review-hero { grid-template-columns: 1fr; padding: 28px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .user-reviews { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 8px 16px; }
  .nav-logo img { height: 70px; max-width: 50vw; }
  .nav-links { display: none; }
  .nav-status { display: none; }
  .nav-hamburger { display: inline-flex; }
  .hero { padding: 56px 16px 24px; }
  .hero-sun { width: 400px; height: 400px; top: 100px; }
  .hero-h1 { font-size: 42px; }
  .hero-sub { font-size: 15px; }
  .hero-feature { padding: 22px; }
  .hero-feature-title { font-size: 18px; }
  .hero-feature-score-num { font-size: 32px; }
  .stats { padding: 36px 16px 10px; gap: 12px; }
  .stat { padding: 18px; }
  .stat-num { font-size: 28px; }
  .section-head { padding: 50px 16px 20px; }
  .section-title { font-size: 30px; }
  .grid { grid-template-columns: 1fr 1fr; padding: 0 16px 40px; gap: 14px; }
  .card { padding: 12px; }
  .card-title { font-size: 12px; min-height: 36px; }
  .card-price { font-size: 18px; }
  .card-score { font-size: 12px; padding: 3px 8px; }
  .breadcrumb { padding: 22px 16px 0; }
  .cat-hero { padding: 30px 16px 26px; }
  .cat-layout { padding: 22px 16px 50px; gap: 20px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat-toolbar { flex-direction: column; align-items: flex-start; padding: 12px 16px; }
  .review-wrap { padding: 26px 16px 50px; gap: 24px; }
  .review-title { font-size: 28px; }
  .score-big { font-size: 48px; }
  .review-price-big { font-size: 28px; }
  .block { padding: 22px; }
  .block h2 { font-size: 16px; }
  .features { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .verdict-banner { padding: 40px 22px; }
  .verdict-score-big { font-size: 72px; }
  .verdict-banner h2 { font-size: 22px; }
  .score-row { grid-template-columns: 100px 1fr 42px; gap: 12px; }
  .footer { padding: 56px 16px 24px; }
  .footer-mega { font-size: 48px; margin-bottom: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin: 0 10px; }
}
@media (max-width: 480px) {
  .grid, .cat-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
:root{--gallery-border:rgba(255,0,102,0.3);--gallery-active:#ff0066;--gallery-glow:rgba(255,0,102,0.3)}

/* Trust Badges - Synthwave */
.trust-badges { gap: 10px; margin: 16px 0 20px; }
.trust-badge { background: var(--bg-3); border: 1px solid var(--border); padding: 12px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--cyan); box-shadow: 0 0 12px rgba(255,45,146,0.15); }

/* Lede Features - Synthwave */
.lede-features { gap: 6px; margin: 0 0 20px; }
.lede-feature { background: var(--bg-2); border: 1px solid var(--border-2); padding: 12px 18px; border-radius: 6px; font-size: 14px; color: var(--ink-2); border-left: 3px solid var(--pink); }

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