/* =============================================================
   CandleVibed — Design System v2
   Professional Candle Review Site
   ============================================================= */

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

/* ── Reset & Base ─────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  /* Palette */
  --black:        #16120e;
  --charcoal:     #2a211a;
  --cream:        #faf6f0;
  --cream-dark:   #f2e9de;
  --cream-deep:   #e8d9c8;
  --gold:         #c07d2a;
  --gold-light:   #dba756;
  --gold-pale:    #f0dab8;
  --gold-dark:    #8b5a1a;
  --rose:         #b87a6e;
  --text:         #231a12;
  --text-muted:   #6b5340;
  --border:       #ddd0be;
  --border-light: #ede4d6;

  /* Spacing */
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;

  /* Shadow */
  --shadow-xs:    0 1px 4px rgba(0,0,0,.06);
  --shadow:       0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.14);
  --shadow-gold:  0 8px 32px rgba(192,125,42,.18);

  /* Typography */
  --font-head:    'Cormorant Garamond', Georgia, serif;
  --font-sc:      'Cormorant SC', Georgia, serif;
  --font:         'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--charcoal); text-decoration: none }
a:hover { text-decoration: underline }
img { max-width: 100%; display: block }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: 28px;
}

/* ── Utility ────────────────────────────────────────────────── */
.section   { padding: 80px 0 }
.section-sm { padding: 48px 0 }
.section-head { text-align: center; margin-bottom: 56px }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.section-head p {
  font-family: var(--font);
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================================
   HEADER — completely rebuilt
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--black);
  transition: background .35s, box-shadow .35s;
}
.site-header.scrolled {
  background: rgba(22,18,14,.98);
  box-shadow: 0 4px 28px rgba(0,0,0,.35);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: 28px;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-emblem {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-top {
  font-family: var(--font-sc);
  font-size: 1.18rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .06em;
}
.logo-bottom {
  font-family: var(--font);
  font-size: .58rem;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Primary nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  color: rgba(255,255,255,.72);
  font-family: var(--font);
  font-size: .84rem;
  font-weight: 400;
  letter-spacing: .04em;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform .25s;
}
.site-nav a:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.06);
}
.site-nav a:hover::after { transform: scaleX(1) }
.nav-cta-pill {
  background: var(--gold) !important;
  color: #fff !important;
  font-weight: 500 !important;
  border-radius: 20px !important;
  padding: 8px 20px !important;
}
.nav-cta-pill::after { display: none !important }
.nav-cta-pill:hover { background: var(--gold-light) !important; color: #fff !important }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg) }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0) }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg) }

/* ============================================================
   HERO — index page
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  background: linear-gradient(160deg, var(--black) 0%, #2c1f12 60%, #3d2a17 100%);
  isolation: isolate;
}
/* Subtle texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: saturate(0.6);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,18,14,.75) 0%, rgba(45,27,12,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(192,125,42,.35);
  background: rgba(192,125,42,.08);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

/* ── Scent Mood Showcase (replaces stats) ──────────────────── */
.scent-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 0;
}
.scent-mood {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  position: relative;
  animation: floatUp .6s ease both;
}
.scent-mood:nth-child(1) { animation-delay: .1s }
.scent-mood:nth-child(3) { animation-delay: .2s }
.scent-mood:nth-child(5) { animation-delay: .3s }
@keyframes floatUp {
  from { opacity: 0; transform: translateY(14px) }
  to   { opacity: 1; transform: translateY(0) }
}
.scent-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
}
.scent-orb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(192,125,42,.4);
  background: rgba(192,125,42,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform .3s, border-color .3s, background .3s;
  backdrop-filter: blur(4px);
}
.scent-mood:hover .scent-orb {
  transform: translateY(-4px) scale(1.06);
  border-color: rgba(219,167,86,.7);
  background: rgba(192,125,42,.2);
}
.scent-label {
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.scent-desc {
  font-family: var(--font-head);
  font-size: .88rem;
  font-style: italic;
  color: rgba(255,255,255,.4);
  margin-top: -6px;
}

/* ── Disclosure bar ─────────────────────────────────────────── */
.aff-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  text-align: center;
  font-size: .79rem;
  color: var(--text-muted);
  letter-spacing: .01em;
}
.aff-bar strong { color: var(--text) }

/* ============================================================
   EDITORIAL SECTION — Editor's Top Picks (completely rebuilt)
   ============================================================ */
.editorial-section {
  padding: 88px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.editorial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(192,125,42,.07) 0%, transparent 65%);
  pointer-events: none;
}
.editorial-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
.editorial-eyebrow span {
  font-family: var(--font);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.editorial-eyebrow::before,
.editorial-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: rgba(192,125,42,.4);
}
.editorial-section .section-head h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.editorial-section .section-head p { color: rgba(255,255,255,.5) }
.editorial-section .divider {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: stretch;
}
@media(max-width: 860px) { .editorial-grid { grid-template-columns: 1fr } }

/* Hero editorial card (#1) */
.ed-card-hero {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, border-color .3s;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.ed-card-hero:hover {
  transform: translateY(-5px);
  border-color: rgba(192,125,42,.4);
  text-decoration: none;
  color: inherit;
}
.ed-card-hero .ed-img {
  height: 380px;
  overflow: hidden;
  position: relative;
}
.ed-card-hero .ed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.ed-card-hero:hover .ed-img img { transform: scale(1.04) }

.ed-card-sm {
  display: flex;
  flex-direction: row;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, border-color .3s;
  text-decoration: none;
  color: inherit;
  align-items: stretch;
  min-height: 0;
}
.ed-card-sm:hover {
  transform: translateY(-3px);
  border-color: rgba(192,125,42,.4);
  text-decoration: none;
  color: inherit;
}
.ed-card-sm .ed-img {
  width: 150px;
  flex-shrink: 0;
  overflow: hidden;
}
.ed-card-sm .ed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.ed-card-sm:hover .ed-img img { transform: scale(1.06) }

/* Body shared */
.ed-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}
.ed-card-hero .ed-body { border-top: 1px solid rgba(255,255,255,.07) }
.ed-card-sm .ed-body { justify-content: center; padding: 20px 22px }

.ed-rank {
  font-family: var(--font);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ed-rank::before {
  content: '✦';
  font-size: .6rem;
}
.ed-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
}
.ed-card-sm .ed-title {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ed-stars {
  color: var(--gold-light);
  font-size: .82rem;
  letter-spacing: 1px;
}
.ed-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--gold-light);
  margin-top: 4px;
  transition: color .2s;
}
.ed-cta::after { content: '→'; transition: transform .2s }
.ed-card-hero:hover .ed-cta,
.ed-card-sm:hover .ed-cta { color: #fff }
.ed-card-hero:hover .ed-cta::after,
.ed-card-sm:hover .ed-cta::after { transform: translateX(4px) }

/* ============================================================
   PRODUCT GRID — cleaned up
   ============================================================ */
.products-section { padding: 80px 0 }
.products-section .section-head { margin-bottom: 36px }

.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}
.filter-label {
  font-size: .73rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
}
.filter-select {
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .83rem;
  background: var(--cream);
  color: var(--text);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color .18s;
  appearance: auto;
}
.filter-select:focus { outline: none; border-color: var(--gold) }
.filter-reset {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: .78rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .18s;
  font-family: var(--font);
}
.filter-reset:hover { border-color: var(--gold); color: var(--gold) }
.filter-results { font-size: .78rem; color: var(--text-muted); margin-left: auto; white-space: nowrap }

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media(max-width:1100px) { .products-grid { grid-template-columns: repeat(3,1fr) } }
@media(max-width:760px)  { .products-grid { grid-template-columns: repeat(2,1fr) } }
@media(max-width:500px)  { .products-grid { grid-template-columns: 1fr } }

/* Product Card */
.product-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: transform .28s, box-shadow .28s, border-color .28s;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
  text-decoration: none;
  color: inherit;
}
.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--cream-dark);
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.product-card:hover .card-img-wrap img { transform: scale(1.05) }
.card-img-wrap.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal), var(--black));
}
.card-img-placeholder { font-size: 3.5rem; opacity: .25 }
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--gold-light);
  font-size: .65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font);
}
.card-rating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(22,18,14,.82);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
  backdrop-filter: blur(4px);
}
.card-rating-badge .si { color: var(--gold-light); font-size: .8rem }
.card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-brand {
  font-size: .67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-dark);
  margin-bottom: 7px;
  font-family: var(--font);
}
.card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text);
}
.card-snippet {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 300;
}
.stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.stars-char { color: var(--gold); font-size: .9rem; letter-spacing: 1px }
.rating-num { font-weight: 600; font-size: .85rem; color: var(--text) }
.rating-count { font-size: .75rem; color: var(--text-muted); font-weight: 300 }
.card-footer {
  padding: 12px 20px 16px;
  border-top: 1px solid var(--border-light);
}
.btn-review {
  display: block;
  text-align: center;
  background: var(--cream-dark);
  color: var(--charcoal);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: background .2s, color .2s;
  font-family: var(--font);
}
.product-card:hover .btn-review {
  background: var(--black);
  color: var(--gold-light);
}
.btn-review:hover { text-decoration: none }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 500;
  cursor: pointer; transition: all .2s;
  color: var(--text);
  font-family: var(--font);
}
.page-btn:hover, .page-btn.active {
  background: var(--black);
  color: var(--gold-light);
  border-color: var(--black);
}
.page-btn.disabled { opacity: .35; pointer-events: none }
.page-nav { padding: 0 14px; width: auto; font-size: .82rem }

/* Empty state */
.pg-empty {
  text-align: center;
  padding: 52px 24px;
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: .92rem;
  margin-top: 24px;
  font-weight: 300;
}
.pg-empty-btn {
  background: var(--black);
  color: var(--gold-light);
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  margin-left: 12px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 500;
  font-family: var(--font);
}

/* Sidebar layout */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 44px;
  align-items: start;
}
@media(max-width:1040px) { .content-with-sidebar { grid-template-columns: 1fr } .sidebar { display: none } }
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-xs);
  position: sticky;
  top: 88px;
}
.sidebar-widget h3 {
  font-family: var(--font-sc);
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border-light);
  color: var(--text);
  letter-spacing: .04em;
}
.sidebar-list { display: flex; flex-direction: column; gap: 0 }
.sidebar-item {
  display: flex; gap: 12px; align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-light);
  color: inherit; text-decoration: none;
  transition: background .15s;
}
.sidebar-item:last-child { border-bottom: none; padding-bottom: 0 }
.sidebar-item:hover { background: none }
.sidebar-rank {
  font-size: .85rem; font-weight: 700; color: var(--gold);
  min-width: 20px; text-align: center; flex-shrink: 0;
}
.sidebar-img {
  width: 48px; height: 48px;
  object-fit: cover; border-radius: var(--radius-sm);
  flex-shrink: 0; background: var(--cream-dark);
}
.sidebar-name {
  font-size: .78rem; font-weight: 500; color: var(--text);
  line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 2px;
}
.sidebar-stars { color: var(--gold); font-size: .7rem }
.sidebar-link { font-size: .7rem; color: var(--gold-dark); font-weight: 600 }

/* Brand cloud */
.brand-cloud-section {
  background: var(--cream-dark);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.brand-cloud-label {
  font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-muted); text-align: center; margin-bottom: 12px;
  font-family: var(--font);
}
.brand-cloud { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center }
.brand-tag {
  display: inline-block; padding: 5px 16px;
  border: 1.5px solid var(--border);
  border-radius: 20px; font-size: .77rem; font-weight: 500;
  color: var(--text-muted); cursor: pointer; transition: all .18s;
  background: #fff; user-select: none;
  font-family: var(--font);
}
.brand-tag:hover { border-color: var(--gold-dark); color: var(--gold-dark) }
.brand-tag.active { background: var(--black); color: var(--gold-light); border-color: var(--black) }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  padding: 32px 0;
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: rgba(255,255,255,.5); flex-wrap: wrap;
  font-family: var(--font);
}
.breadcrumb a { color: rgba(255,255,255,.7) }
.breadcrumb a:hover { color: var(--gold-light); text-decoration: none }
.breadcrumb sep { color: rgba(255,255,255,.3); margin: 0 2px }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 56px 0;
}
@media(max-width:920px) { .product-layout { grid-template-columns: 1fr; gap: 40px } }

/* Gallery */
.gallery { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 88px }
.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover }
.gallery-main.no-img {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  font-size: 5rem; opacity: .3;
}
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap }
.gallery-thumb {
  flex: 0 0 auto; width: 76px; height: 76px;
  border-radius: var(--radius-sm); cursor: pointer;
  border: 2px solid var(--border); transition: all .2s;
  opacity: .65; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.gallery-thumb img { max-width: 100%; max-height: 100%; object-fit: contain }
.gallery-thumb:hover, .gallery-thumb.active {
  opacity: 1; border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(192,125,42,.2);
}

/* Product info */
.p-brand {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cream-dark);
  color: var(--gold-dark);
  font-size: .68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 14px;
  font-family: var(--font);
}
.p-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem,3vw,2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--text);
}
.p-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 22px }
.p-rating .stars-char { font-size: 1.15rem; color: var(--gold) }
.p-rating .score { font-size: 1.1rem; font-weight: 600; color: var(--text) }
.p-rating .reviews-ct { font-size: .82rem; color: var(--text-muted); font-weight: 300 }
.score-bar-wrap {
  background: var(--cream-dark); border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 24px;
}
.score-bar-label {
  display: flex; justify-content: space-between;
  font-size: .75rem; color: var(--text-muted); margin-bottom: 8px;
  font-family: var(--font);
}
.score-bar-track { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden }
.score-bar-fill { height: 100%; background: linear-gradient(90deg,var(--gold-dark),var(--gold-light)); border-radius: 3px }

/* Verdict */
.verdict-box {
  background: linear-gradient(135deg, rgba(192,125,42,.06), rgba(192,125,42,.02));
  border: 1px solid rgba(192,125,42,.2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px; margin-bottom: 28px;
}
.verdict-label {
  font-family: var(--font);
  font-size: .68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold-dark); margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.verdict-label::before { content: '✦'; color: var(--gold); font-size: .7rem }
.verdict-text { font-size: .92rem; color: var(--text); line-height: 1.7; font-weight: 300 }

/* CTA */
.cta-group { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap }
.cta-disclosure {
  font-size: .75rem; color: var(--text-muted); margin: 0 0 30px;
  line-height: 1.5; font-style: italic; font-weight: 300;
}
.btn-buy {
  flex: 1 1 210px; min-width: 170px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--gold); color: #fff;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem; letter-spacing: .02em;
  box-shadow: var(--shadow-gold);
  transition: background .22s, transform .12s;
  font-family: var(--font);
}
.btn-buy:hover {
  background: var(--gold-dark); text-decoration: none;
  color: #fff; transform: translateY(-2px);
}
.btn-buy:active { transform: translateY(0) }
.btn-buy.alt { background: var(--charcoal) }
.btn-buy.alt:hover { background: var(--black) }
.btn-buy.outline {
  background: transparent; color: var(--gold); border: 2px solid var(--gold); box-shadow: none;
}
.btn-buy.outline:hover { background: var(--gold); color: #fff }
.btn-read-reviews {
  flex: 1; min-width: 140px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--cream-dark); color: var(--charcoal);
  padding: 14px 20px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: .88rem;
  transition: background .2s, color .2s;
  font-family: var(--font);
}
.btn-read-reviews:hover {
  background: var(--black); color: var(--gold-light); text-decoration: none;
}

/* Features */
.features-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 0 }
.features-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .88rem; font-weight: 300 }
.features-list li::before {
  content: '✦'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 3px; font-size: .65rem;
}
.features-heading {
  font-family: var(--font);
  font-size: .68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--text-muted); margin-bottom: 14px;
}

/* Pros / Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 48px 0 }
@media(max-width:600px) { .pros-cons { grid-template-columns: 1fr } }
.pros-box, .cons-box {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-xs);
}
.pros-box { border-top: 3px solid #16a34a }
.cons-box { border-top: 3px solid #dc2626 }
.box-head {
  font-family: var(--font); font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.pros-box .box-head { color: #16a34a }
.cons-box .box-head { color: #dc2626 }
.pros-box ul, .cons-box ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.pros-box li, .cons-box li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .86rem; line-height: 1.55; font-weight: 300;
}
.pros-box li::before { content: '✓'; color: #16a34a; font-weight: 700; flex-shrink: 0; margin-top: 1px }
.cons-box li::before { content: '✗'; color: #dc2626; font-weight: 700; flex-shrink: 0; margin-top: 1px }

/* Description */
.product-desc { margin: 0 0 52px }
.product-desc h2 {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 400; margin-bottom: 22px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border-light);
}
.product-desc p { margin-bottom: 18px; color: var(--text); font-size: .94rem; line-height: 1.8; font-weight: 300 }

/* Reviews */
.reviews-section { margin: 0 0 64px }
.reviews-section h2 {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 400; margin-bottom: 30px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border-light);
}
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 18px }
.review-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-xs);
}
.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px }
.reviewer-name { font-weight: 600; font-size: .88rem }
.review-date { font-size: .74rem; color: var(--text-muted); font-weight: 300 }
.review-stars { color: var(--gold); font-size: .86rem; margin-bottom: 7px; letter-spacing: 1px }
.review-title { font-weight: 600; font-size: .86rem; margin-bottom: 9px }
.review-text { font-size: .83rem; color: var(--text-muted); line-height: 1.65; font-weight: 300 }

/* Related */
.related-section { background: var(--cream-dark); padding: 64px 0; border-top: 1px solid var(--border) }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px }
@media(max-width:960px) { .related-grid { grid-template-columns: repeat(2,1fr) } }
@media(max-width:520px) { .related-grid { grid-template-columns: 1fr } }
.related-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .22s, box-shadow .22s; display: block;
  color: inherit; text-decoration: none;
}
.related-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
  text-decoration: none; color: inherit;
}
.related-img { height: 160px; overflow: hidden; background: var(--cream-dark) }
.related-img img { width:100%; height:100%; object-fit:cover; transition:transform .35s }
.related-card:hover .related-img img { transform: scale(1.06) }
.related-img.no-img {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--charcoal), var(--black)); font-size: 2rem; opacity: .35;
}
.related-body { padding: 15px 16px }
.related-brand {
  font-size: .66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold-dark); margin-bottom: 5px; font-family: var(--font);
}
.related-title {
  font-size: .84rem; font-weight: 400; color: var(--text);
  line-height: 1.4; margin-bottom: 8px;
  font-family: var(--font-head);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.related-stars { color: var(--gold); font-size: .78rem; letter-spacing: 1px }
.related-link {
  display: block; margin-top: 10px; text-align: center;
  background: var(--cream-dark); color: var(--charcoal);
  padding: 7px; border-radius: var(--radius-sm);
  font-size: .76rem; font-weight: 500;
  font-family: var(--font); transition: background .2s, color .2s;
}
.related-card:hover .related-link { background: var(--black); color: var(--gold-light) }

/* Static pages */
.static-hero {
  background: linear-gradient(135deg, var(--black), var(--charcoal));
  padding: 60px 0;
}
.static-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem,4.5vw,3rem);
  color: #fff; font-weight: 300;
}
.static-hero p { color: rgba(255,255,255,.6); font-size: 1rem; margin-top: 12px; font-weight: 300 }
.static-content { max-width: 820px; margin: 0 auto; padding: 64px 24px 88px }
.static-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 400; margin: 40px 0 16px;
}
.static-content p { margin-bottom: 18px; line-height: 1.85; font-size: .94rem; font-weight: 300 }
.static-content ul { margin: 12px 0 22px 24px; display: flex; flex-direction: column; gap: 7px; font-size: .94rem }
.about-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 44px 0 }
@media(max-width:700px) { .about-grid { grid-template-columns: 1fr } }
.about-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 30px; text-align: center; box-shadow: var(--shadow-xs);
}
.about-icon { font-size: 2.4rem; margin-bottom: 16px }
.about-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 400; margin-bottom: 10px }
.about-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.65; font-weight: 300 }

/* Compare table */
.compare-section { background: var(--cream-dark); border-top: 1px solid var(--border) }
.compare-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-xs);
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; background: #fff }
.compare-table th {
  background: var(--black); color: rgba(255,255,255,.8);
  font-size: .73rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; padding: 14px 18px; text-align: left; white-space: nowrap;
  font-family: var(--font);
}
.compare-table td { padding: 14px 18px; border-bottom: 1px solid var(--border-light); font-size: .86rem; vertical-align: middle }
.compare-table tr:last-child td { border-bottom: none }
.compare-table tr:hover td { background: rgba(192,125,42,.03) }
.compare-table tr.compare-row { cursor: pointer; transition: background .15s }
.compare-rank { font-size: 1.4rem; font-weight: 600; color: var(--gold); text-align: center }
.compare-img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border) }
.compare-name { font-weight: 500; font-size: .88rem; color: var(--text); line-height: 1.35; margin-bottom: 3px }
.compare-brand-tag { font-size: .67rem; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .1em }
.compare-bar { height: 5px; background: var(--border); border-radius: 3px; margin-top: 5px; overflow: hidden }
.compare-bar-fill { height: 100%; background: linear-gradient(90deg,var(--gold-dark),var(--gold-light)); border-radius: 3px }
.compare-score { font-weight: 600; color: var(--gold-dark); font-size: .9rem }
.compare-link {
  display: inline-block; background: var(--black);
  color: var(--gold-light); padding: 6px 14px;
  border-radius: var(--radius-sm); font-size: .76rem;
  font-weight: 500; transition: background .2s; white-space: nowrap;
  font-family: var(--font);
}
.compare-link:hover { background: var(--charcoal); text-decoration: none; color: var(--gold-light) }

/* ============================================================
   FOOTER — completely rebuilt
   ============================================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media(max-width:900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px } }
@media(max-width:520px) { .footer-top { grid-template-columns: 1fr } }

.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px; text-decoration: none;
}
.footer-brand .footer-logo-text {
  font-family: var(--font-sc);
  font-size: 1.15rem; font-weight: 600;
  color: #fff; letter-spacing: .04em;
}
.footer-brand p {
  font-size: .84rem; line-height: 1.75;
  color: rgba(255,255,255,.5); max-width: 280px; font-weight: 300;
}
.footer-disclaimer {
  margin-top: 16px; font-size: .75rem;
  color: rgba(255,255,255,.3); line-height: 1.65; font-style: italic;
}
.footer-col h4 {
  color: #fff; font-family: var(--font); font-size: .72rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: .16em;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px }
.footer-col ul li a {
  color: rgba(255,255,255,.55); font-size: .84rem;
  transition: color .2s; font-weight: 300;
}
.footer-col ul li a:hover { color: var(--gold-light); text-decoration: none }

.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .76rem; color: rgba(255,255,255,.3);
}
.footer-bottom-links { display: flex; gap: 20px }
.footer-bottom a { color: rgba(255,255,255,.4) }
.footer-bottom a:hover { color: var(--gold-light); text-decoration: none }

/* Footer logo emblem reused */
.footer-emblem { width: 32px; height: 32px }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999; background: var(--charcoal);
  border-top: 2px solid var(--gold); padding: 18px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  transform: translateY(100%); transition: transform .4s ease;
}
#cookie-banner.visible { transform: translateY(0) }
.cookie-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap }
.cookie-text { flex: 1; font-size: .83rem; color: rgba(255,255,255,.8); min-width: 200px; font-weight: 300 }
.cookie-text a { color: var(--gold-light) }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0 }
.cookie-accept {
  background: var(--gold); color: #fff; border: none;
  padding: 9px 22px; border-radius: var(--radius-sm);
  font-size: .83rem; font-weight: 600; cursor: pointer;
  transition: opacity .2s; font-family: var(--font);
}
.cookie-accept:hover { opacity: .88 }
.cookie-decline {
  background: transparent; color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.2); padding: 8px 18px;
  border-radius: var(--radius-sm); font-size: .83rem;
  cursor: pointer; transition: all .2s; font-family: var(--font);
}
.cookie-decline:hover { border-color: rgba(255,255,255,.4); color: #fff }

/* Ad placements */
.ad-placement { margin: 40px auto; text-align: center }
.ad-placement-inner { display: inline-flex; gap: 16px; justify-content: center; flex-wrap: wrap }
.ad-unit { width: 300px; height: 250px; background: transparent; border-radius: 4px }

/* ── Responsive ─────────────────────────────────────────────── */
@media(max-width:768px) {
  .header-container { height: 60px; padding-inline: 18px }
  .logo-bottom { display: none }
  .hero { padding: 72px 0 64px }
  .section { padding: 56px 0 }
  .container { padding-inline: 18px }
  .products-grid { gap: 16px }
  .product-layout { gap: 32px; padding: 40px 0 }
  .footer-top { gap: 28px; padding-bottom: 44px }
  .nav-toggle { display: flex }
  .site-header .site-nav {
    display: none !important;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 3px;
    background: rgba(22,18,14,.98);
    padding: 10px 18px 18px; box-shadow: 0 8px 28px rgba(0,0,0,.4);
    z-index: 199; backdrop-filter: blur(8px);
  }
  .site-header.nav-open .site-nav { display: flex !important }
  .site-nav a { padding: 11px 14px; font-size: .9rem; border-radius: 6px }
  .scent-showcase { gap: 0 }
  .scent-sep { height: 32px }
  .scent-orb { width: 58px; height: 58px; font-size: 1.3rem }
}
@media(max-width:480px) {
  .products-grid { grid-template-columns: 1fr }
  .gallery { position: static }
  .editorial-grid { grid-template-columns: 1fr }
  .ed-card-hero { grid-row: auto }
}
/* Mobile product cards — horizontal reflow */
@media(max-width:500px) {
  .products-grid .product-card { flex-direction: row; max-height: none }
  .products-grid .product-card .card-img-wrap {
    width: 120px; min-width: 120px; height: auto; flex-shrink: 0; aspect-ratio: 1/1;
  }
  .products-grid .product-card .card-img-wrap img { width:100%; height:100%; object-fit:cover }
  .products-grid .product-card .card-snippet { display: none }
  .products-grid .product-card .card-body { padding: 12px 14px; justify-content: center; gap: 4px }
  .products-grid .product-card .card-footer { padding: 6px 0 0; border-top: none; background: transparent }
  .products-grid .product-card .btn-review {
    background: transparent; color: var(--gold-dark);
    padding: 0; font-size: .76rem; font-weight: 600; text-align: left;
  }
}