@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,400;1,700&family=Barlow:wght@400;500;600&display=swap');

:root {
  --primary:      #C8F542;
  --primary-dark: #9BBF1E;
  --primary-rgb:  200,245,66;
  --accent:       #0D0D0D;
  --accent-2:     #E8322C;
  --bg:           #F0EFEB;
  --bg-card:      #FFFFFF;
  --text:         #0D0D0D;
  --text-muted:   #636363;
  --border:       #D8D6D0;
  --font-heading: 'Barlow Condensed', Impact, Arial Narrow, sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --r:  6px;
  --r-sm: 3px;
  --shadow:    0 2px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.22);
  --t: .18s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; border: none; background: none; outline: none; }
button { cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(1.9); }
}
@keyframes floatNote {
  0%   { opacity: 0; transform: translateY(0); }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-80px); }
}
@keyframes drawLine {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes pulse {
  0%, 100% { opacity: .5; }
  50%       { opacity: 1; }
}
@keyframes bgPan {
  0%   { transform: scale(1.06) translateX(0); }
  50%  { transform: scale(1.10) translateX(-2%); }
  100% { transform: scale(1.06) translateX(0); }
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}
@keyframes flashBorder {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,245,66,0); }
  50%      { box-shadow: 0 0 0 3px rgba(200,245,66,.6); }
}
@keyframes slideInLeft {
  from { opacity:0; transform:translateX(-30px); }
  to   { opacity:1; transform:translateX(0); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal, .reveal-left, .reveal-scale {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal-left  { transform: translateX(-22px); }
.reveal-scale { transform: scale(.96); }
.reveal.visible, .reveal-left.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.site-with-sidebar {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.1rem;
}

.site-with-sidebar > main {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.page-sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
}

@media (max-width: 1023px) {
  .site-with-sidebar { flex-direction: column; }
  .page-sidebar { width: 100%; position: static; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--accent);
  border-bottom: 2px solid rgba(200,245,66,.15);
  transition: box-shadow var(--t);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
  border-bottom-color: var(--primary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
}

.site-logo::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.site-logo img {
  height: 36px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 6px;
  transition: background var(--t);
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255,255,255,.15); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  padding: .4rem .8rem;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: .8rem; right: .8rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: left;
}

.nav-menu a:hover { color: #fff; }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--primary); }
.nav-menu a.active::after { transform: scaleX(1); }

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--accent);
    border-bottom: 2px solid var(--primary);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .75rem 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 199;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    padding: .85rem .75rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,.7);
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-menu a::after { display: none; }
  .nav-menu a.active, .nav-menu a:hover { color: var(--primary); background: rgba(200,245,66,.05); }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--accent);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(200,245,66,.3);
  border-radius: var(--r);
  padding: .85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .82rem;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  flex-wrap: wrap;
}
#cookie-banner a { color: var(--primary); text-decoration: underline; }
#cookie-accept {
  background: var(--primary);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  white-space: nowrap;
}
#cookie-accept:hover { background: var(--primary-dark); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 520px;
  background: var(--accent);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Diagonal grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(200,245,66,.03) 40px,
      rgba(200,245,66,.03) 42px
    );
  pointer-events: none;
}

/* Bottom diagonal cut */
.hero::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 0);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .08;
  animation: bgPan 20s ease-in-out infinite;
}

.note-float {
  position: absolute;
  animation: floatNote 5s ease-in-out infinite;
  pointer-events: none;
  font-size: 1.5rem;
  user-select: none;
}
.note-float:nth-child(2) { animation-delay: 1.4s; }
.note-float:nth-child(3) { animation-delay: 2.8s; }
.note-float:nth-child(4) { animation-delay: .7s; }
.note-float:nth-child(5) { animation-delay: 2.1s; }

.waveform-bar {
  position: absolute;
  bottom: 4rem;
  right: 2.5rem;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.waveform-bar span {
  display: block;
  width: 3px;
  background: var(--primary);
  border-radius: 2px;
  opacity: .5;
  transform-origin: bottom;
  animation: wave 1.4s ease-in-out infinite;
}
.waveform-bar span:nth-child(1)  { height: 14px; animation-delay: 0s; }
.waveform-bar span:nth-child(2)  { height: 24px; animation-delay: .12s; }
.waveform-bar span:nth-child(3)  { height: 18px; animation-delay: .24s; }
.waveform-bar span:nth-child(4)  { height: 32px; animation-delay: .18s; }
.waveform-bar span:nth-child(5)  { height: 22px; animation-delay: .06s; }
.waveform-bar span:nth-child(6)  { height: 16px; animation-delay: .30s; }
.waveform-bar span:nth-child(7)  { height: 26px; animation-delay: .36s; }
.waveform-bar span:nth-child(8)  { height: 12px; animation-delay: .12s; }

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 2rem 5rem;
  max-width: 700px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-inner h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: .98;
  color: #fff;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stat { display: flex; flex-direction: column; gap: .1rem; }

.hero-stat .sn {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.hero-stat .sl {
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.pencil-underline {
  display: inline;
  position: relative;
}
.pencil-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 3px;
  width: 0;
  background: var(--primary);
  border-radius: 2px;
  animation: drawLine .9s ease forwards .5s;
}

/* ============================================================
   PRODUCT GRID & CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.1rem;
}

@media (min-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--bg-card);
  border-radius: var(--r);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  cursor: pointer;
}

/* top-left accent stripe */
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 60px;
  background: var(--primary);
  transition: height var(--t);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.card:hover::after {
  height: 100%;
}

.card-img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.07); }

.card-badge-row {
  position: absolute;
  top: .65rem;
  left: .65rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  z-index: 1;
}

/* When pill is inside card-img-wrap (index pages) it's absolute;
   when inside card-body (related section) it must be static */
.card-img-wrap .card-rating-pill {
  position: absolute;
  bottom: .65rem;
  right: .65rem;
}
.card-body .card-rating-pill {
  position: static;
  align-self: flex-start;
  margin-top: .1rem;
}
.card-rating-pill {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: .25rem .6rem;
  border-radius: 3px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.card-rating-pill::before {
  content: '★';
  color: var(--primary);
  font-size: .7rem;
}

.card-body {
  padding: .85rem 1rem .7rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--text);
  line-height: 1.2;
}

.card-type {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(200,245,66,.12);
  display: inline-block;
  padding: .1rem .45rem;
  border-radius: 2px;
  width: fit-content;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: .01em;
}

.card-vibes {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-top: .1rem;
}

.card-vibe {
  font-family: var(--font-heading);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--text-muted);
  padding: .15rem .45rem;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.card-footer {
  margin-top: auto;
  padding: .6rem 1rem .75rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.card.dimmed {
  opacity: .2;
  pointer-events: none;
  filter: grayscale(1);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .6rem 1.2rem;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  touch-action: manipulation;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(200,245,66,.35);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover { background: #222; border-color: #222; }

.btn-outline {
  background: #fff;
  color: #0D0D0D;
  border-color: #fff;
  font-weight: 800;
}
.btn-outline:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.btn-block { width: 100%; display: flex; }

.btn-details {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-details:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.btn-marketplace {
  background: #FF9900;
  color: #111;
  border-color: #FF9900;
}
.btn-marketplace:hover {
  background: #e68900;
  border-color: #e68900;
  box-shadow: 0 4px 16px rgba(255,153,0,.3);
}

.btn-marketplace.aliexpress {
  background: var(--accent-2);
  color: #fff;
  border-color: var(--accent-2);
}

.btn-lg { padding: .85rem 1.85rem; font-size: 1rem; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
}

.badge-new  { background: #0066BB; color: #fff; }
.badge-hot  { background: var(--accent-2); color: #fff; }
.badge-sale { background: var(--primary); color: #000; }
.badge-top  { background: #F5A623; color: #fff; }
.badge-editor { background: var(--accent); color: var(--primary); }

/* ============================================================
   STARS
   ============================================================ */
.stars {
  color: #F5A623;
  letter-spacing: .08em;
  font-size: .95rem;
  line-height: 1;
}

/* ============================================================
   VIBE WIDGET
   ============================================================ */
.vibe-widget {
  background: var(--accent);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,245,66,.15);
}

/* diagonal accent corner */
.vibe-widget::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 80px 80px 0;
  border-color: transparent rgba(200,245,66,.08) transparent transparent;
}

.vibe-inner { position: relative; z-index: 1; }

.vibe-inner h2,
.vibe-inner h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.vibe-inner > p {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .vibe-grid { grid-template-columns: repeat(4, 1fr); }
}

.vibe-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: 1rem .65rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  transition: background var(--t), transform var(--t), border-color var(--t);
  text-align: center;
}
.vibe-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
  border-color: rgba(200,245,66,.3);
}
.vibe-card.active {
  background: rgba(200,245,66,.15);
  border-color: var(--primary);
}

.vc-icon { font-size: 1.5rem; line-height: 1; }
.vc-name {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.vc-desc { font-size: .67rem; color: rgba(255,255,255,.4); line-height: 1.35; }

.vibe-reset {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.5);
  padding: .4rem 1rem;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.vibe-reset:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(200,245,66,.06);
}

/* ============================================================
   DISCLOSURE
   ============================================================ */
.disclosure {
  background: rgba(200,245,66,.08);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: .7rem 1rem;
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

.section-rule {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: .65rem;
}

.section-sub {
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: .3rem;
  max-width: 480px;
  flex-basis: 100%;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--accent);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.stats-strip-item {
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.stats-strip-item:last-child { border-right: none; }

.ssn {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: block;
  margin-bottom: .3rem;
}

.ssl {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   FEATURED CARD
   ============================================================ */
.featured-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--accent);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200,245,66,.15);
}

@media (min-width: 560px) {
  .featured-card { grid-template-columns: 220px 1fr; }
}

.featured-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.featured-card-body {
  padding: 1.75rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.featured-card-tag {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #000;
  padding: .22rem .7rem;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  width: fit-content;
}

.featured-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.featured-card-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

.featured-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: auto;
}

/* ============================================================
   FILTER CHIPS
   ============================================================ */
.filter-wrap {
  background: var(--accent);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: .85rem 1rem;
  margin-bottom: 1.1rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
}

.filter-label {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  margin-right: .15rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .32rem .8rem;
  border-radius: 2px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}
.chip:hover {
  background: rgba(200,245,66,.1);
  color: var(--primary);
  border-color: rgba(200,245,66,.4);
}
.chip.active {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.filter-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ============================================================
   FILTER BAR (fb-chip system)
   ============================================================ */
.filter-bar-wrap {
  background: var(--accent);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: .8rem 1rem;
  margin-bottom: 1.25rem;
}

.filter-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
}

.fb-label {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}

.fb-chip {
  padding: .3rem .8rem;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
  cursor: pointer;
  white-space: nowrap;
  transition: all .18s ease;
  line-height: 1.4;
}
.fb-chip:hover {
  border-color: rgba(200,245,66,.5);
  color: var(--primary);
  background: rgba(200,245,66,.08);
}
.fb-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  font-weight: 800;
}

.fb-sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.15);
  display: inline-block;
  margin: 0 .15rem;
}

.fb-reset {
  padding: .3rem .75rem;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.15);
  background: transparent;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .18s ease;
}
.fb-reset:hover {
  color: var(--accent-2);
  border-color: var(--accent-2);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem 1rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 2px solid var(--primary);
  padding-bottom: .6rem;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.sidebar-product {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background var(--t), padding var(--t);
  border-radius: var(--r-sm);
  margin: 0 -.25rem;
  padding-left: .25rem;
  padding-right: .25rem;
}
.sidebar-product:last-child { border-bottom: none; }
.sidebar-product:hover {
  background: rgba(200,245,66,.08);
  padding-left: .5rem;
}

.sidebar-product img {
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-product-info { flex: 1; min-width: 0; }

.sidebar-product-name {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-product-brand {
  font-size: .68rem;
  color: var(--text-muted);
  margin-top: .15rem;
}

.sidebar-product-link {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--primary-dark);
  flex-shrink: 0;
}

/* ============================================================
   AD PLACEHOLDERS
   ============================================================ */
.ad-leaderboard {
  width: 100%;
  max-width: 728px;
  height: 90px;
  border: 1.5px dashed var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--border);
  margin: 1.25rem auto;
}

.ad-sidebar {
  width: 100%;
  height: 250px;
  border: 1.5px dashed var(--border);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--border);
}

.ad-sidebar-strip {
  width: 100%;
  height: 50px;
  border: 1.5px dashed var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--border);
  margin-bottom: 1.25rem;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 2rem 0;
  align-items: center;
}

.pagination a,
.pagination span {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .45rem .8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg-card);
  color: var(--text-muted);
  transition: all var(--t);
  text-decoration: none;
  text-transform: uppercase;
}
.pagination a:hover { border-color: var(--primary); color: var(--text); }
.pagination .current {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  font-weight: 900;
}
.pagination .pag-disabled {
  opacity: .3;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination .pag-prev,
.pagination .pag-next {
  min-width: 5rem;
  text-align: center;
}
.pagination .pag-prev { margin-right: .25rem; }
.pagination .pag-next { margin-left: .25rem; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .5rem;
  align-items: center;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding: 1rem 0 0;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--t); }
.breadcrumb a:hover { color: var(--primary-dark); }
.breadcrumb span { color: var(--border); }

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 720px) {
  .product-layout { grid-template-columns: 1fr 1fr; }
}

/* GALLERY */
.gallery {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.gallery-main-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}

.gallery-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .22s ease;
}

.gallery-thumbs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.gallery-thumb:hover {
  border-color: var(--primary-dark);
  transform: scale(1.05);
}
.gallery-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(200,245,66,.4);
  transform: scale(1.05);
}

/* PRODUCT INFO */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.prod-eyebrow {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(200,245,66,.12);
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 2px;
  width: fit-content;
}

.product-info h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text);
}

.product-price-tag {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: .01em;
  line-height: 1;
}

.product-price-tag .original-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: .5rem;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}

.product-cta {
  background: var(--accent);
  border-radius: var(--r);
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border: 1px solid rgba(200,245,66,.2);
}

.vp-label {
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .35rem;
  display: block;
}

.vp-swatches {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.vp-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: border-color var(--t), transform var(--t);
}
.vp-swatch:hover,
.vp-swatch.active {
  border-color: var(--primary);
  transform: scale(1.15);
}

.use-case-row { display: flex; flex-wrap: wrap; gap: .5rem; }

.uc-tag {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: rgba(200,245,66,.1);
  color: var(--primary-dark);
  padding: .28rem .7rem;
  border-radius: 2px;
  border: 1px solid rgba(200,245,66,.2);
}

/* SPECS */
.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: .88rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.specs-list li {
  display: flex;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
}
.specs-list li:last-child { border-bottom: none; }

.spec-key {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg);
  min-width: 140px;
  padding: .65rem 1rem;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.spec-val {
  padding: .65rem 1rem;
  font-size: .88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  flex: 1;
}

/* WIDGETS */
.widget-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 560px) {
  .widget-row { grid-template-columns: 1fr 1fr; }
}

.sound-dna,
.spec-bars {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem;
}

.sound-dna h3,
.sound-dna h4,
.spec-bars h3,
.spec-bars h4 {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--primary);
}

.sbar-row {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .6rem;
}
.sbar-row:last-child { margin-bottom: 0; }

.sbar-label {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 120px;
  flex-shrink: 0;
  letter-spacing: .04em;
}

.sbar-track {
  flex: 1;
  background: var(--bg);
  border-radius: 2px;
  height: 6px;
  overflow: hidden;
}

.sbar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  width: 0;
  transition: width .9s cubic-bezier(.4,0,.2,1);
}

.sbar-val {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 800;
  color: var(--text);
  min-width: 28px;
  text-align: right;
}

/* COMPARE */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-card);
}
.compare-wrap table { min-width: 560px; }
.compare-wrap th {
  background: var(--accent);
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
}
.compare-wrap td {
  padding: .7rem 1rem;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-wrap tr:last-child td { border-bottom: none; }
.compare-wrap tr:nth-child(even) td { background: rgba(200,245,66,.04); }

/* REVIEWS */
.reviews-section { margin: 2rem 0; }
.review-rule { width: 44px; height: 3px; background: var(--primary); margin: .3rem 0 1.2rem; border-radius: 2px; }

.reviews-list { display: flex; flex-direction: column; gap: 1rem; }

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--primary);
}

.review-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

.review-author {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.review-stars { color: #F5A623; font-size: .88rem; letter-spacing: 1px; }
.review-date { font-size: .72rem; color: var(--text-muted); margin-left: auto; }
.review-text { font-size: .88rem; line-height: 1.65; margin: 0; color: var(--text); }

/* INDEX REVIEWS */
.index-reviews { margin: 2rem 0; }

.index-review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media(min-width:640px) { .index-review-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .index-review-grid { grid-template-columns: repeat(3,1fr); } }

.index-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem;
  position: relative;
  border-left: 3px solid var(--primary);
}

.index-review-product {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: .4rem;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* PROS / CONS */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 560px) { .pros-cons { grid-template-columns: 1fr 1fr; } }

.pros-box,
.cons-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem 1.25rem;
}

.pros-box { border-top: 3px solid var(--primary); }
.cons-box { border-top: 3px solid var(--accent-2); }

.pros-box h4 {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.cons-box h4 {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.pros-box ul,
.cons-box ul {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.pros-box li,
.cons-box li {
  font-size: .85rem;
  line-height: 1.5;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
}

.pros-box li::before { content: '+'; position: absolute; left: 0; color: var(--primary-dark); font-weight: 900; }
.cons-box li::before { content: '−'; position: absolute; left: 0; color: var(--accent-2); font-weight: 900; }

/* RELATED */
.related-section { margin-top: 3rem; }
.related-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding-bottom: .65rem;
  border-bottom: 3px solid var(--primary);
}

/* REVIEW SECTION */
.review-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.review-section h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding-bottom: .65rem;
  border-bottom: 2px solid var(--primary);
}

/* ============================================================
   PRICE CHART
   ============================================================ */
.price-chart-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem;
  margin: 1.5rem 0;
}
.price-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .75rem;
}
.price-chart-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.price-chart-stats {
  display: flex;
  gap: 1rem;
  font-size: .8rem;
  color: var(--text-muted);
}
.price-chart-stats strong { color: var(--text); }
.price-low  { color: #16a34a !important; }
.price-high { color: var(--accent-2) !important; }
.price-chart-svg { width: 100%; height: auto; display: block; }

/* ============================================================
   POPULARITY WIDGET
   ============================================================ */
.pop-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem;
  margin: 1.25rem 0;
}
.pop-widget.purchased { border-left: 3px solid var(--primary); }
.pop-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.pop-row {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .45rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background .18s;
  border-radius: var(--r-sm);
}
.pop-row:last-child { border-bottom: none; }
.pop-row:hover { background: rgba(200,245,66,.06); padding-left: .3rem; }
.pop-rank { font-family: var(--font-heading); font-weight: 900; font-size: .82rem; color: var(--primary-dark); min-width: 26px; }
.pop-row img { width: 40px; height: 40px; object-fit: cover; border-radius: var(--r-sm); flex-shrink: 0; }
.pop-info { flex: 1; min-width: 0; }
.pop-name { display: block; font-family: var(--font-heading); font-size: .8rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pop-price, .pop-brand { display: block; font-size: .72rem; color: var(--text-muted); }

/* ============================================================
   ABOUT / LEGAL
   ============================================================ */
.about-hero {
  background: var(--accent);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 1.25rem 5rem;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,245,66,.1) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 0);
  z-index: 2;
}
.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.about-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  max-width: 540px;
  margin-top: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.legal-hero {
  background: var(--accent);
  padding: 4.5rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 50px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 0);
  z-index: 2;
}
.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  position: relative;
  z-index: 1;
}
.legal-hero p { font-size: .9rem; color: rgba(255,255,255,.45); position: relative; z-index: 1; }

.legal-body { max-width: 780px; margin: 0 auto; padding: 2.5rem 1.25rem 4rem; }
.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 2rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--primary);
}
.legal-body p, .legal-body li { font-size: .93rem; line-height: 1.75; color: var(--text-muted); }
.legal-body ul, .legal-body ol {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}

.legal-toc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  border-left: 3px solid var(--primary);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.legal-toc h3 {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.legal-toc ol { list-style: decimal; padding-left: 1.25rem; display: flex; flex-direction: column; gap: .4rem; }
.legal-toc a { font-size: .88rem; color: var(--primary-dark); transition: color var(--t); }
.legal-toc a:hover { color: var(--text); }

/* ============================================================
   VALUE GRID (about page)
   ============================================================ */
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 560px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem 1.25rem;
  border-top: 3px solid var(--primary);
  transition: transform var(--t), box-shadow var(--t);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.value-card p { font-size: .88rem; line-height: 1.65; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--accent);
  color: rgba(255,255,255,.5);
  padding: 4rem 0 0;
  margin-top: 5rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark) 60%, transparent);
}

.footer-container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media(max-width:900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-logo-link { display: inline-block; margin-bottom: .75rem; }
.footer-tagline { font-size: .88rem; line-height: 1.7; margin: .5rem 0; }
.footer-disclosure { font-size: .75rem; opacity: .45; line-height: 1.65; margin-top: .5rem; }

.footer-heading {
  color: #fff;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.footer-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-list a { color: rgba(255,255,255,.45); font-size: .88rem; text-decoration: none; transition: color .2s; }
.footer-list a:hover { color: var(--primary); }

.footer-badges { display: flex; flex-direction: column; gap: .55rem; }
.trust-badge { display: flex; align-items: center; gap: .5rem; font-size: .8rem; }
.tb-icon { color: var(--primary); font-weight: 900; font-size: 1rem; }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--primary); }
.footer-sep { opacity: .3; }
.foot-rule { width: 32px; height: 2px; background: var(--primary); margin: .5rem 0 .75rem; }

/* ============================================================
   TYPEWRITER
   ============================================================ */
@keyframes tw-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ============================================================
   SIDEBAR FIX — ensure side-by-side at desktop widths
   ============================================================ */
.site-with-sidebar {
  display: flex !important;
  flex-direction: row !important;
  gap: 1.75rem;
  align-items: flex-start;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.1rem;
  box-sizing: border-box;
}

.site-with-sidebar > main {
  flex: 1 1 0%;
  min-width: 0;
}

.page-sidebar {
  width: 280px;
  flex: 0 0 280px;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: none;
}
.page-sidebar::-webkit-scrollbar { display: none; }

@media (max-width: 1100px) {
  .site-with-sidebar {
    flex-direction: column !important;
    padding: 0 1rem;
  }
  .page-sidebar {
    width: 100%;
    flex: none;
    position: static;
    max-height: none;
    overflow-y: visible;
  }
}

/* ============================================================
   PROS & CONS — proper responsive layout
   ============================================================ */
.pros-cons {
  display: block !important;
  margin-top: 2rem;
}

.pros-cons-inner,
.pros-cons > div[style*="grid"] {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.25rem !important;
  margin-top: 1.25rem !important;
}

@media (max-width: 600px) {
  .pros-cons-inner,
  .pros-cons > div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }
}

.pros-box,
.cons-box {
  min-width: 0;
}

/* ============================================================
   MOBILE FIXES
   ============================================================ */

/* Smaller hero on mobile */
@media (max-width: 640px) {
  .hero {
    min-height: 380px;
  }
  .hero-inner {
    padding: 3rem 1.25rem 4.5rem;
  }
  .hero-inner h1 {
    font-size: 2.6rem;
  }
  .hero-desc {
    font-size: .9rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .hero-stat .sn {
    font-size: 1.5rem;
  }
}

/* Compact header on mobile */
@media (max-width: 480px) {
  .header-inner {
    height: 60px;
  }
  .site-logo img {
    height: 28px;
  }
}

/* Stats strip: 1 col on small mobile */
@media (max-width: 480px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }
  .stats-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 1rem;
  }
}

/* Featured card: always stack on mobile */
@media (max-width: 480px) {
  .featured-card {
    grid-template-columns: 1fr !important;
  }
  .featured-card-img {
    height: 180px;
  }
}

/* Product layout: stack on mobile */
@media (max-width: 640px) {
  .product-layout {
    grid-template-columns: 1fr !important;
  }
}

/* Widget row: stack on mobile */
@media (max-width: 480px) {
  .widget-row {
    grid-template-columns: 1fr !important;
  }
}

/* Vibe grid: 2 col max on small screens */
@media (max-width: 480px) {
  .vibe-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Product grid: 1 column on very small */
@media (max-width: 360px) {
  .product-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Filter bar: allow wrapping properly */
.filter-bar-inner {
  row-gap: .5rem;
}

/* Buttons: full width on very small */
@media (max-width: 400px) {
  .btn-lg {
    width: 100%;
  }
}

/* Gallery thumb size on small screens */
@media (max-width: 400px) {
  .gallery-thumb {
    width: 56px;
    height: 56px;
  }
}

/* Cookie banner: full width on mobile */
@media (max-width: 560px) {
  #cookie-banner {
    left: 1rem;
    right: 1rem;
    transform: none;
    white-space: normal;
  }
}

/* Footer: tighter on mobile */
@media (max-width: 560px) {
  .site-footer {
    padding: 2.5rem 0 0;
  }
}

/* Ensure table doesn't overflow */
.compare-wrap {
  -webkit-overflow-scrolling: touch;
}

/* ============================================================
   PERFORMANCE PROFILE SVG
   ============================================================ */
.sound-dna-svg {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--r);
}

/* ============================================================
   SPEC BARS TRANSITION FIX
   ============================================================ */
.sbar-fill {
  transition: width 1s cubic-bezier(.4,0,.2,1) !important;
}

/* ============================================================
   PRODUCT PAGE — full-width sections below product-layout  
   ============================================================ */
.widget-row {
  margin-top: 2.5rem;
}

.review-section,
.pros-cons,
.related-section {
  width: 100%;
  box-sizing: border-box;
}

/* Fix review-section vertical bg */
.review-section[style*="background:var(--surface-alt"] {
  border-radius: var(--r);
}

/* ============================================================
   CONTAINER FILL ON PRODUCT PAGES
   ============================================================ */
.container {
  width: 100%;
  box-sizing: border-box;
}

/* ============================================================
   CARD BODY — prevent overflow issues
   ============================================================ */
.card-body {
  overflow: hidden;
}

.card-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
