/* ============================================================
   DESIGN 6 — Luxury Dark Fashion Editorial
   Near-black + champagne gold, Playfair Display italic, cinematic
   ============================================================ */

:root {
  --bg:        #0a0908;
  --bg-2:      #13110e;
  --bg-3:      #1c1916;
  --card:      rgba(28, 25, 22, 0.7);
  --ink:       #f8f5ee;
  --ink-2:     #cfc6b3;
  --ink-3:     #8a8170;
  --ink-4:     #52493e;
  --gold:      #d4af5e;
  --gold-d:    #a6894a;
  --gold-l:    #e5c878;
  --gold-soft: rgba(212, 175, 94, 0.12);
  --line:      rgba(212, 175, 94, 0.14);
  --line-2:    rgba(212, 175, 94, 0.28);
  --red-d:     #8b2c2c;
  --serif:     'Playfair Display', 'Times New Roman', serif;
  --sans:      'Inter', system-ui, -apple-system, sans-serif;
}

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

/* Subtle warm vignette */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 10%, rgba(212,175,94,0.06), transparent 60%),
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(212,175,94,0.04), transparent 60%);
  z-index: 0;
}
.wrap { position: relative; z-index: 1; }

.serif { font-family: var(--serif); }
.italic { font-style: italic; }

/* Gold gradient text */
.gold-text {
  background: linear-gradient(135deg, var(--gold-l) 0%, var(--gold) 50%, var(--gold-d) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* === TOP BAR === */
.topbar {
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.topbar-left { display: flex; gap: 28px; }
.topbar-left span em { color: var(--gold); font-style: normal; font-weight: 600; }
.topbar-right { color: var(--ink-4); }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 8px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-logo img { height: 82px; width: auto; max-width: 300px; object-fit: contain; filter: brightness(1.1) sepia(0.2); }
.nav-links {
  grid-column: 1;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-self: start;
}
.nav-links a {
  position: relative;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; right: 50%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.25, 1);
}
.nav-links a:hover { color: var(--gold-l); }
.nav-links a:hover::after, .nav-links a.active::after { left: 0; right: 0; }
.nav-links a.active { color: var(--gold); }
.nav-right { grid-column: 3; justify-self: end; display: flex; gap: 18px; align-items: center; }
.nav-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  font-size: 14px;
  transition: all 0.25s;
}
.nav-icon:hover { border-color: var(--gold); color: var(--gold); }
.nav-hamburger { display: none; padding: 10px 14px; border: 1px solid var(--line-2); color: var(--gold); font-size: 16px; }

/* === HERO === */
.hero {
  padding: 80px 40px 100px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 34px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 auto 42px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 34px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-gold:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-gold:hover { color: var(--bg); border-color: var(--gold-l); }
.btn-gold > span { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 34px;
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  transition: all 0.3s;
}
.btn-ghost:hover { color: var(--gold-l); border-color: var(--gold); }

/* Hero feature — oversized product framed in gold */
.hero-feature {
  margin: 80px auto 0;
  max-width: 640px;
  position: relative;
  aspect-ratio: 4/5;
}
.hero-feature-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  padding: 12px;
}
.hero-feature-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  transform: translate(14px, 14px);
  z-index: -1;
  opacity: 0.3;
}
.hero-feature-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1714, #0f0d0b);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.hero-feature-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(212,175,94,0.2));
}
.hero-feature-label {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 4px 20px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}
.hero-feature-score {
  position: absolute;
  bottom: -32px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 10px 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 52px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  border-top: 1px solid var(--gold);
}
.hero-feature-score sub {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  font-weight: 500;
  margin-top: -6px;
}

/* === STATS === */
.stats {
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
  max-width: 1300px;
  margin: 0 auto;
}
.stat {
  padding: 20px 30px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 12px;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* === SECTION HEAD === */
.section-head {
  padding: 100px 40px 40px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.section-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.section-kicker::before, .section-kicker::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto;
}

/* === PRODUCT GRID === */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 32px;
  padding: 0 40px 80px;
  max-width: 1320px;
  margin: 0 auto;
}
.card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.25, 1);
  position: relative;
}
.card:hover { transform: translateY(-6px); }
.card-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1714, #0f0d0b);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  margin-bottom: 22px;
  overflow: hidden;
  transition: all 0.4s;
}
.card:hover .card-img-wrap { border-color: var(--gold); box-shadow: 0 20px 50px rgba(212,175,94,0.15); }
.card-img-wrap::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none;
}
.card:hover .card-img-wrap::before { border-color: rgba(212,175,94,0.4); }
.card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(212,175,94,0.15));
  transition: transform 0.5s;
}
.card:hover .card-img { transform: scale(1.06); }
.card-tag {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  z-index: 2;
  white-space: nowrap;
}
.card-tag.outline {
  background: transparent;
  color: var(--gold-l);
  border: 1px solid var(--gold);
}
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.card-meta-num { color: var(--gold); }
.card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
  min-height: 52px;
  transition: color 0.3s;
}
.card:hover .card-title { color: var(--gold-l); }
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.card-price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.card-price s { font-family: var(--sans); font-size: 12px; color: var(--ink-4); margin-left: 6px; font-weight: 400; letter-spacing: 0; }
.card-score {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-2);
}
.card-score em { color: var(--gold); font-size: 20px; font-weight: 500; font-style: italic; }

/* === CATEGORY PAGE === */
.breadcrumb {
  padding: 30px 40px 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}
.breadcrumb a { color: var(--gold); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-l); }
.breadcrumb .sep { color: var(--ink-4); }

.cat-hero {
  padding: 50px 40px 70px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cat-hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 130px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--ink);
}
.cat-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cat-hero p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 auto 30px;
  line-height: 1.55;
}
.cat-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  border: 1px solid var(--line-2);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cat-hero-meta strong { color: var(--gold); font-weight: 600; }
.cat-hero-meta .divider { width: 1px; height: 16px; background: var(--line); }

.cat-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 44px;
  padding: 60px 40px 80px;
  max-width: 1320px;
  margin: 0 auto;
}
.filter { position: sticky; top: 108px; align-self: start; }
.filter-head {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.filter-section { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.filter-chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chip {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.25s;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold); }
.filter-chip.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 0.2s;
}
.filter-check:hover { color: var(--gold-l); }
.filter-check input { accent-color: var(--gold); width: 14px; height: 14px; }
.filter-check .count {
  margin-left: auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--ink-3);
}
.filter-range { width: 100%; accent-color: var(--gold); }
.filter-range-vals {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 10px;
}

.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 14px;
}
.cat-count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-2);
}
.cat-count em { color: var(--gold); font-weight: 500; }
.cat-sort select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 28px 8px 0;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3e%3cpath d='M2 4l4 4 4-4' stroke='%23d4af5e' stroke-width='1.2'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 2px center;
}

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.pagination button {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink-2);
  transition: all 0.25s;
}
.pagination button:hover { border-color: var(--gold); color: var(--gold); }
.pagination button.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* === REVIEW PAGE === */
.review-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  padding: 50px 40px 80px;
  max-width: 1320px;
  margin: 0 auto;
}
.review-main { min-width: 0; }

.review-title-block { text-align: center; padding-bottom: 44px; border-bottom: 1px solid var(--line); margin-bottom: 48px; }
.review-cat-line {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}
.review-cat-line::before, .review-cat-line::after {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
}
.review-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 90px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 34px;
  color: var(--ink);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.review-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.review-meta {
  display: inline-flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.review-meta strong { color: var(--gold); font-weight: 600; }

/* Feature figure */
.review-figure {
  position: relative;
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, #1a1714, #0f0d0b);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  margin-bottom: 64px;
}
.review-figure::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212,175,94,0.4);
  pointer-events: none;
}
.review-figure img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 30px 60px rgba(212,175,94,0.25)); }
.review-figure-tag {
  position: absolute;
  top: -12px; left: 40px;
  background: var(--bg);
  padding: 6px 18px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.review-figure-score {
  position: absolute;
  bottom: -36px; right: 40px;
  background: var(--bg);
  border: 1px solid var(--gold);
  padding: 20px 32px;
  text-align: center;
}
.review-figure-score-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 58px;
  font-weight: 500;
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.review-figure-score-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}

/* Editorial body */
.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 auto 44px;
  max-width: 780px;
  text-align: center;
}
.lede::first-letter {
  font-size: 100px;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  padding: 14px 14px 0 0;
  color: var(--gold);
  font-style: italic;
}
.review-p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-2);
  margin-bottom: 22px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.review-p strong { color: var(--gold-l); font-weight: 500; }

.review-h2 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 72px auto 28px;
  max-width: 780px;
  color: var(--ink);
  text-align: center;
  position: relative;
  padding-top: 48px;
}
.review-h2::before {
  content: '◆';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 14px;
  font-style: normal;
}
.review-h2 em { color: var(--gold); }
.review-h2:first-of-type { margin-top: 0; padding-top: 0; }
.review-h2:first-of-type::before { display: none; }

/* Pull quote */
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--gold-l);
  max-width: 760px;
  margin: 56px auto;
  text-align: center;
  padding: 48px 40px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  position: relative;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0 16px;
  font-size: 60px;
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
}

/* Scores */
.scores { display: flex; flex-direction: column; gap: 0; max-width: 780px; margin: 40px auto; border-top: 1px solid var(--line); }
.score-row {
  display: grid;
  grid-template-columns: 180px 1fr 60px;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.score-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.score-bar { height: 2px; background: var(--line); position: relative; overflow: hidden; }
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-l));
}
.score-val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  text-align: right;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Pros / Cons */
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 820px; margin: 40px auto; }
.verdict-col { padding: 36px 32px; border: 1px solid var(--line); background: var(--bg-2); }
.verdict-col h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--gold);
}
.verdict-col.weak h3 { color: var(--ink-2); }
.verdict-col ul li {
  font-size: 14px;
  color: var(--ink-2);
  padding: 12px 0 12px 26px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid var(--line);
}
.verdict-col ul li:last-child { border-bottom: none; }
.verdict-col.wins ul li::before {
  content: '✦';
  position: absolute; left: 0; top: 12px;
  color: var(--gold);
  font-size: 13px;
}
.verdict-col.weak ul li::before {
  content: '—';
  position: absolute; left: 0; top: 12px;
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1;
}

/* Specs */
.specs { width: 100%; border-collapse: collapse; max-width: 780px; margin: 28px auto; }
.specs tr { border-bottom: 1px solid var(--line); }
.specs tr:first-child { border-top: 1px solid var(--gold); }
.specs tr:last-child { border-bottom: 1px solid var(--gold); }
.specs td { padding: 16px 0; font-size: 14px; vertical-align: top; }
.specs td:first-child {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  width: 42%;
  font-weight: 500;
}
.specs td:last-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  font-weight: 400;
}

/* FAQ */
.faq { max-width: 780px; margin: 28px auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--gold-l); }
.faq-q-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.25s;
}
.faq-item.open .faq-q-icon { background: var(--gold); color: var(--bg); transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--gold-l); }
.faq-a { padding: 0 0 24px; font-size: 15px; line-height: 1.75; color: var(--ink-2); max-width: 680px; display: none; }
.faq-item.open .faq-a { display: block; }

/* Reader reviews */
.user-reviews { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; max-width: 1100px; margin: 0 auto; }
.user-review {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  text-align: center;
  transition: all 0.3s;
}
.user-review:hover { border-color: var(--gold); transform: translateY(-3px); }
.user-review-stars { color: var(--gold); font-size: 16px; letter-spacing: 4px; margin-bottom: 18px; }
.user-review-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 22px;
}
.user-review-text::before { content: '"'; color: var(--gold); font-size: 22px; }
.user-review-text::after { content: '"'; color: var(--gold); font-size: 22px; }
.user-review-meta {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.user-review-name { color: var(--gold); font-weight: 600; }

/* Verdict banner */
.verdict-banner {
  background: linear-gradient(135deg, #1a1714 0%, #0f0d0b 100%);
  border: 1px solid var(--gold);
  padding: 80px 48px;
  text-align: center;
  margin: 72px auto;
  max-width: 1100px;
  position: relative;
}
.verdict-banner::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212,175,94,0.3);
  pointer-events: none;
}
.verdict-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 30px;
}
.verdict-banner-label::before, .verdict-banner-label::after {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.verdict-banner-score {
  font-family: var(--serif);
  font-style: italic;
  font-size: 180px;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.verdict-banner-score sub { font-family: var(--sans); font-style: normal; font-size: 40px; -webkit-text-fill-color: var(--ink-3); vertical-align: baseline; font-weight: 400; }
.verdict-stars { font-size: 28px; color: var(--gold); letter-spacing: 8px; margin-bottom: 24px; }
.verdict-banner h2 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}
.verdict-banner h2 em {
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.verdict-banner p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* Sidebar */
.side { position: sticky; top: 108px; align-self: start; display: flex; flex-direction: column; gap: 32px; }
.side-buy {
  border: 1px solid var(--gold);
  padding: 36px 30px;
  position: relative;
  background: var(--bg-2);
  text-align: center;
}
.side-buy::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212,175,94,0.3);
  pointer-events: none;
}
.side-buy-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
}
.side-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: var(--gold);
  position: relative;
}
.side-price s { font-family: var(--sans); font-style: normal; font-size: 18px; color: var(--ink-4); margin-left: 10px; font-weight: 400; letter-spacing: 0; }
.side-save {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-bottom: 26px;
  position: relative;
}
.side-cta {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s;
  margin-bottom: 14px;
  position: relative;
}
.side-cta:hover { background: transparent; color: var(--gold); }
.side-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--ink-3);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
  line-height: 1.6;
  position: relative;
}

.side-related { padding-top: 20px; }
.side-related h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.side-related-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 0.2s;
}
.side-related-item:hover { padding-left: 6px; }
.side-related-item:last-child { border-bottom: none; }
.side-related-item img {
  width: 64px; height: 64px;
  object-fit: contain;
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 6px;
}
.side-related-title { font-family: var(--serif); font-style: italic; font-size: 15px; font-weight: 400; line-height: 1.3; color: var(--ink); margin-bottom: 4px; }
.side-related-price { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-3); }
.side-related-price em { color: var(--gold); font-style: normal; font-weight: 600; }

/* === FOOTER === */
.footer {
  padding: 100px 40px 40px;
  margin-top: 100px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.footer-mega {
  font-family: var(--serif);
  font-size: clamp(72px, 13vw, 220px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 80px;
  color: var(--ink);
}
.footer-mega em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
  margin-bottom: 44px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.footer-col p { font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.55; color: var(--ink-2); }
.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 13px; color: var(--ink-2); transition: color 0.25s; letter-spacing: 0.02em; }
.footer-col ul li a:hover { color: var(--gold-l); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  flex-wrap: wrap;
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
}
.footer-bottom a { margin-left: 24px; color: var(--ink-4); transition: color 0.25s; }
.footer-bottom a:hover { color: var(--gold); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .nav { padding: 22px 24px; grid-template-columns: 1fr auto 1fr; }
  .hero { padding: 60px 24px 80px; }
  .hero-feature { max-width: 480px; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 56px 24px 40px; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 36px; margin-bottom: 20px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 36px 22px; padding: 0 24px 60px; }
  .section-head { padding: 72px 24px 30px; }
  .cat-hero { padding: 40px 24px 52px; }
  .cat-layout { grid-template-columns: 1fr; padding: 40px 24px 60px; gap: 36px; }
  .filter { position: static; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 22px; }
  .review-wrap { grid-template-columns: 1fr; padding: 40px 24px 60px; gap: 48px; }
  .side { position: static; }
  .verdict-grid { gap: 28px; }
  .user-reviews { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .topbar { padding: 10px 16px; gap: 10px; font-size: 9px; letter-spacing: 0.15em; }
  .topbar-left { gap: 14px; }
  .nav { padding: 1px 16px; grid-template-columns: auto 1fr; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-logo { grid-column: 1; justify-self: start; }
  .nav-hamburger { display: inline-flex; grid-column: 2; justify-self: end; }
  .hero { padding: 50px 16px 64px; }
  .hero-h1 { font-size: 48px; }
  .hero-sub { font-size: 17px; }
  .hero-feature { margin-top: 54px; }
  .hero-feature-img { padding: 36px; }
  .hero-feature-score { font-size: 38px; padding: 8px 18px; }
  .stats { padding: 50px 16px 30px; }
  .stat { padding: 16px 14px; }
  .stat-num { font-size: 40px; }
  .section-head { padding: 60px 16px 26px; }
  .section-title { font-size: 38px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 24px 14px; padding: 0 16px 50px; }
  .card-img-wrap { padding: 20px; }
  .card-title { font-size: 16px; min-height: 42px; }
  .card-price { font-size: 17px; }
  .card-score em { font-size: 16px; }
  .breadcrumb { padding: 22px 16px 0; font-size: 10px; letter-spacing: 0.12em; }
  .cat-hero { padding: 32px 16px 40px; }
  .cat-hero h1 { font-size: 48px; }
  .cat-hero p { font-size: 15px; }
  .cat-hero-meta { flex-direction: column; gap: 10px; padding: 14px 20px; }
  .cat-hero-meta .divider { display: none; }
  .cat-layout { padding: 30px 16px 50px; gap: 28px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 22px 12px; }
  .cat-toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .review-wrap { padding: 28px 16px 50px; gap: 36px; }
  .review-title { font-size: 40px; }
  .review-meta { gap: 14px; font-size: 10px; }
  .review-figure { padding: 30px; margin-bottom: 52px; }
  .review-figure-score { padding: 12px 20px; }
  .review-figure-score-num { font-size: 36px; }
  .lede { font-size: 21px; padding: 0 10px; }
  .lede::first-letter { font-size: 70px; }
  .review-h2 { font-size: 30px; margin-top: 52px; padding-top: 36px; }
  .pull-quote { font-size: 22px; padding: 32px 18px; margin: 40px 0; }
  .verdict-grid { grid-template-columns: 1fr; }
  .verdict-col { padding: 28px 22px; }
  .score-row { grid-template-columns: 110px 1fr 50px; gap: 14px; }
  .score-val { font-size: 22px; }
  .verdict-banner { padding: 48px 24px; margin: 50px 0; }
  .verdict-banner-score { font-size: 110px; }
  .verdict-banner h2 { font-size: 28px; }
  .side-price { font-size: 48px; }
  .footer { padding: 60px 16px 28px; }
  .footer-mega { font-size: 60px; margin-bottom: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
  .footer-bottom a { margin: 0 10px; }
}
@media (max-width: 480px) {
  .grid, .cat-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 42px; }
}

/* === Content CSS dark overrides === */
.product-hero, .rec-header, .gallery-section, .section-card, .features-section, .review-content, .review-card, .faq-answer, .test-step, .related-card { background: var(--card, #181614); color: var(--ink, #e8e0d4); border-color: var(--line, rgba(212,175,94,0.15)); }
.product-name, .rec-title, .section-card-title, .features-section .features-title, .test-section .test-title, .reviews-section .reviews-title, .feature-title, .test-step-title, .reviewer-name, .verdict-title, .gallery-section .gallery-title, .score-value, .price-tag, .faq-question { color: var(--ink, #e8e0d4); }
.product-category, .rec-category, .rec-rating-text, .feature-desc, .test-step-desc, .review-card-text, .verdict-text, .review-callout p, .review-content p, .review-content li, .review-intro, .review-intro p, .review-highlight-box .highlight-text, .score-label, .pros-cons-list li, .related-card-body h3 { color: var(--ink-2, #a89b8c); }
.product-summary, .rec-summary { background: rgba(212,175,94,0.1); border-color: var(--gold, #d4af5e); color: var(--ink, #e8e0d4); }
.feature-card { background: rgba(255,255,255,0.04); border-color: var(--line, rgba(212,175,94,0.15)); }
.feature-icon { background: rgba(255,255,255,0.06); }
.test-section { background: rgba(255,255,255,0.03); }
.review-score-breakdown { background: rgba(255,255,255,0.04); border-color: var(--line, rgba(212,175,94,0.15)); }
.score-bar { background: rgba(255,255,255,0.1); }
.review-highlight-box { background: rgba(212,175,94,0.08); border-color: rgba(212,175,94,0.25); }
.review-callout { background: rgba(212,175,94,0.06); border-color: rgba(212,175,94,0.2); }
.faq-item { border-color: var(--line, rgba(212,175,94,0.15)); }
.faq-question { background: rgba(255,255,255,0.04); color: var(--ink, #e8e0d4); }
.verdict-section { background: rgba(212,175,94,0.06); border-color: rgba(212,175,94,0.2); }
.verdict-score .score-number { color: var(--gold, #d4af5e); }
.specs-table tr:nth-child(odd) { background: rgba(255,255,255,0.03); }
.specs-table tr:nth-child(even) { background: transparent; }
.specs-table td:first-child { color: var(--ink, #e8e0d4); }
.specs-table tr { border-color: var(--line, rgba(212,175,94,0.15)); }
.gallery-large { background: rgba(255,255,255,0.04); }
.product-image { background: rgba(255,255,255,0.04); }
.related-card { background: var(--card, #181614); border-color: var(--line, rgba(212,175,94,0.15)); }
.related-card-img { background: rgba(255,255,255,0.04); }
.main-cta, .rec-cta, .cta-button, .verdict-cta { background: var(--gold, #d4af5e); color: #0a0908; }
:root{--gallery-border:rgba(212,175,94,0.25);--gallery-active:#d4af5e;--gallery-glow:rgba(212,175,94,0.25)}

/* Trust Badges - Luxury Dark */
.trust-badges { gap: 10px; margin: 16px 0 20px; }
.trust-badge { background: var(--bg-2); border: 1px solid var(--line-2); padding: 12px 18px; border-radius: 4px; font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 0.03em; }

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

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