/* ============================================================
   DESIGN 3 — Neo-Brutalist / Playful Pop
   Thick black borders, offset shadows, pastel colors
   ============================================================ */

:root {
  --bg:       #fffcf7;
  --bg-2:     #fff8eb;
  --ink:      #0a0a0a;
  --ink-2:    #3a3a3a;
  --ink-3:    #6b6b6b;
  --yellow:   #fde047;
  --yellow-d: #facc15;
  --pink:     #fbcfe8;
  --pink-d:   #ec4899;
  --blue:     #bfdbfe;
  --blue-d:   #3b82f6;
  --green:    #bbf7d0;
  --green-d:  #22c55e;
  --orange:   #fed7aa;
  --orange-d: #f97316;
  --purple:   #ddd6fe;
  --purple-d: #8b5cf6;
  --red-d:    #dc2626;
  --display:  'Space Grotesk', 'Inter', system-ui, sans-serif;
  --sans:     'Inter', system-ui, sans-serif;
  --border:   3px solid #0a0a0a;
  --border-thin: 2px solid #0a0a0a;
  --shadow:   6px 6px 0 #0a0a0a;
  --shadow-lg:10px 10px 0 #0a0a0a;
  --shadow-sm:4px 4px 0 #0a0a0a;
}

*, *::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: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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; }

/* Diagonal stripe background pattern on body edges */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(253,224,71,0.15), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(236,72,153,0.1), transparent 40%);
  z-index: 0;
}
.wrap { position: relative; z-index: 1; }

.display { font-family: var(--display); font-weight: 700; letter-spacing: -0.025em; }

/* === TOP BANNER === */
.top-banner {
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 11px 24px;
  overflow: hidden;
  border-bottom: var(--border);
}
.top-banner-scroll {
  display: flex;
  gap: 40px;
  animation: slide 30s linear infinite;
  white-space: nowrap;
}
.top-banner-scroll span::before { content: '★ '; }
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: var(--border);
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.nav-logo img { height: 75px; width: auto; max-width: 300px; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 16px;
  border: var(--border-thin);
  border-radius: 100px;
  background: var(--bg);
  transition: all 0.15s;
}
.nav-links a:hover { background: var(--yellow); transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--ink); }
.nav-links a.active { background: var(--ink); color: var(--yellow); }
.nav-cta {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  background: var(--pink-d);
  color: #fff;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); color: #fff; }
.nav-cta:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--ink); }
.nav-hamburger { display: none; padding: 10px 14px; border: var(--border); font-size: 20px; background: var(--yellow); }

/* === HERO === */
.hero {
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
  border-bottom: var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  border: var(--border);
  padding: 8px 18px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  transform: rotate(-1deg);
}
.hero-h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero-h1 mark {
  background: var(--pink);
  padding: 0 14px;
  border: var(--border);
  display: inline-block;
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}
.hero-h1 .underline {
  position: relative;
  display: inline-block;
}
.hero-h1 .underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 12px;
  background: var(--blue);
  z-index: -1;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border: var(--border);
  box-shadow: var(--shadow);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.btn:active { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--ink); }
.btn-yellow { background: var(--yellow); }
.btn-pink   { background: var(--pink-d); color: #fff; }
.btn-pink:hover { color: #fff; }
.btn-white  { background: var(--bg); }
.btn-ink    { background: var(--ink); color: var(--yellow); }
.btn-ink:hover { color: var(--yellow); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--blue);
  border: var(--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  transform: rotate(2deg);
}
.hero-visual img { max-width: 100%; max-height: 100%; object-fit: contain; }
.hero-visual .sticker {
  position: absolute;
  top: -28px;
  right: -28px;
  background: var(--yellow);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  line-height: 1;
  transform: rotate(12deg);
  animation: wiggle 3s ease-in-out infinite;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(12deg); }
  50%      { transform: rotate(16deg); }
}
.hero-visual .sticker-num { font-size: 32px; }
.hero-visual .sticker-max { font-size: 11px; text-transform: uppercase; }
.hero-visual .sticker-label { font-size: 9px; text-transform: uppercase; margin-top: 2px; }
.hero-visual .price-tag {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--pink-d);
  color: #fff;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 10px 20px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  transform: rotate(-4deg);
}

/* === STATS STRIP === */
.stats {
  background: var(--yellow);
  border-bottom: var(--border);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  text-align: center;
  padding: 0 10px;
  border-right: 2px solid var(--ink);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }

/* === SECTION HEADER === */
.section-head {
  padding: 72px 32px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.section-title mark {
  background: var(--yellow);
  padding: 0 10px;
  border: var(--border-thin);
}
.section-sub { font-size: 15px; color: var(--ink-2); margin-top: 10px; max-width: 520px; }

/* === PRODUCT GRID === */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 32px 60px;
}
.card {
  background: var(--bg);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 22px;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card:hover { transform: translate(-4px,-4px); box-shadow: 10px 10px 0 var(--ink); }
.card-pink   { background: var(--pink); }
.card-blue   { background: var(--blue); }
.card-yellow { background: var(--yellow); }
.card-green  { background: var(--green); }
.card-orange { background: var(--orange); }
.card-purple { background: var(--purple); }

.card-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border: var(--border);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(4deg);
  z-index: 2;
}
.card-badge.pink  { background: var(--pink-d); color: #fff; }
.card-badge.blue  { background: var(--blue-d); color: #fff; }
.card-badge.green { background: var(--green-d); color: #fff; }
.card-badge.red   { background: var(--red-d); color: #fff; }

.card-img {
  background: var(--bg);
  border: var(--border-thin);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin-bottom: 18px;
  overflow: hidden;
}
.card-img img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.3s; }
.card:hover .card-img img { transform: scale(1.05) rotate(-2deg); }

.card-cat {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--display);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.card-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  min-height: 44px;
}
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  margin-top: auto;
}
.card-price {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.card-price s { font-size: 14px; color: var(--ink-3); margin-left: 6px; font-weight: 500; }
.card-score {
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-score::before { content: '★'; }

/* === CATEGORY PAGE === */
.breadcrumb {
  padding: 22px 32px 0;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { transition: color 0.15s; }
.breadcrumb a:hover { color: var(--pink-d); }
.breadcrumb .sep { color: var(--ink-3); }

.cat-hero {
  padding: 40px 32px 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  border-bottom: var(--border);
  background: linear-gradient(180deg, var(--yellow) 0%, var(--bg) 100%);
}
.cat-hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.cat-hero h1 mark {
  background: var(--pink);
  border: var(--border);
  padding: 0 14px;
  display: inline-block;
  transform: rotate(-1deg);
  box-shadow: var(--shadow-sm);
}
.cat-hero p {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 520px;
  margin-top: 18px;
  line-height: 1.6;
}
.cat-hero-count {
  background: var(--ink);
  color: var(--yellow);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 24px 32px;
  text-align: center;
  transform: rotate(2deg);
}
.cat-hero-count-num { font-family: var(--display); font-size: 56px; font-weight: 800; line-height: 1; }
.cat-hero-count-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

.cat-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px 32px 60px;
}
.filter {
  background: var(--bg);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 24px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.filter-head {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.filter-section { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 2px dashed var(--ink); }
.filter-section:last-child { border-bottom: none; margin-bottom: 0; }
.filter-label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.filter-check input { accent-color: var(--pink-d); width: 16px; height: 16px; }
.filter-check .count {
  margin-left: auto;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  padding: 2px 7px;
}
.filter-chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chip {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 2px solid var(--ink);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-chip:hover { background: var(--yellow); }
.filter-chip.active { background: var(--ink); color: var(--yellow); }
.filter-range { width: 100%; accent-color: var(--pink-d); }
.filter-range-vals {
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}

.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 14px 18px;
  background: var(--bg);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  gap: 12px;
}
.cat-count {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cat-count em { background: var(--pink); padding: 2px 8px; border: 1.5px solid var(--ink); font-style: normal; }
.cat-sort select {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 32px 9px 14px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  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='%230a0a0a' stroke-width='2'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; flex-wrap: wrap; }
.pagination button {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: var(--border-thin);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
}
.pagination button:hover { background: var(--yellow); transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }
.pagination button.active { background: var(--pink-d); color: #fff; }

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

.review-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 24px 0 28px;
}
.review-title mark {
  background: var(--yellow);
  padding: 0 12px;
  border: var(--border);
  display: inline-block;
  transform: rotate(-1deg);
}
.review-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 13px;
}
.review-meta span {
  background: var(--bg);
  border: 2px solid var(--ink);
  padding: 6px 12px;
  font-weight: 500;
}
.review-meta strong { font-weight: 700; }

.review-feature {
  background: var(--blue);
  border: var(--border);
  box-shadow: var(--shadow-lg);
  padding: 50px;
  margin-bottom: 44px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 360px;
}
.review-feature img { max-width: 100%; max-height: 320px; object-fit: contain; margin: 0 auto; }
.review-feature-right { text-align: center; }
.review-feature-score {
  font-family: var(--display);
  font-size: 160px;
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
}
.review-feature-score sub { font-size: 48px; color: var(--ink-3); vertical-align: baseline; }
.review-feature-stars { font-size: 32px; letter-spacing: 6px; color: var(--ink); margin: 12px 0; }
.review-feature-verdict {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--ink);
  color: var(--yellow);
  padding: 8px 18px;
  display: inline-block;
}
.review-feature .sticker {
  position: absolute;
  top: -28px;
  left: -28px;
  background: var(--pink-d);
  color: #fff;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  transform: rotate(-10deg);
  animation: wiggle 3s ease-in-out infinite;
}

/* Content blocks */
.block {
  background: var(--bg);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 32px;
  margin-bottom: 24px;
}
.block-yellow { background: var(--yellow); }
.block-pink   { background: var(--pink); }
.block-blue   { background: var(--blue); }
.block-green  { background: var(--green); }
.block h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.block h2 mark { background: var(--yellow); border: 2px solid var(--ink); padding: 0 8px; }
.block-yellow h2 mark { background: var(--pink); }
.block p { font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
.block p:last-child { margin-bottom: 0; }
.block p strong { background: var(--yellow); padding: 0 4px; font-weight: 700; }

/* Key features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
  background: var(--bg);
  border: var(--border-thin);
  padding: 20px;
  text-align: left;
  transition: all 0.2s;
}
.feature:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }
.feature-icon {
  display: inline-block;
  background: var(--yellow);
  border: 2px solid var(--ink);
  width: 48px; height: 48px;
  font-size: 26px;
  text-align: center;
  line-height: 44px;
  margin-bottom: 12px;
}
.feature-title { font-family: var(--display); font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.feature-desc { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* Scores */
.scores { display: flex; flex-direction: column; gap: 16px; }
.score-row { display: grid; grid-template-columns: 140px 1fr 60px; gap: 16px; align-items: center; }
.score-label { font-family: var(--display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.score-bar {
  height: 16px;
  background: var(--bg);
  border: 2px solid var(--ink);
  overflow: hidden;
  position: relative;
}
.score-bar-fill {
  height: 100%;
  background: var(--yellow);
  border-right: 2px solid var(--ink);
  box-sizing: content-box;
  margin-left: -2px;
  margin-top: -2px;
  margin-bottom: -2px;
}
.score-bar-fill.pink { background: var(--pink-d); }
.score-val {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  text-align: right;
}

/* Pros / cons */
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.verdict-col {
  padding: 28px;
  border: var(--border);
  box-shadow: var(--shadow);
}
.verdict-col.wins { background: var(--green); }
.verdict-col.weak { background: var(--pink); }
.verdict-col h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.verdict-col ul li {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0 10px 30px;
  position: relative;
  line-height: 1.5;
  border-bottom: 2px dashed var(--ink);
}
.verdict-col ul li:last-child { border-bottom: none; }
.verdict-col.wins ul li::before {
  content: '✓';
  position: absolute; left: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  background: var(--bg);
  width: 22px; height: 22px;
  border: 2px solid var(--ink);
  text-align: center;
  line-height: 18px;
}
.verdict-col.weak ul li::before {
  content: '✕';
  position: absolute; left: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  background: var(--bg);
  width: 22px; height: 22px;
  border: 2px solid var(--ink);
  text-align: center;
  line-height: 18px;
}

/* Specs */
.specs { width: 100%; border-collapse: collapse; }
.specs tr { border-bottom: 2px solid var(--ink); }
.specs tr:first-child { border-top: 2px solid var(--ink); }
.specs td { padding: 14px 0; font-size: 14px; font-weight: 500; }
.specs td:first-child {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  width: 42%;
}
.specs tr:nth-child(even) td { background: var(--yellow); padding-left: 10px; padding-right: 10px; }

/* FAQ */
.faq-item {
  border: var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  background: var(--bg);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--yellow); }
.faq-q-icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--ink);
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  transition: all 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q-icon { background: var(--pink-d); color: #fff; transform: rotate(45deg); }
.faq-item.open .faq-q { background: var(--yellow); }
.faq-a { padding: 0 22px 20px; font-size: 14px; 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: 18px; }
.user-review {
  background: var(--bg);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: all 0.2s;
}
.user-review:nth-child(2) { background: var(--yellow); }
.user-review:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.user-review-stars { color: var(--pink-d); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.user-review-text { font-size: 14px; line-height: 1.6; font-weight: 500; margin-bottom: 14px; }
.user-review-meta { font-family: var(--display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding-top: 10px; border-top: 2px solid var(--ink); }

/* Big verdict banner */
.verdict-banner {
  background: var(--ink);
  color: var(--bg);
  border: var(--border);
  box-shadow: var(--shadow-lg);
  padding: 60px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.verdict-banner::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px dashed var(--yellow);
  pointer-events: none;
}
.verdict-banner-score {
  font-family: var(--display);
  font-size: 180px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 0.85;
  letter-spacing: -0.05em;
  position: relative;
}
.verdict-banner-score sub { font-size: 48px; color: var(--ink-3); vertical-align: baseline; }
.verdict-banner-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 2px solid var(--yellow);
  margin-bottom: 18px;
}
.verdict-banner h2 {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.verdict-banner p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 28px; max-width: 460px; line-height: 1.6; }

/* Sidebar */
.side { position: sticky; top: 100px; align-self: start; display: flex; flex-direction: column; gap: 22px; }
.side-buy {
  background: var(--yellow);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
}
.side-buy-price { font-family: var(--display); font-size: 48px; font-weight: 800; line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 2px; }
.side-buy-old { font-size: 18px; color: var(--ink-3); text-decoration: line-through; margin-left: 8px; font-weight: 500; }
.side-buy-save {
  display: inline-block;
  background: var(--pink-d);
  color: #fff;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  margin-bottom: 20px;
}
.side-buy-cta {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--ink);
  color: var(--yellow);
  border: var(--border);
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  transition: all 0.15s;
  margin-bottom: 14px;
}
.side-buy-cta:hover { background: var(--pink-d); color: #fff; transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }
.side-buy-note { font-size: 12px; font-weight: 500; text-align: center; line-height: 1.5; padding-top: 12px; border-top: 2px dashed var(--ink); }

.side-related {
  background: var(--bg);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 22px;
}
.side-related h4 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}
.side-related-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 2px dashed var(--ink);
  align-items: center;
}
.side-related-item:last-child { border-bottom: none; }
.side-related-item img {
  width: 60px; height: 60px;
  object-fit: contain;
  background: var(--pink);
  border: 2px solid var(--ink);
  padding: 4px;
}
.side-related-title { font-family: var(--display); font-size: 13px; font-weight: 700; line-height: 1.3; }
.side-related-price { font-family: var(--display); font-size: 13px; font-weight: 800; }
.side-related-price em { background: var(--yellow); padding: 0 4px; font-style: normal; border: 1.5px solid var(--ink); }

/* === FOOTER === */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 72px 32px 32px;
  margin-top: 72px;
  border-top: var(--border);
}
.footer-mega {
  font-family: var(--display);
  font-size: clamp(56px, 10vw, 150px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin-bottom: 50px;
  color: var(--bg);
}
.footer-mega mark { background: var(--yellow); color: var(--ink); padding: 0 16px; border: var(--border); display: inline-block; transform: rotate(-1deg); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 50px;
  border-top: 3px solid var(--yellow);
  margin-bottom: 40px;
}
.footer-col-title { font-family: var(--display); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--yellow); margin-bottom: 18px; }
.footer-col p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.7); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 2px dashed rgba(255,255,255,0.2);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { margin-left: 18px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-bottom a:hover { color: var(--yellow); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { padding: 56px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .stats { padding: 24px; }
  .grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px 50px; }
  .section-head { padding: 56px 24px 24px; }
  .cat-layout { grid-template-columns: 1fr; gap: 24px; padding: 30px 24px 50px; }
  .filter { position: static; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .review-wrap { grid-template-columns: 1fr; padding: 0 24px 50px; gap: 32px; }
  .side { position: static; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .review-feature { grid-template-columns: 1fr; padding: 36px; }
  .review-feature-score { font-size: 120px; }
  .user-reviews { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .top-banner { padding: 10px 16px; font-size: 11px; }
  .nav { padding: 14px 16px; gap: 12px; }
  .nav-logo img { height: 70px; max-width: 50vw; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: inline-flex; }
  .hero { padding: 44px 16px; }
  .hero-h1 { font-size: 42px; }
  .hero-sub { font-size: 15px; }
  .hero-visual { max-width: none; }
  .hero-visual .sticker { width: 88px; height: 88px; top: -18px; right: -18px; }
  .hero-visual .sticker-num { font-size: 24px; }
  .stats { grid-template-columns: 1fr 1fr; padding: 20px 16px; gap: 18px 12px; }
  .stat { border-right: none; padding: 8px 0; border-bottom: 2px solid var(--ink); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num { font-size: 30px; }
  .section-head { padding: 50px 16px 22px; }
  .section-title { font-size: 34px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 16px 44px; }
  .card { padding: 14px; }
  .card-title { font-size: 13px; min-height: 36px; }
  .card-price { font-size: 18px; }
  .card-score { font-size: 11px; padding: 4px 8px; }
  .breadcrumb { padding: 18px 16px 0; }
  .cat-hero { grid-template-columns: 1fr; padding: 30px 16px 36px; }
  .cat-hero h1 { font-size: 42px; }
  .cat-hero-count { align-self: flex-start; padding: 16px 24px; }
  .cat-hero-count-num { font-size: 40px; }
  .cat-layout { padding: 24px 16px 50px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat-toolbar { padding: 12px 14px; flex-direction: column; align-items: flex-start; }
  .review-wrap { padding: 0 16px 50px; }
  .review-title { font-size: 38px; }
  .review-feature { padding: 28px; min-height: auto; }
  .review-feature-score { font-size: 88px; }
  .review-feature-score sub { font-size: 28px; }
  .review-feature .sticker { width: 88px; height: 88px; top: -18px; left: -18px; font-size: 11px; }
  .block { padding: 22px; }
  .block h2 { font-size: 22px; }
  .features { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .verdict-banner { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; }
  .verdict-banner-score { font-size: 120px; }
  .verdict-banner h2 { font-size: 28px; }
  .score-row { grid-template-columns: 100px 1fr 46px; gap: 10px; }
  .score-label { font-size: 11px; }
  .score-val { font-size: 16px; }
  .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) {
  .cat-grid, .grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 36px; }
  .review-title { font-size: 30px; }
}
:root{--gallery-border:#000;--gallery-active:#ff6b9d;--gallery-glow:rgba(255,107,157,0.25)}

/* Trust Badges - Neo Brutalist */
.trust-badges { gap: 10px; margin: 20px 0 28px; }
.trust-badge { background: var(--yellow); border: var(--border); box-shadow: var(--shadow); padding: 14px 20px; border-radius: 0; font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0.04em; color: var(--ink); }

/* Lede Features - Neo Brutalist */
.lede-features { gap: 8px; margin: 0 0 28px; }
.lede-feature { background: var(--bg); border: var(--border); box-shadow: 3px 3px 0 var(--ink); border-radius: 0; padding: 14px 20px; color: var(--ink-3); font-size: 14px; }

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