/* ==========================================================================
   Doux Parfumerie — Feuille de style v2 (Apple-inspired premium)
   Palette : #FAFAF7 (fond), #111111 (texte/CTA), #C9A977 (accent doré),
             #EFEDE8 (alterné/bordures uniquement)
   Typo   : Montserrat (titres) + Open Sans (corps/UI)
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  --bg: #FAFAF7;
  --bg-2: #EFEDE8;
  --ink: #111111;
  --ink-2: #1d1d1f;
  --gold: #C9A977;
  --gold-soft: #d8bb89;
  --muted: #6e6e73;
  --muted-2: #a1a1a6;

  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --font-text: 'Open Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(17,17,17,.06);
  --shadow-lg: 0 30px 60px -20px rgba(17,17,17,.18);

  --blur-glass: saturate(180%) blur(20px);
}

/* ---------- 1. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -.003em;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease-out-quart); }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; padding: 0; }
input, select, textarea { font-family: inherit; font-size: 16px; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.08;
}
h1 { font-weight: 700; }
p { margin: 0 0 1em; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -100vw; top: 0; padding: 12px 20px;
  background: var(--ink); color: var(--bg); z-index: 9999;
}
.skip-link:focus { left: 0; }

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

/* ---------- 2. Layout helpers ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section--alt { background: var(--bg-2); }
.section--soft { background: var(--bg); }
.section--dark { background: var(--ink); color: var(--bg); }
/* Réduit le padding-bottom pour que la section suivante soit plus proche */
.section--tight-bottom { padding-bottom: 40px; }
/* Réduit le padding-top pour rapprocher de la section précédente */
.section--tight-top { padding-top: 40px; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--bg); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  text-align: center;
  margin: 0 auto 16px;
  letter-spacing: -.025em;
}
.section-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-lead {
  font-size: 19px;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .container, .container-narrow { padding: 0 20px; }
  .section-lead { font-size: 16px; margin-bottom: 48px; }
}

/* ---------- 3. Buttons ---------- */
.btn-dark, .btn-accent, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .005em;
  border-radius: var(--radius-pill);
  transition: transform .25s var(--ease-out-quart),
              background-color .25s var(--ease-out-quart),
              color .25s var(--ease-out-quart),
              border-color .25s var(--ease-out-quart),
              box-shadow .25s var(--ease-out-quart);
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
}
.btn-dark { background: var(--ink); color: var(--bg); border: 1px solid var(--ink); }
.btn-dark:hover { background: #2a2a2a; color: var(--bg); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--gold); color: var(--ink); border: 1px solid var(--gold); }
.btn-accent:hover { background: var(--gold-soft); color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(17,17,17,.18); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-size: 15px; font-weight: 500;
  padding-bottom: 2px; border-bottom: 1px solid var(--gold);
  transition: gap .25s var(--ease-out-quart), color .25s var(--ease-out-quart);
}
.btn-link:hover { color: var(--gold); gap: 14px; }
.btn-large { padding: 18px 40px; font-size: 16px; }

/* ---------- 4. Header — Liquid Glass ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, 0.78);
  -webkit-backdrop-filter: var(--blur-glass);
  backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid rgba(17, 17, 17, .06);
  transition: background-color .35s var(--ease-out-quart),
              border-color .35s var(--ease-out-quart);
}
.site-header.is-scrolled {
  background: rgba(250, 250, 247, 0.92);
  border-bottom-color: rgba(17, 17, 17, .1);
}
.announcement-bar {
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .04em;
  text-align: center;
  padding: 10px 16px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-row { padding: 0 24px; }
.header-inner {
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.header-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  position: relative;
  border-radius: var(--radius-pill);
  transition: background-color .2s var(--ease-out-quart);
}
.header-icon:hover { background: rgba(17,17,17,.06); color: var(--ink); }
.icon-search { justify-self: start; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 4px; }
.icon-menu { display: none; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px; font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.cart-count[data-cart-count="0"] { display: none; }
.site-logo {
  display: inline-flex; align-items: center; line-height: 1;
}
.site-logo__img {
  display: block;
  height: 56px;
  width: auto;
  color: var(--ink);
  transition: transform .35s var(--ease-out-quart);
}
.site-logo:hover .site-logo__img { transform: scale(1.03); }
@media (max-width: 1023px) {
  .site-logo__img { height: 38px; }
}
.primary-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 0 0 14px;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
}
.primary-nav a {
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color .2s var(--ease-out-quart);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s var(--ease-out-quart), left .3s var(--ease-out-quart);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { width: 100%; left: 0; }

@media (max-width: 1023px) {
  .header-inner { height: 60px; }
  .icon-menu { display: inline-flex; }
  .primary-nav { display: none; }
  .announcement-bar { font-size: 11px; padding: 8px 12px; height: 32px; }
}

/* ---------- 5. Search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(250, 250, 247, .65);
  -webkit-backdrop-filter: var(--blur-glass);
  backdrop-filter: var(--blur-glass);
  z-index: 110;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
}
.search-overlay.is-open { display: flex; animation: fadeIn .25s var(--ease-out-quart); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.search-form {
  width: min(640px, 90vw);
  background: rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: var(--blur-glass);
  backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center;
  padding: 8px 8px 8px 16px;
  gap: 8px;
  box-shadow: var(--shadow-lg);
}
.search-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 4px;
  font-size: 17px;
  color: var(--ink);
  outline: none;
}
.search-form button { width: 40px; height: 40px; color: var(--ink); font-size: 22px; border-radius: var(--radius-pill); transition: background .2s; }
.search-form button:hover { background: rgba(17,17,17,.06); }

/* ---------- 6. Mobile menu ---------- */
.mobile-menu__overlay {
  position: fixed; inset: 0;
  background: rgba(17, 17, 17, .35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-out-quart);
  z-index: 120;
}
.mobile-menu__overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(380px, 92vw);
  background: var(--bg);
  z-index: 130;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out-expo);
  display: flex; flex-direction: column;
  box-shadow: -30px 0 60px -20px rgba(0,0,0,.2);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--bg-2);
}
.mobile-menu__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}
.mobile-menu__head button { font-size: 28px; line-height: 1; color: var(--ink); width: 44px; height: 44px; border-radius: var(--radius-pill); transition: background .2s; }
.mobile-menu__head button:hover { background: rgba(17,17,17,.06); }
.mobile-menu__body { padding: 16px 0; overflow-y: auto; flex: 1; }
.mobile-menu__body a, .mobile-menu__body summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: background-color .2s;
}
.mobile-menu__body a:hover, .mobile-menu__body summary:hover { background: rgba(17,17,17,.04); }
.mobile-menu__body summary::-webkit-details-marker { display: none; }
.mobile-menu__body summary::after {
  content: '›';
  color: var(--gold);
  font-size: 24px;
  transition: transform .25s var(--ease-out-quart);
}
.mobile-menu__body details[open] summary::after { transform: rotate(90deg); }
.mobile-menu__body details a {
  padding-left: 40px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}
.mobile-menu__divider {
  display: block; height: 1px; background: var(--bg-2); margin: 12px 24px;
}

/* ---------- 7. Cart drawer ---------- */
.cart-drawer__overlay {
  position: fixed; inset: 0;
  background: rgba(17, 17, 17, .35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-out-quart);
  z-index: 120;
}
.cart-drawer__overlay.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100%);
  background: var(--bg);
  z-index: 130;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out-expo);
  display: flex; flex-direction: column;
  box-shadow: -30px 0 60px -20px rgba(0,0,0,.2);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--bg-2);
}
.cart-drawer__head h2 {
  font-size: 20px;
  font-weight: 600;
}
.cart-drawer__head button { font-size: 28px; line-height: 1; width: 44px; height: 44px; border-radius: var(--radius-pill); transition: background .2s; }
.cart-drawer__head button:hover { background: rgba(17,17,17,.06); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-drawer__foot {
  border-top: 1px solid var(--bg-2);
  padding: 20px 24px;
}
.cart-line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--bg-2);
}
.cart-line__img {
  width: 80px; height: 80px;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.cart-line__img img { max-width: 70%; max-height: 70%; object-fit: contain; }
.cart-line__brand {
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-2); font-weight: 500;
}
.cart-line__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin: 4px 0;
}
.cart-line__variant { font-size: 13px; color: var(--muted); }
.cart-line__qty {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--bg-2);
  border-radius: var(--radius-pill);
  margin-top: 10px;
  background: white;
}
.cart-line__qty button {
  width: 30px; height: 30px;
  font-size: 16px; color: var(--ink);
  border-radius: var(--radius-pill);
  transition: background .2s;
}
.cart-line__qty button:hover { background: rgba(17,17,17,.06); }
.cart-line__qty input {
  width: 36px; height: 30px;
  text-align: center;
  border: 0;
  background: transparent;
  font-size: 14px;
  -moz-appearance: textfield;
}
.cart-line__qty input::-webkit-outer-spin-button,
.cart-line__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-line__price {
  font-size: 15px; font-weight: 600;
  white-space: nowrap;
  font-family: var(--font-display);
}
.cart-line__remove {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  margin-top: 8px;
  text-align: right;
  transition: color .2s;
}
.cart-line__remove:hover { color: var(--ink); }
.cart-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--muted);
}
.cart-empty h3 { font-size: 22px; margin-bottom: 12px; }
.cart-summary { margin-bottom: 14px; }
.cart-summary__row {
  display: flex; justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
}
.cart-summary__row--total {
  font-weight: 600;
  font-size: 17px;
  border-top: 1px solid var(--bg-2);
  margin-top: 6px;
  padding-top: 12px;
  font-family: var(--font-display);
}
.cart-shipping {
  font-size: 12px; color: var(--muted);
  background: var(--bg-2);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

/* ---------- 8. Hero — Apple-style split (texte + flacon) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
  color: var(--bg);
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,169,119,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 30% 80%, rgba(60,40,20,.45) 0%, transparent 70%),
    linear-gradient(135deg, #0f0d0a 0%, #1a1612 50%, #0a0807 100%);
  pointer-events: none;
}
.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 64px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
  width: 100%;
}
.hero__text {
  max-width: 580px;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal .9s var(--ease-out-expo) forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.4vw, 96px);
  font-weight: 700;
  line-height: .98;
  color: var(--bg);
  margin: 0 0 24px;
  letter-spacing: -.035em;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s var(--ease-out-expo) .15s forwards;
}
.hero__title span {
  display: block;
  background: linear-gradient(135deg, #f5e8d0 0%, #C9A977 60%, #8a6f48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.hero__subtitle {
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.55;
  color: rgba(250, 250, 247, .78);
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s var(--ease-out-expo) .3s forwards;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s var(--ease-out-expo) .45s forwards;
}
.btn-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--bg);
  transition: transform .25s var(--ease-out-quart), box-shadow .25s var(--ease-out-quart);
  text-decoration: none;
}
.btn-light:hover {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,255,255,.12);
}
.btn-link-light {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--bg);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid rgba(250,250,247,.3);
  transition: gap .25s var(--ease-out-quart), border-color .25s var(--ease-out-quart);
}
.btn-link-light:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  gap: 14px;
}

/* Bouton secondaire sur fond sombre (outlined) — visible et net sans dominer le CTA principal */
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--bg);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(250,250,247,.45);
  background: transparent;
  text-decoration: none;
  transition: all .25s var(--ease-out-quart);
}
.btn-outline-light:hover {
  color: var(--ink);
  background: var(--bg);
  border-color: var(--bg);
  transform: translateY(-2px);
}

.hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: clamp(420px, 70vh, 720px);
  opacity: 0;
  transform: translateY(40px) scale(.96);
  animation: heroReveal 1.2s var(--ease-out-expo) .25s forwards;
}
.hero__halo {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(201,169,119,.35) 0%, rgba(201,169,119,.08) 30%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: heroPulse 6s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: .9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero__bottle {
  position: relative;
  z-index: 2;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 60px 60px rgba(0,0,0,.5)) drop-shadow(0 0 40px rgba(201,169,119,.15));
  will-change: transform;
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1023px) {
  .hero__container {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
    gap: 32px;
    text-align: center;
  }
  .hero__text { max-width: none; margin: 0 auto; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__visual { height: 360px; order: -1; }
}
@media (max-width: 768px) {
  .hero__container { padding: 80px 20px 48px; }
  .hero__title { font-size: clamp(36px, 8vw, 56px); }
  .hero__visual { height: 280px; }
}

/* ---------- 9. Catégories — cards Apple-like ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  border-radius: var(--radius-lg);
  transition: transform .5s var(--ease-out-quart);
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease-out-quart);
}
.cat-card:hover .cat-card__img { transform: scale(1.06); }
.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.6) 100%);
}
.cat-card__label {
  position: relative;
  z-index: 2;
  padding: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--bg);
  letter-spacing: -.01em;
}
.cat-card__label::after {
  content: '→';
  display: inline-block;
  margin-left: 8px;
  transform: translateX(0);
  transition: transform .25s var(--ease-out-quart);
  color: var(--gold);
}
.cat-card:hover .cat-card__label::after { transform: translateX(6px); }

@media (max-width: 768px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card__label { font-size: 18px; padding: 16px; }
}

/* ---------- 10. Product cards — premium ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1023px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 380px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: white;
  border: 1px solid rgba(17,17,17,.06);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: transform .4s var(--ease-out-quart),
              box-shadow .4s var(--ease-out-quart),
              border-color .4s var(--ease-out-quart);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.product-card:hover {
  border-color: rgba(201,169,119,.6);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card__media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(140deg, #faf8f3 0%, #efece4 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.product-card__media::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.6) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s var(--ease-out-quart);
}
.product-card:hover .product-card__media::before { opacity: 1; }
.product-card__media img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  transition: transform .55s var(--ease-out-quart);
}
.product-card:hover .product-card__media img { transform: scale(1.06) rotate(-1deg); }
.product-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card__brand {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted-2);
  margin-bottom: 6px;
  font-weight: 600;
}
.product-card__badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}

/* Parfum du mois — étoile dorée seule + cadre subtil */
.product-card__featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--featured-accent, var(--gold));
  color: #111;
  font-size: 16px;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  pointer-events: none;
}
.product-card--featured {
  position: relative;
  outline: 2px solid var(--featured-accent, var(--gold));
  outline-offset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(201, 169, 119, .18);
}
@media (max-width: 580px) {
  .product-card__featured-badge { width: 28px; height: 28px; font-size: 14px; }
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0 12px;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-top: auto;
  margin-bottom: 14px;
}
.product-card__cta {
  width: 100%;
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink);
  transition: background-color .25s var(--ease-out-quart),
              transform .25s var(--ease-out-quart);
  font-family: var(--font-text);
}
.product-card__cta:hover { background: #2a2a2a; transform: scale(1.02); }
.product-card__cta:disabled { background: var(--gold); color: var(--ink); border-color: var(--gold); cursor: default; }

/* ---------- 11. Brand spotlight — éditorial ---------- */
.brand-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-2);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.brand-spotlight__img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
  min-height: 480px;
}
.brand-spotlight__body { padding: 80px 64px; align-self: center; }
.brand-spotlight__eyebrow {
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  font-weight: 600;
}
.brand-spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -.025em;
  line-height: 1.05;
}
.brand-spotlight__body p { color: var(--muted); font-size: 17px; max-width: 480px; margin-bottom: 16px; line-height: 1.6; }

@media (max-width: 768px) {
  .brand-spotlight { grid-template-columns: 1fr; }
  .brand-spotlight__body { padding: 40px 24px; }
  .brand-spotlight__img { min-height: 360px; }
}

/* ---------- 12. Olfactive families ---------- */
.family-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1023px) { .family-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 580px) { .family-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.family-card {
  background: white;
  border: 1px solid rgba(17,17,17,.06);
  border-radius: var(--radius-lg);
  padding: 32px 16px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .35s var(--ease-out-quart),
              border-color .35s var(--ease-out-quart),
              box-shadow .35s var(--ease-out-quart);
  cursor: pointer;
  color: var(--ink);
  text-decoration: none;
}
.family-card svg { color: var(--ink); transition: color .3s var(--ease-out-quart), transform .35s var(--ease-spring); }
.family-card:hover {
  border-color: rgba(201,169,119,.6);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.family-card:hover svg { color: var(--gold); transform: scale(1.1) rotate(-3deg); }
.family-card__label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
}
.family-card__sub {
  font-size: 12px; color: var(--muted-2);
  font-weight: 400;
}

/* ---------- 13. Engagement ---------- */
.commit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}
@media (max-width: 768px) { .commit-grid { grid-template-columns: 1fr; gap: 32px; } }
.commit-block { padding: 16px; }
.commit-block svg { color: var(--gold); margin: 0 auto 16px; }
.commit-block h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.commit-block p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ---------- 14. Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: 82%;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 24px;
    margin: 0 -24px;
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review { scroll-snap-align: start; }
}
.review {
  background: white;
  padding: 36px 32px;
  border: 1px solid rgba(17,17,17,.06);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .35s var(--ease-out-quart), box-shadow .35s var(--ease-out-quart);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review::before {
  content: '\201C';
  position: absolute;
  top: 4px; left: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px; line-height: 1;
  color: var(--gold);
}
.review__stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 14px; padding-top: 12px; }
.review__text {
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.55;
  font-weight: 400;
}
.review__author {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}

/* ---------- 15. Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(250,250,247,.7);
  padding: 80px 0 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-col h4 {
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-col ul li { padding: 8px 0; }
.footer-col a {
  color: rgba(250,250,247,.7);
  font-size: 14px;
  transition: color .2s var(--ease-out-quart);
}
.footer-col a:hover { color: var(--gold); }
.footer-logo {
  display: inline-block; line-height: 1;
  margin-bottom: 16px;
  color: var(--bg);
}
.footer-logo__img {
  display: block;
  height: 64px;
  width: auto;
  /* Le logo PNG est noir → on l'inverse pour le footer noir */
  filter: invert(1) brightness(2);
}
.footer-tagline { font-size: 14px; margin-bottom: 22px; color: rgba(250,250,247,.6); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(250,250,247,.15);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill); color: var(--bg);
  transition: all .25s var(--ease-out-quart);
}
.footer-social a:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-contact li { font-size: 14px; padding: 6px 0; color: rgba(250,250,247,.7); }
.footer-bottom {
  border-top: 1px solid rgba(250,250,247,.08);
  margin-top: 56px;
  padding: 24px;
  text-align: center;
  color: rgba(250,250,247,.4);
  font-size: 12px;
  letter-spacing: .02em;
}
@media (max-width: 1023px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 580px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } .site-footer { padding: 56px 0 0; } }

/* ---------- 16. Floating buttons ---------- */
.whatsapp-fab, .scroll-top {
  position: fixed; right: 24px;
  display: flex; align-items: center; justify-content: center;
  z-index: 80;
  border-radius: var(--radius-pill);
  transition: all .3s var(--ease-out-quart);
}
.whatsapp-fab {
  bottom: 24px;
  width: 56px; height: 56px;
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.whatsapp-fab:hover { background: #2a2a2a; color: var(--bg); transform: scale(1.06); }
.scroll-top {
  bottom: 96px;
  width: 48px; height: 48px;
  background: var(--ink);
  color: var(--bg);
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: #2a2a2a; transform: translateY(-3px); }

/* ---------- 17. Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(17, 17, 17, .92);
  -webkit-backdrop-filter: var(--blur-glass);
  backdrop-filter: var(--blur-glass);
  color: var(--bg);
  padding: 18px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 90;
  flex-wrap: wrap;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.3);
}
.cookie-banner.is-visible { display: flex; animation: slideUp .45s var(--ease-out-expo); }
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner p { margin: 0; font-size: 14px; max-width: 60ch; line-height: 1.5; }
.cookie-banner__actions { display: flex; align-items: center; gap: 16px; }
.cookie-banner__actions .btn-accent { padding: 10px 22px; font-size: 13px; }
.cookie-banner__actions a {
  color: var(--bg); font-size: 13px; text-decoration: underline;
}

/* ---------- 18. Newsletter pop-up ---------- */
.newsletter-popup {
  position: fixed; inset: 0;
  background: rgba(17, 17, 17, .55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 140;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.newsletter-popup.is-open { display: flex; animation: fadeIn .35s var(--ease-out-quart); }
.newsletter-popup__inner {
  background: var(--bg);
  width: min(440px, 100%);
  padding: 48px 36px 36px;
  position: relative;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: scaleIn .45s var(--ease-out-expo);
}
@keyframes scaleIn { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.newsletter-popup__inner h3 { font-size: 26px; margin-bottom: 8px; font-weight: 700; letter-spacing: -.02em; }
.newsletter-popup__inner p { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.newsletter-popup__inner button[data-newsletter-close] {
  position: absolute; top: 12px; right: 16px;
  font-size: 24px; line-height: 1; color: var(--ink);
  width: 36px; height: 36px;
  border-radius: var(--radius-pill);
  transition: background .2s;
}
.newsletter-popup__inner button[data-newsletter-close]:hover { background: rgba(17,17,17,.06); }
.newsletter-popup__inner input[type=email] {
  width: 100%;
  border: 1px solid var(--bg-2);
  background: white;
  padding: 14px 18px;
  margin-bottom: 14px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  transition: border-color .25s;
}
.newsletter-popup__inner input[type=email]:focus { outline: none; border-color: var(--gold); }
.newsletter-popup__inner .btn-dark { width: 100%; }
.newsletter-popup__feedback { font-size: 13px; color: var(--gold); margin: 12px 0 0; min-height: 18px; }

/* ---------- 19. Collection page ---------- */
.page-header {
  text-align: center;
  padding: 96px 24px 64px;
  background: var(--bg);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -.025em;
}
.page-header p {
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}
.collection-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  padding: 48px 24px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1023px) { .collection-layout { grid-template-columns: 1fr; gap: 0; } }
.filter-sidebar {
  align-self: start;
  position: sticky;
  top: 130px;
  background: white;
  border: 1px solid rgba(17,17,17,.06);
  border-radius: var(--radius-lg);
  padding: 24px;
}
@media (max-width: 1023px) {
  .filter-sidebar {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(380px, 92vw);
    border-radius: 0;
    border: 0;
    border-left: 1px solid var(--bg-2);
    z-index: 110;
    transform: translateX(100%);
    transition: transform .45s var(--ease-out-expo);
    overflow-y: auto;
  }
  .filter-sidebar.is-open { transform: translateX(0); }
}
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--bg-2); }
.filter-group:last-child { border-bottom: 0; }
.filter-group summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .04em;
  font-weight: 600;
  text-transform: uppercase;
  display: flex; justify-content: space-between;
  align-items: center;
}
.filter-group summary::-webkit-details-marker { display: none; }
.filter-group summary::after {
  content: '+'; color: var(--gold); font-size: 18px;
  transition: transform .3s var(--ease-out-quart);
  font-weight: 400;
}
.filter-group[open] summary::after { content: '\2013'; }
.filter-group__list { padding-top: 14px; }
.filter-group__list label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  padding: 6px 0;
  cursor: pointer;
  transition: color .2s;
}
.filter-group__list label:hover { color: var(--gold); }
.filter-group__list input[type=checkbox],
.filter-group__list input[type=radio] {
  -webkit-appearance: none; appearance: none;
  width: 16px; height: 16px;
  border: 1.5px solid var(--ink);
  background: white;
  border-radius: 4px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.filter-group__list input[type=radio] { border-radius: var(--radius-pill); }
.filter-group__list input:checked { background: var(--ink); border-color: var(--ink); }
.filter-group__list input[type=checkbox]:checked::after {
  content: ''; width: 8px; height: 5px;
  border-left: 1.5px solid var(--bg);
  border-bottom: 1.5px solid var(--bg);
  transform: rotate(-45deg) translateY(-1px);
}
.filter-group__list input[type=radio]:checked::after {
  content: ''; width: 6px; height: 6px;
  background: var(--bg); border-radius: var(--radius-pill);
}
.filter-price input[type=range] { width: 100%; -webkit-appearance: none; appearance: none; background: transparent; margin-top: 12px; }
.filter-price input[type=range]::-webkit-slider-runnable-track { height: 3px; background: var(--bg-2); border-radius: 99px; }
.filter-price input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px;
  background: var(--ink);
  border-radius: 50%; margin-top: -8px; cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.filter-price__value { font-size: 13px; margin-top: 10px; font-weight: 500; }
.filter-reset {
  color: var(--gold); text-decoration: underline;
  font-size: 13px; margin-top: 16px;
  display: inline-block; background: transparent; border: 0; padding: 0;
}
.collection-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap; gap: 12px;
}
.collection-count { font-size: 14px; color: var(--muted); }
.sort-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.sort-pill {
  background: white;
  color: var(--ink);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(17,17,17,.1);
  cursor: pointer; text-decoration: none;
  transition: all .2s var(--ease-out-quart);
}
.sort-pill:hover { color: var(--ink); border-color: var(--ink); }
.sort-pill.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.filter-mobile-trigger {
  display: none;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 22px;
  font-size: 13px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
@media (max-width: 1023px) { .filter-mobile-trigger { display: inline-flex; align-items: center; gap: 8px; } }
.collection-empty { padding: 60px 0; text-align: center; color: var(--muted); }
.collection-pagination { text-align: center; margin-top: 48px; }
.collection-pagination .btn-ghost { padding: 14px 32px; }

/* ---------- 20. Product page — Apple-style configurator ---------- */
.product-layout {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 64px;
  padding: 32px 24px 64px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 16px 48px;
  }
}

/* Dédoublement du titre : visible sur mobile au-dessus de la galerie,
   visible sur desktop dans le bloc d'infos à droite */
.product-info__heading--mobile { display: none; }
.product-info__heading--desktop { display: block; }
@media (max-width: 1023px) {
  .product-info__heading--mobile {
    display: block;
    padding: 0 4px;
    margin-bottom: -8px; /* la galerie suit immédiatement */
  }
  .product-info__heading--desktop { display: none; }
}
.breadcrumb {
  font-size: 13px; color: var(--muted);
  padding: 24px 24px 0;
  max-width: 1280px; margin: 0 auto;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.product-gallery__main {
  background: linear-gradient(140deg, #faf8f3 0%, #efece4 100%);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: 64px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
@media (max-width: 1023px) {
  .product-gallery__main { padding: 32px; aspect-ratio: 4 / 5; border-radius: var(--radius-md); }
}
.product-gallery__main::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.5) 0%, transparent 50%);
  pointer-events: none;
}
.product-gallery__main img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  transition: transform .55s var(--ease-out-quart);
  position: relative;
  z-index: 1;
  will-change: transform;
}
.product-gallery__main:hover img { transform: scale(1.05); }
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 12px;
}
@media (max-width: 580px) {
  .product-gallery__thumbs { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .product-gallery__thumb { padding: 6px; border-radius: var(--radius-sm); }
}
.product-gallery__thumb {
  background: var(--bg-2);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: border-color .2s;
}
.product-gallery__thumb.is-active { border-color: var(--ink); }
.product-gallery__thumb img { max-width: 80%; max-height: 80%; object-fit: contain; }

.product-info {
  position: sticky; top: 130px;
  align-self: start;
}
@media (max-width: 1023px) { .product-info { position: static; } }
.product-info__brand {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
  font-weight: 600;
}
.product-info__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.05;
  letter-spacing: -.025em;
}
.product-info__rating {
  font-size: 14px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 28px;
}
.product-info__rating .stars { display: inline-flex; gap: 2px; color: var(--gold); }
.product-info__pyramid { margin-bottom: 24px; font-size: 14px; }
.product-info__pyramid li {
  display: flex; gap: 10px; padding: 6px 0;
  align-items: center;
  color: var(--muted);
}
.product-info__pyramid li strong {
  color: var(--ink); font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  min-width: 60px;
}
.product-info__pyramid li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.product-divider { border: 0; border-top: 1px solid var(--bg-2); margin: 28px 0; }

/* Variant pills — Apple iPhone configurator style */
.variant-selector {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.variant-pill {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  border: 2px solid rgba(17,17,17,.12);
  background: white;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s var(--ease-out-quart);
  width: 100%;
  text-align: left;
}
.variant-pill:hover { border-color: var(--ink); }
.variant-pill.is-active {
  border-color: var(--ink);
  background: white;
  box-shadow: 0 0 0 4px rgba(17,17,17,.04);
}
.variant-pill__volume { font-weight: 600; font-family: var(--font-display); font-size: 16px; }
.variant-pill__price { color: var(--muted); font-weight: 400; }

.product-info__price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.product-cta { width: 100%; padding: 18px; font-size: 16px; }

.product-shipping-info {
  margin-top: 24px;
  padding: 20px;
  background: #FAFAF7;
  border: 1px solid var(--bg-2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-shipping-info__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.product-shipping-info__row svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.product-shipping-info__row > div { display: flex; flex-direction: column; gap: 2px; }
.product-shipping-info__row strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
}
.product-shipping-info__row span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.product-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.product-link:hover { color: var(--gold); }

.product-section {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 24px;
  border-top: 1px solid var(--bg-2);
}
.product-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.product-section p { color: var(--muted); font-size: 17px; line-height: 1.6; }
.advisor-note {
  background: var(--bg-2);
  padding: 28px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  color: var(--ink);
  border-left: 3px solid var(--gold);
}
.pyramid-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pyramid-detail__col {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17,17,17,.06);
  transition: transform .35s var(--ease-out-quart), box-shadow .35s var(--ease-out-quart);
}
.pyramid-detail__col:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pyramid-detail__col h3 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600; margin-bottom: 12px;
  letter-spacing: -.01em;
}
.pyramid-detail__col ul li { font-size: 14px; padding: 4px 0; color: var(--muted); }
@media (max-width: 768px) { .pyramid-detail { grid-template-columns: 1fr; gap: 16px; } }

/* Notes olfactives — vue d'ensemble (tags) */
.notes-tags { margin: 0 0 28px; }
.notes-tags__label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.notes-tags__list { display: flex; flex-wrap: wrap; gap: 8px; }
.notes-tag {
  display: inline-block;
  padding: 8px 14px;
  background: var(--bg-2);
  color: var(--ink);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: background .2s var(--ease-out-quart), transform .2s var(--ease-out-quart);
}
.notes-tag:hover { background: var(--gold); color: var(--bg); transform: translateY(-1px); }

/* ──────────────────────────────────────────────────────────────────
   Rupture de stock
   ────────────────────────────────────────────────────────────────── */
.product-card__badge--soldout {
  color: #9A2A2A !important;
  background: #FBE8E8;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: .1em;
  font-size: 10px;
}
.product-card__cta[disabled] {
  background: var(--bg-2);
  color: var(--muted);
  border-color: var(--bg-2);
  cursor: not-allowed;
}
.product-card__cta[disabled]:hover {
  background: var(--bg-2);
  transform: none;
}
.product-soldout {
  background: #FBE8E8;
  border: 1px solid #f5c6c6;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 14px 0;
  color: #7B2A2A;
}
.product-soldout strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 4px;
}
.product-soldout span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  opacity: .9;
}

/* Formulaire code promo (panier + checkout) */
.promo-form {
  margin: 18px 0;
  padding: 14px;
  background: #FAFAF7;
  border: 1px dashed var(--bg-2);
  border-radius: var(--radius-md);
}
.promo-form label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 8px;
}
.promo-form__row {
  display: flex; gap: 8px;
}
.promo-form input[type=text] {
  flex: 1; padding: 10px 12px;
  background: white; border: 1px solid var(--bg-2);
  border-radius: 4px; font-size: 14px;
  font-family: Menlo, monospace; letter-spacing: .04em;
  text-transform: uppercase;
}
.promo-form button {
  background: var(--ink); color: var(--bg); border: 0; padding: 0 18px;
  border-radius: 4px; font-size: 13px; cursor: pointer;
  font-weight: 500;
}
.promo-form button:hover { background: var(--gold); color: var(--ink); }
.promo-form__feedback {
  margin-top: 8px;
  font-size: 12px;
  min-height: 16px;
}

/* ──────────────────────────────────────────────────────────────────
   Prix soldés (auto_apply) — strikethrough + nouveau prix + badge %
   Sélecteurs très spécifiques + !important pour battre tout reset éventuel.
   ────────────────────────────────────────────────────────────────── */
.product-card__price .price-sale,
.product-info__price .price-sale,
span.price-sale {
  display: inline-flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  line-height: 1.2 !important;
}
.product-card__price .price-sale > span,
.product-info__price .price-sale > span,
span.price-sale > span {
  display: inline-block !important;
  white-space: nowrap !important;
}
.product-card__price .price-sale .price-current,
.product-info__price .price-sale .price-current,
span.price-sale .price-current {
  color: #9A2A2A !important;
  font-weight: 600 !important;
}
.product-card__price .price-sale .price-strike,
.product-info__price .price-sale .price-strike,
span.price-sale .price-strike {
  text-decoration: line-through !important;
  color: #888 !important;
  font-size: .82em !important;
  font-weight: 400 !important;
}
.product-card__price .price-sale .price-badge,
.product-info__price .price-sale .price-badge,
span.price-sale .price-badge {
  background: #9A2A2A !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .05em !important;
  padding: 3px 8px !important;
  border-radius: 100px !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

/* Badge "SOLDES" sur l'image de la carte produit (coin haut-droit) */
.product-card__media {
  position: relative;
}
.product-card--on-sale .product-card__media::after {
  content: 'SOLDES';
  position: absolute;
  top: 12px; right: 12px;
  background: #9A2A2A;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  z-index: 3;
}

/* ──────────────────────────────────────────────────────────────────
   Avis clients UGC — affichage + formulaire
   ────────────────────────────────────────────────────────────────── */
.reviews-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 24px;
}
.reviews-summary {
  display: flex; align-items: center; gap: 8px; margin-top: 6px;
  font-size: 14px;
}
.reviews-stars { display: inline-flex; gap: 2px; color: var(--bg-2); font-size: 18px; letter-spacing: 1px; }
.reviews-stars .is-filled { color: var(--gold); }
.reviews-stars--sm { font-size: 14px; }
.reviews-empty { color: var(--muted); font-style: italic; margin: 16px 0 32px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease-out-quart), box-shadow .25s var(--ease-out-quart);
}
.review-card:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(17,17,17,.06); }
.review-card__photo { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-2); }
.review-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.review-card__body { padding: 16px 18px; }
.review-card__head { display: flex; align-items: baseline; flex-wrap: wrap; margin-bottom: 4px; }
.review-card__title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600; margin: 8px 0 6px; letter-spacing: -.005em;
}
.review-card__body-text {
  font-size: 14px; line-height: 1.55; color: var(--ink); margin: 6px 0;
}
.review-card__date { display: block; margin-top: 8px; font-size: 11px; color: var(--muted); }

.review-form {
  background: #FAFAF7;
  border: 1px solid var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-top: 16px;
}
.review-form h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600; margin: 0 0 8px;
}
.review-form .field { margin-bottom: 14px; }
.review-form label { font-size: 13px; font-weight: 500; text-transform: none; letter-spacing: 0; }
.review-form input[type=text],
.review-form input[type=file],
.review-form textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--bg-2); border-radius: 4px;
  background: white; font-size: 14px; font-family: inherit;
}
.review-form textarea { resize: vertical; }
.review-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 580px) { .review-form .field-row { grid-template-columns: 1fr; } }
.review-form .btn-dark { margin-top: 8px; }
.review-form__feedback { margin-top: 12px; font-size: 14px; }

/* Étoiles cliquables (input radio masqué) */
.rating-input { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.rating-input input { position: absolute; opacity: 0; pointer-events: none; }
.rating-input label {
  font-size: 28px; line-height: 1; cursor: pointer; color: var(--bg-2);
  transition: color .15s ease;
}
.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label { color: var(--gold); }

/* Page confirmation — bloc UGC */
.confirmation-ugc {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #FAF4E8 0%, #FAFAF7 100%);
  border: 1px solid var(--bg-2);
  border-radius: var(--radius-lg);
  text-align: left;
}
.confirmation-ugc h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600; margin: 0 0 8px;
}
.confirmation-ugc p { color: var(--ink); font-size: 14px; line-height: 1.55; margin: 0 0 14px; }
.confirmation-ugc__actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px;
}

/* ──────────────────────────────────────────────────────────────────
   Mur UGC sur la home (photos clients)
   ────────────────────────────────────────────────────────────────── */
.ugc-wall {
  padding: 64px 24px 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.ugc-wall__head { text-align: center; margin-bottom: 32px; }
.ugc-wall__eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.ugc-wall__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -.015em;
}
.ugc-wall__subtitle { color: var(--muted); font-size: 15px; max-width: 540px; margin: 0 auto; }

.ugc-wall__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1023px) { .ugc-wall__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 580px)  { .ugc-wall__grid { grid-template-columns: repeat(2, 1fr); } }

.ugc-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-2);
  text-decoration: none;
  display: block;
}
.ugc-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out-quart);
}
.ugc-tile:hover img { transform: scale(1.06); }
.ugc-tile__caption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,0) 100%);
  color: white;
  padding: 16px 12px 10px;
  font-size: 12px;
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.ugc-tile:hover .ugc-tile__caption { opacity: 1; transform: translateY(0); }
.ugc-tile__author { font-weight: 600; }
.ugc-tile__product { font-size: 11px; opacity: .85; }
.ugc-wall__cta { text-align: center; margin-top: 32px; }

/* ──────────────────────────────────────────────────────────────────
   Plan du site HTML (sitemap-html.php)
   ────────────────────────────────────────────────────────────────── */
.sitemap-html { max-width: 1080px; }
.sitemap-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bg-2);
}
.sitemap-section:last-child { border-bottom: 0; }
.sitemap-section h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: -.005em;
}
.sitemap-brand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 24px 0 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}
.sitemap-brand a { color: var(--ink); }
.sitemap-brand a:hover { color: var(--gold); }
.sitemap-brand__count {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--muted);
}
.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-list li {
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.sitemap-list a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease-out-quart), border-color .2s var(--ease-out-quart);
}
.sitemap-list a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.sitemap-list--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 32px;
}
@media (max-width: 768px) {
  .sitemap-list--grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────────────
   Page paiement direct — QR scan + bouton (mode rapide, sans Unitech)
   ────────────────────────────────────────────────────────────────── */
.quick-pay {
  max-width: 460px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quick-pay__head { text-align: center; }
.quick-pay__eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.quick-pay__head h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.quick-pay__head p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.5; }
.quick-pay__qr-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--bg-2);
  box-shadow: 0 8px 28px rgba(17, 17, 17, .05);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.quick-pay__qr {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}
.quick-pay__qr svg { width: 100%; height: 100%; display: block; }
.quick-pay__amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px;
  background: #FAFAF7;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-2);
}
.quick-pay__amount span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.quick-pay__amount strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.quick-pay__confirm { display: flex; flex-direction: column; gap: 12px; }
.quick-pay__done {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
}
.quick-pay__done:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.quick-pay__hint {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ──────────────────────────────────────────────────────────────────
   Ancienne page direct-payment (gardée pour rétrocompat — non utilisée)
   ────────────────────────────────────────────────────────────────── */
.direct-payment {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.direct-payment__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.direct-payment__steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.direct-payment__steps .step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.direct-payment__steps h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}
.direct-payment__steps p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.5; }

.direct-payment__card {
  background: #fff;
  border: 1px solid var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.direct-payment__amount,
.direct-payment__number,
.direct-payment__ussd {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: #FAFAF7;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-2);
}
.direct-payment__amount span,
.direct-payment__number span,
.direct-payment__ussd span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  font-weight: 600;
}
.direct-payment__amount strong,
.direct-payment__number strong,
.direct-payment__ussd strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}
.copy-btn {
  align-self: flex-start;
  font-size: 12px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: .05em;
  transition: all .2s var(--ease-out-quart);
}
.copy-btn:hover { background: var(--gold); color: var(--bg); }
.direct-payment__open {
  margin-top: 6px;
  justify-content: center;
}
.direct-payment__open svg { transform: rotate(-90deg); }
.direct-payment__hint {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: 4px 0 0;
}

.direct-payment__confirm {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.direct-payment__confirm h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--bg);
}
.direct-payment__confirm p { color: rgba(250, 250, 247, .75); margin-bottom: 20px; font-size: 14px; }
.direct-payment__confirm .field label { color: var(--gold); font-size: 11px; }
.direct-payment__confirm .field input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--bg);
}
.direct-payment__confirm .field input::placeholder { color: rgba(250, 250, 247, .35); }
.direct-payment__confirm .help { color: rgba(250, 250, 247, .55); font-size: 12px; }
.direct-payment__confirm .btn-dark {
  background: var(--bg);
  color: var(--ink);
}
.direct-payment__confirm .btn-dark:hover { background: var(--gold); color: var(--ink); }
.direct-payment__wa {
  margin-top: 14px;
  background: rgba(255,255,255,.04);
  color: rgba(250, 250, 247, .9);
  border: 1px solid rgba(255,255,255,.15);
  justify-content: center;
  text-align: center;
}
.direct-payment__wa:hover { background: rgba(255,255,255,.1); color: var(--bg); }

/* ---------- 21. Cart & checkout pages ---------- */
.cart-page-grid, .checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  padding: 48px 24px 96px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 1023px) { .cart-page-grid, .checkout-grid { grid-template-columns: 1fr; } }
.cart-page__lines .cart-line { padding: 24px 0; grid-template-columns: 100px 1fr auto; }
.cart-page__lines .cart-line__img { width: 100px; height: 100px; }
.cart-summary-box, .checkout-summary {
  background: white;
  border: 1px solid rgba(17,17,17,.06);
  padding: 32px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 130px;
}
.cart-summary-box h3, .checkout-summary h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.cart-summary-box .cart-summary__row { padding: 8px 0; font-size: 14px; }
.cart-summary-box .cart-summary__row--total { font-size: 18px; font-weight: 700; }
.cart-summary-box .btn-dark { width: 100%; margin-top: 18px; }

.checkout-section { margin-bottom: 40px; }
.checkout-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 580px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input, .field select, .field textarea {
  background: white;
  border: 1px solid rgba(17,17,17,.12);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  color: var(--ink);
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(17,17,17,.06);
}
.payment-options { display: grid; gap: 12px; }
.payment-option {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border: 2px solid rgba(17,17,17,.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  background: white;
  transition: all .25s var(--ease-out-quart);
}
.payment-option:hover { border-color: var(--ink); }
.payment-option:has(input:checked) { border-color: var(--ink); background: white; box-shadow: 0 0 0 4px rgba(17,17,17,.04); }
.payment-option input[type=radio] {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  position: relative; cursor: pointer;
}
.payment-option input[type=radio]:checked::after {
  content: '';
  position: absolute; inset: 3px;
  background: var(--ink); border-radius: var(--radius-pill);
}
.payment-icon {
  width: 48px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--bg);
  font-size: 11px; letter-spacing: .04em;
  border-radius: var(--radius-sm); flex-shrink: 0;
  font-weight: 600; font-family: var(--font-display);
}
.payment-icon.wave { background: #1DCDFE; }
.payment-icon.om { background: #FF7900; }
.payment-icon.free { background: #54257e; }
.payment-icon.cb { background: var(--ink); }
.payment-icon.cod { background: var(--bg); color: var(--ink); border: 1px solid var(--ink); }
.payment-option__label { display: flex; flex-direction: column; font-size: 15px; flex: 1; font-weight: 500; }
.payment-option__label small { color: var(--muted); font-size: 13px; font-weight: 400; }
.checkout-summary__line {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--bg-2);
  font-size: 13px; align-items: center;
}
.checkout-summary__line .img {
  width: 56px; height: 56px;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.checkout-summary__line .img img { max-width: 70%; max-height: 70%; object-fit: contain; }
.checkout-summary__totals { padding-top: 18px; }
.checkout-summary__totals .row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.checkout-summary__totals .row.total {
  border-top: 1px solid var(--bg-2);
  margin-top: 10px; padding-top: 14px;
  font-size: 19px; font-weight: 700;
  font-family: var(--font-display);
}

.confirmation { text-align: center; padding: 96px 24px; max-width: 720px; margin: 0 auto; }
.confirmation h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700; margin-bottom: 18px;
  letter-spacing: -.025em;
}
.confirmation .order-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; font-weight: 600;
}
.confirmation-details {
  background: white; border: 1px solid rgba(17,17,17,.06);
  padding: 32px; border-radius: var(--radius-lg);
  text-align: left; margin-top: 32px;
}
.confirmation-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: center;
  margin-top: 36px;
}

/* ---------- 22. Static pages ---------- */
.static-page { max-width: 920px; margin: 0 auto; padding: 64px 24px 96px; }
.static-page h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700; margin-bottom: 24px;
  letter-spacing: -.025em;
}
.static-page h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  margin: 36px 0 14px; letter-spacing: -.015em;
}
.static-page p { font-size: 17px; color: var(--ink); line-height: 1.7; }
.static-page ul li {
  font-size: 17px; color: var(--ink);
  padding: 6px 0 6px 20px;
  position: relative;
}
.static-page ul li::before {
  content: '';
  width: 8px; height: 1px; background: var(--gold);
  position: absolute; left: 0; top: 16px;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 32px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-info h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.contact-info p { font-size: 16px; color: var(--ink); }
.contact-info .btn-dark { margin-top: 16px; }
.map-frame { width: 100%; height: 360px; border: 1px solid var(--bg-2); border-radius: var(--radius-lg); }

/* ---------- 23. Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .45s var(--ease-out-quart), transform .45s var(--ease-out-quart);
  will-change: transform, opacity;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0; transform: scale(.96);
  transition: opacity .45s var(--ease-out-quart), transform .45s var(--ease-out-quart);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

.reveal-stagger > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity .45s var(--ease-out-quart), transform .45s var(--ease-out-quart);
}
.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .1s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: .15s; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: .2s; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: .25s; }

.skeleton {
  background: linear-gradient(90deg, var(--bg-2) 25%, #f5f3ee 50%, var(--bg-2) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.4s infinite linear;
}
@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-scale, .reveal-stagger > * { opacity: 1; transform: none; }
  .hero__media { transform: none !important; }
}

/* ---------- 23 bis. Scrollytelling pyramide olfactive ---------- */
.scrolly {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
}
/* Bridge fluide depuis la section précédente (brand-spotlight, beige clair) */
.scrolly::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bg-2) 0%, rgba(17,17,17,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.scrolly__stage {
  position: relative;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 64px;
  gap: 48px;
  z-index: 2;
}
.scrolly__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
}
.scrolly__bottle {
  width: auto;
  height: 50vh;
  max-height: 440px;
  max-width: 80%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(201, 169, 119, .35)) drop-shadow(0 0 24px rgba(0,0,0,.4));
  will-change: transform;
}
.scrolly__halo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(201,169,119,.18) 0%, transparent 60%);
  filter: blur(40px);
}
.scrolly__panels {
  position: relative;
  height: 100%;
  display: flex; align-items: center;
}
.scrolly__panel {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  justify-content: center;
  opacity: 0;
}
.scrolly__panel-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.scrolly__panel h3 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.scrolly__panel p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(250,250,247,.75);
  max-width: 460px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.scrolly__notes {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.scrolly__notes span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid rgba(250,250,247,.18);
  border-radius: var(--radius-pill);
  color: var(--bg);
  background: rgba(250,250,247,.04);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.scrolly__progress {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 14px;
}
.scrolly__progress span {
  width: 32px; height: 2px;
  background: rgba(250,250,247,.2);
  transition: background-color .35s var(--ease-out-quart);
}
.scrolly__progress span.is-active { background: var(--gold); }

@media (max-width: 768px) {
  .scrolly__stage {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 24px;
    align-content: center;
    height: 100vh;
    padding-top: 80px;
  }
  .scrolly__visual { height: 32vh; }
  .scrolly__bottle { height: 30vh; max-height: 280px; width: auto; }
  .scrolly__panels { height: 50vh; align-items: flex-start; }
  .scrolly__panel h3 { font-size: 36px; }
  .scrolly__panel p { font-size: 15px; }
}

/* ---------- 24. Toast ---------- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(17, 17, 17, .95);
  -webkit-backdrop-filter: var(--blur-glass);
  backdrop-filter: var(--blur-glass);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  z-index: 200;
  opacity: 0;
  transition: opacity .35s var(--ease-out-quart), transform .45s var(--ease-out-expo);
  max-width: 90vw;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.4);
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
