/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:        #0A0A0A;
  --surface:   #141414;
  --surface2:  #1A1A1A;
  --border:    #2A2A2A;
  --gold:      #C9A84C;
  --gold-l:    #E8C97A;
  --gold-dim:  #7A6430;
  --accent:    #C9A84C;
  --accent-l:  #E8C97A;
  --accent-dim:#7A6430;
  --bg-blue:   #0B1628;
  --bg-blue2:  #0E1C35;
  --navy:      #0B1628;
  --navy2:     #0E1C35;
  --text:      #F0EDE8;
  --muted:     #888888;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Heebo', 'Inter', system-ui, sans-serif;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse at 10% 60%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 15%, rgba(201,168,76,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.04) 0%, transparent 40%),
    repeating-linear-gradient(108deg, transparent, transparent 55px, rgba(232,210,160,0.042) 55px, rgba(232,210,160,0.042) 56px),
    repeating-linear-gradient(18deg,  transparent, transparent 80px, rgba(232,210,160,0.028) 80px, rgba(232,210,160,0.028) 81px),
    repeating-linear-gradient(72deg,  transparent, transparent 40px, rgba(201,168,76,0.018) 40px, rgba(201,168,76,0.018) 41px);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--sans); }

/* ─── UTILITIES ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.serif { font-family: var(--serif); }
.divider { height: 2px; background: linear-gradient(90deg, transparent, var(--gold-dim) 15%, var(--gold) 50%, var(--gold-dim) 85%, transparent); opacity: 0.85; margin: 56px 0; border: none; }
.section-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(201,168,76,0.35);
}

/* ─── ADSENSE PLACEHOLDER ────────────────────────────── */
.ad-slot {
  background: var(--surface);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}
.nav-logo {
  font-family: 'Frank Ruhl Libre', var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gold);
  display: flex;
  align-items: center;
}
.nav-logo img { height: 100px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 9px; letter-spacing: 0; vertical-align: middle; }
.dropdown {
  position: absolute; top: calc(100% + 12px); right: 0; left: auto; transform: translateY(-6px);
  background: var(--surface); border: 1px solid var(--border); min-width: 200px; list-style: none; padding: 6px 0;
  opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s, visibility 0.2s; z-index: 200;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 20px; font-size: 13px; font-weight: 500; letter-spacing: 0.02em; color: var(--muted); white-space: nowrap; transition: color 0.2s, background 0.2s; }
.dropdown li a:hover { color: var(--text); background: rgba(201,168,76,0.07); }
.nav-search { background: none; border: 1px solid var(--border); color: var(--text); padding: 8px 14px; font-size: 13px; font-family: var(--sans); letter-spacing: 0.02em; transition: border-color 0.2s; outline: none; width: 160px; }
.nav-search::placeholder { color: var(--muted); }
.nav-search:focus { border-color: var(--gold-dim); }
.nav-mobile-menu { display: none; background: none; border: none; color: var(--text); font-size: 22px; }

/* ─── NAV AUTH ───────────────────────────────────────── */
.nav-signin-btn { font-size: 12px; font-weight: 500; letter-spacing: 0.02em; padding: 8px 16px; border: 1px solid var(--gold-dim); background: transparent; color: var(--gold); transition: all 0.2s; margin-right: 12px; }
.nav-signin-btn:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.nav-user-display { display: none; align-items: center; gap: 8px; margin-right: 12px; }
.nav-user-avatar { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--gold-dim); object-fit: cover; }
.nav-user-name { font-size: 13px; color: var(--text); }
.nav-signout-btn { font-size: 12px; color: var(--muted); background: none; border: none; padding: 0; transition: color 0.2s; }
.nav-signout-btn:hover { color: var(--gold); }

/* ─── TOP AD ─────────────────────────────────────────── */
.ad-top { padding: 12px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.ad-top .ad-slot { height: 90px; max-width: 728px; margin: 0 auto; }
@media (max-width: 768px) { .ad-top .ad-slot { height: 50px; max-width: 320px; } }

/* ─── BREADCRUMB ─────────────────────────────────────── */
.breadcrumb-bar { position: relative; overflow: hidden; }
.breadcrumb-bar .divider { position: relative; margin: 0; }
.breadcrumb-bar::before {
  content: ''; position: absolute; inset: -10%;
  background: url('../../BACKGROUNDS/velvet-dark.avif') center center / cover no-repeat;
  pointer-events: none;
}
.breadcrumb-bar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 100%); pointer-events: none; }
.breadcrumb { position: relative; padding: 20px 0; font-size: 16px; color: var(--gold); }
.breadcrumb a { color: var(--gold); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-l); }
.breadcrumb span { margin: 0 8px; color: var(--gold-dim); }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 40px 0 60px;
  background-color: #0C0C0C;
  background-image: url('../../BACKGROUNDS/marble.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.7);
}
.hero::before {
  content: ''; position: absolute; inset: 0; background-image: inherit; background-size: inherit; background-position: inherit; background-repeat: inherit;
  filter: brightness(0.55); z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 0; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 420px 1fr; gap: 64px; align-items: stretch; }
.hero-image-wrap { position: sticky; top: 80px; display: flex; flex-direction: column; height: 100%; }
.hero-image-frame {
  background: none; border: none; box-shadow: none;
  flex: 1; display: flex; align-items: center; justify-content: center; overflow: hidden;
  position: relative; padding: 40px; box-sizing: border-box;
}
.bottle-svg { width: 55%; height: auto; filter: drop-shadow(0 6px 10px rgba(0,0,0,0.55)) drop-shadow(0 28px 46px rgba(0,0,0,0.4)) drop-shadow(0 40px 70px rgba(201,168,76,0.25)); }
.hero-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-shrink: 0; }
.hero-thumb { width: 72px; aspect-ratio: 1; background: var(--surface); border: 1px solid var(--border); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; overflow: hidden; }
.hero-thumb:first-child { border-color: var(--gold); }
.hero-thumb:hover { border-color: var(--gold); }
.hero-thumb svg { width: 40%; opacity: 0.5; }
.hero-brand { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.hero-name { font-family: var(--serif); font-size: 48px; font-weight: 300; line-height: 1.1; margin-bottom: 6px; color: var(--gold); }
.hero-sub { font-family: var(--serif); font-size: 20px; font-weight: 300; font-style: italic; color: var(--gold); margin-bottom: 24px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.meta-pill { font-size: 12px; letter-spacing: 0.05em; color: var(--text); border: 1px solid var(--gold-dim); padding: 5px 14px; border-radius: 20px; }
.meta-pill.gender { color: var(--text); border-color: var(--gold-dim); }
.conc-label { font-size: 20px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-left: 8px; }

/* Size selector */
.size-select { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.size-select-label { font-size: 12px; letter-spacing: 0.05em; color: var(--gold); }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn { font-size: 12px; letter-spacing: 0.05em; color: var(--text); background: transparent; border: 1px solid var(--gold-dim); padding: 5px 14px; border-radius: 20px; cursor: pointer; transition: all 0.2s; }
.size-btn:hover { border-color: var(--gold); }
.size-btn.active { border-color: var(--gold); color: var(--gold); }

/* Action buttons */
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn { font-size: 14px; font-weight: 500; letter-spacing: 0.05em; padding: 10px 24px; border: 1px solid; border-radius: 6px; transition: all 0.2s; white-space: nowrap; }
.btn-outline { background: radial-gradient(ellipse 70% 120% at 50% 30%, #FBEFCB 0%, var(--gold-l) 40%, var(--gold) 85%); border-color: var(--gold); color: #000; font-weight: 700; }
.btn-outline:hover { background: radial-gradient(ellipse 70% 120% at 50% 30%, #FFF8E2 0%, #F2DA9A 40%, var(--gold-l) 85%); border-color: var(--gold-l); color: #000; }
.btn-outline.active { background: transparent; border-color: var(--gold); color: var(--gold); }

/* ─── BUY BLOCK ──────────────────────────────────────── */
.buy-block { display: none; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; padding: 18px 22px; background: var(--surface); border: 1px solid var(--gold-dim); }
body[data-commerce] .buy-block { display: flex; }
.buy-price-display { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--gold-l); line-height: 1; }
.buy-price-label { font-size: 10px; color: var(--muted); letter-spacing: 0.05em; margin-top: 4px; }
.btn-buy { display: inline-block; padding: 14px 32px; background: var(--gold); color: #0D0D0D; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; border: none; transition: background 0.2s; text-decoration: none; }
.btn-buy:hover { background: var(--gold-l); }

/* ─── HERO INFO PANEL — marble surface ───────────────── */
.hero-info {
  background: linear-gradient(160deg, rgba(13,13,13,0.75) 0%, rgba(18,18,18,0.75) 100%);
  padding: 32px 32px 14px;
  border: 1px solid rgba(201,168,76,0.12);
  position: relative;
}
.hero-info::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 15%, var(--gold) 50%, var(--gold-dim) 85%, transparent);
}

/* ─── HERO GAUGE PANEL ───────────────────────────────── */
.hero-season { border: none; margin-top: 20px; padding: 14px 16px 0; }
.gauge-section { margin-bottom: 14px; }
.gauge-above { font-size: 10px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); text-align: center; }
.gauge-note { font-size: 11px; color: var(--muted); text-align: center; line-height: 1.3; }
.gauge-ring { width: 54px; height: 54px; border-radius: 50%; background: conic-gradient(from 180deg, var(--ring-color, var(--gold)) var(--pct, 0%), var(--surface2) 0%); display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }
.gauge-ring::before { content: ''; position: absolute; inset: 7px; background: var(--surface); border-radius: 50%; }
.gauge-val { position: relative; z-index: 1; font-family: var(--sans); font-size: 11px; font-weight: 500; color: var(--text); letter-spacing: -0.02em; }
.gauge-ring.large { width: 100%; max-width: 118px; aspect-ratio: 1 / 1; height: auto; margin: 0 auto; }
.gauge-ring.large::before { inset: 3.9%; }
.gauge-ring.large .gauge-val { font-size: clamp(12px, 4.2vw, 22px); }
.gauge-ring.p-occasion { --ring-color: #C9A84C; }
.watch-dial { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; max-width: 118px; aspect-ratio: 1 / 1; margin: 0 auto; }
.watch-dial svg { width: 100%; height: 100%; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.watch-dial::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(ellipse 60% 45% at 34% 22%, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.12) 40%, transparent 70%);
  mix-blend-mode: overlay; pointer-events: none;
}

/* Season donut */
.season-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 20px; align-items: start; }
.gauge-side-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding-top: 22px; width: 100%; min-width: 0; }
.season-wrap { position: relative; width: 100%; max-width: 118px; aspect-ratio: 1 / 1; margin: 0 auto; }
.season-donut {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35); z-index: 1;
  background: conic-gradient(from 0deg, #7A6430, #E8C97A 25%, #C9A84C 50%, #E8C97A 75%, #7A6430);
}
.season-donut::before { content: ''; position: absolute; top: 3.9%; left: 3.9%; right: 3.9%; bottom: 3.9%; border-radius: 50%; background: var(--surface); }
.season-donut::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(ellipse 60% 45% at 34% 22%, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.12) 40%, transparent 70%);
  mix-blend-mode: overlay; pointer-events: none;
}
.season-label { position: absolute; width: 39%; z-index: 2; text-align: center; }
.season-label-tl { top: -20%; left: -16%; }
.season-label-tr { top: -20%; right: -16%; }
.season-label-bl { bottom: -16%; left: -26%; display: flex; flex-direction: column-reverse; }
.season-label-br { bottom: -16%; right: -26%; display: flex; flex-direction: column-reverse; }
.season-label-bl .season-name, .season-label-br .season-name { margin-top: 6px; margin-bottom: -2px; }
.season-label-bl .season-pct { position: relative; right: -6px; }
.season-label-br .season-pct { position: relative; left: -6px; }
.season-pct { font-family: var(--sans); font-size: clamp(8px, 3.2vw, 13px); font-weight: 600; color: var(--gold); text-shadow: 0 0 12px rgba(201,168,76,0.35); }
.season-name { font-size: clamp(6px, 2.4vw, 10px); color: var(--muted); margin-top: -2px; }
.season-center-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; text-align: center; font-size: clamp(8px, 2.9vw, 12px); font-weight: 600; letter-spacing: 0.06em; line-height: 1.25; color: #FFFFFF; text-shadow: 0 0 12px rgba(201,168,76,0.35); }

/* ─── BOTTLE + NOTES SECTION — black marble panel ────── */
.pyramid-section {
  position: relative;
  padding: 60px 0;
  background-color: #0C0C0C;
  background-image: url('../../BACKGROUNDS/marble.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid var(--accent-dim);
  border-bottom: none;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.7);
}
.pyramid-section::before {
  content: ''; position: absolute; inset: 0; background-image: inherit; background-size: inherit; background-position: inherit; background-repeat: inherit;
  filter: brightness(0.55); z-index: 0;
}
.pyramid-section::after {
  content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 0; pointer-events: none;
}
.pyramid-section > .container { position: relative; z-index: 1; }
.pyramid-layout { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
.bottle-svg { max-width: 324px; width: 100%; display: block; margin: 0 auto; }
.notes-panel { display: flex; flex-direction: column; gap: 0; }
.notes-panel-title { font-size: 10px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.notes-tier { border: 1px solid var(--border); border-bottom: none; border-right: 3px solid var(--gold-dim); padding: 18px 20px; display: flex; gap: 20px; align-items: flex-start; background: rgba(0,0,0,0.7); }
.notes-tier:last-child { border-bottom: 1px solid var(--border); }
.notes-tier-label { font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); min-width: 38px; padding-top: 4px; flex-shrink: 0; }
.notes-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.notes-pill { font-size: 13px; color: var(--muted); padding: 5px 14px; border: 1px solid var(--border); background: var(--surface2); transition: all 0.2s; cursor: pointer; line-height: 1.4; }
.notes-pill:hover { color: var(--text); border-color: var(--gold-dim); }
.notes-icon-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.note-icon { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 72px; text-align: center; }
.note-icon-img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; border: 3.2px solid #AB8F41; background: var(--bg); box-shadow: 0 0 8px rgba(197,171,103,0.5), inset 0 1.5px 2px rgba(255,255,255,0.55), inset 0 -1.5px 2px rgba(0,0,0,0.35); }
.note-icon-img.no-ring { border: none; box-shadow: none; width: 82px; height: 82px; }
.note-icon-label { font-size: 12px; color: var(--gold); line-height: 1.3; }

/* ─── PERFUMER BAR ───────────────────────────────────── */
.pb-item { display: flex; align-items: center; gap: 10px; padding: 14px 24px; flex: 1; }
.pb-sep { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.pb-label { font-size: 10px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); }
.pb-val { font-size: 14px; color: var(--text); font-family: var(--serif); font-weight: 400; }

/* ─── NOTE PILL COLORS (fallback) ─────────────────────── */
.np-citrus  { border-color: rgba(170,200,40,0.45)  !important; color: #b8d040 !important; }
.np-spice   { border-color: rgba(190,140,40,0.45)  !important; color: #c89840 !important; }
.np-aromatic{ border-color: rgba(120,180,150,0.45) !important; color: #7ab896 !important; }
.np-rose    { border-color: rgba(210,90,130,0.45)  !important; color: #d85a82 !important; }
.np-amber   { border-color: rgba(210,140,40,0.45)  !important; color: #d89030 !important; }
.np-sandalwood { border-color: rgba(160,140,90,0.45) !important; color: #a08c5a !important; }
.np-musk    { border-color: rgba(180,180,210,0.45) !important; color: #b0b0d8 !important; }

/* ─── EDITORIAL / SEO SECTION — gold-leaf background ─── */
.editorial-section {
  position: relative; overflow: hidden;
  background-color: #0C0C0C;
  background-image: url('../../BACKGROUNDS/gold-leaf-dark.avif');
  background-size: cover; background-position: center;
  padding: 72px 0;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  box-shadow: 0 1px 24px rgba(201,168,76,0.05), inset 0 1px 0 rgba(201,168,76,0.08);
}
.editorial-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(5,5,5,0.5) 0%, rgba(10,10,10,0.22) 50%, rgba(5,5,5,0.5) 100%);
  z-index: 0; pointer-events: none;
}
.editorial-section .container { position: relative; z-index: 1; }
.editorial-heading { font-family: var(--serif); font-size: 38px; font-weight: 300; line-height: 1.2; color: var(--gold-l); text-shadow: 0 0 24px rgba(201,168,76,0.25); margin-bottom: 24px; }
.editorial-heading em { color: var(--gold); font-style: italic; }
.editorial-lead { font-size: 19px; line-height: 1.85; color: var(--text); margin-bottom: 20px; font-family: var(--sans); font-weight: 400; }
.editorial-body { font-size: 17px; line-height: 1.85; color: var(--muted); margin-bottom: 18px; font-family: var(--sans); font-weight: 400; }
.editorial-body:last-child { margin-bottom: 0; }
.editorial-review-link { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.03em; color: var(--gold-l); border-bottom: 1px solid var(--gold-dim); transition: color 0.2s, border-color 0.2s; }
.editorial-review-link:hover { color: var(--gold); border-color: var(--gold); }

/* ─── WIDER MID AD ───────────────────────────────────── */
.ad-mid-responsive {
  position: relative; overflow: hidden; padding: 40px 0;
  background-color: #0C0C0C; box-shadow: inset 0 0 120px rgba(0,0,0,0.6);
}
.ad-mid-responsive::before {
  content: ''; position: absolute; inset: -10%;
  background: url('../../BACKGROUNDS/velvet-dark.avif') center center / cover no-repeat; pointer-events: none; z-index: 0;
}
.ad-mid-responsive::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(5,5,5,0.55) 0%, rgba(10,10,10,0.3) 50%, rgba(5,5,5,0.55) 100%); pointer-events: none; z-index: 0; }
.ad-mid-responsive .container { position: relative; z-index: 1; }
.ad-mid-responsive .ad-slot { width: 100%; max-width: 970px; height: 90px; margin: 0 auto; }
@media (max-width: 970px) { .ad-mid-responsive .ad-slot { max-width: 728px; } }
@media (max-width: 728px) { .ad-mid-responsive .ad-slot { max-width: 320px; height: 50px; } }

/* ─── SIMILAR — black velvet background ──────────────── */
.similar-section {
  position: relative; overflow: hidden; padding: 60px 0;
  border-top: 1px solid var(--gold-dim);
  background-color: #0C0C0C;
  box-shadow: inset 0 0 120px rgba(0,0,0,0.6);
}
.similar-section::before {
  content: ''; position: absolute; inset: -10%;
  background: url('../../BACKGROUNDS/velvet-dark.avif') center center / cover no-repeat; pointer-events: none; z-index: 0;
}
.similar-section::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(5,5,5,0.35) 0%, rgba(10,10,10,0.10) 50%, rgba(5,5,5,0.22) 100%); pointer-events: none; z-index: 0; }
.similar-section .container { position: relative; z-index: 1; }
.carousel-wrap { position: relative; }
.carousel-track-outer { overflow: hidden; }
.carousel-track { display: flex; gap: 16px; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.perf-card { flex: 0 0 calc((100% - 3*16px) / 4); background: transparent; border: none; overflow: visible; cursor: pointer; transition: transform 0.2s; display: flex; flex-direction: column; }
.perf-card:hover { transform: translateY(-3px); }
.perf-card-img { aspect-ratio: 1; background: transparent; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.perf-card-img img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(0,0,0,0.45)); transition: filter 0.2s; }
.perf-card:hover .perf-card-img img { filter: drop-shadow(0 14px 22px rgba(0,0,0,0.6)); }
.perf-card-info { padding: 15px 5px; text-align: center; }
.perf-card-brand { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 4px; }
.perf-card-name { font-family: var(--serif); font-size: 17.5px; font-weight: 400; line-height: 1.3; }
.perf-card-price { font-size: 16px; font-weight: 600; color: var(--gold); margin-top: 8px; }
.perf-card-btn {
  display: block; width: calc(100% - 30px); margin: auto 15px 18px; padding: 11px 15px;
  background: radial-gradient(ellipse 70% 120% at 50% 30%, #FBEFCB 0%, var(--gold-l) 40%, var(--gold) 85%);
  border: 1px solid var(--gold); border-radius: 999px; box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  color: #1A1408; text-align: center; font-size: 15px; font-weight: 700; letter-spacing: 0.02em;
  font-family: var(--sans); cursor: pointer; transition: all 0.2s;
}
.perf-card-btn:hover { background: radial-gradient(ellipse 70% 120% at 50% 30%, #FFF8E2 0%, #F2DA9A 40%, var(--gold-l) 85%); border-color: var(--gold-l); box-shadow: 0 4px 10px rgba(0,0,0,0.45); transform: translateY(-1px); }
.carousel-btn { position: absolute; top: 40%; transform: translateY(-50%); width: 40px; height: 40px; background: var(--surface2); border: 1px solid var(--border); color: var(--text); font-size: 18px; display: flex; align-items: center; justify-content: center; z-index: 2; transition: all 0.2s; }
.carousel-btn:hover { border-color: var(--gold-dim); color: var(--gold); }
.carousel-btn.prev { right: -20px; left: auto; }
.carousel-btn.next { left: -20px; right: auto; }

/* ─── REVIEWS — marble panel ──────────────────────────── */
.reviews-section {
  padding: 60px 0;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  background-color: #0A0A0A;
  background-image:
    repeating-linear-gradient(108deg, rgba(201,168,76,0.05) 0px, transparent 2px, transparent 60px, rgba(201,168,76,0.04) 62px, transparent 130px),
    repeating-linear-gradient(18deg, rgba(201,168,76,0.045) 0px, transparent 1.5px, transparent 90px, rgba(232,201,122,0.03) 92px, transparent 170px),
    radial-gradient(circle at 25% 20%, rgba(8,10,15,0.4), transparent 38%),
    radial-gradient(circle at 75% 65%, rgba(6,8,12,0.45), transparent 42%),
    radial-gradient(circle at 60% 30%, rgba(232,201,122,0.10), transparent 25%),
    radial-gradient(circle at 30% 75%, rgba(201,168,76,0.08), transparent 30%);
  box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
}
.reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
.reviews-meta { display: flex; align-items: baseline; gap: 12px; }
.reviews-count { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--gold); line-height: 1; }
.reviews-count-label { font-size: 13px; color: var(--muted); }
.sort-bar { display: flex; gap: 2px; }
.sort-btn { font-size: 12px; letter-spacing: 0.02em; padding: 8px 16px; border: 1px solid var(--border); background: transparent; color: var(--muted); transition: all 0.2s; }
.sort-btn.active { background: var(--surface2); color: var(--text); border-color: var(--gold-dim); }
.sort-btn:hover:not(.active) { color: var(--text); }
.reviews-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 32px; }
.write-review-btn { display: block; width: 100%; padding: 18px; text-align: center; font-size: 12px; font-weight: 500; letter-spacing: 0.05em; background: transparent; border: 1px solid var(--gold-dim); color: var(--gold); transition: all 0.2s; margin-top: 24px; }
.write-review-btn:hover { background: rgba(201,168,76,0.06); border-color: var(--gold); }

/* ─── FOOTER ─────────────────────────────────────────── */
footer { background: #080808; border-top: 1px solid var(--gold-dim); padding: 48px 0 32px; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.035) 0%, transparent 55%); pointer-events: none; }
footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.3fr; gap: 40px; align-items: start; margin-bottom: 40px; }
.footer-logo { font-family: 'Frank Ruhl Libre', var(--serif); font-size: 28px; font-weight: 500; letter-spacing: 0.02em; color: var(--gold); margin-bottom: 12px; }
.footer-logo img { height: 38px; width: auto; display: block; }
.footer-tagline { font-size: 13px; color: var(--muted); font-style: italic; font-family: var(--serif); }
.footer-col-title { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: var(--muted); }
.social-links { display: flex; gap: 16px; }
.social-link { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: var(--muted); }
.social-link:hover { border-color: var(--gold-dim); color: var(--gold); }
.footer-newsletter-input { display: flex; margin-top: 12px; }
.footer-newsletter-input input { flex: 1; min-width: 0; background: transparent; border: 1px solid var(--gold-dim); border-left: none; color: var(--text); font-family: var(--sans); font-size: 12px; padding: 10px 12px; outline: none; text-align: right; }
.footer-newsletter-input input::placeholder { color: var(--muted); font-size: 12px; }
.footer-newsletter-input input:focus { border-color: var(--gold); }
.footer-newsletter-submit { background: var(--gold); border: none; color: #0A0A0A; padding: 10px 14px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s; flex-shrink: 0; }
.footer-newsletter-submit:hover { background: var(--gold-l); }
.footer-payment { display: flex; gap: 6px; margin-top: 14px; align-items: center; flex-wrap: wrap; }
.payment-icon { border: 1px solid #2a2a2a; padding: 3px 8px; font-size: 10px; letter-spacing: 0.05em; color: var(--muted); background: #1a1a1a; border-radius: 3px; font-family: var(--sans); }

/* ─── MODAL (review + auth) ──────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(6px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--surface); border: 1px solid var(--border); width: 100%; max-width: 560px; padding: 40px; position: relative; animation: slideUp 0.3s cubic-bezier(0.16,1,0.3,1); }
@keyframes slideUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.modal-close { position: absolute; top: 16px; left: 16px; background: none; border: none; color: var(--muted); font-size: 22px; transition: color 0.2s; }
.modal-close:hover { color: var(--text); }
.modal-title { font-family: var(--serif); font-size: 28px; font-weight: 300; margin-bottom: 6px; }
.modal-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.star-picker { display: flex; gap: 8px; margin-bottom: 24px; }
.star-pick { font-size: 28px; cursor: pointer; color: var(--border); transition: color 0.15s, transform 0.15s; line-height: 1; }
.star-pick.lit { color: var(--gold); }
.star-pick:hover { transform: scale(1.2); }
.form-group { margin-bottom: 16px; }
.form-label { font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.form-input, .form-textarea { width: 100%; background: var(--surface2); border: 1px solid var(--border); color: var(--text); font-family: var(--sans); font-size: 14px; padding: 12px 14px; outline: none; transition: border-color 0.2s; resize: none; text-align: right; }
.form-input:focus, .form-textarea:focus { border-color: var(--gold-dim); }
.form-textarea { min-height: 120px; }
.form-submit { width: 100%; padding: 15px; background: var(--gold); border: none; color: #0D0D0D; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; transition: background 0.2s; margin-top: 8px; font-family: var(--sans); }
.form-submit:hover { background: var(--gold-l); }
.auth-google-wrap { display: flex; justify-content: center; margin: 28px 0; }
.auth-note { font-size: 12px; color: var(--muted); text-align: center; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 960px) {
  .editorial-heading { font-size: 28px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { position: static; height: auto; }
  .hero-image-frame { max-width: 380px; aspect-ratio: 3/4; flex: none; margin: 0 auto; }
  .pyramid-layout { grid-template-columns: 1fr; gap: 40px; }
  .bottle-svg { max-width: 252px; }
  .nav-links { display: none; }
  .nav-mobile-menu { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .perf-card { flex: 0 0 calc((100% - 2*16px) / 3); }
}
@media (max-width: 600px) {
  .hero-name { font-size: 36px; }
  .perf-card { flex: 0 0 calc((100% - 16px) / 2); }
  .carousel-btn { display: none; }
  .modal { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-info { padding: 24px 20px 14px; }
  .hero-actions { flex-wrap: nowrap; gap: 8px; }
  .hero-actions .btn { flex: 1 1 0; padding: 10px 6px; font-size: 12px; text-align: center; white-space: nowrap; }
  .season-label-tl { top: -36%; }
  .season-label-tr { top: -36%; }
  .season-label-bl { bottom: -27%; }
  .season-center-label { font-size: clamp(7px, 2.4vw, 9px); }
  .dial-hours-label { font-size: 13px; }
  .season-label-br { bottom: -27%; }
}
