/* ============================================================
   Legacy Beyond Power — Stylesheet
============================================================ */

:root {
  --bg: #0a0604;
  --bg-2: #120c08;
  --bg-3: #1a120c;
  --bg-4: #241810;
  --line: #2a1f17;

  --gold: #c9a961;
  --gold-light: #e8d4a0;
  --gold-soft: #8b6f47;
  --gold-dark: #5a4530;

  --cream: #f5ebe0;
  --text: #d8c8b0;
  --text-muted: #8a7965;
  --text-faint: #5a4d3e;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1320px;
  --radius: 4px;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

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

[x-cloak] { display: none !important; }

/* Visually hide content while keeping it discoverable to screen readers and search engines. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Universal keyboard-focus indicator. Only shows on keyboard nav, not mouse clicks. */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Honor visitors who prefer reduced motion (vestibular disorders, OS setting). */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .announcement-track { animation: none !important; }
}

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  /* No overflow-x here — it would create a scroll container that breaks
     position: sticky on the header. Horizontal overflow is handled by body. */
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative; /* Forms a containing block so off-screen fixed children can't extend the scrollable area */
}

img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================
   Typography
============================ */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

p { color: var(--text); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-soft);
  margin-bottom: 1.5rem;
}

/* ============================
   Layout
============================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: clamp(5rem, 12vh, 10rem) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem;
}

.section-header h2 {
  margin-bottom: 1.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================
   Buttons
============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.5s var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -16px rgba(201, 169, 97, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold-soft);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Smaller variant for inline contexts (e.g. product card CTA row). */
.btn-sm {
  padding: 0.75rem 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

/* ============================
   Announcement Bar
============================ */
.announcement {
  background: var(--gold);
  color: var(--bg);
  padding: 0.65rem 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--gold-dark);
}

.announcement-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
  font-size: 0.87rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.announcement-track span { flex-shrink: 0; }
.announcement-track strong { font-weight: 700; }

@keyframes scroll-left {
  to { transform: translateX(-50%); }
}

/* ============================
   Header
============================ */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 1.25rem 0;
  transition: all 0.4s var(--transition);
  background: rgba(10, 6, 4, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}

.header.is-scrolled {
  background: rgba(10, 6, 4, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}
.logo picture { display: block; }
.logo img {
  display: block;
  height: 64px;
  width: auto;
}
/* Footer uses the square 1:1 Logo 1 variant (not the wide 4:1 header logo) so
   the mark sits balanced in the narrow column instead of stretching across it.
   The img dimensions in the HTML are 1200x1200 — height alone defines render size. */
.footer-brand .logo img { height: 110px; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin: 0 auto;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.4s var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 100; /* Keep the hamburger above the open mobile-nav overlay so the X stays tappable. */
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   Hero
============================ */
.hero {
  position: relative;
  width: 100%;
  height: 0;
  /* Source banners are 1920×900, displayed full-bleed (ratio 900/1920 ≈ 46.875%). */
  padding: 0 0 46.875% 0;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
}

.hero-track {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--transition);
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-dots {
  position: absolute;
  bottom: 2.5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 5;
}
.hero-dot {
  width: 30px;
  height: 2px;
  background: rgba(245, 235, 224, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.is-active {
  background: var(--gold);
  width: 44px;
}
/* Invisible 44x44 hit area extension for touch — meets Apple HIG minimum. */
.hero-dot::before {
  content: '';
  position: absolute;
  top: -22px;
  bottom: -22px;
  left: -8px;
  right: -8px;
}

.hero-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: all 0.3s;
  background: rgba(10, 6, 4, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.hero-nav-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.hero-nav-btn svg {
  width: 18px;
  height: 18px;
}

.hero-nav {
  position: absolute;
  bottom: 6%;
  right: 4%;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

/* ============================
   Section: Collection (Tabs + Cards)
============================ */
.collection {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

/* Perfume Cards */
.perfume-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.perfume-card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all 0.6s var(--transition);
  /* Column flex so the .perfume-info child can grow and pin the CTA to the
     bottom; without this, cards with shorter titles/summaries leave the CTA
     floating mid-card while neighbour cards have it at the bottom. */
  display: flex;
  flex-direction: column;
}

.perfume-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
}

.perfume-visual {
  position: relative;
  height: 380px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at center bottom, rgba(201, 169, 97, 0.12), transparent 70%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.perfume-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 169, 97, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s;
}
.perfume-card:hover .perfume-glow { opacity: 1; }

.bottle {
  width: 200px;
  height: 320px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.6));
  transition: transform 0.6s var(--transition);
}
.perfume-card:hover .bottle { transform: translateY(-8px) scale(1.04); }

/* Thumb strip below the main bottle image — Alpine swaps the main image on click. */
.perfume-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-soft) transparent;
}
.perfume-thumbs::-webkit-scrollbar { height: 4px; }
.perfume-thumbs::-webkit-scrollbar-track { background: transparent; }
.perfume-thumbs::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 2px; }

.thumb {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
}
.thumb picture, .thumb img {
  width: 100%;
  height: 100%;
  display: block;
}
.thumb img { object-fit: contain; }
.thumb:hover { border-color: var(--gold-soft); }
.thumb.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 169, 97, 0.18);
}

.perfume-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  /* Grow to fill the rest of the card so the CTA can be margin-top:auto'd
     to the bottom regardless of how tall the content above is. */
  flex: 1;
}

.perfume-info h3 { margin-bottom: 0; font-size: 1.7rem; line-height: 1.2; }
.perfume-info > p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* Pills row at the top of each card (Unisex / 50 ml / Custom Edition Available). */
.perfume-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(201, 169, 97, 0.07);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 999px;
  line-height: 1;
}
.pill svg { width: 12px; height: 12px; flex: 0 0 12px; color: var(--gold); }
.pill-link {
  color: var(--gold);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.pill-link:hover {
  background: rgba(201, 169, 97, 0.18);
  border-color: var(--gold);
  color: var(--cream);
}

.perfume-summary {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* Top/Heart/Base notes table. */
.fragrance-notes {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.fragrance-notes th,
.fragrance-notes td {
  text-align: left;
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.fragrance-notes tr:last-child th,
.fragrance-notes tr:last-child td {
  border-bottom: none;
}
.fragrance-notes th {
  color: var(--gold);
  font-family: var(--serif);
  letter-spacing: 0.04em;
  width: 5.5rem;
}
.fragrance-notes td { color: var(--cream); }

.perfume-cta {
  display: flex;
  gap: 0.75rem;
  /* Auto-push to the bottom of .perfume-info so all 3 cards' CTAs line up
     horizontally, even when title/summary/notes content above differs in height. */
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.perfume-cta .btn {
  flex: 1 1 0;
  padding: 0.85rem 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  justify-content: center;
  white-space: nowrap;
  min-width: 0;
}

/* Below the 3-col → 2-col breakpoint the card is wide enough to keep buttons side-by-side.
   But at the 3-col stage (≈ 900-1200px desktop), the cards are narrow and the two-button row
   gets cramped — stack the CTA in those few pixels of overlap. */
@media (max-width: 1200px) and (min-width: 901px) {
  .perfume-cta { flex-direction: column; }
  .perfume-cta .btn { white-space: normal; }
}

.price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
}

/* ============================
   Customize Section
============================ */
.customize {
  background:
    radial-gradient(ellipse at center top, rgba(201, 169, 97, 0.06), transparent 70%),
    var(--bg);
}

.customizer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4rem;
}

.customizer-preview {
  position: relative;
}

.preview-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.preview-tabs button {
  padding: 0.65rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: all 0.3s;
}
.preview-tabs button.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.preview-stage {
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 97, 0.12), transparent 60%);
  padding: 2rem;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  min-height: 440px;
}

.bottle-preview svg, .box-preview svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.7));
}
.box-preview svg { max-width: 420px; }

.customizer-controls h3 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.customizer-controls > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.control-step {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-left: 3rem;
}

.control-step:last-of-type { border-bottom: none; }

.step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
}

.control-step label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.scent-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.scent-pills button {
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--text);
  transition: all 0.3s;
}
.scent-pills button:hover { border-color: var(--gold-soft); }
.scent-pills button.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.upload-zone {
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.upload-zone:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.04);
  color: var(--cream);
}
.upload-zone svg { width: 28px; height: 28px; flex-shrink: 0; color: var(--gold); }

.upload-error {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: #e08a72;
}

.control-step input[type="text"] {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
  transition: border 0.3s;
}
.control-step input[type="text"]:focus {
  outline: none;
  border-color: var(--gold);
}

.customizer-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.customizer-price .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.customizer-price .amount {
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--gold);
}

/* ============================
   Coupons
============================ */
.coupons {
  background: var(--bg-2);
}

.coupon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.coupon-card {
  display: flex;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-4));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s var(--transition);
}

.coupon-card::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--bg-2);
  border-radius: 50%;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
}

.coupon-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(201, 169, 97, 0.3);
}

.coupon-card.featured {
  border-color: var(--gold-soft);
  background: linear-gradient(135deg, var(--bg-4), #2e2118);
}

.coupon-left {
  width: 35%;
  background:
    radial-gradient(circle at center, rgba(201, 169, 97, 0.15), transparent 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  border-right: 1.5px dashed var(--line);
  position: relative;
}

.coupon-discount {
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 0.9;
  color: var(--gold);
  font-weight: 500;
}

.coupon-label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 0.5rem;
}

.coupon-right {
  flex: 1;
  padding: 2rem;
}

.coupon-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.coupon-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--bg);
  border: 1px dashed var(--gold-soft);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  margin-bottom: 1rem;
}
.coupon-code span:first-child {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.coupon-code button {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--gold-soft);
  border-radius: 2px;
  transition: all 0.3s;
}
.coupon-code button:hover {
  background: var(--gold);
  color: var(--bg);
}

.coupon-right p { font-size: 0.85rem; color: var(--text-muted); }

.coupons-cta {
  text-align: center;
  margin-top: 3rem;
  color: var(--text-muted);
}
.coupons-cta a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 2px;
  transition: border 0.3s;
}
.coupons-cta a:hover { border-color: var(--gold); }

/* ============================
   Customized Editions Showcase
============================ */
.customized-editions {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.ce-tabs {
  display: inline-flex;
  position: relative;
  margin: 0 auto 3.5rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}
.ce-tabs button {
  padding: 0.75rem 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 50px;
  transition: all 0.4s var(--transition);
  white-space: nowrap;
}
.ce-tabs button:hover { color: var(--cream); }
.ce-tabs button.active {
  background: var(--gold);
  color: var(--bg);
}

.ce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.ce-card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--transition);
}
.ce-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.7);
}
.ce-card picture {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-3);
}
.ce-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s var(--transition);
}
.ce-card:hover img { transform: scale(1.04); }

.ce-meta {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--line);
}
.ce-meta h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}
.ce-meta p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.ce-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.ce-note a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 1px;
}
.ce-note a:hover { border-color: var(--gold); }


/* ============================
   Academy (Coming Soon)
============================ */
.academy {
  background: var(--bg);
}

.academy-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(ellipse at center top, rgba(201, 169, 97, 0.1), transparent 70%),
    linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  padding: 5rem 3rem;
  position: relative;
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.academy-card h2 { margin-bottom: 1.5rem; }
.academy-card > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
/* Intro paragraph only — uppercase with two cream highlight words. */
.academy-card > p.academy-intro {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.academy-card > p.academy-intro strong {
  color: var(--cream);
  font-weight: 500;
}

.academy-collab {
  margin-bottom: 2.5rem;
}

.collab-logo {
  padding: 1.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  background: var(--bg-2);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.4;
}
.collab-logo picture { display: block; }
.collab-logo img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================
   Footer
============================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  /* 6 columns: brand (wider) + Shop + Support + Legal + Contact + Stay Connected. */
  grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr 1.2fr 1.2fr;
  gap: 2.25rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line);
}

.footer-contact p,
.footer-contact address {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-style: normal;
  line-height: 1.55;
}
.footer-contact a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--gold); }

.footer-brand .logo { margin-bottom: 1.5rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: 2rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: all 0.3s;
}
.socials a:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.socials svg { width: 18px; height: 18px; }

.footer-col h3 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: var(--sans);
  font-weight: 500;
}

.footer-col ul li { margin-bottom: 0.85rem; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }

.footer-col p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-form {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.footer-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: transparent;
  border: none;
  color: var(--cream);
}
.footer-form input:focus { outline: none; }
.footer-form button {
  width: 48px;
  background: var(--gold);
  color: var(--bg);
  font-size: 1.2rem;
  transition: background 0.3s;
}
.footer-form button:hover { background: var(--gold-light); }

/* Inline success state for the footer subscribe form */
.footer-success {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: var(--radius);
  background: rgba(201, 169, 97, 0.06);
  color: var(--cream);
  font-size: 0.85rem;
}
.footer-success svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}
.payment-note { color: var(--gold); }

/* ============================
   Responsive
============================ */
/* Footer collapse — 6 cols at desktop ≥1200, 3 cols at tablet, 2 cols at small tablet,
   single column at phone (handled in 600px block below). */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem 2.5rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet — clean 2-column grid before collapsing to a single column on phones. */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 6, 4, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    /* Hide when closed so horizontal panning on mobile can't reveal the off-screen menu. */
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.5s var(--transition), visibility 0s linear 0.5s;
    margin: 0;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.5s var(--transition), visibility 0s linear 0s;
  }
  .nav-links a { font-size: 1rem; }

  .hamburger { display: flex; }

  .customizer {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2.5rem 1.75rem;
  }

  .perfume-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coupon-grid {
    grid-template-columns: 1fr;
  }

  .ce-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .perfume-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  section { padding: 4rem 0; }
  .section-header { margin-bottom: 3rem; }

  .announcement-track { animation-duration: 25s; gap: 2rem; }

  /* Smaller header logo on phones so the wide 4:1 lockup doesn't crowd the
     hamburger on narrow screens (320–360px). Footer logo is square so a
     single 110px size works on all widths — no override needed there. */
  .logo img { height: 52px; }

  .academy-card { padding: 3rem 1.5rem; }

  /* Footer collapses to a single column on phones so the "Stay In Touch"
     column doesn't end up floating alone in half the row. */
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
  .footer-brand { grid-column: auto; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .coupon-card { flex-direction: column; }
  .coupon-left { width: 100%; border-right: none; border-bottom: 1.5px dashed var(--line); padding: 1.75rem 1rem; }
  /* Decorative perforation cutout was positioned for the desktop horizontal
     split — hide it once the card stacks vertically. */
  .coupon-card::before { display: none; }
  .coupon-discount { font-size: 3.25rem; }

  .nav-links { padding: 0; }

  /* Hero slider arrows shrink + tuck into the corner so they stop covering
     the customized photo artwork on the right side of the banner. */
  .hero-nav { bottom: 3%; right: 3%; gap: 0.35rem; }
  .hero-nav-btn { width: 34px; height: 34px; }
  .hero-nav-btn svg { width: 14px; height: 14px; }

  /* Customizer preview no longer reserves desktop-sized vertical space. */
  .preview-stage { min-height: 320px; padding: 1.25rem; }
  .bottle-preview svg { max-width: 220px; }
  .box-preview svg    { max-width: 320px; }

  /* Perfume cards: trim the visual area + bottle so cards aren't oversized. */
  .perfume-visual { height: 300px; }
  .perfume-info   { padding: 1.5rem; }
  .perfume-info h3 { font-size: 1.6rem; }

  /* Customizer controls breathe better at narrow widths. */
  .customizer-controls h3 { font-size: 1.6rem; }
  .control-step { padding-left: 2.75rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; }
  .customizer-price .amount { font-size: 1.5rem; }

  /* Disclaimer block doesn't need 1.75rem horizontal padding on a phone. */
  .disclaimer { padding: 1.25rem; font-size: 0.8rem; margin-top: 2.5rem; }

  /* Per-perfume thumb strip — slightly tighter on phones. */
  .perfume-thumbs { padding: 0.75rem 0.85rem; gap: 0.4rem; }
  .thumb { width: 48px; height: 48px; padding: 3px; }

  /* Customized Editions — single column, more breathable spacing. */
  .ce-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .ce-tabs { margin-bottom: 2.5rem; gap: 0.15rem; padding: 0.3rem; }
  .ce-tabs button { padding: 0.6rem 1.1rem; font-size: 0.65rem; letter-spacing: 0.14em; }
  .ce-card picture { aspect-ratio: 4 / 5; }
  .ce-meta { padding: 1rem 1.25rem 1.25rem; }
  .ce-meta h3 { font-size: 1.1rem; }
}

/* Override the .bottle width/height defaults so the bottle PNG sits inside its
   container responsively rather than being stretched to a fixed 200×320 box. */
img.bottle {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 100%;
  object-fit: contain;
}

/* Disclaimer block in Customize section (per client RTF — IMPORTANT NOTE 1) */
.disclaimer {
  margin: 3.5rem auto 0;
  max-width: 880px;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}
.disclaimer strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
}

/* ============================
   Policy pages (privacy / refund / shipping / terms)
============================ */
.policy-body .header {
  background: var(--bg-2);
  border-bottom: 1px solid rgba(201, 169, 97, 0.22);
}
.policy-body .header.is-scrolled {
  background: var(--bg-2);
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}

.policy-page {
  padding: 4rem 0 5rem;
  min-height: 70vh;
}

.policy-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.policy-header .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.policy-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.85rem;
  color: var(--text);
}
.policy-header h1 em {
  font-style: italic;
  color: var(--gold);
}
.policy-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.policy-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0 auto 3rem;
  max-width: 760px;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.3);
}
.policy-toc a {
  flex: 1 1 auto;
  text-align: center;
  padding: 0.7rem 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: calc(var(--radius) - 4px);
  transition: all 0.3s;
}
.policy-toc a:hover {
  color: var(--text);
}
.policy-toc a.active {
  background: var(--gold);
  color: var(--bg);
  font-weight: 500;
}

.policy-content {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--sans);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}
.policy-content > p:first-of-type {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.policy-content h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  margin: 2.5rem 0 1rem;
  letter-spacing: 0.01em;
}
.policy-content p {
  margin-bottom: 1.1rem;
  color: var(--text);
}
.policy-content ul,
.policy-content ol {
  margin: 0 0 1.4rem 1.25rem;
  padding-left: 0.75rem;
}
.policy-content li {
  margin-bottom: 0.6rem;
  color: var(--text);
}
.policy-content li::marker {
  color: var(--gold);
}
.policy-content strong {
  color: var(--text);
  font-weight: 600;
}
.policy-content em {
  color: var(--text-muted);
  font-style: italic;
}
.policy-content a:not(.btn) {
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
  transition: border-color 0.3s;
}
.policy-content a:not(.btn):hover {
  border-bottom-color: var(--gold);
}

.policy-contact {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.25);
}
.policy-contact li {
  margin-bottom: 0.5rem;
}
.policy-contact li:last-child {
  margin-bottom: 0;
}

/* Policy page responsive */
@media (max-width: 700px) {
  .policy-page { padding: 5.5rem 0 3.5rem; }
  .policy-toc {
    flex-direction: column;
    gap: 0.25rem;
  }
  .policy-toc a { padding: 0.7rem 1rem; }
  .policy-content { font-size: 0.95rem; }
  .policy-content h2 { font-size: 1.35rem; }
  .policy-contact { padding: 1.25rem; }
}

/* ============================
   New components added 2026-05-11
   (Partner Codes refactor, Academy → WhatsApp waitlist, 5-column footer)
============================ */

/* WhatsApp button — used in Customize support row, Academy CTA, Footer column 1+6. */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.4s var(--transition);
  text-decoration: none;
}
.whatsapp-btn:hover {
  background: rgba(201, 169, 97, 0.12);
  border-color: var(--gold);
  color: var(--cream);
}
.whatsapp-btn svg { width: 18px; height: 18px; flex: 0 0 18px; }
.whatsapp-btn-block {
  display: flex;
  width: 100%;
  max-width: 320px;
}

/* Customize section — support helper at the bottom of the controls column. */
.customizer-support {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}
.customizer-support-label {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
}

/* Academy section — refreshed headings + 4-partner grid + big WA CTA. */
/* Selector deliberately matches `.academy-card > p` specificity so the cream
   color override actually wins over the parent rule's --text-muted. */
.academy-card > p.academy-tagline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--cream);
  margin: 0.5rem auto 0.75rem;
  max-width: 720px;
}
.academy-collab-heading {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 1.25rem;
  text-align: center;
  letter-spacing: 0.04em;
}
.academy-collab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.academy-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.1rem 2.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}
.academy-cta svg { width: 20px; height: 20px; }
.academy .form-note { margin-top: 1rem; }

/* Partner Codes — placeholder label replaces the old MEXIT3 / MAXIT10 code text.
   Selector intentionally higher-specificity than `.coupon-code span:first-child`. */
.coupon-code .coupon-placeholder,
.coupon-code span.coupon-placeholder {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  flex: 1;
  text-align: center;
  padding: 0.4rem 0;
}

/* Legacy Gallery cards — small inspiration note added 2026-05-10. */
.ce-disclaimer-note {
  margin: 0.5rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.5;
}
.ce-disclaimer-note strong {
  color: var(--gold);
  font-weight: 500;
}

/* Footer refresh 2026-05-10 — new columns + trust badges + bottom strip. */
.footer-eyebrow {
  display: block;
  margin: 1.25rem 0 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-helper-note {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-hours {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-or {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}
.footer-or::before,
.footer-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.footer-or span { padding: 0 0.8rem; }
.footer-privacy-note {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-operated-by {
  margin: 0 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Trust badges row under the main footer grid. */
.trust-badges {
  list-style: none;
  margin: 2.5rem 0 1.5rem;
  padding: 1.5rem 1rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-badges li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 56px;
}
.trust-badges svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  color: var(--gold);
}
.trust-badges strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-transform: uppercase;
}
.trust-badges span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Responsive: stack the 5-up trust row on tablets, full-stack on phones. */
@media (max-width: 1000px) {
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .trust-badges {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 0.85rem;
  }
  .academy-collab-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Product detail pages (silver.html / gold.html / black-velvet.html) */
.product-detail { max-width: 760px; }
.policy-breadcrumb { margin-bottom: 1.5rem; font-size: 0.9rem; }
.policy-breadcrumb a { color: var(--gold); text-decoration: none; }
.policy-breadcrumb a:hover { text-decoration: underline; }
.product-detail-header { margin-bottom: 1.75rem; }
.product-detail-header h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0.25rem 0 0.4rem; }
.product-type { color: var(--text-muted); font-size: 0.9rem; }
.product-detail-pricing {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.price-block { flex: 1; min-width: 180px; }
.price-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.price-block p { margin: 0.2rem 0; font-size: 0.95rem; }
.price-breakdown { color: var(--text-muted); font-size: 0.82rem; }
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.product-detail-section { margin-bottom: 2.25rem; }
.product-detail-section h2 {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.fragrance-notes-full th { font-weight: 600; width: 130px; }
.scent-profile-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.scent-profile-list li::before { content: "✦ "; color: var(--gold); font-size: 0.75em; }

/* FAQ page */
.faq-section { margin-bottom: 2.5rem; }
.faq-section > h2 {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
}
.faq-item { margin-bottom: 1.5rem; }
.faq-item h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--cream);
}
.policy-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--gold);
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .product-detail-actions { flex-direction: column; }
  .product-detail-pricing { flex-direction: column; gap: 1rem; }
}
