@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@400;500;600;700&display=swap');

:root {
  --primary:      #7B5EA7;
  --primary-dark: #5A4482;
  --accent:       #E8916A;
  --bg:           #F8F5FC;
  --bg-card:      #FDFBFF;
  --text:         #231A38;
  --text-muted:   #8A7AA0;
  --border:       #E0D8EF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;
  --r:  12px;
  --r-sm: 6px;
  --shadow:    0 2px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --t: .22s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wave {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.8);
  }
}

@keyframes floatNote {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-60px);
  }
}

@keyframes drawLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: .6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes bgPan {
  0% {
    transform: scale(1.08) translateX(0);
  }
  50% {
    transform: scale(1.12) translateX(-2%);
  }
  100% {
    transform: scale(1.08) translateX(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

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

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

.page-sidebar {
  width: 300px;
  flex: 0 0 300px;
  position: sticky;
  top: 72px;
  align-self: flex-start;
  order: 2;
}

/* Reviews block — match .container horizontal padding */
.index-reviews {
  margin: 2rem 0;
  padding: 0 1.25rem;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(248, 245, 252, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t), border-color var(--t);
}

.site-header.scrolled {
  box-shadow: 0 2px 18px rgba(35, 26, 56, 0.10);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: 1460px;
  margin: 0 auto;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

.site-logo span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: transparent;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: var(--border);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  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: 0.25rem;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-sm);
  transition: background var(--t), color var(--t);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(123, 94, 167, 0.10);
  color: var(--primary);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 500px;
  background: var(--text);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Image-forward hero (index pages) — split layout: image LEFT, text RIGHT */
.hero--image {
  min-height: 480px;
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: var(--text);
}

/* Keep .hero-bg hidden (no longer used for split layout) */
.hero-bg { display: none; }

/* Remove old gradient pseudo-element */
.hero--image::before { display: none; }

/* Left image panel */
.hero-img-panel {
  flex: 0 0 46%;
  max-width: 46%;
  position: relative;
  overflow: hidden;
}

.hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Right text panel */
.hero-text-panel {
  flex: 1;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--primary-dark) 0%, #2a1a48 100%);
  padding: 2.5rem 3.5rem;
}

/* Responsive: stack vertically on narrow screens */
@media (max-width: 768px) {
  .hero--image { flex-direction: column; min-height: auto; }
  .hero-img-panel { flex: 0 0 220px; max-width: 100%; }
  .hero-text-panel { padding: 2rem 1.5rem; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: 560px;
  margin: 0;
  width: 100%;
}

.hero-inner-centered {
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

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

.hero-stat .sn {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat .sl {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

.pencil-underline {
  display: inline;
  position: relative;
  white-space: nowrap;
}

.pencil-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 3px;
  width: 0;
  background: var(--accent);
  border-radius: 2px;
  animation: drawLine 1s var(--t) 0.5s forwards;
}

/* ============================================================
   CARDS / PRODUCT GRID
   ============================================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 4 cols only at very wide viewport — with sidebar the effective main width
   is ~1100px at 1460px viewport, so we need extra room */
@media (min-width: 1460px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border-radius: var(--r);
  border: 1.5px 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;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color var(--t);
  z-index: 2;
}

.card:hover {
  transform: translateY(-4px) rotate(0.3deg);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  border-color: var(--primary);
}

.card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--bg);
  border-radius: var(--r) var(--r) 0 0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-badge-row {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 3;
}

.card-rating-pill {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(44, 26, 14, 0.82);
  color: #fff;
  border-radius: 20px;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  z-index: 3;
  backdrop-filter: blur(4px);
}

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

.card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.card-type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
}

.card-vibes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.card-vibe {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
  background: rgba(234, 217, 198, 0.45);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

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

.card.dimmed {
  opacity: .25;
  pointer-events: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
  touch-action: manipulation;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(200, 80, 26, 0.30);
}

.btn-accent {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: #e8973a;
  border-color: #e8973a;
  box-shadow: 0 4px 14px rgba(242, 168, 67, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

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

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

.btn-details {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.btn-details:hover {
  background: #1a0d05;
  border-color: #1a0d05;
}

.btn-marketplace {
  background: #FF9900;
  color: #111;
  border-color: #FF9900;
}

.btn-marketplace:hover {
  background: #e68a00;
  border-color: #e68a00;
}

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

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  border-radius: var(--r);
}

/* ============================================================
   BADGES
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}

.badge-new {
  background: #d4edff;
  color: #1565c0;
}

.badge-hot {
  background: #ffe4d4;
  color: var(--primary-dark);
}

.badge-sale {
  background: #fce4ec;
  color: #c62828;
}

.badge-top {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-editor {
  background: #f3e5f5;
  color: #6a1b9a;
}

/* ============================================================
   STARS
   ============================================================ */

.stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  line-height: 1;
}

/* ============================================================
   VIBE WIDGET
   ============================================================ */

.vibe-widget {
  background: var(--text);
  border-radius: var(--r);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.vibe-widget::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 168, 67, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

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

.vibe-inner h2,
.vibe-inner h3 {
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 0.4rem;
}

.vibe-inner p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .vibe-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vibe-card {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 0.9rem 0.6rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  transition: transform var(--t), background var(--t), border-color var(--t);
}

.vibe-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}

.vibe-card.active {
  background: var(--accent);
  border-color: var(--accent);
}

.vibe-card.active .vc-name,
.vibe-card.active .vc-desc {
  color: var(--text);
}

.vc-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.vc-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.vc-desc {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

.vibe-reset {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.55);
  border-radius: var(--r-sm);
  padding: 0.4rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
}

.vibe-reset:hover {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}

/* ============================================================
   DISCLOSURE
   ============================================================ */

.disclosure {
  background: rgba(123, 94, 167, 0.07);
  border: 1px solid rgba(123, 94, 167, 0.22);
  border-radius: var(--r-sm);
  padding: 0.75rem 1.1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.6;
  margin: 1rem 0;
}

.disclosure svg,
.disclosure .disclosure-icon {
  flex-shrink: 0;
  margin-top: 0.05rem;
  color: var(--accent);
}

/* ============================================================
   SECTION
   ============================================================ */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.section-rule {
  width: 44px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 0.4rem;
}

/* ============================================================
   STATS STRIP
   ============================================================ */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(250, 246, 240, 0.85);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stats-strip-item {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stats-strip-item:last-child {
  border-right: none;
}

.ssn {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}

.ssl {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
}

/* ============================================================
   FEATURED CARD
   ============================================================ */

.featured-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--text);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

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

.featured-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  background: var(--accent);
  color: var(--text);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  align-self: flex-start;
}

.featured-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

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

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

/* ============================================================
   FILTER CHIPS
   ============================================================ */

.filter-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
}

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

.filter-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  flex-shrink: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.8rem;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}

.chip:hover {
  background: rgba(242, 168, 67, 0.15);
  border-color: var(--accent);
  color: var(--text);
}

.chip.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.filter-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

/* ── Editor's Pick block ── */
.sidebar-editors-pick {
  background: linear-gradient(135deg, rgba(123,94,167,.12) 0%, rgba(232,145,106,.10) 100%);
  border: 1.5px solid var(--primary);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.sep-title {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  padding: .55rem .9rem .35rem;
  background: rgba(123,94,167,.06);
}
.sep-inner {
  display: flex;
  gap: .75rem;
  padding: .75rem .9rem;
  text-decoration: none;
  color: inherit;
  transition: background .2s;
}
.sep-inner:hover { background: rgba(123,94,167,.07); }
.sep-inner img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.sep-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .2rem;
}
.sep-name { font-size: .82rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.sep-sub  { font-size: .72rem; color: var(--text-muted); }
.sep-cta  { font-size: .74rem; font-weight: 700; color: var(--primary); margin-top: .15rem; }

.sidebar-widget {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.6rem;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background var(--t);
  border-radius: var(--r-sm);
  margin: 0 -0.3rem;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}

.sidebar-product:last-child {
  border-bottom: none;
}

.sidebar-product:hover {
  background: var(--bg);
}

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

.sidebar-product-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

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

.sidebar-product-brand {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.sidebar-product-link {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 700;
}

.sidebar-product-link::after {
  content: ' →';
}

/* ============================================================
   AD PLACEHOLDERS
   ============================================================ */

.ad-leaderboard {
  width: 100%;
  max-width: 728px;
  height: 90px;
  border: 2px dashed rgba(242, 168, 67, 0.45);
  background: rgba(242, 168, 67, 0.06);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 auto;
}

.ad-sidebar {
  width: 100%;
  height: 250px;
  border: 2px dashed rgba(242, 168, 67, 0.45);
  background: rgba(242, 168, 67, 0.06);
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.ad-sidebar-strip {
  width: 100%;
  height: 50px;
  border: 2px dashed rgba(242, 168, 67, 0.45);
  background: rgba(242, 168, 67, 0.06);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  align-items: center;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--border);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  display: block;
}

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

.gallery-thumb {
  width: 68px;
  height: 68px;
  border-radius: var(--r-sm);
  border: 2px solid var(--border);
  object-fit: cover;
  cursor: pointer;
  transition: border-color var(--t), transform var(--t);
  display: block;
}

.gallery-thumb:hover {
  border-color: var(--primary-dark);
  transform: scale(1.04);
}

.gallery-thumb.active {
  border-color: var(--primary);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prod-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.prod-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.product-price-tag {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

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

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

.product-rating-row .rating-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-cta {
  background: rgba(242, 168, 67, 0.10);
  border: 1.5px solid rgba(242, 168, 67, 0.35);
  border-radius: var(--r);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.vp-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  display: block;
}

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

.vp-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2.5px solid var(--border);
  cursor: pointer;
  transition: border-color var(--t), transform var(--t);
}

.vp-swatch:hover,
.vp-swatch.active {
  border-color: var(--primary);
  transform: scale(1.12);
}

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

.uc-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
  background: rgba(234, 217, 198, 0.4);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.specs-list li {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.specs-list li:last-child {
  border-bottom: none;
}

.specs-list li strong {
  min-width: 130px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.widget-row {
  /* Single column after Performance DNA removal */
  display: block;
}

.sound-dna,
.spec-bars {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem;
}

.spec-bars h4,
.sound-dna h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  color: var(--text);
}

.sbar-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.sbar-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  min-width: 115px;
  flex-shrink: 0;
}

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

.sbar-fill {
  height: 100%;
  border-radius: 20px;
  background: var(--primary);
  width: 0;
  transition: width 0.7s ease;
}

.sbar-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  min-width: 28px;
  text-align: right;
}

.compare-wrap {
  overflow-x: auto;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
}

.compare-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 480px;
}

.compare-wrap th {
  background: var(--bg);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  border-bottom: 1.5px solid var(--border);
}

.compare-wrap td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

.compare-wrap tr:last-child td {
  border-bottom: none;
}

.compare-wrap tr:nth-child(even) td {
  background: rgba(250, 246, 240, 0.5);
}

.review-section {
  background: #fff;
  border: 1.5px 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.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.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: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.pros-box {
  border-top: 3px solid #4caf50;
}

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

.pros-box h4 {
  color: #2e7d32;
  font-family: var(--font-heading);
  margin-bottom: 0.6rem;
}

.cons-box h4 {
  color: var(--primary-dark);
  font-family: var(--font-heading);
  margin-bottom: 0.6rem;
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pros-box li,
.cons-box li {
  font-size: 0.85rem;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.pros-box li::before {
  content: '✓';
  color: #4caf50;
  font-weight: 700;
  flex-shrink: 0;
}

.cons-box li::before {
  content: '✗';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.related-section {
  margin-top: 3rem;
}

/* ============================================================
   ABOUT / LEGAL
   ============================================================ */

.about-hero {
  background: var(--text);
  position: relative;
  overflow: hidden;
  padding: 5rem 1.25rem;
}

.about-hero h1 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.about-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.7;
}

.legal-hero {
  background: var(--text);
  padding: 4rem 1.25rem;
  text-align: center;
}

.legal-hero h1 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.legal-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.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;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.legal-body p,
.legal-body li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.legal-toc {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem 1.25rem;
  margin-bottom: 2rem;
}

.legal-toc h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.legal-toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.legal-toc a {
  font-size: 0.82rem;
  color: var(--primary);
  text-decoration: none;
  transition: color var(--t);
}

.legal-toc a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 580px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.team-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
  text-decoration: none;
  color: inherit;
}

.team-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.team-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--border);
  flex-shrink: 0;
}

.team-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.team-card-info p {
  font-size: 0.8rem;
}

/* ============================================================
   QUICK SPECS — full-width block (product pages)
   ============================================================ */

.quick-specs-full {
  margin: 2rem 0;
}

.quick-specs-full > div {
  background: var(--bg-card) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 14px !important;
  padding: 1.25rem 1.5rem !important;
  box-shadow: 0 2px 12px rgba(123,94,167,.07) !important;
}

.quick-specs-full h3 {
  color: var(--primary) !important;
}

.quick-specs-full li {
  border-bottom-color: var(--border) !important;
}

.quick-specs-full li span:first-child {
  color: var(--text-muted) !important;
}

.quick-specs-full li span:last-child {
  color: var(--text) !important;
}

/* ============================================================
   PAGINATION
   ============================================================ */

.pagination {
  margin: 2.5rem 0 1rem;
  display: flex;
  justify-content: center;
}

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

.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 .9rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
}

.pg-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(123,94,167,.07);
}

.pg-btn.pg-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(123,94,167,.30);
  cursor: default;
}

.pg-btn.pg-disabled {
  opacity: .4;
  cursor: default;
  pointer-events: none;
}

.pg-prev, .pg-next {
  padding: 0 1.1rem;
  font-size: .85rem;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--text, #231A38);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
  font-family: var(--font-body);
  font-size: .92rem;
  line-height: 1.5;
}

#cookie-banner p {
  margin: 0;
  flex: 1 1 220px;
  color: rgba(255,255,255,.88);
}

#cookie-banner a {
  color: var(--accent, #E8916A);
  text-decoration: underline;
}

#cookie-accept {
  background: var(--primary, #7B5EA7);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: .55rem 1.4rem;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--t, .22s ease), transform var(--t, .22s ease);
}

#cookie-accept:hover {
  background: var(--primary-dark, #5A4482);
  transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE — SIDEBAR MOBILE STACK
   ============================================================ */
@media (max-width: 900px) {
  .site-with-sidebar {
    flex-direction: column;
    gap: 1rem;
  }

  .site-with-sidebar > main {
    order: 1;
    width: 100%;
    overflow: visible;
  }

  .page-sidebar {
    order: 3;
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    position: static; /* disable sticky on mobile */
  }
}
