/*
 * ELHAIR COUTURE — Stylesheet v3
 * Typography: Cormorant Garamond (display) + Manrope (body) + Great Vibes (script)
 * Crown Barber Paris editorial direction
 * ================================================
 */

/* ── DESIGN TOKENS ─────────────────────────────── */
:root {
  /* Palette */
  --black:         #080808;
  --black-soft:    #111111;
  --black-card:    #141414;
  --grey-dark:     #1e1e1e;
  --grey-mid:      #2a2a2a;
  --grey-light:    #8a8a8a;
  --grey-silver:   #c0c0c0;
  --white:         #ffffff;
  --white-soft:    #f5f3f0;
  --champagne:     #c8a96e;
  --champagne-lt:  #e2cfa0;
  --champagne-dk:  #9a7d4a;

  /* Typography — Crown Barber editorial direction */
  --font-display:  'Cormorant Garamond', serif;  /* Headings, titles */
  --font-body:     'Manrope', sans-serif;        /* Body, labels, buttons */
  --font-script:   'Great Vibes', cursive;       /* Logo ELHAIR */

  /* Spacing */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:             0.45s var(--ease);
  --t-fast:        0.25s ease;
  --max-w:         1320px;
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; }
img { height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
[hidden] { display: none !important; }

/* ── PRELOADER ──────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.pre-logo {
  text-align: center;
  opacity: 0; transform: translateY(14px);
  animation: preLogoIn 0.8s 0.2s var(--ease) both;
}
.pre-logo__script {
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 4.5rem);
  color: var(--white); display: block; line-height: 1;
}
.pre-logo__sub {
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 300;
  letter-spacing: 0.6em; color: var(--grey-silver);
  text-transform: uppercase; display: block; margin-top: 6px;
}
.pre-line {
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  animation: preLineIn 0.7s 0.8s ease both;
}
.pre-tagline {
  font-family: var(--font-body); font-size: 0.48rem; font-weight: 400;
  letter-spacing: 0.55em; color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  opacity: 0; animation: preLogoIn 0.6s 1.0s ease both;
}
@keyframes preLogoIn { to { opacity: 1; transform: translateY(0); } }
@keyframes preLineIn  { to { width: 160px; } }

/* ── PROMO BANNER ───────────────────────────────── */
.promo-banner {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 9px 16px; text-align: center;
}
.promo-banner__text {
  font-family: var(--font-body); font-size: 0.56rem; font-weight: 400;
  letter-spacing: 0.32em; color: var(--grey-silver); text-transform: uppercase;
}
.promo-banner__code { color: var(--champagne); font-weight: 500; }
.sep { display: inline-block; margin: 0 14px; color: var(--champagne-dk); }

/* ── HEADER ─────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0 24px; min-height: 120px;
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color 0.3s ease;
}
.site-header--scrolled { border-bottom-color: rgba(200,169,110,0.12); }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 28px; height: 28px; padding: 2px; flex-shrink: 0;
}
.nav-toggle__bar {
  display: block; height: 1px; background: var(--white);
  transition: background var(--t-fast), transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-toggle:hover .nav-toggle__bar,
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: var(--champagne); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.header-logo {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.header-logo__img { height: 38px; width: auto; object-fit: contain; }
.header-logo__text { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.header-logo__script { font-family: var(--font-script); font-size: 1.85rem; color: var(--white); }
.header-logo__sub {
  font-family: var(--font-display); font-size: 0.5rem; font-weight: 300;
  letter-spacing: 0.55em; color: var(--grey-silver);
  text-transform: uppercase; margin-top: 3px;
}

.nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-icon {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; color: var(--white); transition: color var(--t-fast);
}
.nav-icon:hover { color: var(--champagne); }
.nav-icon svg { width: 20px; height: 20px; }
.nav-icon__badge {
  position: absolute; top: -5px; right: -6px;
  min-width: 15px; height: 15px; padding: 0 3px;
  background: var(--champagne); color: var(--black);
  font-family: var(--font-body); font-size: 0.48rem; font-weight: 600;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
}

/* Nav Drawer */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 199; opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }
.nav-drawer {
  position: fixed; top: 0; left: 0; height: 100%; width: min(320px, 85vw);
  background: var(--black-soft); border-right: 1px solid var(--grey-dark);
  z-index: 200; padding: 80px 40px 40px;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex; flex-direction: column; gap: 2px;
  overflow-y: auto; overscroll-behavior: contain;
}
.nav-drawer.is-open { transform: translateX(0); }
body.nav-is-open { overflow: hidden; touch-action: none; }
.nav-overlay, .nav-drawer { -webkit-tap-highlight-color: transparent; }

.nav-drawer__section {
  font-family: var(--font-body); font-size: 0.44rem; font-weight: 400;
  letter-spacing: 0.55em; color: var(--champagne); text-transform: uppercase;
  margin: 18px 0 6px;
}
.nav-drawer__link {
  font-family: var(--font-display); font-size: 1rem; font-weight: 300;
  letter-spacing: 0.08em; color: var(--grey-silver); padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: block;
}
.nav-drawer__link:hover { color: var(--white); padding-left: 8px; }

/* ── HERO ────────────────────────────────────────── */

.hero__media picture,
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }

.hero__eyebrow {
  font-family: var(--font-body); font-size: 0.52rem; font-weight: 400;
  letter-spacing: 0.55em; color: var(--champagne); text-transform: uppercase;
  display: block; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.85s 3s var(--ease) both;
}
.hero__title {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  color: var(--white); line-height: 0.9; margin-bottom: 12px;
  opacity: 0; animation: fadeUp 0.85s 3.15s var(--ease) both;
}
.hero__subtitle {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  letter-spacing: 0.55em; color: var(--grey-silver);
  text-transform: uppercase; display: block; margin-bottom: 18px;
  opacity: 0; animation: fadeUp 0.85s 3.28s var(--ease) both;
}
.hero__tagline {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.6); max-width: 460px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.85s 3.42s var(--ease) both;
}
.hero__cta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.85s 3.55s var(--ease) both;
}
.hero__scroll {
  position: absolute; bottom: 32px; right: 32px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s 4.2s ease both;
}
.hero__scroll-label {
  font-family: var(--font-body); font-size: 0.44rem; font-weight: 400;
  letter-spacing: 0.5em; color: var(--grey-light);
  text-transform: uppercase; writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--grey-light), transparent);
  animation: scrollLine 2s 4.5s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.4);opacity:0.3} }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.38em; text-transform: uppercase;
  padding: 13px 32px; white-space: nowrap; cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn--white  { background: var(--white);  color: var(--black); border-color: var(--white); }
.btn--white:hover  { background: var(--champagne); border-color: var(--champagne); }
.btn--black  { background: var(--black);  color: var(--white); border-color: var(--black); }
.btn--black:hover  { background: var(--champagne-dk); border-color: var(--champagne-dk); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.32); }
.btn--outline:hover { border-color: var(--champagne); color: var(--champagne); }
.btn--outline-dark { background: transparent; color: var(--black); border-color: rgba(0,0,0,0.28); }
.btn--outline-dark:hover { border-color: var(--black); }

/* ── TAGLINE STRIP ──────────────────────────────── */
.tagline-strip {
  background: var(--white); padding: 16px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.tagline-strip__text {
  font-family: var(--font-body); font-size: clamp(0.46rem, 1.1vw, 0.65rem);
  font-weight: 400; letter-spacing: 0.42em; color: var(--black);
  text-transform: uppercase; white-space: nowrap;
}

/* ── SHARED SECTION TOKENS ─ Crown Barber editorial */
.section-eyebrow {
  font-family: var(--font-body); font-size: 0.52rem; font-weight: 400;
  letter-spacing: 0.6em; color: var(--champagne); text-transform: uppercase;
  display: block; margin-bottom: 20px;
}
.section-eyebrow--dark { color: var(--champagne-dk); }

/* Crown Barber style: large, light weight, generous spacing */
.section-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: 0.06em;
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.section-title--dark { color: var(--black); }
.section-title em {
  font-style: italic; font-weight: 300;
  color: var(--champagne-lt);
  display: block; line-height: 1.1;
}
.section-title--dark em { color: var(--champagne-dk); }
.section-title--caps {
  text-transform: uppercase; font-weight: 300;
  letter-spacing: 0.2em; font-size: clamp(1.4rem, 3.5vw, 2.6rem);
}

.section-lead {
  font-family: var(--font-body); font-weight: 300;
  font-size: 0.88rem; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5); line-height: 1.9;
  max-width: 540px; margin: 0 auto;
}
.section-lead--dark { color: rgba(0,0,0,0.48); }
.divider { width: 48px; height: 1px; background: var(--champagne); margin: 24px auto 0; }

/* ── PROMISE ─────────────────────────────────────── */
.promise { background: var(--black-soft); padding: 90px 24px; }
.promise__header { text-align: center; margin-bottom: 64px; }
.promise__grid { display: grid; grid-template-columns: 1fr; gap: 2px; max-width: var(--max-w); margin: 0 auto; }
.promise__item {
  background: var(--black-card); padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.promise__item:hover { border-color: rgba(200,169,110,0.18); background: rgba(200,169,110,0.02); }
.promise__mark {
  font-family: var(--font-script); font-size: 1.8rem; color: var(--champagne);
  display: block; line-height: 1; margin-bottom: 18px; opacity: 0.6;
}
.promise__title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 400;
  letter-spacing: 0.04em; color: var(--white); margin-bottom: 10px;
}
.promise__desc {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 300;
  letter-spacing: 0.01em; color: rgba(255,255,255,0.44); line-height: 1.8;
}

/* ── PROMO SALE ──────────────────────────────────── */
.promo-sale {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #080808;
  color: #fff;
}

.promo-sale__pct {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(5rem, 12vw, 10rem); color: var(--grey-silver); line-height: 0.85; display: block;
}

.promo-sale__media { position: relative; min-height: 340px; overflow: hidden; background: #ede9e4; }
.promo-sale__media picture,
.promo-sale__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 55% center;
  transition: transform 0.8s var(--ease);
}
.promo-sale__media:hover img { transform: scale(1.04); }

/* ── BRAND EXPERIENCE ────────────────────────────── */
.brand-exp {
  position: relative; min-height: 580px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.brand-exp__media { position: absolute; inset: 0; background: #0f0c0a; }
.brand-exp__media picture,
.brand-exp__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; opacity: 0.4; }
.brand-exp::after { content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(8,8,8,0.5); }
.brand-exp__content { position: relative; z-index: 2; text-align: center; padding: 72px 24px; max-width: 720px; }
.brand-exp__body {
  font-family: var(--font-body); font-size: 0.86rem; font-weight: 300;
  letter-spacing: 0.02em; color: rgba(255,255,255,0.65); line-height: 2;
  max-width: 520px; margin: 0 auto 32px;
}

/* ── COLLECTIONS ─────────────────────────────────── */
.collections { background: var(--black); padding: 90px 24px; }
.collections__header { text-align: center; margin-bottom: 64px; }
.collections__sub {
  font-family: var(--font-body); font-size: 0.52rem; font-weight: 300;
  letter-spacing: 0.45em; color: rgba(255,255,255,0.28); text-transform: uppercase;
  display: block; margin-top: 14px;
}
.collections__circles {
  display: flex; flex-direction: column; align-items: center;
  gap: 44px; max-width: var(--max-w); margin: 0 auto;
}
.circle-col { display: flex; flex-direction: column; align-items: center; gap: 22px; width: 100%; max-width: 240px; }
.circle-img {
  width: min(210px, 65vw); height: min(210px, 65vw);
  border-radius: 50%; overflow: hidden; position: relative; cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 14px 44px rgba(0,0,0,0.44);
  transition: box-shadow 0.45s ease, transform 0.45s ease;
}
.circle-img:hover {
  box-shadow: 0 0 0 1px rgba(200,169,110,0.3), 0 18px 56px rgba(0,0,0,0.52), 0 0 52px rgba(200,169,110,0.1);
  transform: translateY(-4px);
}
.circle-img picture,
.circle-img img { width: 100%; height: 100%; object-fit: cover; }
.circle-img--straight { background: linear-gradient(135deg, #1a1510, #0d0d0d); }
.circle-img--waves    { background: linear-gradient(135deg, #111, #1a1510); }
.circle-img--curl     { background: linear-gradient(135deg, #1a1510, #111); }
.circle-img__placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.circle-img__placeholder-text {
  font-family: var(--font-display); font-style: italic; font-size: 1.1rem; font-weight: 300;
  color: rgba(255,255,255,0.18); letter-spacing: 0.08em;
}
.circle-img__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-body); font-size: 0.42rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  background: var(--black); color: var(--white); padding: 3px 10px;
}
.circle-label {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: 1rem; letter-spacing: 0.1em;
  color: var(--white); border: 1px solid rgba(255,255,255,0.18); padding: 10px 32px;
  transition: border-color var(--t-fast), color var(--t-fast); cursor: pointer; display: block;
}
.circle-label:hover { border-color: var(--champagne); color: var(--champagne); }
.circle-desc {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 300;
  color: rgba(255,255,255,0.38); text-align: center; max-width: 200px; line-height: 1.7;
  letter-spacing: 0.02em;
}
.circle-price {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.2em; color: var(--champagne);
}

/* ── PRICING TABLE ───────────────────────────────── */
.pricing { background: var(--white); padding: 90px 24px; }
.pricing__header { text-align: center; margin-bottom: 52px; }
.pricing__wrap { max-width: 600px; margin: 0 auto; }
.pricing__table { width: 100%; border-collapse: collapse; }
.pricing__table thead th {
  font-family: var(--font-body); font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--black);
  padding: 14px 16px; border-bottom: 1px solid var(--black); text-align: left;
}
.pricing__table thead th:last-child { text-align: right; }
.pricing__table tbody tr { border-bottom: 1px solid #e8e5e1; transition: background var(--t-fast); }
.pricing__table tbody tr:hover { background: #faf8f5; }
.pricing__table tbody td {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 300;
  letter-spacing: 0.04em; color: var(--black); padding: 13px 16px;
}
.pricing__table tbody td:first-child { color: #444; }
.pricing__table tbody td:last-child { text-align: right; font-weight: 400; }
.pricing__badge {
  font-family: var(--font-body); font-size: 0.4rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  background: var(--champagne); color: var(--black);
  padding: 2px 8px; margin-left: 8px; vertical-align: middle;
}
.pricing__note {
  text-align: center; margin-top: 20px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 300;
  letter-spacing: 0.04em; font-style: italic; color: #999;
}
.pricing__pro {
  max-width: 600px; margin: 44px auto 0;
  background: var(--black); padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.pricing__pro-label {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: 1.1rem; letter-spacing: 0.06em; color: var(--white);
}
.pricing__pro-sub {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 300;
  color: rgba(255,255,255,0.48); display: block; margin-top: 4px; letter-spacing: 0.02em;
}

/* ── PRODUCTS GRID ───────────────────────────────── */
.products { background: var(--black-soft); padding: 90px 24px; }
.products__header { text-align: center; margin-bottom: 52px; }
.products__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; max-width: var(--max-w); margin: 0 auto 48px;
}
.product-card {
  background: var(--black-card); cursor: pointer;
  border: 1px solid rgba(255,255,255,0); transition: border-color var(--t-fast);
}
.product-card:hover { border-color: rgba(200,169,110,0.16); }
.product-card__img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.product-card__img--straight { background: linear-gradient(160deg, #181410, #0d0b08); }
.product-card__img--waves    { background: linear-gradient(160deg, #111, #1a1410); }
.product-card__img--curl     { background: linear-gradient(160deg, #1a1410, #0d0b08); }
.product-card__img picture,
.product-card__img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.product-card__placeholder-text {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 1.2rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.12);
}
.product-card__badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 5px; z-index: 2;
}
.badge {
  font-family: var(--font-body); font-size: 0.42rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase; padding: 4px 10px; display: inline-block;
}
.badge--best    { background: var(--black); color: var(--white); }
.badge--new     { background: var(--champagne); color: var(--black); }
.badge--premium { background: var(--grey-dark); color: var(--grey-silver); }

/* Add-to-cart form + button */
.product-card__action {
  position: absolute; bottom: -52px; left: 0; right: 0; z-index: 2;
  transition: bottom 0.35s ease;
}
.product-card:hover .product-card__action,
.product-card:focus-within .product-card__action { bottom: 0; }
.product-cart-form { margin: 0; }
.btn-add-to-cart {
  width: 100%; background: var(--white); color: var(--black);
  font-family: var(--font-body); font-size: 0.48rem; font-weight: 500;
  letter-spacing: 0.38em; text-transform: uppercase; padding: 14px 8px;
  transition: background var(--t-fast);
  border: none; cursor: pointer; display: block;
}
.btn-add-to-cart:hover { background: var(--champagne); }
.btn-add-to-cart:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-add-to-cart:focus-visible { outline: 2px solid var(--champagne); outline-offset: -2px; }

.product-card__info { padding: 16px 16px 18px; }
.product-card__name {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 300;
  letter-spacing: 0.05em; color: var(--white); margin-bottom: 5px;
}
.product-card__variant {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.04em; color: var(--grey-light); margin-bottom: 10px;
}
.product-card__price {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 300;
  letter-spacing: 0.06em; color: var(--white);
}
.product-card__price-from {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 300;
  color: var(--champagne); margin-left: 6px;
}
.product-card__price-old {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 300;
  color: var(--grey-light); text-decoration: line-through; margin-left: 6px;
}
.products__cta { text-align: center; }

/* ── QUALITY ─────────────────────────────────────── */
.quality { background: var(--black); padding: 90px 24px; border-top: 1px solid var(--grey-dark); }
.quality__header { text-align: center; margin-bottom: 64px; }
.quality__grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 860px; margin: 0 auto; }
.quality__item { display: flex; gap: 20px; align-items: flex-start; }
.quality__check {
  width: 30px; height: 30px; min-width: 30px;
  border: 1px solid var(--champagne); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--champagne);
}
.quality__check svg { width: 13px; height: 13px; }
.quality__title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 400;
  letter-spacing: 0.04em; color: var(--white); margin-bottom: 7px;
}
.quality__desc {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 300;
  letter-spacing: 0.01em; color: rgba(255,255,255,0.44); line-height: 1.8;
}

/* ── PRO SECTION ─────────────────────────────────── */
.pro-section { background: var(--black-soft); padding: 90px 24px; border-top: 1px solid var(--grey-dark); }
.pro-section__inner { max-width: var(--max-w); margin: 0 auto; }
.pro-section__content { margin-bottom: 48px; }
.pro-section__body {
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 300;
  letter-spacing: 0.02em; color: rgba(255,255,255,0.52); line-height: 1.9; margin: 18px 0 32px;
}
.pro-section__features { display: flex; flex-direction: column; gap: 14px; }
.pro-feature {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--grey-silver);
}
.pro-feature__dot { width: 5px; height: 5px; min-width: 5px; border-radius: 50%; background: var(--champagne); }

/* ── VIDEO SECTION ───────────────────────────────── */
.video-section { background: var(--black); padding: 90px 24px; }
.video-section__header { text-align: center; margin-bottom: 48px; }
.video-section__wrapper {
  position: relative; max-width: 960px; margin: 0 auto;
  aspect-ratio: 16/9; background: var(--grey-dark); overflow: hidden;
}
.video-section__wrapper::after {
  content: ''; position: absolute; inset: -1px; z-index: 2; pointer-events: none;
  background: linear-gradient(45deg, transparent 35%, rgba(200,169,110,0.08) 50%, transparent 65%);
}
.video-section__el {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.08); /* crop watermark edges */
}

/* ── SOCIAL STRIP ────────────────────────────────── */
.social-strip {
  background: var(--black-soft); padding: 72px 24px; text-align: center;
  border-top: 1px solid var(--grey-dark);
}
.social-strip__title {
  font-family: var(--font-script); font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--white); margin-bottom: 6px;
}
.social-strip__handle {
  font-family: var(--font-body); font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.5em; color: var(--champagne); text-transform: uppercase; margin-bottom: 40px;
}
.social-strip__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; max-width: var(--max-w); margin: 0 auto;
}
.social-item {
  aspect-ratio: 1; overflow: hidden; cursor: pointer; position: relative;
  background: var(--grey-dark);
}
.social-item picture,
.social-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.social-item:hover img { transform: scale(1.06); }
.social-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(200,169,110,0); transition: background 0.35s;
}
.social-item:hover::after { background: rgba(200,169,110,0.14); }

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: var(--black-soft); border-top: 1px solid var(--grey-dark); padding: 72px 24px 36px; }
.footer__top { display: flex; flex-direction: column; gap: 40px; max-width: var(--max-w); margin: 0 auto 48px; }
.footer__brand-script {
  font-family: var(--font-script); font-size: 2.2rem; color: var(--white);
  display: block; line-height: 1; margin-bottom: 5px;
}
.footer__brand-sub {
  font-family: var(--font-display); font-size: 0.52rem; font-weight: 300;
  letter-spacing: 0.55em; color: var(--grey-light); text-transform: uppercase;
  display: block; margin-bottom: 18px;
}
.footer__brand-desc {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 300;
  letter-spacing: 0.01em; color: rgba(255,255,255,0.35); line-height: 1.85; max-width: 280px;
}
.footer__socials { display: flex; gap: 10px; margin-top: 22px; }
.footer__social-link {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: var(--grey-light);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.footer__social-link:hover { border-color: var(--champagne); color: var(--champagne); }
.footer__social-link svg { width: 13px; height: 13px; }
.footer__col-title {
  font-family: var(--font-body); font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.5em; text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 9px; }
.footer__col-links a {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 300;
  letter-spacing: 0.04em; color: rgba(255,255,255,0.36); transition: color var(--t-fast);
}
.footer__col-links a:hover { color: var(--white); }
.footer__newsletter-title {
  font-family: var(--font-body); font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.5em; text-transform: uppercase; color: var(--white); margin-bottom: 8px;
}
.footer__newsletter-body {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 300;
  letter-spacing: 0.01em; color: rgba(255,255,255,0.36); margin-bottom: 16px; line-height: 1.7;
}
.footer__nl-form { display: flex; border: 1px solid rgba(255,255,255,0.1); }
.footer__nl-input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 11px 13px; font-family: var(--font-body);
  font-size: 0.76rem; font-weight: 300; color: var(--white); min-width: 0;
}
.footer__nl-input::placeholder { color: rgba(255,255,255,0.24); }
.footer__nl-btn {
  background: var(--white); color: var(--black);
  font-family: var(--font-body); font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase; padding: 11px 16px;
  transition: background var(--t-fast); white-space: nowrap; cursor: pointer; border: none;
}
.footer__nl-btn:hover { background: var(--champagne); }
.footer__bottom {
  max-width: var(--max-w); margin: 0 auto; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 12px;
}
.footer__copy {
  font-family: var(--font-body); font-size: 0.66rem; font-weight: 300;
  color: rgba(255,255,255,0.22); letter-spacing: 0.02em;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer__legal a {
  font-family: var(--font-body); font-size: 0.66rem; font-weight: 300;
  color: rgba(255,255,255,0.22); transition: color var(--t-fast);
}
.footer__legal a:hover { color: var(--grey-silver); }

/* ── CATALOG LISTING — no inline styles ──────────── */
.listing-section { padding: 48px 24px 90px; }
.listing-header { text-align: center; margin-bottom: 48px; }
.listing-brand {
  position: relative; min-height: 280px; overflow: hidden; margin-bottom: 48px;
  display: flex; align-items: center; justify-content: center;
}
.listing-brand__media { position: absolute; inset: 0; }
.listing-brand__media img { width: 100%; height: 100%; object-fit: cover; }
.listing-brand__overlay { position: absolute; inset: 0; background: rgba(8,8,8,0.55); }
.listing-brand__content { position: relative; z-index: 1; text-align: center; padding: 40px 24px; }
.listing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; max-width: var(--max-w); margin: 0 auto;
}
.listing-pagination { text-align: center; margin-top: 48px; }

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Sécurité : contenu visible si JS ne démarre pas */
.no-js .reveal,
.reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.18s; }
.reveal--d3 { transition-delay: 0.28s; }
.reveal--d4 { transition-delay: 0.38s; }
.reveal--d5 { transition-delay: 0.48s; }
.reveal--d6 { transition-delay: 0.58s; }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { to { opacity:1; } }

/* ── TABLET 640px ────────────────────────────────── */
@media (min-width: 640px) {
  .site-header { padding: 0 40px; height: 70px; }
  .promise__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .quality__grid { grid-template-columns: repeat(2, 1fr); }
  .promo-sale { flex-direction: row; min-height: 480px; }
  
  .promo-sale__media { flex: 1; min-height: auto; }
  .collections__circles { flex-direction: row; justify-content: center; gap: 40px; flex-wrap: wrap; }
  .social-strip__grid { grid-template-columns: repeat(5, 1fr); }
  .footer__top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ── DESKTOP 1024px ──────────────────────────────── */
@media (min-width: 1024px) {
  .site-header { padding: 0 48px; }
  
  .hero__scroll { right: 56px; }
  .promise { padding: 100px 60px; }
  .promise__grid { grid-template-columns: repeat(3, 1fr); }
  
  .brand-exp { min-height: 640px; }
  .collections { padding: 100px 60px; }
  .pricing { padding: 100px 60px; }
  .products { padding: 100px 60px; }
  .products__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .quality { padding: 100px 60px; }
  .quality__grid { grid-template-columns: repeat(2, 1fr); }
  .pro-section { padding: 100px 60px; }
  .pro-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .pro-section__content { margin-bottom: 0; }
  .video-section { padding: 100px 60px; }
  .social-strip { padding: 80px 60px; }
  .footer { padding: 80px 60px 40px; }
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; }
  .listing-section { padding: 48px 60px 100px; }
  .listing-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ── PREFERS REDUCED MOTION ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #preloader { display: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ════════════════════════════════════════════════
   V5 — NEW PAGE STYLES
   ════════════════════════════════════════════════ */

/* ── NOTIFICATIONS ──────────────────────────────── */
.ec-notifications { max-width: var(--max-w); margin: 0 auto; padding: 12px 24px; display: flex; flex-direction: column; gap: 8px; }
.ec-alert {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; font-family: var(--font-body); font-size: 0.82rem; font-weight: 400; letter-spacing: 0.01em;
}
.ec-alert--error   { background: #1a0808; color: #f5c6c6; border-left: 2px solid #c0392b; }
.ec-alert--warning { background: #1a1408; color: #f5e6c6; border-left: 2px solid #d4a017; }
.ec-alert--success { background: #081a0e; color: #c6f5d4; border-left: 2px solid #27ae60; }
.ec-alert--info    { background: #080e1a; color: #c6d4f5; border-left: 2px solid #2980b9; }
.ec-alert svg      { flex-shrink: 0; }

/* ── BREADCRUMB ─────────────────────────────────── */
.ec-breadcrumb { padding: 20px 24px 0; max-width: var(--max-w); margin: 0 auto; }
.ec-breadcrumb__list { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; list-style: none; }
.ec-breadcrumb__item { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.04em; color: var(--grey-light); }
.ec-breadcrumb__item a { color: var(--grey-light); transition: color var(--t-fast); }
.ec-breadcrumb__item a:hover { color: var(--white); }
.ec-breadcrumb__item--active { color: var(--white); }
.ec-breadcrumb__sep { color: rgba(255,255,255,0.2); font-size: 0.6rem; }
/* Breadcrumb on white bg */
.white-bg .ec-breadcrumb__item, .white-bg .ec-breadcrumb__item a { color: #999; }
.white-bg .ec-breadcrumb__item--active { color: var(--black); }

/* ── PAGINATION ─────────────────────────────────── */
.ec-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 48px 24px; }
.ec-pagination__pages { display: flex; align-items: center; gap: 4px; list-style: none; }
.ec-pagination__page {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; font-family: var(--font-display); font-size: 0.9rem; font-weight: 300;
  color: var(--grey-light); border: 1px solid transparent; transition: all var(--t-fast);
}
.ec-pagination__page:hover { color: var(--white); border-color: rgba(255,255,255,0.15); }
.ec-pagination__page--active { color: var(--white); border-color: var(--champagne); cursor: default; }
.ec-pagination__spacer { color: var(--grey-light); padding: 0 4px; font-size: 0.8rem; }
.ec-pagination__btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
  color: var(--grey-light); transition: all var(--t-fast);
}
.ec-pagination__btn:hover { border-color: var(--champagne); color: var(--champagne); }

/* ── PRODUCT PAGE ───────────────────────────────── */
.product-page { padding: 0 0 80px; }
.product-page__inner {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; max-width: var(--max-w); margin: 0 auto; padding: 32px 24px 0;
}
@media (min-width: 768px) {
  .product-page__inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}
@media (min-width: 1024px) {
  .product-page { padding: 0 0 100px; }
  .product-page__inner { padding: 40px 60px 0; }
}

/* Gallery */
.product-gallery { display: flex; flex-direction: column; gap: 12px;   background: #0a0a0a;
}
.product-gallery__main {
  position: relative; aspect-ratio: 1; overflow: hidden; background: var(--grey-dark);
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: var(--grey-dark);
}
.product-gallery__placeholder-text { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: rgba(255,255,255,0.15); }
.product-gallery__thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-gallery__thumb {
  width: 72px; height: 72px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer; transition: border-color var(--t-fast); padding: 0; background: none;
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumb--active { border-color: var(--champagne); }
.product-gallery__thumb:hover { border-color: rgba(200,169,110,0.5); }

/* Product info */
.product-info { display: flex; flex-direction: column; gap: 20px; }
.product-info__flags { display: flex; gap: 8px; flex-wrap: wrap; }
.product-info__category {
  font-family: var(--font-body); font-size: 0.54rem; font-weight: 400;
  letter-spacing: 0.5em; color: var(--champagne); text-transform: uppercase;
}
.product-info__title {
  font-family: var(--font-display); font-weight: 300; font-size: clamp(1.8rem,4vw,3rem);
  letter-spacing: 0.04em; color: var(--white); line-height: 1.15;
}
.product-info__ref {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.04em; color: var(--grey-light);
}
.product-info__price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.product-info__price-current {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 300;
  letter-spacing: 0.04em; color: var(--white);
}
.product-info__price-old {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 300;
  color: var(--grey-light); text-decoration: line-through;
}
.product-info__price-badge {
  font-family: var(--font-body); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--champagne); color: var(--black); padding: 3px 10px;
}
.product-info__desc-short {
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 300;
  letter-spacing: 0.02em; color: rgba(255,255,255,0.6); line-height: 1.85;
}

/* Variants */
.product-info__variants { display: flex; flex-direction: column; gap: 16px; }
.product-variant-group__label {
  font-family: var(--font-body); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--grey-silver); margin-bottom: 10px;
}
.product-variant-group__options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 300;
  border: 1px solid rgba(255,255,255,0.18); padding: 8px 20px; cursor: pointer;
  color: var(--grey-silver); transition: all var(--t-fast);
}
.variant-btn input { position: absolute; opacity: 0; pointer-events: none; }
.variant-btn--active, .variant-btn:hover { border-color: var(--champagne); color: var(--champagne); }
.variant-color {
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: border-color var(--t-fast);
}
.variant-color input { position: absolute; opacity: 0; pointer-events: none; }
.variant-color--active { border-color: var(--champagne); }

/* Quantity selector */
.product-info__qty { display: flex; flex-direction: column; gap: 8px; }
.product-info__qty-label {
  font-family: var(--font-body); font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--grey-silver);
}
.qty-selector {
  display: flex; align-items: stretch; border: 1px solid rgba(255,255,255,0.18); width: fit-content;
}
.qty-selector--small .qty-selector__btn { width: 32px; height: 32px; font-size: 1rem; }
.qty-selector--small .qty-selector__input { width: 44px; height: 32px; font-size: 0.85rem; }
.qty-selector__btn {
  width: 44px; height: 48px; background: transparent; border: none; cursor: pointer;
  color: var(--white); font-size: 1.2rem; font-weight: 300; transition: background var(--t-fast);
  display: flex; align-items: center; justify-content: center;
}
.qty-selector__btn:hover { background: rgba(200,169,110,0.1); }
.qty-selector__input {
  width: 56px; height: 48px; border: none; border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1); background: transparent;
  text-align: center; color: var(--white); font-family: var(--font-display);
  font-size: 1rem; font-weight: 300; outline: none;
}
.product-info__actions { display: flex; flex-direction: column; gap: 14px; }
.product-info__add-btn { width: 100%; padding: 15px 32px; font-size: 0.6rem; letter-spacing: 0.4em; }
.product-info__availability {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 300; letter-spacing: 0.04em;
}
.product-info__availability--available { color: #27ae60; }
.product-info__availability--unavailable { color: #c0392b; }

/* Features */
.product-info__features-title {
  font-family: var(--font-body); font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--grey-silver); margin-bottom: 16px;
}
.product-features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.product-features-list__name {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--grey-light); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.product-features-list__value {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 300;
  color: var(--white); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Description longue */
.product-description { background: var(--black-soft); padding: 64px 24px; border-top: 1px solid var(--grey-dark); }
.product-description__inner { max-width: 760px; margin: 0 auto; }
.product-description__title {
  font-family: var(--font-display); font-weight: 300; font-size: 1.6rem;
  letter-spacing: 0.1em; color: var(--white); margin-bottom: 28px;
}
.product-description__body {
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 300;
  letter-spacing: 0.02em; color: rgba(255,255,255,0.6); line-height: 1.95;
}
.product-description__body p { margin-bottom: 16px; }

/* Related */
.product-related { padding: 64px 24px; max-width: var(--max-w); margin: 0 auto; }
.product-related__header { text-align: center; margin-bottom: 48px; }

/* ── CART PAGE ───────────────────────────────────── */
.cart-page { background: var(--white); padding: 48px 0 80px; }
.cart-page__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.cart-page__header { margin-bottom: 40px; }
.cart-page__header .section-title { font-size: clamp(1.6rem,3.5vw,2.6rem); }
.cart-page__body { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) {
  .cart-page__body { grid-template-columns: 1fr 380px; gap: 64px; }
  .cart-page { padding: 48px 0 100px; }
  .cart-page__inner { padding: 0 60px; }
}

/* Cart items */
.cart-items { display: flex; flex-direction: column; gap: 0; }
.cart-item {
  display: grid; grid-template-columns: 88px 1fr auto auto auto;
  align-items: center; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid #e8e5e1;
}
@media (max-width: 640px) {
  .cart-item { grid-template-columns: 72px 1fr; gap: 12px; }
}
.cart-item__img { width: 88px; height: 88px; overflow: hidden; background: #ece9e4; flex-shrink: 0; }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#e0dcd8,#c8c4bf); }
.cart-item__name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 300;
  letter-spacing: 0.04em; color: var(--black);
}
.cart-item__attrs, .cart-item__ref {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.02em; color: #888; margin-top: 4px;
}
.cart-item__price-total {
  font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--black);
  white-space: nowrap;
}
.cart-item__price-unit { font-family: var(--font-body); font-size: 0.68rem; color: #999; margin-top: 3px; display: block; }
.cart-item__remove-btn {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  color: #bbb; cursor: pointer; border: none; background: none;
  transition: color var(--t-fast);
}
.cart-item__remove-btn:hover { color: var(--black); }

/* Cart summary */
.cart-summary {
  background: var(--black); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px; align-self: flex-start;
}
.cart-summary__title {
  font-family: var(--font-display); font-weight: 300; font-size: 1.1rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--white);
}
.cart-summary__lines { display: flex; flex-direction: column; gap: 12px; }
.cart-summary__line { display: flex; justify-content: space-between; align-items: center; }
.cart-summary__line dt { font-family: var(--font-body); font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.5); letter-spacing: 0.02em; }
.cart-summary__line dd { font-family: var(--font-display); font-size: 0.9rem; font-weight: 300; color: var(--white); }
.cart-summary__total { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.cart-summary__total span { font-family: var(--font-body); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase; color: var(--grey-silver); }
.cart-summary__total strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; color: var(--white); }
.cart-summary__tax-note { font-family: var(--font-body); font-size: 0.66rem; font-weight: 300; color: rgba(255,255,255,0.35); text-align: right; margin-top: -12px; }
.cart-summary__checkout-btn { width: 100%; justify-content: center; gap: 12px; padding: 14px; font-size: 0.58rem; letter-spacing: 0.4em; }
.cart-summary__continue { font-family: var(--font-body); font-size: 0.68rem; font-weight: 300; letter-spacing: 0.04em; color: rgba(255,255,255,0.4); text-align: center; transition: color var(--t-fast); display: block; }
.cart-summary__continue:hover { color: var(--white); }
.cart-summary__secure { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 0.58rem; font-weight: 300; letter-spacing: 0.04em; color: rgba(255,255,255,0.3); justify-content: center; }

/* Promo */
.cart-promo__field { display: flex; border: 1px solid rgba(255,255,255,0.12); }
.cart-promo__input { flex: 1; background: transparent; border: none; outline: none; padding: 10px 12px; font-family: var(--font-body); font-size: 0.76rem; font-weight: 300; color: var(--white); min-width: 0; }
.cart-promo__input::placeholder { color: rgba(255,255,255,0.3); }
.cart-promo__btn { background: var(--white); color: var(--black); font-family: var(--font-body); font-size: 0.5rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; padding: 10px 14px; border: none; cursor: pointer; transition: background var(--t-fast); white-space: nowrap; }
.cart-promo__btn:hover { background: var(--champagne); }

/* Cart empty */
.cart-empty { padding: 80px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.cart-empty__msg { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; font-weight: 300; color: var(--black); }

/* ── CHECKOUT PAGE ──────────────────────────────── */
.checkout-header {
  background: var(--black); border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.checkout-header__logo { display: flex; align-items: center; }
.checkout-header__secure {
  display: flex; align-items: center; gap: 8px; font-family: var(--font-body);
  font-size: 0.6rem; font-weight: 300; letter-spacing: 0.04em; color: rgba(255,255,255,0.4);
}
.checkout-footer {
  background: var(--black-soft); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.checkout-footer p { font-family: var(--font-body); font-size: 0.66rem; font-weight: 300; color: rgba(255,255,255,0.22); }
.checkout-footer nav { display: flex; gap: 16px; }
.checkout-footer a { font-family: var(--font-body); font-size: 0.66rem; font-weight: 300; color: rgba(255,255,255,0.22); transition: color var(--t-fast); }
.checkout-footer a:hover { color: var(--grey-silver); }

.checkout-page { padding: 40px 0 80px; }
.checkout-page__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .checkout-page__inner { grid-template-columns: 1fr 380px; gap: 64px; padding: 0 60px; } }

/* Checkout steps */
.checkout-step { border: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px; }
.checkout-step__header {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  background: var(--black-soft); cursor: default;
}
.checkout-step--active .checkout-step__header { background: var(--black-card); }
.checkout-step__num {
  width: 28px; height: 28px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 400; color: var(--grey-silver);
}
.checkout-step--active .checkout-step__num { border-color: var(--champagne); color: var(--champagne); }
.checkout-step--complete .checkout-step__num { background: var(--champagne); border-color: var(--champagne); color: var(--black); }
.checkout-step__title { font-family: var(--font-display); font-weight: 300; font-size: 1rem; letter-spacing: 0.06em; color: var(--white); flex: 1; }
.checkout-step__edit { font-family: var(--font-body); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--champagne); background: none; border: none; cursor: pointer; transition: color var(--t-fast); }
.checkout-step__edit:hover { color: var(--champagne-lt); }
.checkout-step__body { padding: 24px; }
.checkout-step__summary { padding: 16px 24px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.5); }
.checkout-page__error { font-family: var(--font-serif); font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.6); padding: 40px 24px; text-align: center; }

/* Checkout summary */
.checkout-summary { background: var(--black-card); padding: 28px; align-self: flex-start; position: sticky; top: 20px; }
.checkout-summary__title { font-family: var(--font-display); font-weight: 300; font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.checkout-summary__items { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.checkout-summary__item { display: flex; justify-content: space-between; gap: 12px; }
.checkout-summary__item-name { font-family: var(--font-body); font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.6); }
.checkout-summary__item-price { font-family: var(--font-display); font-size: 0.88rem; font-weight: 300; color: var(--white); white-space: nowrap; }
.checkout-summary__totals { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
.checkout-summary__total-line { display: flex; justify-content: space-between; }
.checkout-summary__total-line dt { font-family: var(--font-body); font-size: 0.72rem; font-weight: 300; color: rgba(255,255,255,0.45); }
.checkout-summary__total-line dd { font-family: var(--font-display); font-size: 0.9rem; font-weight: 300; color: var(--white); }
.checkout-summary__total-line--final { margin-top: 8px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
.checkout-summary__total-line--final dt { font-family: var(--font-body); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey-silver); }
.checkout-summary__total-line--final dd strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 300; }
.checkout-summary__secure { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-family: var(--font-body); font-size: 0.58rem; font-weight: 300; color: rgba(255,255,255,0.3); }

/* ── ORDER CONFIRMATION ─────────────────────────── */
.order-confirmation { padding: 80px 24px; }
.order-confirmation__inner { max-width: 640px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.order-confirmation__icon { color: var(--champagne); margin-bottom: 8px; }
.order-confirmation__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.8rem,4vw,2.8rem); letter-spacing: 0.04em; color: var(--white); line-height: 1.2; }
.order-confirmation__title em { color: var(--champagne-lt); }
.order-confirmation__msg { font-family: var(--font-body); font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8; }
.order-confirmation__recap { width: 100%; background: var(--black-card); padding: 24px; text-align: left; border: 1px solid rgba(255,255,255,0.06); }
.order-confirmation__recap-title { font-family: var(--font-display); font-weight: 300; font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.order-confirmation__items { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.order-confirmation__item { display: flex; justify-content: space-between; gap: 12px; }
.order-confirmation__item-name { font-family: var(--font-body); font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.6); }
.order-confirmation__item-price { font-family: var(--font-display); font-size: 0.88rem; font-weight: 300; color: var(--white); }
.order-confirmation__total { display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
.order-confirmation__total span { font-family: var(--font-body); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey-silver); }
.order-confirmation__total strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 300; color: var(--white); }
.order-confirmation__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── AUTH PAGE ──────────────────────────────────── */
.auth-page { background: var(--white); min-height: 70vh; padding: 60px 24px 80px; }
.auth-page__inner { max-width: 520px; margin: 0 auto; }
.auth-page__header { text-align: center; margin-bottom: 36px; }
.auth-page__title { font-size: clamp(1.6rem,3.5vw,2.4rem); }
.auth-tabs { display: flex; border-bottom: 1px solid #e8e5e1; margin-bottom: 32px; }
.auth-tab {
  flex: 1; font-family: var(--font-body); font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.38em; text-transform: uppercase; padding: 14px;
  color: #999; background: none; border: none; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all var(--t-fast);
}
.auth-tab--active { color: var(--black); border-bottom-color: var(--black); }
.auth-tab:hover:not(.auth-tab--active) { color: var(--black); }
.auth-panel { display: none; }
.auth-panel--login { display: block; }
.auth-form { display: flex; flex-direction: column; gap: 20px; }
.auth-field { display: flex; flex-direction: column; gap: 8px; }
.auth-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.auth-label { font-family: var(--font-body); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase; color: var(--black); }
.auth-input {
  border: 1px solid #d8d4cf; border-radius: 0; padding: 12px 16px;
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 300; color: var(--black);
  outline: none; transition: border-color var(--t-fast); background: var(--white);
}
.auth-input:focus { border-color: var(--black); }
.auth-forgot { font-family: var(--font-body); font-size: 0.66rem; font-weight: 300; letter-spacing: 0.04em; color: #888; align-self: flex-end; margin-top: -4px; transition: color var(--t-fast); }
.auth-forgot:hover { color: var(--black); }
.auth-field--checkbox { flex-direction: row; align-items: flex-start; gap: 10px; }
.auth-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.auth-checkbox input { margin-top: 2px; }
.auth-checkbox span { font-family: var(--font-body); font-size: 0.76rem; font-weight: 300; letter-spacing: 0.01em; color: #666; line-height: 1.5; }
.auth-submit { font-size: 0.6rem; letter-spacing: 0.4em; padding: 14px; }

/* ── MY ACCOUNT ─────────────────────────────────── */
.account-page { background: var(--white); padding: 60px 24px 80px; }
.account-page__inner { max-width: var(--max-w); margin: 0 auto; }
.account-page__header { margin-bottom: 48px; }
.account-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
@media (min-width: 768px) { .account-grid { grid-template-columns: repeat(3, 1fr); } }
.account-card {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 36px 24px; background: var(--black-soft); border: 1px solid rgba(255,255,255,0.04);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.account-card:hover { border-color: rgba(200,169,110,0.2); background: var(--black-card); }
.account-card--logout .account-card__icon { color: rgba(255,255,255,0.3); }
.account-card__icon { color: var(--champagne); }
.account-card__label { font-family: var(--font-display); font-size: 0.88rem; font-weight: 300; letter-spacing: 0.08em; color: var(--white); text-align: center; }

/* ── 404 PAGE ────────────────────────────────────── */
.page-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; }
.page-404__inner { text-align: center; max-width: 560px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.page-404__code {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(6rem,18vw,14rem); letter-spacing: -0.02em;
  color: rgba(255,255,255,0.06); line-height: 0.9; display: block; pointer-events: none;
}
.page-404__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.6rem,4vw,2.8rem); letter-spacing: 0.06em; color: var(--white); line-height: 1.2; }
.page-404__title em { color: var(--champagne-lt); }
.page-404__msg { font-family: var(--font-body); font-size: 0.84rem; font-weight: 300; letter-spacing: 0.02em; color: rgba(255,255,255,0.48); line-height: 1.8; }
.page-404__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 12px; }

/* ── CHECKOUT LAYOUT ─────────────────────────────── */
.checkout-layout { background: var(--black); }
.checkout-layout #main { background: var(--black); min-height: calc(100vh - 128px); }

/* ── CHECKOUT FORM NATIVE STYLES (PS9) ──────────── */
.checkout-layout form .form-group { margin-bottom: 18px; }
.checkout-layout label { font-family: var(--font-body); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase; color: var(--grey-silver); display: block; margin-bottom: 8px; }
.checkout-layout input[type=text],
.checkout-layout input[type=email],
.checkout-layout input[type=tel],
.checkout-layout input[type=password],
.checkout-layout select,
.checkout-layout textarea {
  width: 100%; border: 1px solid rgba(255,255,255,0.12); border-radius: 0; padding: 12px 14px;
  background: var(--black-soft); color: var(--white); font-family: var(--font-body);
  font-size: 0.84rem; font-weight: 300; outline: none;
  transition: border-color var(--t-fast);
}
.checkout-layout input:focus,
.checkout-layout select:focus,
.checkout-layout textarea:focus { border-color: var(--champagne); }
.checkout-layout .btn-primary,
.checkout-layout button[type=submit] {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.38em; text-transform: uppercase;
  background: var(--white); color: var(--black); padding: 13px 32px; border: none; cursor: pointer;
  transition: background var(--t-fast);
}
.checkout-layout .btn-primary:hover,
.checkout-layout button[type=submit]:hover { background: var(--champagne); }

/* ── SCREEN READER ONLY ──────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ════════════════════════════════════════════════
   V6 — LAYOUTS, CHECKOUT STEPS, CUSTOMER PAGES
   ════════════════════════════════════════════════ */

/* ── COLUMN LAYOUTS ─────────────────────────────── */
.ec-col-layout {
  display: grid; grid-template-columns: 1fr; gap: 0;
  max-width: var(--max-w); margin: 0 auto; padding: 0;
}
@media (min-width: 1024px) {
  .ec-col-layout { grid-template-columns: 260px 1fr; }
  .ec-col-layout--right { grid-template-columns: 1fr 260px; }
}
.ec-col-layout__aside {
  background: var(--black-soft); border-right: 1px solid var(--grey-dark);
  padding: 32px 20px;
}
.ec-col-layout--right .ec-col-layout__aside {
  border-right: none; border-left: 1px solid var(--grey-dark);
}
.ec-col-layout__main { min-width: 0; }

/* ── COLOR SWATCHES — CSS custom property approach ── */
.variant-color {
  background-color: var(--ec-swatch, #808080);
}

/* ── CHECKOUT HEADER LOGO (no inline) ───────────── */
.checkout-header__logo-script {
  font-family: var(--font-script); font-size: 1.6rem; color: var(--white);
}

/* ── CHECKOUT STEP TABS ─────────────────────────── */
.checkout-step-tabs {
  display: flex; gap: 0; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.checkout-step-tab {
  flex: 1; font-family: var(--font-body); font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase; padding: 12px 8px;
  color: rgba(255,255,255,0.4); background: none; border: none; cursor: pointer;
  border-bottom: 1px solid transparent; margin-bottom: -1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.checkout-step-tab--active { color: var(--white); border-bottom-color: var(--champagne); }
.checkout-step-tab:hover:not(.checkout-step-tab--active) { color: rgba(255,255,255,0.7); }

.checkout-step-panel { display: none; }
.checkout-step-panel--active { display: block; }

/* ── CHECKOUT FORMS ─────────────────────────────── */
.checkout-auth-form { display: flex; flex-direction: column; gap: 18px; }
.checkout-field { display: flex; flex-direction: column; gap: 7px; }
.checkout-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkout-label {
  font-family: var(--font-body); font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--grey-silver);
}
.checkout-input {
  border: 1px solid rgba(255,255,255,0.12); border-radius: 0; padding: 11px 14px;
  background: var(--black-soft); color: var(--white);
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 300; outline: none;
  transition: border-color var(--t-fast);
}
.checkout-input:focus { border-color: var(--champagne); }
.checkout-input::placeholder { color: rgba(255,255,255,0.25); }
.checkout-forgot {
  font-family: var(--font-body); font-size: 0.66rem; font-weight: 300;
  letter-spacing: 0.04em; color: rgba(255,255,255,0.4); align-self: flex-end;
  transition: color var(--t-fast);
}
.checkout-forgot:hover { color: var(--champagne); }
.checkout-step-actions { padding-top: 8px; }
.checkout-step-cta {
  width: 100%; justify-content: center; gap: 10px; padding: 14px; font-size: 0.6rem; letter-spacing: 0.4em;
}
.checkout-add-address {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 300;
  letter-spacing: 0.04em; color: var(--champagne); margin-top: 16px; display: inline-block;
  transition: color var(--t-fast);
}
.checkout-add-address:hover { color: var(--champagne-lt); }
.checkout-no-carrier, .checkout-no-payment {
  font-family: var(--font-serif); font-style: italic; font-size: 0.95rem;
  color: rgba(255,255,255,0.5); padding: 24px 0;
}

/* ── CHECKOUT ADDRESS CARDS ─────────────────────── */
.checkout-addresses-existing { display: flex; flex-direction: column; gap: 16px; }
.checkout-address-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 640px) { .checkout-address-grid { grid-template-columns: 1fr 1fr; } }
.checkout-address-card {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px;
  border: 1px solid rgba(255,255,255,0.08); cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.checkout-address-card--active { border-color: var(--champagne); background: rgba(200,169,110,0.04); }
.checkout-address-card:hover:not(.checkout-address-card--active) { border-color: rgba(255,255,255,0.2); }
.checkout-address-radio { margin-top: 2px; accent-color: var(--champagne); }
.checkout-address-card__name {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 400;
  color: var(--white); margin-bottom: 6px;
}
.checkout-address-card__line {
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 300;
  color: rgba(255,255,255,0.5); line-height: 1.6;
}

/* ── CHECKOUT CARRIERS ──────────────────────────── */
.checkout-carriers { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.checkout-carrier {
  display: flex; align-items: center; gap: 12px; padding: 16px;
  border: 1px solid rgba(255,255,255,0.08); cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.checkout-carrier--active { border-color: var(--champagne); background: rgba(200,169,110,0.04); }
.checkout-carrier:hover:not(.checkout-carrier--active) { border-color: rgba(255,255,255,0.2); }
.checkout-carrier-radio { accent-color: var(--champagne); }
.checkout-carrier__content { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.checkout-carrier__info { display: flex; align-items: center; gap: 12px; }
.checkout-carrier__logo { object-fit: contain; }
.checkout-carrier__name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 300; color: var(--white); }
.checkout-carrier__delay { font-family: var(--font-body); font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.45); margin-top: 3px; }
.checkout-carrier__price { font-family: var(--font-display); font-size: 0.95rem; font-weight: 300; color: var(--white); white-space: nowrap; }

/* ── CHECKOUT GIFT ──────────────────────────────── */
.checkout-gift { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.checkout-gift__toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; font-family: var(--font-body); font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.6); }
.checkout-gift__message { resize: vertical; min-height: 80px; }

/* ── CHECKOUT PAYMENT ───────────────────────────── */
.checkout-payment-options { margin-bottom: 20px; }
.checkout-conditions { display: flex; flex-direction: column; gap: 12px; margin: 16px 0; }
.checkout-condition {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.6;
}
.checkout-condition input { margin-top: 2px; accent-color: var(--champagne); }
.checkout-payment-secure {
  display: flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 300;
  color: rgba(255,255,255,0.3); letter-spacing: 0.04em;
}

/* ── ACCOUNT PAGES — Secondary ──────────────────── */
.account-page__back {
  display: inline-block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.04em; color: var(--grey-light); margin-bottom: 20px;
  transition: color var(--t-fast);
}
.account-page__back:hover { color: var(--black); }
.account-empty { padding: 60px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.account-empty__msg { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; font-weight: 300; color: var(--black); }

/* ── ADDRESSES ──────────────────────────────────── */
.addresses-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .addresses-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .addresses-grid { grid-template-columns: repeat(3, 1fr); } }
.address-card {
  background: var(--black-soft); border: 1px solid rgba(255,255,255,0.06);
  padding: 24px; display: flex; flex-direction: column; justify-content: space-between; gap: 20px;
}
.address-card--add {
  align-items: center; justify-content: center; gap: 12px; cursor: pointer;
  border-style: dashed; border-color: rgba(255,255,255,0.12); min-height: 140px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.address-card--add:hover { border-color: var(--champagne); background: rgba(200,169,110,0.02); }
.address-card__alias { font-family: var(--font-display); font-size: 1rem; font-weight: 300; letter-spacing: 0.06em; color: var(--white); margin-bottom: 12px; }
.address-card__name { font-family: var(--font-body); font-size: 0.84rem; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.address-card__line { font-family: var(--font-body); font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; }
.address-card__actions { display: flex; gap: 16px; }
.address-card__btn {
  font-family: var(--font-body); font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  border: none; background: none; cursor: pointer; transition: color var(--t-fast); padding: 0;
}
.address-card__btn:hover, .address-card__btn--delete:hover { color: var(--white); }
.address-card__btn--delete { color: rgba(192,56,56,0.6); }
.address-card__add-icon { font-family: var(--font-body); font-size: 1.8rem; font-weight: 200; color: rgba(255,255,255,0.25); line-height: 1; }
.address-card__add-label { font-family: var(--font-body); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.38em; text-transform: uppercase; color: rgba(255,255,255,0.35); text-align: center; }

/* ── ORDERS TABLE ───────────────────────────────── */
.orders-table-wrap { overflow-x: auto; }
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table thead th {
  font-family: var(--font-body); font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--black);
  padding: 14px 16px; border-bottom: 1px solid var(--black); text-align: left;
}
.orders-table tbody tr { border-bottom: 1px solid #e8e5e1; transition: background var(--t-fast); }
.orders-table tbody tr:hover { background: #faf8f5; }
.orders-table tbody td { font-family: var(--font-body); font-size: 0.82rem; font-weight: 300; color: var(--black); padding: 14px 16px; }
.orders-table__ref { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.04em; }
.orders-table__link {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--champagne-dk);
  margin-right: 12px; transition: color var(--t-fast);
}
.orders-table__link:hover { color: var(--black); }
.order-status-badge { display: inline-block; font-family: var(--font-body); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; background: var(--black); color: var(--white); padding: 3px 10px; }

/* ── IDENTITY FORM ──────────────────────────────── */
.identity-form { max-width: 520px; }

/* ── ORDER DETAIL ───────────────────────────────── */
.order-detail__date { font-family: var(--font-body); font-size: 0.76rem; font-weight: 300; color: var(--grey-light); margin-top: 6px; }
.order-detail-body { display: flex; flex-direction: column; gap: 32px; }
.order-detail-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .order-detail-grid { grid-template-columns: 1fr 1fr; } }
.order-detail-section { background: var(--black-soft); padding: 24px; border: 1px solid rgba(255,255,255,0.06); }
.order-detail-section__title { font-family: var(--font-display); font-weight: 300; font-size: 0.9rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.order-detail-items { display: flex; flex-direction: column; gap: 14px; }
.order-detail-item { display: flex; align-items: flex-start; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.order-detail-item:last-child { border-bottom: none; padding-bottom: 0; }
.order-detail-item__img { width: 64px; height: 64px; object-fit: cover; flex-shrink: 0; background: var(--grey-dark); }
.order-detail-item__name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 300; color: var(--white); margin-bottom: 4px; }
.order-detail-item__attrs, .order-detail-item__qty { font-family: var(--font-body); font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.45); margin-top: 2px; }
.order-detail-item__price { font-family: var(--font-display); font-size: 0.95rem; font-weight: 300; color: var(--white); margin-left: auto; white-space: nowrap; }
.order-detail-address p { font-family: var(--font-body); font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; }
.order-detail-totals { display: flex; flex-direction: column; gap: 8px; }
.order-detail-totals__line { display: flex; justify-content: space-between; gap: 12px; }
.order-detail-totals__line dt { font-family: var(--font-body); font-size: 0.72rem; font-weight: 300; color: rgba(255,255,255,0.45); }
.order-detail-totals__line dd { font-family: var(--font-display); font-size: 0.9rem; font-weight: 300; color: var(--white); }
.order-detail-totals__line--total { margin-top: 8px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
.order-detail-totals__line--total dd strong { font-size: 1.2rem; }
.order-history-list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.order-history-item { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.order-history-item:last-child { border-bottom: none; }
.order-history-item__status { font-family: var(--font-display); font-size: 0.88rem; font-weight: 300; color: var(--white); }
.order-history-item__date { font-family: var(--font-body); font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.4); }
.order-detail-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* account-page narrow variant */
.account-page__inner--narrow { max-width: 560px; }

/* ════════════════════════════════════════════════
   V7 — ADDRESS FORM, CMS, CONTACT, PASSWORD
   ════════════════════════════════════════════════ */

/* ── ADDRESS FORM ───────────────────────────────── */
.address-form__fieldset {
  border: none; padding: 0; margin: 0 0 20px;
}
.address-form__legend {
  font-family: var(--font-body); font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.45em; text-transform: uppercase; color: var(--grey-silver);
  display: block; margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.address-form__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px;
}
@media (max-width: 640px) { .address-form__grid { grid-template-columns: 1fr; } }
.address-form__field--full { grid-column: 1 / -1; }
.is-hidden { display: none !important; }
.address-form__required { color: var(--champagne); margin-left: 4px; font-size: 0.8em; }
.address-form__hint {
  font-family: var(--font-body); font-size: 0.58rem; font-weight: 300;
  color: rgba(255,255,255,0.35); letter-spacing: 0.02em; display: block; margin-top: 2px;
}
.address-form__error {
  font-family: var(--font-body); font-size: 0.64rem; font-weight: 300;
  color: #f5a5a5; display: block; margin-top: 4px;
}
.checkout-checkbox-label {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.6;
}
.checkout-checkbox-label input { margin-top: 2px; accent-color: var(--champagne); }
.checkout-section-intro {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 300;
  color: rgba(255,255,255,0.5); margin-bottom: 20px; letter-spacing: 0.02em;
}

/* Address form page actions */
.address-form-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.address-page-form { display: flex; flex-direction: column; gap: 24px; }

/* ── CMS PAGE ───────────────────────────────────── */
.cms-page { padding: 0 0 80px; }
.cms-page__inner { max-width: 760px; margin: 0 auto; padding: 32px 24px 0; }
@media (min-width: 1024px) { .cms-page__inner { padding: 40px 60px 0; } }
.cms-page__header { margin-bottom: 40px; }
.cms-page__body {
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 300;
  letter-spacing: 0.02em; color: var(--black); line-height: 1.9;
}
.cms-page__body h2 {
  font-family: var(--font-display); font-weight: 400; font-size: 1.4rem;
  letter-spacing: 0.06em; color: var(--black); margin: 32px 0 16px;
}
.cms-page__body h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 1.1rem;
  letter-spacing: 0.04em; color: var(--black); margin: 24px 0 12px;
}
.cms-page__body p { margin-bottom: 16px; }
.cms-page__body ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.cms-page__body li { margin-bottom: 6px; }
.cms-page__body a { color: var(--champagne-dk); text-decoration: underline; }
.cms-page__empty { font-family: var(--font-serif); font-style: italic; font-size: 1rem; color: #999; }

/* ── CONTACT PAGE ───────────────────────────────── */
.contact-page { background: var(--white); padding: 0 0 80px; }
.contact-page__inner { max-width: var(--max-w); margin: 0 auto; padding: 48px 24px 0; }
@media (min-width: 1024px) { .contact-page__inner { padding: 48px 60px 0; } }
.contact-page__header { margin-bottom: 48px; }
.contact-page__body { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .contact-page__body { grid-template-columns: 1fr 2fr; gap: 64px; } }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info__item { display: flex; flex-direction: column; gap: 6px; }
.contact-info__label {
  font-family: var(--font-body); font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.5em; text-transform: uppercase; color: var(--grey-light);
}
.contact-info__value {
  font-family: var(--font-display); font-size: 1rem; font-weight: 300;
  letter-spacing: 0.04em; color: var(--black); transition: color var(--t-fast);
}
a.contact-info__value:hover { color: var(--champagne-dk); }
.contact-info__desc { font-family: var(--font-body); font-size: 0.76rem; font-weight: 300; color: #888; line-height: 1.6; }
.contact-form-wrap { display: flex; flex-direction: column; gap: 0; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form__message { resize: vertical; min-height: 120px; }
.contact-form__privacy { margin-top: 4px; }
.contact-form__privacy .checkout-checkbox-label { color: #666; }
.contact-form__privacy .checkout-checkbox-label a { color: var(--champagne-dk); }
.contact-form__submit { align-self: flex-start; }
/* Contact form on white bg */
.contact-page .checkout-label { color: #555; }
.contact-page .checkout-input {
  border-color: #d8d4cf; background: var(--white); color: var(--black);
}
.contact-page .checkout-input:focus { border-color: var(--black); }
.contact-page .checkout-input::placeholder { color: #bbb; }

/* ── PASSWORD PAGE ──────────────────────────────── */
.password-page__intro {
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 300;
  letter-spacing: 0.02em; color: #666; line-height: 1.8; margin-bottom: 24px;
}
.password-page__back {
  text-align: center; font-family: var(--font-body); font-size: 0.76rem;
  font-weight: 300; color: #888; margin-top: 8px;
}
.password-page__back a { color: var(--black); text-decoration: underline; }

/* ── CHECKOUT SECTION LABEL ─────────────────────── */
.checkout-field-label {
  font-family: var(--font-body); font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.45em; text-transform: uppercase; color: var(--grey-silver);
  display: block; margin-bottom: 12px;
}

/* ════════════════════════════════════════════
   PREVIEW NETLIFY — extras & page nav
   ════════════════════════════════════════════ */

/* Active nav link */
.nav-drawer__link.is-active { color: var(--white); padding-left: 8px; }

/* Page transitions */
.page-enter { animation: pageIn 0.5s var(--ease) both; }
@keyframes pageIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

/* Preview demo banner (bas de page) */
.demo-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(8,8,8,0.9); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200,169,110,0.3);
  display: flex; align-items: center; justify-content: center; gap: 40px;
  padding: 12px 20px; flex-wrap: wrap;
}
.demo-bar__label {
  font-family: var(--font-body); font-size: 0.5rem; font-weight: 400;
  letter-spacing: 0.45em; text-transform: uppercase; color: var(--champagne);
}
.demo-bar__nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.demo-bar__link {
  font-family: var(--font-body); font-size: 0.5rem; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.45);
  padding: 6px 12px; border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.25s ease;
}
.demo-bar__link:hover, .demo-bar__link.is-active {
  color: var(--champagne); border-color: var(--champagne);
}
.demo-bar__close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-size: 0.52rem; color: rgba(255,255,255,0.25);
  background: none; border: none; cursor: pointer; letter-spacing: 0.1em;
}
/* Padding bottom so demo bar doesn't cover footer */
body { padding-bottom: 54px; }
@media (max-width: 640px) { body { padding-bottom: 90px; } }

/* Product listing page */
.collection-hero {
  position: relative; min-height: 360px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.collection-hero__media { position: absolute; inset: 0; }
.collection-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; opacity: 0.5; }
.collection-hero::after { content: ''; position: absolute; inset: 0; background: rgba(8,8,8,0.55); }
.collection-hero__content { position: relative; z-index: 1; text-align: center; padding: 60px 24px; }
.collection-hero__content .section-title { font-size: clamp(2rem,6vw,4rem); }

/* Breadcrumb white variant */
.ec-breadcrumb--light .ec-breadcrumb__item,
.ec-breadcrumb--light .ec-breadcrumb__item a { color: #888; }
.ec-breadcrumb--light .ec-breadcrumb__item--active { color: var(--black); }

/* Product page on white bg */
.product-page--preview { background: var(--white); }
.product-page--preview .product-info__title { color: var(--black); }
.product-page--preview .product-info__category { color: var(--champagne-dk); }
.product-page--preview .product-info__ref { color: #888; }
.product-page--preview .product-info__price-current { color: var(--black); }
.product-page--preview .product-info__price-old { color: #bbb; }
.product-page--preview .product-info__desc-short { color: rgba(0,0,0,0.6); }
.product-page--preview .product-variant-group__label { color: #888; }
.product-page--preview .variant-btn { color: #555; border-color: #d0ccc8; }
.product-page--preview .variant-btn--active,
.product-page--preview .variant-btn:hover { color: var(--black); border-color: var(--black); }
.product-page--preview .product-info__qty-label { color: #888; }
.product-page--preview .qty-selector { border-color: #d0ccc8; }
.product-page--preview .qty-selector__btn { color: var(--black); }
.product-page--preview .qty-selector__input { color: var(--black); border-color: #d0ccc8; }
.product-page--preview .product-info__features-title { color: #888; }
.product-page--preview .product-features-list__name { color: #888; border-color: #e8e5e1; }
.product-page--preview .product-features-list__value { color: var(--black); border-color: #e8e5e1; }
.product-page--preview .product-info__add-btn.btn--black { background: var(--black); color: var(--white); }
.product-page--preview .product-info__add-btn.btn--black:hover { background: var(--champagne-dk); }
.product-gallery--white { background: var(--white); }
.product-gallery--white .product-gallery__main { background: #f0ede9; }
.product-gallery--white .product-gallery__thumb { border-color: #e0dbd5; }
.product-description--white { background: var(--white-soft); }
.product-description--white .product-description__title,
.product-description--white .product-description__body { color: var(--black); }
.product-description--white .product-description__body { color: rgba(0,0,0,0.6); }

/* Cart on white */
.cart-page--preview { background: var(--white); }
.cart-page--preview .cart-page__header .section-title { color: var(--black); }

/* Checkout */
.checkout-page--preview { background: var(--black); min-height: 70vh; }

/* ════════════════════════════════════════════════
   V9 PREVIEW — VIDEO HERO · MARQUEE · EDITORIAL
   LOGO REAL · DEMO FAB · MOBILE POLISH
   ════════════════════════════════════════════════ */

/* ── LOGO RÉEL HEADER ───────────────────────────── */
.header-logo { gap: 0; }

/* Cache le text fallback (logo texte) quand image logo réelle est présente */
.header-logo__text { display: none; }

/* ── PRELOADER AVEC LOGO RÉEL ────────────────────── */
.pre-logo { text-align: center; }
.pre-logo__img {
  width: 140px; height: 140px; object-fit: contain;
  filter: none;
  opacity: 0; transform: translateY(16px);
  animation: preLogoIn 0.8s 0.2s var(--ease) both;
}

/* ── HERO VIDEO ──────────────────────────────────── */
.hero--video 

.hero--video 

/* ── LOGO DANS LE HERO ───────────────────────────── */
.hero__logo {
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.9s 3s var(--ease) both;
}
.hero__logo-img {
  width: clamp(160px, 42vw, 260px); height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(200,169,110,0.15));
}

/* Hero content mobile */

.hero__eyebrow {
  font-size: 0.52rem; letter-spacing: 0.52em;
  opacity: 0; animation: fadeUp 0.85s 3.18s var(--ease) both;
}
.hero__tagline {
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  margin-top: 12px; margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.85s 3.32s var(--ease) both;
  max-width: 380px;
}
.hero__cta {
  gap: 12px;
  opacity: 0; animation: fadeUp 0.85s 3.46s var(--ease) both;
}
/* CTA full-width mobile */
@media (max-width: 480px) {
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

/* ── MARQUEE PREMIUM ─────────────────────────────── */
.marquee {
  overflow: hidden;
  background: #0a0a0a;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative; z-index: 1;
}
.marquee__track {
  display: flex; align-items: center;
  width: max-content; gap: 0;
  animation: marqueeScroll 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 20px;
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase; color: rgba(245,240,232,0.55);
  white-space: nowrap;
}
.marquee__sep {
  color: var(--champagne); font-size: 0.7rem; line-height: 1;
  font-weight: 400; letter-spacing: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ── EDITORIAL — 3 MODÈLES ────────────────────────── */
.editorial {
  display: flex; flex-direction: column;
  background: var(--black-soft);
  overflow: hidden;
}
.editorial__media {
  position: relative; overflow: hidden;
  background: #0f0c0a;
}
.editorial__img {
  width: 100%; height: auto; display: block;
  object-fit: cover;
  /* Image 1402x1122 — on affiche toujours en entier */
  max-height: none;
}
.editorial__content {
  padding: 52px 24px;
  display: flex; flex-direction: column; gap: 16px;
  justify-content: center;
}
.editorial__body {
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 300;
  letter-spacing: 0.02em; color: rgba(255,255,255,0.58); line-height: 1.9;
  max-width: 480px;
}
/* Desktop: côte à côte */
@media (min-width: 768px) {
  .editorial { flex-direction: row; min-height: 520px; }
  .editorial__media { flex: 1; }
  .editorial__img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
  }
  .editorial__content { flex: 0 0 380px; padding: 64px 56px; }
}
@media (min-width: 1024px) {
  .editorial__content { flex: 0 0 440px; padding: 80px 64px; }
}

/* ── PROMO SALE IMAGE — nouvelle photo ────────────── */
.promo-sale__media-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 35% top;
}

/* ── FOOTER LOGO RÉEL ─────────────────────────────── */

/* ── DEMO FAB (flottant discret) ──────────────────── */
body { padding-bottom: 0; } /* reset de l'ancien padding */
.demo-fab {
  position: fixed; bottom: 20px; right: 16px; z-index: 8000;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.demo-fab__toggle {
  width: 42px; height: 42px;
  background: rgba(8,8,8,0.90); backdrop-filter: blur(12px);
  border: 1px solid rgba(200,169,110,0.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--champagne); cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.demo-fab__toggle:hover { background: rgba(200,169,110,0.12); border-color: var(--champagne); }
.demo-fab__menu {
  display: none; flex-direction: column; gap: 2px;
  background: rgba(8,8,8,0.95); backdrop-filter: blur(16px);
  border: 1px solid rgba(200,169,110,0.2);
  padding: 14px 16px; min-width: 160px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.demo-fab__menu.is-open { display: flex; }
.demo-fab__label {
  font-family: var(--font-body); font-size: 0.44rem; font-weight: 400;
  letter-spacing: 0.5em; text-transform: uppercase; color: var(--champagne);
  margin-bottom: 8px; display: block;
}
.demo-fab__link {
  font-family: var(--font-body); font-size: 0.56rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: block;
}
.demo-fab__link:last-child { border-bottom: none; }
.demo-fab__link:hover, .demo-fab__link--active { color: var(--white); }
.demo-fab__link--active { color: var(--champagne); }

/* ── MOBILE GLOBAL POLISH ─────────────────────────── */
@media (max-width: 768px) {
  /* ── HERO MOBILE : vidéo desktop cover, plein écran ── */
  
  
  /* Sur mobile : utiliser la vidéo desktop landscape avec cover */
  
  
  .hero__logo { display: none; }
  .hero__scroll { display: none; }
  

  /* Promise grid — 1 colonne sur petit mobile */
  .promise__item { padding: 28px 22px; }

  /* Editorial — image visible pleine largeur */
  .editorial__media { max-height: 70vw; overflow: hidden; }
  .editorial__img { height: 100%; object-position: center top; }
  .editorial__content { padding: 40px 24px; }

  /* Pricing table — scrollable horizontal */
  .pricing__wrap { overflow-x: auto; }
  .pricing__table { min-width: 280px; }
}

/* ── LOGO dans les autres pages (header) ─────────── */
/* Sur les autres pages, le logo texte reste visible si pas de logo img */
.header-logo:not(:has(.header-logo__img-real)) .header-logo__text { display: flex; }

/* ════════════════════════════════════════════════
   CIRCLE IMAGES RÉELLES — Premium Studio
   Ordre : Straight → Curl (centre) → Waves
   ════════════════════════════════════════════════ */

/* Reset placeholder backgrounds now that real images are used */
.circle-img--straight,
.circle-img--waves,
.circle-img--curl {
  background: #0e0b09; /* fond sombre neutre derrière l'image */
}

/* Photo réelle dans le cercle */
.circle-img__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top; /* centré sur le visage/cheveux */
  border-radius: 50%;
  transition: transform 0.55s var(--ease), filter 0.55s ease;
  display: block;
  /* Legère amélioration contraste pour rendu luxe */
  filter: contrast(1.03) saturate(0.95);
}

/* Hover : zoom léger + glow premium */
.circle-img:hover .circle-img__photo {
  transform: scale(1.04);
  filter: contrast(1.05) saturate(1.0) brightness(1.04);
}

/* Glow champagne au hover — plus subtil que avant */
.circle-img:hover {
  box-shadow:
    0 0 0 1.5px rgba(200,169,110,0.35),
    0 20px 60px rgba(0,0,0,0.55),
    0 0 50px rgba(200,169,110,0.10);
}

/* Supprimer les textes placeholder quand image présente */
.circle-img:has(.circle-img__photo) .circle-img__placeholder {
  display: none;
}

/* Objet-position fine par texture */
.circle-img--straight .circle-img__photo { object-position: center 15%; }
.circle-img--curl     .circle-img__photo { object-position: center 10%; }
.circle-img--waves    .circle-img__photo { object-position: center 12%; }

/* Tailles uniformes garanties */
.circle-col { flex: 0 0 240px; }
.circle-img {
  width: 220px; height: 220px;
}

/* Mobile — tailles uniformes */
@media (max-width: 640px) {
  .circle-col { flex: 0 0 min(210px, 62vw); }
  .circle-img {
    width: min(200px, 60vw);
    height: min(200px, 60vw);
  }
}

/* Alignement vertical parfait des 3 colonnes */
.collections__circles {
  align-items: flex-start;
}

/* ════════════════════════════════════════════════
   BUNDLE PRODUCT CARDS — Real images
   INSTAGRAM SECTION — Premium grid
   ════════════════════════════════════════════════ */

/* ── PRODUCT CARD — Vraies images bundles ──────── */
.product-card__real-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%; /* focus sur les mèches — légèrement vers le bas */
  transition: transform 0.75s var(--ease), filter 0.5s ease;
  display: block;
}
/* Supprime le fond gradient quand image réelle présente */
.product-card__img:has(.product-card__real-img) {
  background: #0e0c0a;
}
/* Hide placeholder text */
.product-card__img:has(.product-card__real-img) .product-card__placeholder {
  display: none;
}
/* Hover zoom élégant */
.product-card:hover .product-card__real-img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* ── INSTAGRAM SECTION ──────────────────────────── */
.insta-section {
  background: var(--black-soft);
  padding: 80px 24px;
  border-top: 1px solid var(--grey-dark);
}
.insta-section__header {
  text-align: center; margin-bottom: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.insta-section__handle {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 300; font-size: 1.5rem;
  letter-spacing: 0.08em; color: var(--white);
  transition: color var(--t-fast);
}
.insta-section__handle:hover { color: var(--champagne); }
.insta-section__icon {
  width: 22px; height: 22px; flex-shrink: 0;
  transition: stroke var(--t-fast);
}
.insta-section__handle:hover .insta-section__icon { stroke: var(--champagne); }
.insta-section__sub {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 300;
  letter-spacing: 0.04em; color: rgba(255,255,255,0.38);
}

/* Instagram grid — 5 tiles */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  max-width: var(--max-w); margin: 0 auto 40px;
}
/* 5th tile spans full width on 2-col */
.insta-tile:nth-child(5) { grid-column: 1 / -1; }

@media (min-width: 640px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* On 3-col, no tile needs to span */
  .insta-tile:nth-child(5) { grid-column: auto; }
  /* Make last 2 tiles take 1 col each, first 3 normal */
}

@media (min-width: 1024px) {
  .insta-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .insta-section { padding: 80px 60px; }
}

/* Individual tile */
.insta-tile {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 1;
  background: var(--black-card);
  display: block;
}
.insta-tile__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
  transition: transform 0.55s var(--ease), filter 0.4s ease;
  filter: brightness(0.92) saturate(0.9);
}
.insta-tile:hover .insta-tile__img {
  transform: scale(1.06);
  filter: brightness(0.7) saturate(0.8);
}
/* Overlay instagram icon */
.insta-tile__overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,169,110,0);
  transition: background 0.4s ease;
}
.insta-tile:hover .insta-tile__overlay {
  background: rgba(200,169,110,0.08);
}
.insta-tile__ig-icon {
  width: 28px; height: 28px; color: var(--white);
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.insta-tile:hover .insta-tile__ig-icon {
  opacity: 1; transform: scale(1);
}

/* CTA */
.insta-section__cta {
  text-align: center;
}
.insta-section__cta .btn {
  display: inline-flex; align-items: center; gap: 10px;
}

/* ── SUPPRIMER ancien social-strip si encore présent ── */
.social-strip { display: none; }

/* ════════════════════════════════════════════════
   INSTAGRAM GRID — 5 PHOTOS + 1 VIDEO (6 tiles)
   Layout : 3×2 desktop | 2×3 mobile
   ════════════════════════════════════════════════ */

/* Override the old 5-tile grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  max-width: var(--max-w); margin: 0 auto 40px;
}

/* Mobile : 2 cols, 3 rows — 5th tile spans 2 cols */
.insta-tile:nth-child(5) { grid-column: 1 / span 1; } /* video — normal on mobile */

@media (min-width: 640px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* 3×2 parfait — aucun tile ne span */
  .insta-tile:nth-child(5) { grid-column: auto; }
}

@media (min-width: 1024px) {
  .insta-grid { gap: 4px; }
  .insta-section { padding: 88px 60px; }
}

/* ── VIDEO TILE ──────────────────────────────────── */
.insta-tile--video {
  position: relative; overflow: hidden; cursor: default;
  aspect-ratio: 1;
  background: var(--black);
}
.insta-tile__video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
  transition: transform 0.55s var(--ease), filter 0.4s ease;
  filter: brightness(0.88);
  transform: scale(1.06); /* crop edges proprement */
}
.insta-tile--video:hover .insta-tile__video {
  transform: scale(1.10);
  filter: brightness(0.65);
}

/* Play badge — discret, toujours visible */
.insta-tile__overlay--video {
  background: rgba(0,0,0,0.18);
  transition: background 0.3s ease;
}
.insta-tile--video:hover .insta-tile__overlay--video {
  background: rgba(200,169,110,0.08);
}
.insta-tile__play-badge {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background 0.3s ease, transform 0.3s ease;
}
.insta-tile--video:hover .insta-tile__play-badge {
  background: rgba(200,169,110,0.25);
  transform: scale(1.1);
}
.insta-tile__play-badge svg { margin-left: 3px; } /* optical center */

/* ── TILES — object-position fine-tuning ─────────── */
.insta-tile:nth-child(1) .insta-tile__img { object-position: center 20%; } /* blazer — focus corps */
.insta-tile:nth-child(2) .insta-tile__img { object-position: center 15%; } /* beauty — focus visage */
.insta-tile:nth-child(3) .insta-tile__img { object-position: center 25%; } /* purple — focus robes */
.insta-tile:nth-child(4) .insta-tile__img { object-position: center 20%; } /* auburn — focus cheveux */
.insta-tile:nth-child(6) .insta-tile__img { object-position: center 10%; } /* dark waves — focus cheveux */

/* ── SECTION HEADER ──────────────────────────────── */
.insta-section__handle {
  font-size: 1.3rem; /* légèrement réduit */
  gap: 8px;
}
@media (min-width: 640px) {
  .insta-section__handle { font-size: 1.6rem; }
}

/* ── HERO VIDEO — DÉZOOM (vidéo 1764×1176 paysage) ── */
/* object-fit:contain → toutes les filles visibles, fond noir camoufle les barres */

/* ════════════════════════════════════════════════
   HERO — LOGIQUE UNIQUE ET DÉFINITIVE
   Desktop : vidéo paysage | Mobile : vidéo contain
   ════════════════════════════════════════════════ */

/* ── Base commune aux deux vidéos ─────────────── */

/* ── DESKTOP (>768px) : vidéo paysage, cover ──── */

.hero__eyebrow { margin-bottom: 10px; }
.hero__tagline { margin-bottom: 20px; font-size: 0.9rem; }
.hero__cta { flex-direction: column; gap: 10px; width: 100%; }
.hero__cta .btn { width: 100%; justify-content: center; text-align: center; }

/* ── Image statique : fallback uniquement ──────── */
.hero__img-wrap--mobile {
  display: none;
}

/* ════════════════════════════════════════════════
   CŒURS HISTOIRE — LOGIQUE UNIQUE ET DÉFINITIVE
   RAF pur, overflow visible, z-index élevé
   ════════════════════════════════════════════════ */

/* Signature TracyB au-dessus des cœurs */
.histoire-signature {
  z-index: 60;
}

/* ── LOGO HEADER ─────────────────────────────── */

/* ════════════════════════════════════════════════
   SECTION NOTRE HISTOIRE — CSS COMPLET PREMIUM
   Photo TracyB · Cœurs · Signature · Texte
   ════════════════════════════════════════════════ */

/* ── Section ───────────────────────────────────── */
.histoire-section {
  background: var(--black);
  padding: 72px 24px 80px;
  border-top: 1px solid var(--grey-dark);
}

/* ── Header ────────────────────────────────────── */
.histoire-header {
  text-align: center;
  margin-bottom: 52px;
}

/* ── Body layout ───────────────────────────────── */
.histoire-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Photo wrapper ─────────────────────────────── */
.histoire-photo-wrap {
  width: 100%;
  max-width: 340px;   /* taille premium sur mobile */
  margin: 0 auto;
}

/* ── Photo frame — le conteneur de l'image + cœurs ── */
.histoire-photo-frame {
  position: relative;    /* ← obligatoire : containing block des cœurs */
  overflow: hidden;      /* ← clip au bord de la photo */
  border-radius: 2px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(200,169,110,0.12);
  /* PAS d'isolation:isolate ← cause des bugs z-index Safari */
}

/* ── L'image ───────────────────────────────────── */
.histoire-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center 15%;
  filter: contrast(1.02) brightness(0.97);
  transition: transform 0.8s ease;
}
.histoire-photo-frame:hover .histoire-photo {
  transform: scale(1.03);
}

/* ── Gradient overlay bas ───────────────────────── */
.histoire-photo-grad {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(8,8,8,0.78) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* ── Signature TracyB ───────────────────────────── */
.histoire-signature {
  position: absolute;
  bottom: 18px;
  right: 20px;
  z-index: 60;       /* au-dessus des cœurs (z=50) */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.histoire-signature__script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: rgba(255,255,255,0.93);
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow:
    0 2px 14px rgba(0,0,0,0.5),
    0 0 32px rgba(200,169,110,0.22);
}
.histoire-signature__line {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne));
  margin-top: 5px;
}
.histoire-signature__sub {
  font-family: var(--font-body);
  font-size: 0.33rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  color: rgba(200,169,110,0.65);
  text-transform: uppercase;
  margin-top: 5px;
}

/* ── Texte ─────────────────────────────────────── */
.histoire-text {
  max-width: 560px;
  width: 100%;
  border-left: 1px solid rgba(200,169,110,0.18);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.histoire-text p {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  color: rgba(255,255,255,0.60);
  line-height: 1.95;
}
.histoire-text__sign {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.histoire-text__sign-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--champagne-lt, #e2cfa0);
  letter-spacing: 0.02em;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(200,169,110,0.2));
}

/* ── Desktop : photo gauche, texte droite ────────── */
@media (min-width: 860px) {
  .histoire-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
  .histoire-photo-wrap {
    flex: 0 0 360px;
    max-width: 360px;
    margin: 0;
    position: sticky;
    top: 90px;
  }
  .histoire-text {
    flex: 1;
    max-width: none;
    padding-left: 28px;
    padding-top: 4px;
  }
  .histoire-section {
    padding: 88px 60px;
  }
}

/* ════════════════════════════════════════════════
   NAV DRAWER — LOGO SIDEBAR PREMIUM
   ════════════════════════════════════════════════ */
.nav-drawer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 28px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(200,169,110,0.18);
}
.nav-drawer__logo a {
  display: block;
}
.nav-drawer__logo-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: none;
          drop-shadow(0 0 20px rgba(200,169,110,0.10));
  display: block;
}

/* ════════════════════════════════════════════════
   SECTION GARANTIES & CONFIANCE
   ════════════════════════════════════════════════ */
.garanties-section {
  background: var(--black-soft, #111);
  padding: 80px 24px;
  border-top: 1px solid var(--grey-dark, #1e1e1e);
}
.garanties__header {
  text-align: center;
  margin-bottom: 52px;
}
.garanties__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 860px;
  margin: 0 auto 32px;
}
.garantie-item {
  background: var(--black-card, #141414);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.garantie-item__icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(200,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.garantie-item__icon svg {
  width: 16px; height: 16px;
  stroke: var(--champagne);
}
.garantie-item__title {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--white);
}
.garantie-item__desc {
  font-family: var(--font-body);
  font-size: 0.60rem; font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
}

/* Paiements */
.garanties__payments {
  text-align: center;
  max-width: 860px; margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(200,169,110,0.1);
  background: var(--black-card, #141414);
}
.garanties__payments-label {
  font-family: var(--font-body);
  font-size: 0.46rem; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 14px; display: block;
}
.garanties__payments-badges {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 8px;
}
.pay-chip {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-body);
  font-size: 0.54rem; font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
}
.pay-chip--gold {
  border-color: rgba(200,169,110,0.35);
  color: var(--champagne);
}

/* Desktop : 4 colonnes */
@media (min-width: 640px) {
  .garanties__grid { grid-template-columns: repeat(4, 1fr); }
  .garanties-section { padding: 88px 60px; }
}

/* ════════════════════════════════════════════════
   GARANTIES — CSS DÉFINITIF (sans variables CSS)
   ════════════════════════════════════════════════ */
.garanties-section {
  background: #111111;
  padding: 72px 24px 80px;
  border-top: 1px solid #1e1e1e;
}
.garanties__header { text-align: center; margin-bottom: 48px; }

.garanties__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 860px;
  margin: 0 auto 24px;
}
.garantie-item {
  background: #141414;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.garantie-item__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;   /* empêche le shrink */
  border: 1px solid rgba(200,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;   /* clip tout débordement SVG */
}
/* CRITIQUE : forcer les SVG à 18px dans l'icône */
.garantie-item__icon svg,
.garantie-item__icon > svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
  display: block;
  flex-shrink: 0;
}
.garantie-item__title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1.4;
}
.garantie-item__desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
}

.garanties__payments {
  max-width: 860px;
  margin: 0 auto;
  padding: 18px 20px;
  text-align: center;
  border: 1px solid rgba(200,169,110,0.1);
  background: #141414;
}
.garanties__payments-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.44rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 12px;
  display: block;
}
.garanties__payments-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.pay-chip {
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  font-family: 'Manrope', sans-serif;
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.42);
  white-space: nowrap;
}
.pay-chip--gold {
  border-color: rgba(200,169,110,0.35);
  color: #c8a96e;
}

/* Desktop 4 colonnes */
@media (min-width: 640px) {
  .garanties__grid { grid-template-columns: repeat(4, 1fr); }
  .garanties-section { padding: 88px 60px; }
}

/* ════════════════════════════════════════════════
   NEWSLETTER — CSS DÉFINITIF (sans variables CSS)
   ════════════════════════════════════════════════ */
.nl-section {
  background: #080808;
  border-top: 1px solid rgba(200,169,110,0.15);
  border-bottom: 1px solid rgba(200,169,110,0.08);
  padding: 80px 24px;
}
.nl-section__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.nl-section__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.2;
  margin: 14px 0 18px;
}
.nl-section__title em { font-style: italic; color: #e2cfa0; }
.nl-section__body {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.48);
  line-height: 1.8;
  margin-bottom: 28px;
}
.nl-section__form { margin-bottom: 20px; }
.nl-section__input-wrap {
  display: flex;
  max-width: 400px;
  margin: 0 auto 8px;
  border: 1px solid rgba(200,169,110,0.35);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s ease;
}
.nl-section__input-wrap:focus-within { border-color: #c8a96e; }
.nl-section__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #ffffff;
  min-width: 0;
}
.nl-section__input::placeholder { color: rgba(255,255,255,0.25); }
.nl-section__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 18px;
  background: #c8a96e;
  border: none;
  color: #080808;
  font-family: 'Manrope', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.nl-section__btn svg { width: 12px; height: 12px; flex-shrink: 0; }
.nl-section__btn:hover { background: #e2cfa0; }
.nl-section__privacy {
  font-family: 'Manrope', sans-serif;
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.2);
}
.nl-section__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 20px;
}
.nl-section__perk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.60rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.42);
}
.nl-section__perk-mark { color: #c8a96e; font-size: 0.5rem; }
@media (min-width: 640px) { .nl-section { padding: 96px 40px; } }

/* ════════════════════════════════════════════════
   SUPPORT + GUIDE — BOUTON FLOTTANT & PANNEAUX
   ════════════════════════════════════════════════ */

/* ── FAB principal ────────────────────────────── */
.sfab {
  position: fixed; bottom: 24px; right: 20px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  z-index: 9000;
}
.sfab__menu {
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
  opacity: 0; transform: translateY(8px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
.sfab__menu.is-open {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: all;
}
.sfab__action {
  display: flex; align-items: center; gap: 10px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.sfab__action-label {
  background: rgba(8,8,8,0.94); backdrop-filter: blur(12px);
  border: 1px solid rgba(200,169,110,0.2);
  padding: 9px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.56rem; font-weight: 400; letter-spacing: 0.2em;
  color: #fff; white-space: nowrap;
  transition: border-color 0.2s;
}
.sfab__action:hover .sfab__action-label { border-color: #c8a96e; }
.sfab__action-dot {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.3);
  background: rgba(8,8,8,0.94); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.sfab__action:hover .sfab__action-dot { background: rgba(200,169,110,0.1); border-color: #c8a96e; }
.sfab__main {
  width: 50px; height: 50px; border-radius: 50%;
  background: #c8a96e; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45), 0 0 0 1px rgba(200,169,110,0.3);
  transition: background 0.2s, transform 0.3s ease;
  color: #080808;
}
.sfab__main:hover { background: #e2cfa0; }
.sfab__main.is-open { transform: rotate(45deg); background: #e2cfa0; }
.sfab__icon-plus { display: block; }
.sfab__icon-close { display: none; }
.sfab__main.is-open .sfab__icon-plus { display: none; }
.sfab__main.is-open .sfab__icon-close { display: block; }

/* ── Panneaux communs ──────────────────────────── */
.spanel {
  position: fixed; bottom: 84px; right: 20px;
  width: 300px;
  background: rgba(8,8,8,0.97); backdrop-filter: blur(20px);
  border: 1px solid rgba(200,169,110,0.18);
  display: flex; flex-direction: column;
  max-height: 72vh; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.65);
  z-index: 8900;
  animation: spanelIn 0.28s cubic-bezier(0.34,1.56,0.64,1) both;
}
.spanel[hidden] { display: none; }
@keyframes spanelIn {
  from { opacity:0; transform: translateY(10px) scale(0.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.spanel__head {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.spanel__head-info { display: flex; align-items: center; gap: 10px; }
.spanel__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #c8a96e; flex-shrink: 0;
}
.spanel__title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; color: #fff;
}
.spanel__sub {
  font-family: 'Manrope', sans-serif;
  font-size: 0.48rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.3); margin-top: 1px;
}
.spanel__close {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1); background: none; cursor: pointer;
  color: rgba(255,255,255,0.35); font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.spanel__close:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.spanel__body { overflow-y: auto; flex: 1; }

/* ── Support : FAQ ─────────────────────────────── */
.sfaq {
  padding: 12px 16px; cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.sfaq:hover { background: rgba(255,255,255,0.02); }
.sfaq__q {
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem; font-weight: 400; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.72); transition: color 0.2s;
}
.sfaq__a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.56rem; font-weight: 300; letter-spacing: 0.02em;
  color: rgba(255,255,255,0); line-height: 1.65;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, color 0.3s ease, margin-top 0.2s;
}
.sfaq.is-open .sfaq__a { color: rgba(255,255,255,0.42); max-height: 100px; margin-top: 6px; }
.sfaq.is-open .sfaq__q { color: #c8a96e; }
.spanel__ctas {
  padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 8px; flex-shrink: 0;
}
.spanel__btn {
  flex: 1; padding: 9px 8px; text-align: center; cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 0.5rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid rgba(200,169,110,0.3); color: #c8a96e;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: none; text-decoration: none; transition: background 0.2s;
}
.spanel__btn:hover { background: rgba(200,169,110,0.07); }
.spanel__btn--primary { background: #c8a96e; color: #080808; border-color: #c8a96e; }
.spanel__btn--primary:hover { background: #e2cfa0; }
.spanel__btn svg { flex-shrink: 0; stroke: currentColor; }

/* ── Guide : steps ─────────────────────────────── */
.gstep { padding: 16px; }
.gstep[hidden] { display: none; }
.gprog {
  height: 1px; background: rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.gprog__fill { height: 100%; background: #c8a96e; transition: width 0.4s ease; }
.gquestion {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300; letter-spacing: 0.03em;
  color: #fff; line-height: 1.3; margin-bottom: 4px;
}
.gquestion em { font-style: italic; color: #e2cfa0; }
.ghint {
  font-family: 'Manrope', sans-serif;
  font-size: 0.54rem; font-weight: 300; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.3); margin-bottom: 14px;
}
.gopts { display: flex; flex-direction: column; gap: 6px; }
.gopt {
  padding: 10px 13px; border: 1px solid rgba(255,255,255,0.1);
  background: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; gap: 10px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.gopt:hover { border-color: #c8a96e; background: rgba(200,169,110,0.05); }
.gopt.is-selected { border-color: #c8a96e; background: rgba(200,169,110,0.1); }
.gopt__ico { font-size: 0.9rem; width: 22px; text-align: center; flex-shrink: 0; }
.gopt__text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem; font-weight: 400; letter-spacing: 0.04em; color: rgba(255,255,255,0.72);
}
.gresult { text-align: center; padding: 8px 0; }
.gresult__label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.44rem; letter-spacing: 0.48em; color: #c8a96e;
  text-transform: uppercase; display: block; margin-bottom: 10px;
}
.gresult__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; letter-spacing: 0.06em; color: #fff; margin-bottom: 6px;
}
.gresult__desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.58rem; font-weight: 300; color: rgba(255,255,255,0.45);
  line-height: 1.65; margin-bottom: 16px;
}
.gresult__cta {
  display: block; padding: 11px;
  background: #c8a96e; color: #080808;
  font-family: 'Manrope', sans-serif;
  font-size: 0.52rem; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s; cursor: pointer;
}
.gresult__cta:hover { background: #e2cfa0; }
.gresult__restart {
  display: block; width: 100%; padding: 8px;
  background: none; border: none; cursor: pointer; margin-top: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.5rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); transition: color 0.2s;
}
.gresult__restart:hover { color: rgba(255,255,255,0.55); }
.spanel__guide-nav {
  padding: 10px 16px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.sguide-back {
  font-family: 'Manrope', sans-serif;
  font-size: 0.5rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.3);
  background: none; border: none; cursor: pointer; transition: color 0.2s;
  visibility: hidden;
}
.sguide-back.is-visible { visibility: visible; }
.sguide-back:hover { color: rgba(255,255,255,0.6); }
.sguide-count {
  font-family: 'Manrope', sans-serif;
  font-size: 0.46rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.2);
}

/* Repositionner demo-fab pour ne pas chevaucher */
.demo-fab { bottom: 20px; right: 82px; }

/* Mobile */
@media (max-width: 420px) {
  .spanel { width: calc(100vw - 32px); right: 16px; bottom: 78px; }
  .sfab { right: 16px; }
}

/* ════════════════════════════════════════════════
   NEWSLETTER — VERSION 1 MINIMALISTE CHAMPAGNE
   ════════════════════════════════════════════════ */
.nl-section {
  background: #080808;
  border-top: 1px solid rgba(200,169,110,0.15);
  border-bottom: 1px solid rgba(200,169,110,0.08);
  padding: 80px 24px;
}
.nl-section__inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.nl-section__eyebrow {
  color: #c8a96e;
  margin-bottom: 20px;
  display: block;
}
.nl-section__rule {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #c8a96e, transparent);
  margin: 0 auto 20px;
}
.nl-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.nl-section__title em {
  font-style: italic;
  color: #e2cfa0;
}
.nl-section__sub {
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  line-height: 1.75;
  margin-bottom: 56px;
}

.nl-section__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.nl-section__input-wrap {
  display: flex;
  width: 100%;
  max-width: 400px;
  border: 1px solid rgba(200,169,110,0.3);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.25s ease;
}
.nl-section__input-wrap:focus-within {
  border-color: #c8a96e;
}
.nl-section__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.03em;
  min-width: 0;
}
.nl-section__input::placeholder {
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
}
.nl-section__btn {
  padding: 14px 22px;
  background: #c8a96e;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #080808;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.nl-section__btn:hover {
  background: #e2cfa0;
}
.nl-section__note {
  font-family: 'Manrope', sans-serif;
  font-size: 0.48rem;
  font-weight: 300;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.06em;
}

/* Responsive mobile */
@media (max-width: 480px) {
  .nl-section { padding: 64px 20px; }
  .nl-section__input-wrap { max-width: 100%; }
}

/* ════════════════════════════════════════════════
   FOOTER — LOGO IMAGE (remplace texte script)
   ════════════════════════════════════════════════ */

/* Logo footer transparent — aucun filtre ni mode de fusion */

/* ════════════════════════════════════════════════
   MOBILE PREMIUM — iPhone 17 Pro / Dynamic Island
   ════════════════════════════════════════════════ */

/* Header : éviter le Dynamic Island / Notch */
.site-header {
  padding-top: max(0px, env(safe-area-inset-top));
}

/* Hero : utiliser dvh (dynamic viewport height) pour mobile */
@supports (height: 100dvh) {
  
}

/* Footer : éviter la barre home iOS */
.footer {
  padding-bottom: max(28px, calc(28px + env(safe-area-inset-bottom)));
}

/* Contenus interactifs flottants (FAB, etc.) */
.sfab {
  bottom: max(28px, calc(28px + env(safe-area-inset-bottom)));
}

/* Checkout CTA sticky */
.checkout-cta-sticky {
  padding-bottom: max(16px, calc(16px + env(safe-area-inset-bottom)));
}

/* ── HERO VIDÉO MOBILE — cover parfait ── */
@media (max-width: 768px) {

  /* Hero plein écran dynamic */
  

  /* Vidéo desktop utilisée en mobile : cover strict */
  
  

  

  /* Overlay un peu plus sombre sur mobile pour lisibilité texte */
  

  /* Hero content — padding safe-area */
  

  .hero__cta-group {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .hero__cta {
    width: 100% !important;
    text-align: center !important;
  }

  /* Nav toggle — respect du safe-area */
  .site-header {
    padding-top: max(12px, calc(8px + env(safe-area-inset-top))) !important;
    padding-bottom: 12px !important;
    padding-left: max(16px, calc(16px + env(safe-area-inset-left))) !important;
    padding-right: max(16px, calc(16px + env(safe-area-inset-right))) !important;
  }

}
/* ── LOGO FOOTER — transparent PNG avec filtre blanc ── */
.footer__logo-img,
.footer__brand-img {
  width: 120px;
  height: auto;
  display: block;
  opacity: 0.85;
}
.footer__logo-img:hover,
.footer__brand-img:hover { opacity: 1; }

/* ── PROMO-SALE — texte forcé blanc sur fond noir ── */

/* ════════════════════════════════════════════════════════
   PROMO FIDÉLITÉ — fond forcé noir, texte blanc
   ════════════════════════════════════════════════════════ */
.promo-sale__text {
  padding: 60px 36px;
  background: #080808 !important;
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.promo-sale__label  { color: rgba(255,255,255,0.45) !important; font-size:0.5rem; letter-spacing:0.5em; text-transform:uppercase; margin-bottom:16px; }
.promo-sale__word   { color: #ffffff !important; font-family:'Cormorant Garamond',serif; font-size:clamp(3rem,10vw,6rem); font-weight:300; font-style:italic; letter-spacing:0.04em; line-height:1; margin-bottom:8px; display:block; }
.promo-sale__off    { color: rgba(255,255,255,0.5) !important; font-size:0.78rem; letter-spacing:0.06em; margin-bottom:6px; display:block; }
.promo-sale__code   { color: rgba(255,255,255,0.5) !important; font-size:0.68rem; font-weight:300; letter-spacing:0.04em; line-height:1.7; margin-bottom:28px; display:block; }
.promo-sale__code strong { color:#c8a96e !important; font-weight:500; }

/* ════════════════════════════════════════════════════════
   HERO VIDEO DESKTOP — une seule règle, propre et définitive
   ════════════════════════════════════════════════════════ */

/* ── HERO VIDEO DESKTOP — règle unique définitive ── */

/* ════════════════════════════════════════════════════════
   COLLECTION PAGE — Grille équilibrée 5 produits
   ════════════════════════════════════════════════════════ */
.coll-grid-section {
  padding: 60px 24px 80px;
  background: #0a0a0a;
}
.coll-grid-header {
  text-align: center;
  margin-bottom: 44px;
}
.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .coll-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.coll-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #0e0e0e;
  transition: opacity 0.2s;
  cursor: pointer;
}
.coll-card:hover { opacity: 0.92; }

.coll-card__img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #1a1a1a;
}
.coll-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
  display: block;
}
.coll-card:hover .coll-card__img-wrap img {
  transform: scale(1.04);
}

/* Badges */
.coll-card__badge {
  position: absolute;
  top: 10px; left: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: rgba(8,8,8,0.82);
  color: #fff;
  z-index: 1;
}
.coll-card__badge--new     { background: rgba(200,169,110,0.85); color: #080808; }
.coll-card__badge--premium { background: rgba(8,8,8,0.75); color: #c8a96e; border: 1px solid rgba(200,169,110,0.4); }

/* Infos */
.coll-card__info {
  padding: 14px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.coll-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #fff;
}
.coll-card__desc {
  font-size: 0.58rem;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.coll-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}
.coll-card__price span {
  font-size: 0.58rem;
  color: #c8a96e;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-left: 4px;
}

/* ════════════════════════════════════════════════════════
   PRODUIT PAGE — image non coupée (object-position fix)
   ════════════════════════════════════════════════════════ */
.product-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.5s ease;
  display: block;
  background: #0a0a0a;
}
.product-gallery:hover .product-gallery__img {
  transform: scale(1.02);
}

/* ── Collection placeholder (Closure/Frontale) ── */
.coll-card__placeholder {
  width:100%; height:100%;
  background: linear-gradient(160deg,#141414,#0e0e0e);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:8px;
  border:1px solid rgba(200,169,110,0.1);
}
.coll-card__placeholder span {
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem; font-weight:300; color:rgba(255,255,255,0.3);
  letter-spacing:0.06em;
}
.coll-card__placeholder-sub {
  font-family:'Manrope',sans-serif !important;
  font-size:0.44rem !important; letter-spacing:0.3em !important;
  color:#c8a96e !important; text-transform:uppercase;
}

/* ══ HERO VIDEO — règle unique définitive ══ */

/* ── HERO VIDÉO — desktop et mobile séparés ── */

/* ═══ HERO VIDÉO — solution définitive ═══════════════ */
/* Desktop : cover (plein écran paysage) */

/* Mobile : hero = hauteur auto selon vidéo */
@media (max-width: 768px) {
  
  
  /* Cacher la vidéo desktop sur mobile */
  
  /* Utiliser la vidéo portrait sur mobile */
  
  
  
  .hero__eyebrow { color: #c8a96e !important; }
  .hero__title { color: #fff !important; }
  .hero__lead { color: rgba(255,255,255,0.6) !important; }
}

/* ═════════════════════════════════════════════════════
   HERO MOBILE ELHAIR — correctif 3 modèles, sans recadrage
   La vidéo mobile est déjà exportée en 9:16.
   ═════════════════════════════════════════════════════ */

/* ELHAIR HERO MOBILE SAFE-ZONE V2 — garder les 3 modèles visibles */

/* === ELHAIR HERO MOBILE V3 — SOURCE FORCÉE, AUCUN RECADRAGE DU SUJET === */
@media (max-width: 768px) {
  
  .hero.hero--video 
  
  #elhair-hero-mobile-v3
}

/* ==========================================================
   ELHAIR MOBILE HERO V4 — SOLUTION RADICALE SANS RECADRAGE
   La vidéo garde son ratio naturel : les 3 modèles restent visibles.
   Le texte est placé sous la vidéo, sur fond noir.
   ========================================================== */
@media (max-width: 768px) {
  

  .hero.hero--video 

  

  #elhair-hero-mobile-fullframe-v4

  .hero.hero--video 

  .hero.hero--video 

  .hero.hero--video .hero__logo {
    display: none !important;
  }

  .hero.hero--video .hero__eyebrow,
  .hero.hero--video .hero__tagline,
  .hero.hero--video .hero__cta {
    position: relative !important;
    z-index: 2 !important;
  }
}

/* ── STRATÉGIE !important ──────────────────────────────────────────────
   !important n'est utilisé ici que pour :
   1. header-logo__img-real → surcharge les attributs HTML width/height
   2. Overrides ponctuels documentés ci-dessous
   Tout autre usage inline est une dette technique à résorber.
   ─────────────────────────────────────────────────────────────────────── */

/* ── LOGO HEADER — taille augmentée ── */



/* ════════════════════════════════════════════════════════════════
   ELHAIR — Social Proof System CSS
   Design : discret, luxueux (Apple / Dior / Zara)
════════════════════════════════════════════════════════════════ */

/* ── Bouton favori ❤️ ── */
.elh-fav-btn {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 20;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(8,8,8,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s, border-color 0.2s;
  padding: 0;
}
.elh-fav-btn:hover {
  background: rgba(8,8,8,0.75);
  border-color: rgba(200,169,110,0.4);
}
.elh-fav-btn--active {
  background: rgba(200,169,110,0.12);
  border-color: rgba(200,169,110,0.5);
}
.elh-fav-btn svg { transition: all 0.18s ease; }

/* ── Badge auto (🔥 Très demandé etc) ── */
.elh-auto-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  background: rgba(8,8,8,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-top: 8px;
}
.elh-auto-badge__icon { font-size: 0.75rem; }
.elh-auto-badge__label { letter-spacing: 0.1em; }

/* ── Notification activité — Premium ── */
#elh-activity-notif {
  font-family: 'Manrope', sans-serif;
  font-size: 0.56rem;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin: 14px 0 0;
  background: rgba(200,169,110,0.04);
  border-left: 1px solid rgba(200,169,110,0.25);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#elh-activity-notif::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #c8a96e;
  flex-shrink: 0;
  animation: elhPulse 2.5s ease infinite;
}
@keyframes elhPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.8);
  }
}

/* ── Toast achats récents — Luxe ── */
#elh-orders-ticker {
  position: fixed;
  bottom: 32px;
  left: 24px;
  z-index: 500;
  pointer-events: none;
  width: 300px;
  max-width: calc(100vw - 48px);
}

.elh-order-notif {
  background: #111;
  border: 1px solid #D6B77A;
  border-radius: 16px;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.55),
    0 1px 4px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(214,183,122,0.06);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  animation: toastIn 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.elh-order-notif.is-hiding {
  animation: toastOut 0.4s ease forwards;
}

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

@keyframes toastOut {
  to { opacity: 0; transform: translateX(-12px); }
}

.elh-order-dot {
  flex-shrink: 0;
  margin-top: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5CB85C;
  box-shadow: 0 0 0 3px rgba(92,184,92,0.18);
}

.elh-order-body { display: flex; flex-direction: column; gap: 1px; }

.elh-order-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.44rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #D6B77A;
  margin-bottom: 4px;
}

.elh-order-who {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}

.elh-order-product {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

.elh-order-time {
  font-family: 'Manrope', sans-serif;
  font-size: 0.44rem;
  color: rgba(255,255,255,0.28);
  margin-top: 5px;
  letter-spacing: 0.04em;
}
.elh-order-txt strong {
  color: #fff;
  font-weight: 500;
}

/* ── Dashboard admin — Marketing Analytics ── */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}
.analytics-card {
  background: #0e0b08;
  border: 1px solid #1a1a1a;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.analytics-card__icon { font-size: 1.1rem; opacity: 0.7; }
.analytics-card__label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.44rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.analytics-card__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
.analytics-card__delta {
  font-size: 0.5rem;
  color: #6ee8a0;
  font-family: 'Manrope', sans-serif;
}
.analytics-card__delta--down { color: #e87575; }

/* Graphique bar simple */
.elh-bar-chart { display: flex; flex-direction: column; gap: 6px; }
.elh-bar-row { display: flex; align-items: center; gap: 10px; }
.elh-bar-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.52rem;
  color: rgba(255,255,255,0.4);
  width: 100px;
  flex-shrink: 0;
}
.elh-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.elh-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #9a7d4a, #c8a96e);
  border-radius: 2px;
  transition: width 0.8s ease;
}
.elh-bar-val {
  font-size: 0.52rem;
  color: #c8a96e;
  font-family: 'Manrope', sans-serif;
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

/* Graphique 7 jours (sparkline) */
.elh-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
}
.elh-spark-bar {
  flex: 1;
  background: rgba(200,169,110,0.25);
  border-radius: 1px 1px 0 0;
  transition: height 0.6s ease, background 0.2s;
  min-width: 8px;
}
.elh-spark-bar:last-child { background: #c8a96e; }
.elh-spark-bar:hover { background: rgba(200,169,110,0.6); }

/* Section analytics */
.analytics-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.44rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c8a96e;
  margin: 20px 0 12px;
}

/* ════════════════════════════════════════════════════════════════
   HERO — Définition unique officielle (ne pas dupliquer)
   Source : ChatGPT v4 + corrections ELHAIR 16/07/2026
════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: #080808;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video--mobile { display: none; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,8,8,0.75) 100%);
  z-index: 1;
}
.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 24px 40px;
}

@media (max-width: 768px) {
  
  .hero__video--mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }
}


/* Texte de promo doré dans le bandeau défilant */
.marquee__item--promo {
  color: #C8A96E !important;
  font-weight: 500;
}
.marquee__item--promo 

/* ═══════════════════════════════════════════════════════════════════
   HERO, LOGO ET TOAST — BLOC OFFICIEL UNIQUE
   Ne pas dupliquer. Toutes les surcharges hero/logo/toast ici.
   Toast fictif (demo) : désactiver showDemoOrders avant production.
═══════════════════════════════════════════════════════════════════ */

.site-header .header-logo__img-real {
  display: block !important;
  width: auto !important;
  height: 170px !important;
  max-width: 320px !important;
  object-fit: contain !important;
  opacity: 0.95;
}

.hero__media {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #080808;
}

.hero__video,
.hero__video--desktop,
.hero__video--mobile {
  position: absolute !important;
  inset: 0 !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (min-width: 769px) {
  .hero__video--desktop {
    display: block !important;
    transform: scale(1.04); /* cadrage léger : évite le sur-zoom */
  }

  .hero__video--mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .site-header .header-logo__img-real {
    height: 142px !important;
    max-width: 240px !important;
  }

  .hero__video--desktop {
    display: none !important;
  }

  .hero__video--mobile {
    display: block !important;
    transform: none !important;
  }

  #elh-orders-ticker {
    left: 16px;
    right: auto;
    bottom: calc(96px + env(safe-area-inset-bottom));
    width: min(300px, calc(100vw - 88px));
    max-width: none;
    z-index: 900;
  }

  .elh-order-notif {
    padding: 12px 14px;
    border-radius: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CORRECTIF V23 — AUTH MOBILE + LOGO HEADER RECADRÉ
   Source unique ajoutée en fin de feuille pour éviter les conflits.
═══════════════════════════════════════════════════════════════ */
.site-header .header-logo {
  width: 150px !important;
  height: 86px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}
.site-header .header-logo picture {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  align-items: center !important;
  justify-content: center !important;
}
.site-header .header-logo__img-real {
  display: block !important;
  width: 138px !important;
  height: auto !important;
  max-width: none !important;
  max-height: 72px !important;
  object-fit: contain !important;
  opacity: 1 !important;
}

/* Les panneaux d'authentification sont pilotés uniquement par is-active. */
.auth-panel {
  display: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.auth-panel.is-active {
  display: block !important;
}
.auth-panel .auth-form,
.auth-panel.is-active .auth-form,
#reg-step1,
#loginForm,
#registerForm {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

@media (max-width: 768px) {
  .site-header .header-logo {
    width: 132px !important;
    height: 76px !important;
  }
  .site-header .header-logo__img-real {
    width: 122px !important;
    height: auto !important;
    max-height: 62px !important;
  }
  .auth-page {
    min-height: calc(100dvh - 120px) !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   CORRECTIF V24 — ONGLETS AUTH FIABLE + LOGO PLUS GRAND
═══════════════════════════════════════════════════════════════ */
.site-header .header-logo {
  width: 230px !important;
  height: 100px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}
.site-header .header-logo picture {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.site-header .header-logo__img-real {
  width: 210px !important;
  height: auto !important;
  max-width: none !important;
  max-height: 92px !important;
  object-fit: contain !important;
  opacity: 1 !important;
}
#authLogin.auth-panel,
#authRegister.auth-panel {
  display: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
#authLogin.auth-panel.is-active,
#authRegister.auth-panel.is-active {
  display: block !important;
}
#authLogin .auth-form,
#authRegister .auth-form {
  display: flex !important;
  flex-direction: column !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
#authRegister #reg-step1 { display: block !important; }
@media (max-width: 768px) {
  .site-header .header-logo {
    width: 198px !important;
    height: 92px !important;
  }
  .site-header .header-logo__img-real {
    width: 180px !important;
    max-height: 82px !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   CORRECTIF V25 — HERO MOBILE SANS SUR-ZOOM
   La vidéo reste entière; le fond couvre le cadre pour éviter les bandes nettes.
═══════════════════════════════════════════════════════════════ */
@media (min-width: 769px) {
  .hero__video--desktop {
    transform: scale(1.04) !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}
@media (max-width: 768px) {
  .hero__media {
    background:
      linear-gradient(rgba(8,8,8,.18), rgba(8,8,8,.18)),
      url('../img/elhair-hero-poster.webp') center center / cover no-repeat !important;
  }
  .hero__video--mobile {
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
    background: transparent !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   CORRECTIF V26 — HERO MOBILE UNIQUE, SANS DOUBLE COUCHE
   Une seule vidéo 5:4 en pleine largeur, puis le contenu sur fond noir.
   Aucun poster/background agrandi derrière la vidéo.
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero.hero--video {
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: #080808 !important;
  }

  .hero.hero--video .hero__media {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 5 / 4 !important;
    overflow: hidden !important;
    background: #080808 !important;
  }

  .hero.hero--video .hero__video--desktop {
    display: none !important;
  }

  .hero.hero--video .hero__video--mobile {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    background: #080808 !important;
  }

  .hero.hero--video .hero__overlay {
    display: none !important;
  }

  .hero.hero--video .hero__content {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    padding: 30px 20px 34px !important;
    background: #080808 !important;
    z-index: 2 !important;
  }

  .hero.hero--video .hero__eyebrow,
  .hero.hero--video .hero__tagline,
  .hero.hero--video .hero__cta {
    position: relative !important;
    z-index: 2 !important;
  }
}

/* Le toast d'achats fictifs est retiré de la version de production. */
#elh-orders-ticker { display: none !important; }


/* V29 — fiche produit mobile : image complète, sans recadrage */
@media (max-width: 768px) {
  .product-gallery {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  .product-gallery > picture {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }
  .product-gallery__img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   V31 — OPTIMISATION DESKTOP / MAC
   Hero éditorial en split-screen + grille Instagram 4 colonnes.
   Le mobile reste inchangé.
═══════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  /* Header desktop plus net et moins envahissant */
  .site-header {
    min-height: 104px !important;
  }
  .site-header .header-logo {
    width: 220px !important;
    height: 96px !important;
  }
  .site-header .header-logo__img-real {
    width: 200px !important;
    max-height: 86px !important;
  }

  /* Hero desktop : vidéo 5:4 à gauche, contenu commercial à droite */
  .hero.hero--video {
    display: grid !important;
    grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.85fr) !important;
    width: 100% !important;
    height: min(760px, calc(100svh - 104px)) !important;
    min-height: 620px !important;
    max-height: 760px !important;
    background: #080808 !important;
    overflow: hidden !important;
  }
  .hero.hero--video .hero__media {
    position: relative !important;
    inset: auto !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    background: #080808 !important;
  }
  .hero.hero--video .hero__video--desktop {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: scale(1.01) !important;
  }
  .hero.hero--video .hero__video--mobile {
    display: none !important;
  }
  .hero.hero--video .hero__overlay {
    display: block !important;
    position: absolute !important;
    inset: 0 auto 0 0 !important;
    width: calc(100% * 1.65 / 2.5) !important;
    background: linear-gradient(90deg, transparent 58%, rgba(8,8,8,.38) 100%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }
  .hero.hero--video .hero__content {
    position: relative !important;
    inset: auto !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    width: 100% !important;
    height: 100% !important;
    padding: 64px clamp(36px, 4vw, 72px) !important;
    background: #080808 !important;
    text-align: left !important;
    z-index: 2 !important;
  }
  .hero.hero--video .hero__logo {
    display: none !important;
  }
  .hero.hero--video .hero__eyebrow {
    margin: 0 0 22px !important;
    font-size: .72rem !important;
    letter-spacing: .34em !important;
    color: #c8a96e !important;
  }
  .hero.hero--video .hero__tagline {
    max-width: 420px !important;
    margin: 0 0 36px !important;
    font-size: clamp(1.55rem, 2.4vw, 2.65rem) !important;
    line-height: 1.18 !important;
    color: #fff !important;
  }
  .hero.hero--video .hero__cta {
    display: flex !important;
    flex-direction: column !important;
    width: min(100%, 360px) !important;
    gap: 12px !important;
  }
  .hero.hero--video .hero__cta .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .hero.hero--video .hero__scroll {
    display: none !important;
  }

  /* Instagram desktop : 4 contenus = 4 colonnes, aucune case vide */
  .insta-section {
    padding: 96px clamp(36px, 5vw, 80px) !important;
  }
  .insta-grid,
  .insta-grid.insta-grid--5 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    max-width: 1280px !important;
    margin: 0 auto 44px !important;
  }
  .insta-grid .insta-tile,
  .insta-grid .insta-tile--video {
    grid-column: auto !important;
    aspect-ratio: 4 / 5 !important;
    border: 1px solid rgba(200,169,110,.12) !important;
  }
  .insta-grid .insta-tile__img,
  .insta-grid .insta-tile__video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    transform: none !important;
  }
  .insta-grid .insta-tile:hover .insta-tile__img,
  .insta-grid .insta-tile--video:hover .insta-tile__video {
    transform: scale(1.035) !important;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .hero.hero--video {
    height: 720px !important;
    min-height: 620px !important;
  }
  .hero.hero--video .hero__video--desktop {
    transform: none !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  .insta-grid,
  .insta-grid.insta-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .insta-grid .insta-tile,
  .insta-grid .insta-tile--video {
    grid-column: auto !important;
    aspect-ratio: 4 / 5 !important;
  }
}


/* ═══════════════════════════════════════════════════
   BLOC DIAGNOSTIC IA — ELHAIR COUTURE
═══════════════════════════════════════════════════ */
.ia-bloc {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050403;
  border-top: 1px solid rgba(200,169,110,0.08);
  border-bottom: 1px solid rgba(200,169,110,0.08);
}
.ia-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(200,169,110,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 0%, transparent 100%);
}
.ia-glow {
  position: absolute;
  width: 800px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(200,169,110,0.09) 0%, transparent 60%);
  pointer-events: none;
  animation: iaGlowPulse 10s ease-in-out infinite alternate;
}
@keyframes iaGlowPulse {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}
.ia-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  pointer-events: none;
}
.ia-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}
.ia-orb-ring--1 {
  inset: 0;
  border-top-color: rgba(200,169,110,0.5);
  border-right-color: rgba(200,169,110,0.15);
  animation: orbSpin 14s linear infinite;
}
.ia-orb-ring--2 {
  inset: 30px;
  border-bottom-color: rgba(200,169,110,0.3);
  animation: orbSpin 22s linear infinite reverse;
}
.ia-orb-ring--3 {
  inset: 60px;
  border-top-color: rgba(200,169,110,0.12);
  animation: orbSpin 30s linear infinite;
}
@keyframes orbSpin {
  to { transform: rotate(360deg); }
}
.ia-orb-center {
  position: absolute;
  inset: 100px;
  border-radius: 50%;
  background: rgba(200,169,110,0.05);
  border: 1px solid rgba(200,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: rgba(200,169,110,0.7);
  animation: iaCenterPulse 3s ease-in-out infinite;
}
@keyframes iaCenterPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.07); opacity: 1; }
}
.ia-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(to right, transparent, rgba(200,169,110,0.25) 50%, transparent);
  animation: iaScanMove 5s ease-in-out infinite;
}
@keyframes iaScanMove {
  0% { top: 20%; opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { top: 80%; opacity: 0; }
}
.ia-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 32px;
  max-width: 700px;
}
.ia-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.ia-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid rgba(200,169,110,0.18);
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ia-tag--live {
  color: rgba(200,169,110,0.7);
  background: rgba(200,169,110,0.04);
}
.ia-tag--beta {
  color: rgba(245,240,232,0.3);
  border-color: rgba(245,240,232,0.1);
  background: transparent;
  font-style: italic;
}
.ia-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ee8a0;
  flex-shrink: 0;
  animation: iaDotPulse 2s ease-in-out infinite;
}
@keyframes iaDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.ia-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.5);
  margin-bottom: 10px;
  display: block;
}
.ia-script {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: rgba(200,169,110,0.72);
  margin-bottom: 4px;
  display: block;
}
.ia-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 3.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F5F0E8;
  margin-bottom: 22px;
  line-height: 1.1;
  display: block;
}
.ia-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.92rem, 2.2vw, 1.1rem);
  color: rgba(245,240,232,0.42);
  max-width: 540px;
  line-height: 1.95;
  margin: 0 auto 40px;
  display: block;
}
.ia-stats {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.ia-stat {
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid rgba(200,169,110,0.1);
}
.ia-stat:last-child {
  border-right: none;
}
.ia-stat-val {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #C8A96E;
  line-height: 1;
}
.ia-stat-lbl {
  display: block;
  margin-top: 5px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.28);
}
.ia-cta {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #050403;
  background: #C8A96E;
  border: none;
  padding: 18px 52px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: opacity 0.25s;
}
.ia-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.28) 50%, transparent 65%);
  transition: left 0s;
}
.ia-cta:hover::after {
  left: 160%;
  transition: left 0.55s ease;
}
.ia-cta:hover {
  opacity: 0.9;
}
.ia-note {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.18);
  margin-top: 14px;
}
.ia-model-tag {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  border: 1px solid rgba(200,169,110,0.1);
  padding: 9px 20px;
  background: rgba(5,4,3,0.88);
  backdrop-filter: blur(12px);
}
.ia-model-txt {
  font-family: 'Manrope', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.45);
}
.ia-model-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #C8A96E;
}
@media (max-width: 768px) {
  .ia-orb { width: 260px; height: 260px; }
  .ia-orb-center { inset: 78px; font-size: 1.6rem; }
  .ia-model-tag { display: none; }
  .ia-stat { padding: 0 16px; }
}

/* ── Badge "Bientôt disponible" — Variante A ── */
.ia-badge-a {
  display: inline-block;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 7px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(200,169,110,0.48);
  letter-spacing: 0.05em;
}
.ia-badge-a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,169,110,0.28), transparent);
}
