/* ============================================================
   Ember Atlas — Editorial Home Fragrance Review
   Comprehensive design system
   ============================================================ */

/* ---- Web fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- Tokens ---- */
:root {
  --bg: #faf6ee;
  --bg-elev: #ffffff;
  --bg-sand: #f3ecde;
  --bg-deep: #1a1410;
  --bg-deeper: #0f0a07;

  --ink: #1f1813;
  --body: #3b332b;
  --muted: #847a6c;
  --line: #e6dac4;
  --line-soft: #efe5d2;

  --gold: #b88a3e;
  --gold-deep: #8c6320;
  --gold-soft: #d9bd80;
  --amber: #c8893f;
  --ember: #a8521f;
  --sage: #7a8a6f;
  --sage-soft: #b9c2af;

  --shadow-sm: 0 1px 2px rgba(58, 38, 14, .04), 0 1px 3px rgba(58, 38, 14, .06);
  --shadow-md: 0 6px 20px -8px rgba(58, 38, 14, .18), 0 2px 6px rgba(58, 38, 14, .06);
  --shadow-lg: 0 24px 60px -28px rgba(58, 38, 14, .32), 0 8px 24px -12px rgba(58, 38, 14, .14);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1240px;
  --header-h: 78px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern','liga','calt','ss01';
}
img { max-width: 100%; display: block; }
a { color: var(--ember); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-deep); }
button { font-family: inherit; cursor: pointer; }
ul { padding-left: 1.2rem; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 .6em;
  letter-spacing: -.005em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.8rem); font-weight: 600; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 700; letter-spacing: .02em; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: ''; width: 24px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, .92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .005em;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.logo:hover { color: var(--ink); }
.logo-img {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 4px;
  flex: 0 0 42px;
  object-fit: contain;
  box-shadow: var(--shadow-sm);
}
.logo .logo-stack { display: flex; flex-direction: column; line-height: 1; }
.logo .logo-stack .logo-name { line-height: 1.05; }
.logo .logo-tag {
  display: block;
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
}

/* Nav */
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color .2s, background .2s;
}
nav a:hover { color: var(--gold-deep); background: rgba(184, 138, 62, .06); }
nav a.active { color: var(--gold-deep); }
nav a.nav-cta {
  margin-left: 10px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
nav a.nav-cta::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-soft);
}
nav a.nav-cta:hover { background: var(--gold-deep); color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  margin: 4px auto;
  transition: .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    box-shadow: 0 24px 32px -22px rgba(58, 38, 14, .25);
  }
  header.nav-open nav { transform: none; opacity: 1; pointer-events: auto; }
  nav a { padding: 14px 12px; border-radius: 6px; }
  nav a.nav-cta { margin: 8px 0 0; text-align: center; justify-content: center; }
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 80px 0 100px;
  background: var(--bg-deep);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center right;
  filter: saturate(1.05) contrast(1.04);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(110deg, rgba(15, 10, 7, .9) 0%, rgba(15, 10, 7, .76) 38%, rgba(15, 10, 7, .35) 65%, rgba(15, 10, 7, .15) 100%),
    radial-gradient(ellipse at 80% 50%, transparent 0%, rgba(15, 10, 7, .35) 70%);
}
.hero-content {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  color: #f5ead4;
}
.hero-text { color: #f5ead4; }
.hero-text .eyebrow { color: var(--gold-soft); }
.hero-text .eyebrow::before { background: var(--gold-soft); }
.hero-text h1 {
  color: #fffaf0;
  margin: 18px 0 22px;
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -.022em;
}
.hero-text h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  display: inline;
}
.hero-text .lede {
  color: rgba(245, 234, 212, .82);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 100px;
  border: none;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(184, 138, 62, .55), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn-primary:hover { transform: translateY(-1px); color: #fff; box-shadow: 0 18px 28px -10px rgba(184, 138, 62, .7); }
.btn-ghost {
  background: rgba(255, 250, 240, .07);
  color: #fffaf0;
  border: 1px solid rgba(217, 189, 128, .35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 250, 240, .14); color: #fff; }
.btn-arrow { transition: transform .2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Scent Notes — replaces stats block */
.scent-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(217, 189, 128, .25);
  border-bottom: 1px solid rgba(217, 189, 128, .25);
  padding: 22px 0;
  max-width: 600px;
}
.scent-note {
  text-align: left;
  padding: 0 22px 0 0;
  position: relative;
}
.scent-note + .scent-note { padding-left: 22px; border-left: 1px solid rgba(217, 189, 128, .2); }
.scent-note-head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.scent-note-head .scent-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 10px rgba(217, 189, 128, .8);
}
.scent-note-list {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-style: italic;
  color: #f5ead4;
  line-height: 1.4;
  letter-spacing: .005em;
}

/* Hero visual — decorated logo */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-emblem {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-emblem .ring-outer,
.logo-emblem .ring-inner,
.logo-emblem .ring-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.logo-emblem .ring-outer { inset: -32px; border: 1px dashed rgba(217, 189, 128, .25); animation: rotate 80s linear infinite; }
.logo-emblem .ring-inner { inset: 16px; border: 1px solid rgba(217, 189, 128, .5); }
.logo-emblem .ring-deco { inset: -12px; border: 1px solid rgba(217, 189, 128, .18); }
@keyframes rotate { to { transform: rotate(360deg); } }

.logo-emblem .corner-orn {
  position: absolute;
  width: 22px; height: 22px;
  color: var(--gold-soft);
  opacity: .85;
}
.logo-emblem .corner-orn.tl { top: 0; left: 50%; transform: translate(-50%, -34px); }
.logo-emblem .corner-orn.br { bottom: 0; left: 50%; transform: translate(-50%, 34px); }
.logo-emblem .corner-orn.lt { left: 0; top: 50%; transform: translate(-34px, -50%); }
.logo-emblem .corner-orn.rt { right: 0; top: 50%; transform: translate(34px, -50%); }

.logo-emblem .logo-disc {
  position: relative;
  width: 78%; height: 78%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(184, 138, 62, .25), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(168, 82, 31, .18), transparent 55%),
    radial-gradient(circle at 50% 50%, #1f140d, #0c0805 75%);
  border: 1px solid rgba(217, 189, 128, .55);
  box-shadow:
    0 30px 80px -30px rgba(0, 0, 0, .8),
    inset 0 0 0 8px rgba(217, 189, 128, .06),
    inset 0 0 80px rgba(184, 138, 62, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-emblem .logo-disc::before {
  content: '';
  position: absolute; inset: 6%;
  border: 1px solid rgba(217, 189, 128, .22);
  border-radius: 50%;
}
.logo-emblem .logo-disc::after {
  content: '';
  position: absolute; inset: 14%;
  border: 1px dashed rgba(217, 189, 128, .14);
  border-radius: 50%;
}
.logo-emblem .logo-disc img {
  width: 72%; height: auto; display: block;
  filter:
    drop-shadow(0 6px 18px rgba(0, 0, 0, .55))
    drop-shadow(0 0 24px rgba(217, 189, 128, .35));
  /* Invert/recolor the dark-on-light logo so it reads on the dark disc */
  -webkit-filter:
    drop-shadow(0 6px 18px rgba(0, 0, 0, .55))
    drop-shadow(0 0 24px rgba(217, 189, 128, .35));
  position: relative;
  z-index: 1;
}
.logo-emblem .est-ribbon {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  padding: 8px 22px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 10px 22px -10px rgba(0, 0, 0, .6);
}

@media (max-width: 880px) {
  .hero { min-height: 0; padding: 60px 0 80px; }
  .hero-content { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; }
  .logo-emblem { width: min(280px, 100%); }
  .scent-notes { grid-template-columns: 1fr; gap: 18px; padding: 20px 0; }
  .scent-note { padding: 0 !important; border: none !important; }
  .scent-note + .scent-note { padding-top: 18px !important; border-top: 1px solid rgba(217, 189, 128, .15) !important; }
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background:
    radial-gradient(ellipse at 70% 0%, rgba(217, 189, 128, .12), transparent 60%),
    linear-gradient(180deg, var(--bg-sand), var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 36px 0 28px;
}
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap;
  font-size: .85rem;
  color: var(--muted);
  gap: 8px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ember); }
.breadcrumb sep { color: var(--gold); }
.breadcrumb span { color: var(--ink); font-weight: 500; }

.static-hero {
  background:
    radial-gradient(ellipse at 70% 0%, rgba(217, 189, 128, .14), transparent 60%),
    linear-gradient(180deg, var(--bg-sand), var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 70px 0 64px;
  text-align: center;
}
.static-hero .container { max-width: 760px; }
.static-hero h1 { font-style: italic; font-weight: 500; }
.static-hero p { color: var(--muted); font-size: 1.1rem; max-width: 600px; margin: 14px auto 0; }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { justify-content: center; margin-bottom: 14px; }
.section-head h2 {
  font-style: italic;
  font-weight: 500;
}
.section-head p {
  color: var(--muted);
  font-size: 1.06rem;
  margin-top: 6px;
}
.divider {
  width: 80px; height: 1px;
  background: var(--gold);
  margin: 18px auto 0;
  position: relative;
}
.divider::before {
  content: '✦';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg);
  padding: 0 8px;
  color: var(--gold);
  font-size: .9rem;
}

/* ============================================================
   AFFILIATE DISCLOSURE BAR
   ============================================================ */
.aff-bar {
  background: linear-gradient(90deg, var(--bg-sand) 0%, #ede2c9 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: .82rem;
  color: var(--body);
  text-align: center;
}
.aff-bar strong { color: var(--gold-deep); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .75rem; margin-right: 4px; }

/* ============================================================
   EDITOR'S TOP PICKS
   ============================================================ */
.top-picks {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(217, 189, 128, .12), transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(122, 138, 111, .08), transparent 50%),
    var(--bg-sand);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.top-picks .section-head { margin-bottom: 80px; }
.tp-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.tp-item {
  display: grid;
  grid-template-columns: minmax(110px, 140px) 320px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 28px 36px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.tp-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
  color: inherit;
}
.tp-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--ember));
  opacity: 0;
  transition: opacity .25s;
}
.tp-item:hover::before { opacity: 1; }

.tp-rank {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 7.5rem);
  line-height: .9;
  font-weight: 500;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  background: linear-gradient(135deg, transparent 30%, rgba(184, 138, 62, .18) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-align: center;
}
.tp-rank-label {
  display: block;
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  -webkit-text-stroke: 0;
  font-weight: 700;
  margin-top: 4px;
}
.tp-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-sand);
  position: relative;
}
.tp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tp-item:hover .tp-img img { transform: scale(1.04); }
.tp-img .tp-medal {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: 0 6px 14px -6px rgba(0, 0, 0, .4);
}
.tp-body { display: flex; flex-direction: column; gap: 12px; }
.tp-brand {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.tp-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}
.tp-quote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.55;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  margin: 6px 0 0;
}
.tp-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: .85rem;
  color: var(--muted);
}
.tp-stars { color: var(--gold); letter-spacing: .04em; font-size: .92rem; }
.tp-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  color: var(--ember);
  font-size: .9rem;
}
.tp-arrow {
  width: 60px; height: 60px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  font-size: 1.3rem;
  transition: background .2s, color .2s, border-color .2s;
}
.tp-item:hover .tp-arrow { background: var(--ink); color: var(--bg); border-color: var(--ink); }

@media (max-width: 1000px) {
  .tp-item { grid-template-columns: minmax(80px, 100px) 1fr; padding: 22px; gap: 22px; }
  .tp-item .tp-img,
  .tp-item .tp-arrow { display: none; }
  .tp-rank { font-size: 4.5rem; }
}

/* ============================================================
   ALL REVIEWS
   ============================================================ */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1000px) { .content-with-sidebar { grid-template-columns: 1fr; } }

.filter-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin-bottom: 28px;
  padding: 18px 22px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.filter-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.filter-select {
  font-family: var(--sans);
  font-size: .9rem;
  padding: 10px 36px 10px 14px;
  border: 1px solid var(--line);
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23847a6c' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 100px;
  color: var(--ink);
  cursor: pointer;
}
.filter-select:focus { outline: none; border-color: var(--gold); }
.filter-reset {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.filter-reset:hover { background: var(--ink); color: var(--bg); }
.filter-results {
  margin-left: auto;
  font-size: .82rem;
  color: var(--muted);
  font-style: italic;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
  color: inherit;
}
.card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-sand);
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-badge,
.card-rating-badge,
.price-badge {
  position: absolute;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.card-badge {
  top: 12px; left: 12px;
  background: rgba(255, 250, 240, .92);
  color: var(--ink);
  border: 1px solid rgba(255, 250, 240, .4);
}
.card-rating-badge {
  top: 12px; right: 12px;
  background: rgba(15, 10, 7, .82);
  color: var(--gold-soft);
  display: inline-flex; align-items: center; gap: 4px;
}
.card-rating-badge .si { color: var(--gold); }

.price-badge { bottom: 12px; left: 12px; }
.price-badge.editor    { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff; }
.price-badge.value     { background: var(--sage); color: #fff; }
.price-badge.trending  { background: var(--ember); color: #fff; }
.price-badge.premium   { background: var(--ink); color: var(--gold-soft); }
.price-badge.new       { background: #fff; color: var(--ink); border: 1px solid var(--ink); }
.price-badge.staff     { background: #6b3f15; color: var(--gold-soft); }

.card-body {
  padding: 20px 22px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-brand {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  min-height: 2.3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.stars-row {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem;
  color: var(--muted);
}
.stars-char { color: var(--gold); letter-spacing: .04em; font-size: .92rem; }
.rating-num { font-weight: 700; color: var(--ink); }
.rating-count { color: var(--muted); font-size: .8rem; }
.card-snippet {
  font-size: .9rem;
  color: var(--body);
  line-height: 1.55;
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-pricing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 22px 0;
}
.card-price {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.card-price-meta {
  font-size: .72rem;
  color: var(--muted);
  font-style: italic;
}
.card-was {
  font-size: .9rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 6px;
}
.card-footer {
  padding: 12px 22px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line-soft);
  margin-top: 12px;
}
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ember);
  letter-spacing: .04em;
}
.btn-review::after { content: '→'; transition: transform .2s; }
.product-card:hover .btn-review::after { transform: translateX(3px); }
.card-est {
  font-size: .75rem;
  color: var(--muted);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  display: flex; flex-direction: column; gap: 24px;
  position: sticky; top: calc(var(--header-h) + 20px);
}
.sidebar-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: -.005em;
  position: relative;
  padding-bottom: 12px;
}
.sidebar-card h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 1px; background: var(--gold);
}
.brand-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.brand-tag {
  font-size: .78rem;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--bg-sand);
  color: var(--ink);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.brand-tag:hover { background: var(--gold-soft); color: #fff; }
.brand-tag.active { background: var(--ink); color: var(--bg); }

.shelf-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.shelf-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  font-size: .9rem;
  color: var(--body);
  border-bottom: 1px dashed var(--line);
}
.shelf-list a:hover { color: var(--ember); }
.shelf-list a span { color: var(--muted); font-size: .78rem; }

.note-pill-list { display: flex; flex-wrap: wrap; gap: 6px; }
.note-pill {
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--body);
  background: transparent;
}

@media (max-width: 1000px) { .sidebar { position: static; } }

.pagination {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 56px;
}
.page-btn {
  min-width: 42px; height: 42px;
  padding: 0 12px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  transition: background .2s, color .2s, border-color .2s;
}
.page-btn:hover:not(.disabled):not(.active) { background: var(--bg-sand); border-color: var(--gold); }
.page-btn.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.page-btn.disabled { opacity: .35; pointer-events: none; }
.page-nav { border-radius: 100px; }

.pg-empty {
  background: var(--bg-elev);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  color: var(--muted);
  margin-top: 26px;
  font-style: italic;
}
.pg-empty-btn {
  margin-left: 10px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .82rem;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  margin: 50px 0 64px;
}
@media (max-width: 1000px) { .product-layout { grid-template-columns: 1fr; gap: 32px; } }

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.gallery-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.gallery-thumb {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  background: var(--bg-elev);
  aspect-ratio: 4/3;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { transform: translateY(-2px); border-color: var(--gold-soft); }
.gallery-thumb.active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(184, 138, 62, .15); }

.product-info { display: flex; flex-direction: column; gap: 18px; }
.p-brand {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 8px;
}
.p-brand::before { content: ''; width: 22px; height: 1px; background: var(--gold-deep); }
.p-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.005em;
}
.p-rating { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.p-rating .stars-char { font-size: 1.2rem; color: var(--gold); letter-spacing: .04em; }
.p-rating .score {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
}
.p-rating .reviews-ct { font-size: .85rem; color: var(--muted); }

.price-block {
  display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--bg-sand) 0%, #ede2c9 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.price-block .price-now {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.price-block .price-was {
  font-size: 1.05rem;
  color: var(--muted);
  text-decoration: line-through;
}
.price-block .price-save {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ember);
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(168, 82, 31, .1);
  padding: 5px 11px;
  border-radius: 100px;
}
.price-block .price-est {
  font-size: .72rem;
  color: var(--muted);
  font-style: italic;
  width: 100%;
  margin-top: 4px;
}

.score-bar-wrap {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.score-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.score-bar-label span:last-child { color: var(--ink); font-family: var(--serif); font-size: 1rem; letter-spacing: 0; text-transform: none; font-weight: 600; }
.score-bar-track {
  height: 6px;
  background: var(--bg-sand);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--ember));
  border-radius: 100px;
  position: relative;
}

.verdict-box {
  background: linear-gradient(135deg, #1a1410 0%, #2a1f15 100%);
  color: #f5ead4;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
}
.verdict-box::before {
  content: '"';
  position: absolute;
  top: -24px; left: 14px;
  font-family: var(--serif);
  font-size: 8rem;
  color: rgba(217, 189, 128, .14);
  line-height: 1;
}
.verdict-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.verdict-label::before { content: '✦'; color: var(--gold); }
.verdict-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: #f5ead4;
  margin: 0;
}

.cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.btn-buy {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 14px 24px -10px rgba(184, 138, 62, .55), inset 0 1px 0 rgba(255, 255, 255, .25);
  transition: transform .2s, box-shadow .2s, color .2s;
  flex: 1; min-width: 240px; justify-content: center;
}
.btn-buy:hover { transform: translateY(-1px); color: #fff; box-shadow: 0 18px 28px -10px rgba(184, 138, 62, .7); }
.btn-buy::after { content: '→'; font-weight: 600; transition: transform .2s; }
.btn-buy:hover::after { transform: translateX(3px); }
.btn-read-reviews {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn-read-reviews:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.cta-disclosure { font-size: .76rem; color: var(--muted); font-style: italic; margin: 6px 0 0; }

.features-list, .pros-box ul, .cons-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.features-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px dashed var(--line);
  font-size: .94rem;
  color: var(--body);
}
.features-list li:last-child { border-bottom: none; }
.features-list li::before {
  content: '✦';
  position: absolute;
  left: 4px; top: 8px;
  color: var(--gold);
  font-size: .85rem;
}

.section-label-h3 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted);
  margin: 4px 0 12px;
  font-family: var(--sans);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
}
@media (max-width: 800px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
}
.pros-box { border-top: 3px solid var(--sage); }
.cons-box { border-top: 3px solid var(--ember); }
.box-head {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pros-box .box-head { color: var(--sage); }
.cons-box .box-head { color: var(--ember); }
.pros-box ul li, .cons-box ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px dashed var(--line);
  font-size: .94rem;
  color: var(--body);
}
.pros-box ul li:last-child, .cons-box ul li:last-child { border-bottom: none; }
.pros-box ul li::before, .cons-box ul li::before {
  position: absolute; left: 0; top: 7px;
  font-weight: 700;
}
.pros-box ul li::before { content: '+'; color: var(--sage); }
.cons-box ul li::before { content: '–'; color: var(--ember); }

/* Diagrams */
.diagram-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 48px 0;
}
@media (max-width: 800px) { .diagram-grid { grid-template-columns: 1fr; } }
.diagram-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
}
.diagram-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
}
.diagram-sub {
  font-size: .82rem;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 22px;
}
.perf-row { display: grid; grid-template-columns: 130px 1fr 36px; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.perf-row:last-child { border-bottom: none; }
.perf-label { font-size: .85rem; font-weight: 500; color: var(--ink); }
.perf-bar { height: 6px; background: var(--bg-sand); border-radius: 100px; overflow: hidden; }
.perf-fill { height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); border-radius: 100px; }
.perf-score {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  text-align: right;
}
.radar { width: 100%; aspect-ratio: 1; max-width: 360px; margin: 0 auto; }
.radar .grid { stroke: var(--line); fill: none; stroke-width: 1; }
.radar .axis { stroke: var(--line); stroke-width: 1; }
.radar .area { fill: rgba(184, 138, 62, .25); stroke: var(--gold); stroke-width: 2; }
.radar .dot { fill: var(--gold-deep); }
.radar .label { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; fill: var(--muted); }

.product-desc {
  margin: 56px 0;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  position: relative;
}
@media (max-width: 700px) { .product-desc { padding: 32px 24px; } }
.product-desc h2 {
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.product-desc p {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--body);
  margin: 0 0 1.1em;
}
.product-desc p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.6rem;
  font-weight: 600;
  float: left;
  line-height: .85;
  margin: 6px 14px 0 0;
  color: var(--gold-deep);
}

.reviews-section { margin: 56px 0; }
.reviews-section h2 {
  text-align: center;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 32px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.review-top {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.reviewer-name {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
}
.review-date { font-size: .78rem; color: var(--muted); }
.review-stars { color: var(--gold); letter-spacing: .04em; margin-bottom: 8px; }
.review-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.review-text {
  font-size: .92rem;
  color: var(--body);
  line-height: 1.55;
}

.related-section {
  background: var(--bg-sand);
  border-top: 1px solid var(--line);
  padding: 80px 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }

.related-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
  color: inherit;
}
.related-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-sand); }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.related-card:hover .related-img img { transform: scale(1.04); }
.related-body { padding: 18px 20px; }
.related-brand { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.related-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; line-height: 1.3; color: var(--ink); margin-bottom: 8px; }
.related-stars { font-size: .82rem; color: var(--gold); margin-bottom: 6px; }
.related-link { font-size: .82rem; font-weight: 600; color: var(--ember); }

.ad-placement { padding: 28px 0; }
.ad-placement-inner { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.ad-unit { width: 300px; height: 250px; background: var(--bg-sand); border: 1px dashed var(--line); border-radius: var(--radius-md); }

/* Categories strip */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .cat-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cat-strip { grid-template-columns: 1fr; } }
.cat-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.cat-card:hover { transform: translateY(-3px); border-color: var(--gold-soft); box-shadow: var(--shadow-md); color: inherit; }
.cat-icon {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-sand);
  border: 1px solid var(--line);
  color: var(--gold-deep);
}
.cat-card h3 { font-size: 1.18rem; margin: 0 0 6px; }
.cat-card p { font-size: .85rem; color: var(--muted); margin: 0; }

.editorial-row {
  background: linear-gradient(135deg, #1a1410 0%, #2a1f15 100%);
  color: #f5ead4;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.editorial-row::before, .editorial-row::after {
  content: '"';
  position: absolute;
  font-family: var(--serif);
  font-size: 16rem;
  line-height: 1;
  color: rgba(217, 189, 128, .08);
}
.editorial-row::before { top: -40px; left: 5%; }
.editorial-row::after { bottom: -120px; right: 5%; transform: scaleX(-1); }
.editorial-row .container { position: relative; z-index: 1; max-width: 880px; text-align: center; }
.editorial-row .eyebrow { color: var(--gold-soft); justify-content: center; }
.editorial-row .eyebrow::before, .editorial-row .eyebrow::after { background: var(--gold-soft); }
.editorial-row blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.4;
  margin: 22px 0;
  color: #fffaf0;
}
.editorial-row .attrib {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* Static content pages */
.static-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 24px;
}
.static-content h2 {
  margin: 50px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-style: italic;
  font-weight: 500;
}
.static-content p, .static-content li {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--body);
}
.static-content ul { padding-left: 1.4rem; }
.static-content li { margin-bottom: 10px; }
.static-content strong { color: var(--ink); font-weight: 600; }
.static-content a { color: var(--ember); border-bottom: 1px dotted var(--gold); }

/* Footer */
footer {
  background: var(--bg-deeper);
  color: rgba(245, 234, 212, .76);
  padding: 80px 0 28px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(184, 138, 62, .12), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(168, 82, 31, .08), transparent 50%);
  pointer-events: none;
}
footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .9fr .9fr .9fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand { max-width: 380px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-logo-img {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 250, 240, .04);
  border: 1px solid rgba(217, 189, 128, .22);
  padding: 3px;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-brand p {
  color: rgba(245, 234, 212, .65);
  font-size: .92rem;
  line-height: 1.6;
}
.footer-disclaimer {
  font-size: .78rem !important;
  color: rgba(245, 234, 212, .45) !important;
  font-style: italic;
  margin-top: 12px !important;
  border-top: 1px solid rgba(217, 189, 128, .15);
  padding-top: 14px;
}
footer h4 {
  font-family: var(--serif);
  color: #fffaf0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 12px;
}
footer h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 24px; height: 1px;
  background: var(--gold);
}
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer ul a {
  color: rgba(245, 234, 212, .68);
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}
footer ul a:hover { color: var(--gold-soft); }

.footer-bottom {
  border-top: 1px solid rgba(217, 189, 128, .15);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .82rem;
  color: rgba(245, 234, 212, .45);
}
.footer-bottom a { color: rgba(245, 234, 212, .65); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px; right: 24px;
  z-index: 100;
  transform: translateY(120%);
  opacity: 0;
  transition: .4s;
  pointer-events: none;
}
#cookie-banner.visible { transform: none; opacity: 1; pointer-events: auto; }
.cookie-inner {
  background: var(--bg-deep);
  color: #f5ead4;
  border: 1px solid rgba(217, 189, 128, .25);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.cookie-text {
  margin: 0;
  font-size: .9rem;
  flex: 1;
  min-width: 240px;
  color: rgba(245, 234, 212, .8);
}
.cookie-text a { color: var(--gold-soft); border-bottom: 1px dotted; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept, .cookie-decline {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .2s;
}
.cookie-accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  border-color: var(--gold-deep);
}
.cookie-accept:hover { transform: translateY(-1px); }
.cookie-decline {
  background: transparent;
  color: var(--gold-soft);
  border-color: rgba(217, 189, 128, .3);
}
.cookie-decline:hover { background: rgba(217, 189, 128, .12); }

::selection { background: var(--gold-soft); color: var(--ink); }

@media print {
  header, footer, .cookie-inner, .ad-placement, .filter-bar, .pagination { display: none !important; }
  .product-desc { border: none; padding: 0; }
}
