/* ==========================================
   EXEMPLE PARFUMERIE — CSS
   Aesthetic: Nuit Éditoriale · Haute Parfumerie
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@200;300;400;500&family=DM+Mono:wght@300;400&display=swap');

:root {
  --void:       #000000;
  --abyss:      #050403;
  --depth:      #0a0806;
  --panel:      #0f0d0b;
  --surface:    #141210;
  --lift:       #1a1714;
  --gold:       #b8945a;
  --gold-pale:  #d4b483;
  --gold-warm:  #c4a06a;
  --gold-glow:  rgba(184,148,90,0.15);
  --amber:      #8b5e2a;
  --blush:      #a06060;
  --cream:      #f0ebe3;
  --stone:      #ccc4b8;
  --mist:       #8a8278;
  --smoke:      #504c46;
  --rule:       rgba(184,148,90,0.1);
  --rule-accent:rgba(184,148,90,0.28);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', sans-serif;
  --font-mono:  'DM Mono', monospace;
  --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.55s var(--ease);
  --shadow-deep: 0 32px 80px rgba(0,0,0,0.85), 0 8px 24px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 80px rgba(184,148,90,0.08), 0 0 0 1px rgba(184,148,90,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--void);
  color: var(--cream);
  overflow-x: hidden;
  cursor: crosshair;
  font-weight: 300;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── GRAIN ──────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}

/* ── LIGNE DÉCORATIVE VERTICALE ─────────── */
body::after {
  content: '';
  position: fixed;
  left: 3.2rem; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--rule) 20%, var(--rule) 80%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

/* ── QUIZ MODAL ─────────────────────────── */
.quiz-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; backdrop-filter: blur(16px);
  transition: opacity 0.4s;
}
.quiz-overlay.open { opacity: 1; pointer-events: all; }
.quiz-modal {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-top: 1px solid var(--rule-accent);
  border-radius: 2px;
  padding: 4rem;
  max-width: 540px; width: 92%;
  position: relative;
  transform: scale(0.95) translateY(28px);
  transition: transform 0.55s var(--ease-spring);
  box-shadow: var(--shadow-deep), var(--shadow-glow);
}
.quiz-overlay.open .quiz-modal { transform: scale(1) translateY(0); }
.quiz-close {
  position: absolute; top: 1.5rem; right: 1.75rem;
  background: none; border: none; color: var(--smoke);
  font-size: 0.78rem; cursor: pointer; transition: color 0.3s;
  font-family: var(--font-mono); letter-spacing: 0.15em;
}
.quiz-close:hover { color: var(--gold); }
.quiz-step { display: none; text-align: center; }
.quiz-step.active { display: block; animation: fadeSlide 0.4s var(--ease); }
@keyframes fadeSlide { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:none} }
.quiz-step-num {
  font-family: var(--font-mono); font-size: 0.62rem; color: var(--gold);
  letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.quiz-step h3 {
  font-family: var(--font-serif); font-size: 1.9rem; font-style: italic;
  color: var(--cream); margin-bottom: 2.25rem; font-weight: 400; line-height: 1.2;
}
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.quiz-opt {
  background: var(--surface); border: 1px solid var(--rule);
  color: var(--stone); padding: 1.1rem 0.9rem; border-radius: 1px;
  font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.12em;
  cursor: pointer; transition: var(--transition); text-align: center;
  text-transform: uppercase; font-weight: 400;
}
.quiz-opt:hover { background: var(--gold-glow); border-color: var(--gold); color: var(--gold-pale); }
.quiz-opt.selected { background: rgba(184,148,90,0.1); border-color: var(--gold); color: var(--gold); }
.quiz-result-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.quiz-result-card {
  background: var(--surface); border: 1px solid var(--rule);
  border-top: 1px solid var(--rule-accent);
  padding: 2.25rem; margin: 1.5rem 0;
}
.qr-name { font-family: var(--font-serif); font-size: 2.1rem; color: var(--gold); font-style: italic; }
.qr-family { font-family: var(--font-mono); font-size: 0.6rem; color: var(--smoke); letter-spacing: 0.25em; text-transform: uppercase; margin: 0.45rem 0 1rem; }
.quiz-result-card p { font-size: 0.82rem; color: var(--stone); line-height: 1.8; margin-bottom: 1.1rem; letter-spacing: 0.02em; }
.qr-price { font-family: var(--font-serif); font-size: 1.25rem; color: var(--gold-pale); }
.quiz-discover { width: 100%; justify-content: center; margin-bottom: 1rem; }
.quiz-restart {
  background: none; border: none; color: var(--smoke); font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.18em; cursor: pointer; transition: color 0.3s; text-transform: uppercase;
}
.quiz-restart:hover { color: var(--cream); }

/* ── NAVBAR ─────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 2.25rem 5rem 2.25rem 5.5rem;
  transition: var(--transition);
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
  backdrop-filter: blur(0px);
}
nav.scrolled {
  background: rgba(0,0,0,0.96); backdrop-filter: blur(24px);
  padding: 1.15rem 5rem 1.15rem 5.5rem;
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  font-family: var(--font-serif); font-size: 1.55rem; color: var(--gold-pale);
  letter-spacing: 0.55em; font-weight: 700; font-style: italic;
}
.nav-links { display: flex; gap: 3.5rem; }
.nav-links a {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 300;
  color: var(--smoke); letter-spacing: 0.2em; text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-pale); }
.btn-quiz-nav {
  background: none; border: 1px solid var(--rule-accent); color: var(--gold);
  padding: 0.6rem 1.5rem; border-radius: 1px;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
}
.btn-quiz-nav:hover { background: var(--gold-glow); border-color: var(--gold-pale); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 1px; background: var(--cream); transition: var(--transition); }
.mobile-nav {
  display: none; flex-direction: column; align-items: center; gap: 2rem;
  padding: 2.5rem; background: var(--abyss); border-bottom: 1px solid var(--rule);
  position: fixed; top: 70px; left: 0; right: 0; z-index: 499;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-mono); font-size: 0.78rem; color: var(--stone); letter-spacing: 0.18em; text-transform: uppercase; }

/* ── BOUTONS ─────────────────────────────── */
.btn-gold {
  background: var(--gold); color: var(--void);
  padding: 0.9rem 2.75rem; border-radius: 1px;
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase;
  border: none; cursor: pointer; display: inline-block; transition: var(--transition);
}
.btn-gold:hover {
  background: var(--gold-pale); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,148,90,0.35);
}
.btn-quiz-hero {
  background: none; border: 1px solid rgba(240,235,227,0.18); color: var(--cream);
  padding: 0.9rem 2.75rem; border-radius: 1px;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
}
.btn-quiz-hero:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO — Mer & Plage ─────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

/* Image de fond */
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-sea-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 55%;
  filter: brightness(0.72) saturate(0.85);

}
/* Overlay dégradé — sombre en bas pour lisibilité, léger en haut */
.hero-sea-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.38) 0%,
      rgba(0,0,0,0.18) 38%,
      rgba(0,0,0,0.55) 75%,
      rgba(0,0,0,0.82) 100%),
    linear-gradient(to right,
      rgba(0,0,0,0.15) 0%,
      transparent 50%,
      rgba(0,0,0,0.15) 100%);
}

.hero-petals { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.petal { position: absolute; animation: fall linear infinite; font-family: var(--font-serif); color: rgba(255,255,255,0.25); }
@keyframes fall { from{transform:translateY(-5%) rotate(0deg)} to{transform:translateY(108%) rotate(360deg)} }
@keyframes flaconFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Contenu centré */
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  animation: heroFadeUp 1.6s var(--ease) forwards;
}
@keyframes heroFadeUp { from{opacity:0;transform:translateY(50px)} to{opacity:1;transform:none} }

.hero-eyebrow {
  font-family: var(--font-mono); font-size: 0.6rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.45em; text-transform: uppercase;
  display: block; margin-bottom: 2rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 9vw, 10rem);
  color: #fff;
  line-height: 0.9; font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hero h1 em {
  color: var(--gold-pale);
  font-style: italic; font-weight: 400;
  display: block;
}
.hero p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem; font-weight: 300;
  line-height: 2.2; margin-bottom: 3rem;
  letter-spacing: 0.06em;
}
.hero-ctas { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }
.btn-quiz-hero {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  padding: 0.9rem 2.75rem; border-radius: 1px;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-quiz-hero:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,148,90,0.1); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 3;
  animation: heroFadeUp 2s ease 1.2s both;
}
.hero-scroll-hint span {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-size: 0.65rem !important;
  letter-spacing: 0.12em !important;
  color: rgba(255,255,255,0.35) !important;
}
.scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.35} 50%{opacity:0.75} }

  .hero-issue { padding: 1.5rem 2rem 0; }
  .hero-left { grid-column: 1; grid-row: 2; padding: 3rem 2rem 0; }
  .hero-vert-label { display: none; }
  .hero-title { font-size: clamp(3rem, 10vw, 5rem); }
  .hero-center {
    grid-column: 1; grid-row: 3;
    border-left: none; border-right: none;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    height: 50vw; min-height: 280px;
  }
  .hero-right { grid-column: 1; grid-row: 4; padding: 2rem; }
  .hero-stats { flex-direction: row; gap: 2rem; }


/* ── CONTAINER ──────────────────────────── */
.container { max-width: 1380px; margin: 0 auto; padding: 0 4.5rem; }

/* ── SECTION HEADER ─────────────────────── */
.section-header { text-align: center; margin-bottom: 5.5rem; }
.eyebrow {
  font-family: var(--font-mono); font-size: 0.58rem; color: rgba(184,148,90,0.45);
  letter-spacing: 0.5em; text-transform: uppercase; display: block; margin-bottom: 1.25rem;
}
.eyebrow.gold { color: var(--gold); }
.section-header h2 {
  font-family: var(--font-serif); font-size: clamp(2.8rem, 5vw, 5rem);
  color: var(--cream); font-weight: 900; line-height: 0.95; letter-spacing: -0.015em;
}
.section-header p { color: var(--mist); font-size: 0.8rem; font-weight: 300; line-height: 2.1; margin-top: 1.35rem; letter-spacing: 0.04em; }

/* ── COLLECTION ─────────────────────────── */
.collection-section { padding: 10rem 0; background: var(--abyss); }
.perfumes-grid { display: grid; grid-template-columns: 1.65fr 1fr; gap: 1.25rem; }

/* FEATURED CARD */
.perfume-card {
  background: var(--panel); border: 1px solid var(--rule);
  border-radius: 2px; overflow: hidden;
  box-shadow: var(--shadow-deep); transition: var(--transition);
}
.perfume-card:hover { border-color: var(--rule-accent); }
.perfume-card.featured {
  display: grid; grid-template-columns: 1fr 1fr;
}
.perfume-visual {
  background: #050403;
  position: relative; overflow: hidden; min-height: 0; max-height: 320px; height: 320px;
}
.perfume-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,148,90,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.perfume-flacon {
  position: relative; z-index: 1;
  animation: flaconFloat 6s ease-in-out infinite;
}
.pf-body {
  width: 100px; height: 190px; border-radius: 6px 6px 3px 3px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 2px 0 14px rgba(255,255,255,0.04), 0 30px 70px rgba(0,0,0,0.75);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; position: relative; overflow: hidden;
}
.pf-body::before {
  content: '';
  position: absolute; top: 0; left: 24%; width: 11%; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), transparent);
}
.pf-cap {
  width: 36px; height: 24px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(184,148,90,0.65), rgba(184,148,90,0.32));
  border: 1px solid rgba(184,148,90,0.48); border-radius: 2px 2px 0 0;
  position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
}
.pf-label { font-family: var(--font-mono); font-size: 0.42rem; color: rgba(184,148,90,0.8); letter-spacing: 0.28em; z-index: 1; }
.pf-name { font-family: var(--font-serif); font-size: 0.82rem; color: rgba(240,235,227,0.9); letter-spacing: 0.12em; text-align: center; font-style: italic; line-height: 1.25; z-index: 1; }
.pf-shadow { width: 80px; height: 16px; background: radial-gradient(ellipse, rgba(184,148,90,0.1), transparent); margin: 16px auto 0; border-radius: 50%; }

.perfume-notes-preview {
  display: flex; gap: 0.55rem; flex-wrap: wrap; justify-content: center; margin-top: 2.25rem; z-index: 1;
}
.perfume-notes-preview span {
  font-family: var(--font-mono); font-size: 0.58rem; color: var(--smoke);
  border: 1px solid var(--rule); padding: 0.28rem 0.75rem; border-radius: 1px;
  letter-spacing: 0.15em; text-transform: uppercase;
}

.perfume-details { padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.perfume-family {
  font-family: var(--font-mono); font-size: 0.58rem; color: var(--gold);
  letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 0.85rem;
}
.perfume-details h3 {
  font-family: var(--font-serif); font-size: 2.75rem; color: var(--cream);
  font-weight: 700; line-height: 1; margin-bottom: 1.35rem; letter-spacing: -0.02em;
}
.perfume-details p {
  color: var(--mist); font-size: 0.8rem; font-weight: 300;
  line-height: 1.95; margin-bottom: 2.25rem; letter-spacing: 0.03em;
}

.size-selector { margin-bottom: 2.25rem; }
.size-label {
  font-family: var(--font-mono); font-size: 0.58rem; color: var(--smoke);
  letter-spacing: 0.28em; text-transform: uppercase; display: block; margin-bottom: 0.9rem;
}
.size-btns { display: flex; gap: 0.5rem; }
.size-btn {
  background: none; border: 1px solid var(--rule); color: var(--mist);
  padding: 0.6rem 1.25rem; border-radius: 1px;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em;
  cursor: pointer; transition: var(--transition); text-transform: uppercase;
}
.size-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(184,148,90,0.07); }
.size-btn:hover { border-color: var(--gold-pale); color: var(--gold-pale); }

.perfume-price-row { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.perfume-price-block { display: flex; align-items: baseline; gap: 0.25rem; }
.price-anim { font-family: var(--font-serif); font-size: 3.2rem; color: var(--gold-pale); font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.price-currency { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); }

/* PETITES CARTES */
.perfumes-small-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-content: start; }

.perfume-sm-card {
  background: var(--panel); border: 1px solid var(--rule);
  border-radius: 2px; overflow: hidden;
  box-shadow: var(--shadow-deep); transition: var(--transition);
  display: flex; flex-direction: column;
}
.perfume-sm-card:hover { border-color: var(--rule-accent); transform: translateY(-3px); }

.psm-visual {
  height: 110px; position: relative; overflow: hidden;
  display: block;
  background: #050403;
}
.psm-flacon-wrap { display: flex; align-items: flex-end; justify-content: center; gap: 8px; height: 100%; padding-bottom: 8px; }
.psm-bottle { position: relative; animation: flaconFloat 5s ease-in-out infinite; }
.psm-bottle-body {
  width: 36px; height: 66px; border-radius: 3px 3px 2px 2px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 1px 0 6px rgba(255,255,255,0.05), 0 8px 20px rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.psm-bottle-body::before {
  content: ''; position: absolute; top: 0; left: 25%; width: 10%; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.01));
}
.psm-bottle-cap {
  width: 18px; height: 13px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(184,148,90,0.7), rgba(184,148,90,0.35));
  border-radius: 1px 1px 0 0; border: 1px solid rgba(184,148,90,0.5); border-bottom: none;
}
.psm-bottle-name { font-family: var(--font-serif); font-size: 0.4rem; color: rgba(255,255,255,0.85); letter-spacing: 0.08em; text-align: center; z-index: 1; font-style: italic; line-height: 1.2; }

.psm-info { padding: 1.15rem 1.3rem 1.4rem; flex: 1; }
.psm-family { font-family: var(--font-mono); font-size: 0.56rem; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 0.35rem; }
.psm-info h4 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--cream); font-weight: 700; margin-bottom: 0.38rem; letter-spacing: -0.01em; }
.psm-info p { font-size: 0.72rem; color: var(--mist); line-height: 1.65; margin-bottom: 0.85rem; letter-spacing: 0.02em; }
.psm-sizes { display: flex; gap: 0.3rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.psm-size {
  background: none; border: 1px solid var(--rule); color: var(--smoke);
  padding: 0.25rem 0.6rem; border-radius: 1px;
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.08em;
  cursor: pointer; transition: var(--transition); text-transform: uppercase;
}
.psm-size.active { border-color: var(--gold); color: var(--gold); background: rgba(184,148,90,0.07); }
.psm-size:hover { border-color: var(--gold-pale); color: var(--gold-pale); }
.psm-price-row { display: flex; align-items: center; justify-content: space-between; }
.psm-price { font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold-pale); font-weight: 700; }
.btn-gold-sm {
  background: rgba(184,148,90,0.1); border: 1px solid var(--rule); color: var(--gold);
  padding: 0.35rem 0.85rem; border-radius: 1px;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer; transition: var(--transition);
}
.btn-gold-sm:hover { background: var(--gold); color: var(--void); }

/* ── UNIVERS SLIDER ─────────────────────── */
.univers-section { position: relative; height: 100vh; overflow: hidden; }
.univers-slider { position: absolute; inset: 0; }
.us-slide {
  position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 0 9rem; gap: 5rem;
  opacity: 0; transition: opacity 1.1s ease;
}
.us-slide.active { opacity: 1; }
.us-content .us-eyebrow {
  font-family: var(--font-mono); font-size: 0.58rem; color: var(--gold);
  letter-spacing: 0.4em; text-transform: uppercase; display: block; margin-bottom: 1.6rem;
}
.us-content h2 {
  font-family: var(--font-serif); font-size: clamp(3rem, 4.8vw, 5.5rem);
  color: var(--cream); font-weight: 900; line-height: 0.95; margin-bottom: 1.6rem; letter-spacing: -0.02em;
}
.us-content h2 em { color: var(--gold); font-style: italic; display: block; font-weight: 400; }
.us-content p { color: var(--mist); font-size: 0.82rem; font-weight: 300; line-height: 2.05; letter-spacing: 0.04em; }
.us-visual { display: flex; align-items: center; justify-content: center; }
.ambient-scene { font-size: 3.8rem; text-align: center; position: relative; }
.petal-drift { display: inline-block; animation: petalDrift 4.2s ease-in-out infinite; }
.petal-drift.p1 { animation-delay: 0s; }
.petal-drift.p2 { animation-delay: 0.9s; }
.petal-drift.p3 { animation-delay: 1.8s; }
@keyframes petalDrift { 0%,100%{transform:translateY(0) rotate(-8deg)} 50%{transform:translateY(-20px) rotate(8deg)} }
.lab-bottles { display: block; animation: pulse 3.2s ease-in-out infinite; font-size: 3.5rem; }
@keyframes pulse { 0%,100%{opacity:0.55} 50%{opacity:1} }

.slider-flacon-scene { position: relative; width: 190px; height: 270px; margin: 0 auto; }
.sf-bottle {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 75px; height: 145px; border-radius: 5px 5px 3px 3px;
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: inset 2px 0 12px rgba(255,255,255,0.05), 0 20px 50px rgba(0,0,0,0.65);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  animation: flaconFloat 5s ease-in-out infinite;
}
.sf-bottle::before {
  content: ''; position: absolute; top: 0; left: 22%; width: 12%; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), transparent);
}
.sf-cap {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 20px;
  background: linear-gradient(180deg, rgba(184,148,90,0.7), rgba(184,148,90,0.32));
  border: 1px solid rgba(184,148,90,0.5); border-radius: 2px 2px 0 0;
}
.sf-label { font-family: var(--font-serif); font-size: 0.55rem; color: rgba(255,255,255,0.85); letter-spacing: 0.2em; text-align: center; font-style: italic; z-index: 1; line-height: 1.5; }
.sf-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px;
  background: radial-gradient(ellipse, rgba(184,148,90,0.13), transparent); border-radius: 50%;
}
.us-controls { position: absolute; bottom: 2.75rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.65rem; z-index: 2; }
.us-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(184,148,90,0.22); border: none; cursor: pointer; transition: var(--transition);
}
.us-dot.active { background: var(--gold); width: 26px; border-radius: 3px; }
.us-arrow {
  position: absolute; top: 50%; z-index: 2; transform: translateY(-50%);
  background: rgba(184,148,90,0.05); border: 1px solid var(--rule); color: var(--gold);
  width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  font-family: var(--font-mono); font-size: 0.95rem; transition: var(--transition);
}
.us-arrow:hover { background: rgba(184,148,90,0.12); }
.us-prev { left: 2.25rem; }
.us-next { right: 2.25rem; }

/* ── QUIZ BAND ──────────────────────────── */
.quiz-band { padding: 8rem 0; background: var(--depth); border-top: 1px solid var(--rule); }
.quiz-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 4.5rem; flex-wrap: wrap; }
.qb-left h2 {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--cream); font-weight: 900; margin: 0.65rem 0 0.9rem; line-height: 1; letter-spacing: -0.02em;
}
.qb-left h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.qb-left p { color: var(--mist); font-size: 0.8rem; font-weight: 300; line-height: 1.95; max-width: 400px; letter-spacing: 0.03em; }
.btn-quiz-large {
  background: linear-gradient(135deg, rgba(184,148,90,0.09), rgba(184,148,90,0.03));
  border: 1px solid var(--gold); color: var(--gold);
  padding: 2.5rem 4rem; border-radius: 1px;
  font-family: var(--font-mono); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
  transition: var(--transition); min-width: 260px; text-align: center;
  letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.72rem;
}
.btn-quiz-large:hover {
  background: linear-gradient(135deg, rgba(184,148,90,0.16), rgba(184,148,90,0.07));
  transform: translateY(-5px); box-shadow: 0 22px 60px rgba(184,148,90,0.13);
}
.quiz-icon { font-size: 1.35rem; margin-bottom: 0.35rem; animation: quizPulse 2.8s ease-in-out infinite; }
@keyframes quizPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }
.btn-quiz-large .quiz-sub { font-family: var(--font-mono); font-size: 0.58rem; color: var(--smoke); letter-spacing: 0.18em; text-transform: uppercase; }

/* ── AVIS ───────────────────────────────── */
.avis-section { padding: 10rem 0; background: var(--abyss); }
.avis-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.avis-card {
  background: var(--panel); border: 1px solid var(--rule);
  border-radius: 2px; padding: 2.75rem;
  transition: var(--transition); box-shadow: var(--shadow-deep);
  position: relative; overflow: hidden;
}
.avis-card::before {
  content: '"';
  position: absolute; top: 1.5rem; right: 2rem;
  font-family: var(--font-serif); font-size: 5rem; color: rgba(184,148,90,0.06);
  line-height: 1; pointer-events: none; font-style: italic;
}
.avis-card:hover { border-color: var(--rule-accent); transform: translateY(-4px); }
.avis-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; }
.avis-stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.18em; }
.avis-parfum {
  font-family: var(--font-mono); font-size: 0.58rem; color: var(--smoke);
  letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(184,148,90,0.05); border: 1px solid var(--rule);
  padding: 0.2rem 0.65rem; border-radius: 1px;
}
.avis-card p { font-family: var(--font-serif); font-style: italic; font-size: 0.98rem; color: var(--stone); line-height: 1.85; margin-bottom: 2rem; font-weight: 400; }
.avis-author { display: flex; align-items: center; gap: 0.9rem; }
.avis-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 0.95rem; color: var(--void); flex-shrink: 0;
}
.avis-author strong { display: block; font-family: var(--font-sans); font-size: 0.8rem; color: var(--cream); letter-spacing: 0.04em; font-weight: 500; }
.avis-author span { font-family: var(--font-mono); font-size: 0.62rem; color: var(--smoke); letter-spacing: 0.08em; }

/* ── FOOTER ─────────────────────────────── */
.footer-top-band { background: var(--panel); border-top: 1px solid var(--rule); padding: 4rem 0; }
.ftb-inner { display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.ftb-text h4 { font-family: var(--font-serif); font-size: 1.45rem; color: var(--cream); font-weight: 700; letter-spacing: -0.01em; }
.ftb-text p { font-family: var(--font-sans); font-size: 0.76rem; color: var(--mist); margin-top: 0.45rem; letter-spacing: 0.04em; }
.ftb-form { display: flex; gap: 0.5rem; flex: 1; min-width: 280px; }
.ftb-input {
  flex: 1; background: var(--surface); border: 1px solid var(--rule);
  border-radius: 1px; padding: 0.85rem 1.15rem; color: var(--cream);
  font-family: var(--font-mono); outline: none; font-size: 0.76rem; letter-spacing: 0.06em;
}
.ftb-input::placeholder { color: rgba(240,235,227,0.18); }
.ftb-input:focus { border-color: var(--gold); }
.ftb-success { display: none; font-family: var(--font-mono); color: var(--gold-pale); font-size: 0.8rem; letter-spacing: 0.08em; }

.footer-main { background: var(--void); padding: 5.5rem 0 4.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
.footer-brand .footer-logo {
  font-family: var(--font-serif); font-size: 2rem; color: var(--gold-pale);
  letter-spacing: 0.45em; margin-bottom: 1.4rem; font-style: italic; font-weight: 700;
}
.footer-brand p { font-size: 0.76rem; color: var(--mist); line-height: 1.95; max-width: 270px; letter-spacing: 0.03em; }
.footer-social { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.6rem; }
.footer-social a { font-family: var(--font-mono); font-size: 0.68rem; color: var(--smoke); transition: color 0.3s; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-social a:hover { color: var(--gold-pale); }
.footer-col h5 { font-family: var(--font-mono); font-size: 0.56rem; color: rgba(240,235,227,0.2); letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1.65rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.76rem; color: var(--mist); transition: color 0.3s; font-weight: 300; letter-spacing: 0.04em; }
.footer-col a:hover { color: var(--gold-pale); }
.footer-bottom { background: var(--void); border-top: 1px solid var(--rule); padding: 1.85rem 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 0.6rem; color: rgba(240,235,227,0.12);
  flex-wrap: wrap; gap: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.pay-row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.pay-icon {
  background: rgba(255,255,255,0.025); padding: 0.3rem 0.65rem;
  border-radius: 1px; color: rgba(240,235,227,0.2); font-family: var(--font-mono); font-size: 0.6rem;
  border: 1px solid rgba(255,255,255,0.035);
}

/* ── TOAST ──────────────────────────────── */
.toast {
  position: fixed; bottom: 2.5rem; right: 2.5rem; z-index: 600;
  background: var(--panel); color: var(--cream); border: 1px solid var(--rule);
  border-top: 1px solid var(--rule-accent);
  padding: 1.1rem 1.85rem; border-radius: 1px; font-family: var(--font-mono); font-size: 0.76rem;
  letter-spacing: 0.06em; box-shadow: var(--shadow-deep), var(--shadow-glow);
  transform: translateY(18px); opacity: 0; transition: all 0.4s var(--ease); pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .perfumes-grid { grid-template-columns: 1fr; }
  .perfumes-small-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 1.5rem 2.5rem; }
  nav.scrolled { padding: 1rem 2.5rem; }
  body::after { left: 1.75rem; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-quiz-nav { display: none; }
  .burger { display: flex; }
  .us-slide { grid-template-columns: 1fr; padding: 0 3.5rem; text-align: center; }
  .us-visual { display: none; }
  .avis-grid { grid-template-columns: 1fr; }
  .perfumes-small-grid { grid-template-columns: 1fr 1fr; }
  .quiz-band-inner { flex-direction: column; text-align: center; }
  .hero-parallax-layer { display: none; }
  body::after { display: none; }
}
@media (max-width: 640px) {
  .perfumes-small-grid { grid-template-columns: 1fr; }
  .ftb-inner { flex-direction: column; }
  .ftb-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .size-btns { flex-wrap: wrap; }
  .container { padding: 0 1.75rem; }
  .perfume-card.featured { grid-template-columns: 1fr; }
}

/* ── REAL PRODUCT IMAGES ─────────────────── */

/* Featured card visual zone */
.perfume-visual {
  background: #050403 !important;
  min-height: 0; max-height: 320px; height: 320px;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.perfume-real-img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.88) contrast(1.05);
  animation: none;
}
/* notes preview stays on top */
.perfume-notes-preview {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 90%;
  justify-content: center;
}

/* Small cards */
.psm-visual {
  height: 110px;
  position: relative;
  overflow: hidden;
  display: block;
  background: #050403;
}
.psm-visual-img {
  background: #050403 !important;
  height: 110px;
  display: block;
  overflow: hidden;
}
.psm-real-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.88) contrast(1.05);
}

/* ── HOVER EFFECTS ──────────────────────── */

/* Featured card image zoom */
.perfume-card.featured .perfume-visual {
  overflow: hidden;
}
.perfume-card.featured .perfume-visual .perfume-real-img {
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.8s ease;
}
.perfume-card.featured:hover .perfume-real-img {
  transform: scale(1.06);
  filter: brightness(0.75) contrast(1.08);
}

/* Featured card golden overlay on hover */
.perfume-card.featured .perfume-visual::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    transparent 40%,
    rgba(184,148,90,0.12) 70%,
    rgba(184,148,90,0.25) 100%
  );
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.perfume-card.featured:hover .perfume-visual::after {
  opacity: 1;
}

/* Small cards image zoom + overlay */
.perfume-sm-card .psm-visual {
  overflow: hidden;
}
.perfume-sm-card .psm-real-img {
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.8s ease;
}
.perfume-sm-card:hover .psm-real-img {
  transform: scale(1.08);
  filter: brightness(0.7) contrast(1.1);
}

/* Gold shimmer line on hover */
.perfume-sm-card .psm-visual::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg,
    transparent 30%,
    rgba(184,148,90,0.18) 60%,
    rgba(184,148,90,0.32) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.perfume-sm-card:hover .psm-visual::after {
  opacity: 1;
}

/* Card border glow on hover */
.perfume-sm-card {
  transition: border-color 0.5s ease, transform 0.5s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.5s ease;
}
.perfume-sm-card:hover {
  border-color: rgba(184,148,90,0.45) !important;
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.75), 0 0 0 1px rgba(184,148,90,0.15);
}

/* Quick-add button reveal on hover */
.psm-price-row .btn-gold-sm {
  opacity: 0.55;
  transform: translateX(6px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, color 0.3s ease;
}
.perfume-sm-card:hover .psm-price-row .btn-gold-sm {
  opacity: 1;
  transform: translateX(0);
}

/* Featured card: details panel subtle lift */
.perfume-card.featured .perfume-details {
  transition: background 0.6s ease;
}
.perfume-card.featured:hover .perfume-details {
  background: rgba(184,148,90,0.025);
}

/* ── UI ANTI-IA OVERRIDES ────────────────── */

/* Quiz options — chiffres romains style editorial */
.quiz-opt {
  text-align: left !important;
  padding: 1rem 1.25rem !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.08em !important;
  text-transform: none !important;
  border-radius: 0 !important;
  position: relative;
  overflow: hidden;
}
.quiz-opt::after {
  content: '→';
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  opacity: 0; color: var(--gold);
  transition: opacity 0.3s ease, right 0.3s ease;
  font-family: var(--font-mono); font-size: 0.7rem;
}
.quiz-opt:hover::after { opacity: 1; right: 0.75rem; }

/* Quiz result icon — grande lettre typographique */
.quiz-result-icon {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1;
}

/* Quiz band — retrait emoji, layout asymétrique */
.quiz-icon {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.btn-quiz-large {
  padding: 2rem 3rem !important;
}

/* Slider lab text remplacement emoji */
.lab-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: rgba(184,148,90,0.55);
  letter-spacing: 0.18em;
  animation: pulse 3.2s ease-in-out infinite;
}

/* Petal drifts — symboles typographiques */
.petal-drift {
  font-family: var(--font-serif);
  color: rgba(184,148,90,0.6);
  font-size: 2rem;
}

/* Footer social — liens avec underline animé, sans préfixe */
.footer-social a {
  position: relative;
  padding-bottom: 2px;
  font-size: 0.72rem !important;
  letter-spacing: 0.18em !important;
}
.footer-social a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.footer-social a:hover::after { width: 100%; }

/* Pay icons — propre, sans emoji */
.pay-icon {
  font-family: var(--font-mono) !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(240,235,227,0.25) !important;
  border-color: rgba(255,255,255,0.06) !important;
  padding: 0.35rem 0.9rem !important;
}

/* Avis cards — guillemet supprimé, remplacé par règle latérale */
.avis-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 2px !important; height: 100% !important;
  background: linear-gradient(to bottom, var(--gold), transparent) !important;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-size: 0 !important;
}
.avis-card:hover::before { opacity: 1; }

/* Avis stars — en chiffre + trait plutôt qu'étoiles Unicode */
.avis-stars {
  font-family: var(--font-mono);
  font-size: 0.58rem !important;
  letter-spacing: 0.25em;
  color: var(--gold) !important;
}
.avis-stars::before {
  content: '5.0 ';
  font-size: 0.72rem;
  font-family: var(--font-serif);
  font-style: italic;
}

/* Section headers — eyebrow avec trait horizontal */
.eyebrow {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: rgba(184,148,90,0.35);
}

/* Scroll hint — texte en italique */
.hero-scroll-hint span {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-size: 0.65rem !important;
  letter-spacing: 0.12em !important;
  color: rgba(184,148,90,0.4) !important;
}

/* Nav quiz button — moins "call to action", plus sobre */
.btn-quiz-nav {
  font-size: 0.58rem !important;
  letter-spacing: 0.25em !important;
}

/* Burger — deux lignes inégales (asymétrique) */
.burger span:first-child { width: 28px; }
.burger span:last-child  { width: 16px; }
.burger:hover span:last-child { width: 28px; transition: width 0.3s ease; }