/* ============================================================
   makrea'afrik — CSS Client v2
   Charte 2026 · Maison Lewoutsek — ART · HERITAGE · TRANSMISSION
   Couleurs : Navy #15244F | Dore #C49A4E | Creme #F5F1E8
   Polices  : Great Vibes (signature) | Cinzel (titres) | Cormorant Garamond (headings alt) | DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Reset & Variables ──────────────────────────────────── */
:root {
  /* ═══════════════════════════════════════════════════════
     CHARTE 2026 — MAISON LEWOUTSEK · Makréa
     ART · HÉRITAGE · TRANSMISSION

     3 couleurs principales :
       ▌ Bleu marine #15244F (primaire)
       ▌ Doré      #C49A4E (accent / luxe)
       ▌ Crème     #F5F1E8 (fond clair)

     Les noms historiques (--brown, --green, --gold...) sont conservés
     mais remappés sur la nouvelle palette pour compatibilité.
     ═══════════════════════════════════════════════════════ */

  /* Anciennement "brun" → désormais doré (accents, CTA, liens) */
  --brown:     #C49A4E;
  --brown-lt:  #E0B95B;
  --brown-dk:  #15244F;     /* mappé sur navy pour textes foncés et titres */

  /* Anciennement "vert" → désormais navy (cohérence sections sombres) */
  --green:     #2A3D6E;     /* navy médian */
  --green-lt:  #0F1A3A;     /* navy le plus profond (hero, footers) */
  --green-dk:  #15244F;     /* navy principal */

  /* Bleus tech (outils admin, info) */
  --blue:      #2A3D6E;
  --blue-lt:   #4A5D8E;
  --blue-dk:   #0F1A3A;

  /* Crèmes & contrastes */
  --cream:     #F5F1E8;     /* fond crème principal (matche le tagline OR sur navy) */
  --cream-dk:  #E8E0CC;
  --cream-dkk: #D8CBBA;
  --black:     #0A0F1F;     /* navy très profond — quasi-noir intelligent */
  --white:     #FFFFFF;

  /* Statuts (inchangés sémantiquement) */
  --success:   #2e9159;
  --error:     #B91C1C;
  --warning:   #92400E;

  /* ── Alias sémantiques — rebound ───────────────────── */
  --gold:      #C49A4E;     /* DORÉ AUTHENTIQUE (était #15244F brun) */
  --gold-lt:   #E0B95B;
  --gold-dk:   #8A6E2C;
  --deep:      #15244F;     /* navy primaire */
  --rust:      #C49A4E;     /* mappe au doré pour accents */
  --warm-dk:   #0F1A3A;     /* navy le plus sombre */
  --warm-md:   #15244F;     /* navy */
  --warm-lt:   #8A6E2C;     /* doré foncé pour texte */

  /* ── Nouveaux tokens explicites (à utiliser en priorité dans le nouveau code) ── */
  --navy:      #15244F;
  --navy-dk:   #0F1A3A;
  --navy-md:   #2A3D6E;
  --navy-lt:   #4A5D8E;

  --font-title: 'Great Vibes', cursive;
  --font-head: 'Cinzel', serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 2px 16px rgba(13, 12, 10, .08);
  --shadow-lg: 0 8px 32px rgba(13, 12, 10, .14);
  --transition: 0.22s ease;

  --container: 1280px;
  --header-h: 90px;

  /* ── Breakpoints (référence) ──
     xs: 0-479px    (très petits mobiles)
     sm: 480-767px  (mobiles)
     md: 768-1023px (tablettes)
     lg: 1024-1279px (small desktop)
     xl: 1280px+   (desktop)
  */
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;

  /* Touch target minimum (Apple HIG / Material) */
  --touch-target: 44px;
}

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

ul,
ol {
  list-style: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown-dk);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Conteneur ──────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typographie ────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-dk);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.3rem;
}

/* Classe spéciale Great Vibes pour titres éditoriaux */
.title-script {
  font-family: var(--font-title);
  font-weight: 400;
  color: var(--brown);
}

.prix,
.prix-actuel,
.prix-principal {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--green);
}

.prix-barre {
  font-family: var(--font-mono);
  text-decoration: line-through;
  color: var(--brown-lt);
  font-size: .9em;
}

/* ── Boutons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .08em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn--primary {
  background: var(--brown);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--brown);
  color: var(--brown);
}

.btn--outline:hover {
  background: var(--brown);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--cream-dk);
  color: var(--brown-lt);
}

.btn--ghost:hover {
  border-color: var(--brown);
  color: var(--brown);
}

.btn--blue {
  background: var(--blue);
  color: white;
}

.btn--blue:hover {
  background: var(--blue-dk);
}

.btn--danger-ghost {
  background: transparent;
  border: 1.5px solid var(--error);
  color: var(--error);
}

.btn--danger-ghost:hover {
  background: var(--error);
  color: #fff;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--sm {
  padding: .4rem 1rem;
  font-size: .75rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: .95rem;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ── Flash messages ─────────────────────────────────────── */
.flash {
  position: fixed;
  top: calc(var(--header-h) + 1rem);
  right: 1.5rem;
  z-index: 9999;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 280px;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  animation: slideIn .3s ease;
  font-weight: 500;
}

.flash--success {
  background: #F0FDF4;
  border-left: 4px solid #16A34A;
  color: #166534;
}

.flash--error {
  background: #FEF2F2;
  border-left: 4px solid #DC2626;
  color: #991B1B;
}

.flash--warning {
  background: #FFFBEB;
  border-left: 4px solid #D97706;
  color: #92400E;
}

.flash__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  margin-left: auto;
  opacity: .6;
}

.flash__close:hover {
  opacity: 1;
}

@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

/* ── Header ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(245, 239, 230, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(21, 36, 79, .12);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

.logo__img {
  height: 90px;        /* s'adapte à --header-h (90px) avec marge */
  width: auto;          /* pas de largeur fixe → pas de déformation */
  max-width: 220px;     /* garde-fou si l'image est très large */
  object-fit: contain;
  display: block;
}

.logo__img--footer {
  width: 180px;
  height: auto;
}

/* Nav */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.nav__link {
  padding: .5rem 1rem;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
  color: var(--brown-dk);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--brown);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__link--promo {
  color: var(--blue);
  font-weight: 600;
}

/* Dropdown */
.nav__item--dropdown {
  position: relative;
}

.nav__item--dropdown:hover .dropdown,
.nav__item--dropdown:hover .megamenu,
.nav__item--dropdown:focus-within .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ── Mega-menu catégories (6 colonnes) ─────────────── */
.nav__item--mega { position: static; }

.megamenu {
  position: absolute;
  left: 50%;
  top: calc(100% + 1rem);
  transform: translateX(-50%) translateY(-8px);
  width: min(1100px, 95vw);
  background: #fff;
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg, 8px);
  box-shadow: 0 24px 50px -16px rgba(15, 26, 58, .25);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition, .25s ease);
  z-index: 1000;
  overflow: hidden;
  font-family: var(--font-sans, system-ui, sans-serif);
}

/* Petit liseré doré en haut */
.megamenu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C49A4E 30%, #C49A4E 70%, transparent);
}

.megamenu__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem 2rem;
  padding: 1.75rem 2rem 1.25rem;
}

.megamenu__col-title {
  font-family: var(--font-head, 'Cormorant Garamond', serif);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #C49A4E;
  margin: 0 0 .85rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid var(--cream-dk, #E8D9BD);
}

.megamenu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.megamenu__link {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .5rem;
  margin: 0 -.5rem;
  border-radius: 5px;
  font-size: .87rem;
  color: var(--brown-dk, #0F1A3A);
  text-decoration: none;
  line-height: 1.3;
  transition: background .15s ease, color .15s ease;
}

.megamenu__link:hover {
  background: var(--cream, #faf4e8);
  color: #15244F;
}

.megamenu__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(15, 26, 58, .08);
}

.megamenu__name {
  flex: 1;
  min-width: 0;
}

.megamenu__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  padding: 1px 6px;
  background: var(--cream-dk, #E8D9BD);
  color: var(--brown-dk, #0F1A3A);
  font-size: .68rem;
  font-weight: 600;
  border-radius: 999px;
}

.megamenu__link:hover .megamenu__count {
  background: #C49A4E;
  color: #F5F1E8;
}

.megamenu__footer {
  border-top: 1px solid var(--cream-dk);
  background: var(--cream, #faf4e8);
  padding: .85rem 2rem;
  display: flex;
  justify-content: flex-end;
}

.megamenu__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--brown-dk, #0F1A3A);
  font-weight: 600;
  font-size: .82rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .2s, transform .2s;
}

.megamenu__cta:hover {
  color: #C49A4E;
  transform: translateX(3px);
}

/* Mobile : on cache le mega-menu (nav latérale prendra le relais) */
@media (max-width: 960px) {
  .megamenu { display: none; }
}

.dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dk);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  min-width: 260px;
  z-index: 100;
}

.dropdown__inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.dropdown__link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem .75rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-family: var(--font-body);
  transition: background var(--transition);
  color: var(--brown-dk);
}

.dropdown__link:hover {
  background: var(--cream);
  color: var(--brown);
}

.dropdown__icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dropdown__link small {
  margin-left: auto;
  font-size: .75rem;
  color: var(--brown-lt);
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.header__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: background var(--transition);
  color: var(--brown-dk);
}

.header__icon:hover {
  background: var(--cream-dk);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--brown);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-connexion {
  padding: .5rem 1.25rem;
  background: var(--brown);
  color: white;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.btn-connexion:hover {
  background: var(--green);
}

/* Search */
.search-form {
  display: flex;
  align-items: center;
  background: var(--cream-dk);
  border-radius: 100px;
  overflow: hidden;
}

.search-form__input {
  border: none;
  background: none;
  padding: .5rem 1rem;
  font-size: .85rem;
  width: 180px;
  outline: none;
  color: var(--brown-dk);
}

.search-form__btn {
  border: none;
  background: none;
  cursor: pointer;
  padding: .5rem .75rem;
  color: var(--brown-lt);
}

/* User dropdown */
.header__user {
  position: relative;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dk);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  overflow: hidden;
}

.header__user:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown__name {
  display: block;
  padding: .75rem 1rem;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: .85rem;
  border-bottom: 1px solid var(--cream-dk);
  color: var(--brown-dk);
}

.user-dropdown a {
  display: block;
  padding: .65rem 1rem;
  font-size: .9rem;
  transition: background var(--transition);
  color: var(--brown-dk);
}

.user-dropdown a:hover {
  background: var(--cream);
  color: var(--brown);
}

.user-dropdown .logout {
  color: var(--error);
  border-top: 1px solid var(--cream-dk);
  margin-top: .25rem;
}

/* Promo bandeau */
.promo-bandeau {
  background: var(--green);
  color: var(--cream);
  text-align: center;
  padding: .45rem;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.promo-bandeau~.header {
  top: 32px;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dk);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Notification dot */
.notif-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  border: 2px solid var(--cream);
}

/* ── Main ───────────────────────────────────────────────── */
.main {
  margin-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
}

/* ── Sections communes ──────────────────────────────────── */
.section {
  padding: 5rem 0;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section__eyebrow {
  font-family: var(--font-head);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--brown);
  margin-bottom: .5rem;
  display: block;
}

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section__cta {
  color: var(--brown);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section__cta:hover {
  color: var(--green);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dk) 0%, #0F1A3A 50%, var(--green) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(21, 36, 79, .2) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(12, 122, 224, .1) 0%, transparent 50%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 2rem;
}

/* ── Hero split layout (texte gauche · image droite) ─── */
.hero--split .hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  width: 100%;
  min-height: calc(100vh - 100px);
}

.hero--split .hero__text {
  text-align: left;
  max-width: 580px;
}

.hero--split .hero__title {
  text-align: left;
}

.hero--split .hero__sub {
  text-align: left;
  max-width: 100%;
}

.hero--split .hero__actions {
  justify-content: flex-start;
}

/* Visuel droite — image grand format, s'adapte au ratio naturel */
.hero__visual {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.hero__visual-deco {
  position: absolute;
  inset: -3rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 78, .15) 0%, transparent 65%);
  z-index: 0;
  animation: heroDecoFloat 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroDecoFloat {
  0%   { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.05) rotate(6deg); }
}

.hero__visual-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(196, 154, 78, .25),
    0 0 80px -20px rgba(196, 154, 78, .35);
  transition: transform .5s var(--ease, ease);
  z-index: 1;
  background: #0F1A3A;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero__visual-frame:hover { transform: translateY(-4px); }

.hero__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Fallback si pas d'image — on force le ratio 4:5 pour avoir une carte propre */
.hero__visual-frame--fallback {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #C49A4E 0%, #15244F 100%);
  width: 100%;
}
.hero__visual-frame--fallback::after {
  content: 'Photo création\Aà venir';
  white-space: pre;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 241, 232, .65);
  font-family: var(--font-head, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.4;
}

.hero__visual-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background: rgba(15, 26, 58, .85);
  color: #F5F1E8;
  padding: .6rem .95rem;
  border-radius: 4px;
  font-family: var(--font-head, 'Cormorant Garamond', serif);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 154, 78, .35);
  line-height: 1.1;
}

.hero__visual-badge__line {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: #C49A4E;
  margin-bottom: .15rem;
}

.hero__visual-badge strong {
  display: block;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero--split .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
    min-height: auto;
    align-items: center;
  }
  .hero__visual { max-width: 340px; padding: 0; height: auto; }
  .hero__visual-frame { height: auto; aspect-ratio: 4 / 5; }
  .hero--split .hero__text { text-align: center; margin: 0 auto; }
  .hero--split .hero__title,
  .hero--split .hero__sub { text-align: center; }
  .hero--split .hero__actions { justify-content: center; }
}

.hero__eyebrow {
  font-family: var(--font-head);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--cream-dk);
  margin-bottom: 1rem;
  display: block;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero__title em {
  color: var(--cream-dk);
  font-style: normal;
}

.hero__subtitle {
  font-family: var(--font-head);
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(245, 239, 230, .7);
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(245, 239, 230, .7);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(245, 239, 230, .4);
  font-family: var(--font-head);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245, 239, 230, .5), transparent);
  animation: scrollLine 1.8s infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1
  }

  50% {
    transform: scaleY(.5);
    opacity: .4
  }
}

/* ── Avantages ──────────────────────────────────────────── */
.advantages {
  background: var(--white);
  padding: 2rem 0;
  border-top: 1px solid var(--cream-dk);
  border-bottom: 1px solid var(--cream-dk);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.advantage {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.advantage svg {
  color: var(--brown);
  flex-shrink: 0;
}

.advantage strong {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brown-dk);
}

.advantage span {
  font-size: .8rem;
  color: var(--brown-lt);
}

/* ── Catégories grid ────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-dk), var(--cream));
}

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(15, 26, 58, .92) 0%,
      rgba(15, 26, 58, .78) 22%,
      rgba(15, 26, 58, .35) 50%,
      rgba(15, 26, 58, 0)   75%);
  /* Le bas reste assez sombre pour garantir la lecture du texte
     quelle que soit la teinte de l'image (claire OU sombre) */
}

.cat-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .6);
}

.cat-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .35rem;
  color: #F5F1E8;
  font-weight: 600;
}

.cat-card__body span {
  display: inline-block;
  font-size: .72rem;
  font-family: var(--font-body);
  background: rgba(196, 154, 78, .9);
  color: #0F1A3A;
  padding: .15rem .55rem;
  border-radius: 999px;
  text-shadow: none;
  font-weight: 600;
  letter-spacing: .05em;
}

/* Petit liseré doré en bas pour structurer */
.cat-card__body::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 78, .6), transparent);
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color var(--transition);
  z-index: 1;
}

.cat-card:hover::before {
  border-color: var(--cat-color, var(--cream));
}

/* ── Cards produits ─────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* Vue liste */
.products-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.products-list .product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
}
.products-list .product-card__img-wrap {
  aspect-ratio: 1 / 1;
  height: 200px;
  width: 200px;
  flex-shrink: 0;
}
.products-list .product-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  gap: .5rem;
}
.products-list .product-card:hover {
  transform: none;
  box-shadow: var(--shadow-lg);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.05);
}

.product-card__actions {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 58, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-card__actions {
  opacity: 1;
}

.product-card__quick {
  background: white;
  color: var(--brown-dk);
  padding: .6rem 1.25rem;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-card__wishlist {
  width: 38px;
  height: 38px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
}

.badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  padding: .25rem .6rem;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.badge--nouveau {
  background: var(--brown);
  color: white;
}

.badge--promo {
  background: var(--blue);
  color: white;
}

.badge--top {
  background: var(--green);
  color: white;
}

.badge--exclu {
  background: var(--green-dk);
  color: var(--cream);
}

.product-card__body {
  padding: 1.25rem;
}

.product-card__cat {
  font-family: var(--font-head);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brown-lt);
  margin-bottom: .35rem;
}

.product-card__name a {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--brown-dk);
}

.product-card__name a:hover {
  color: var(--brown);
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: .35rem 0;
  font-size: .8rem;
  color: var(--brown-lt);
}

.product-card__prix {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
}

.out-of-stock {
  position: absolute;
  inset: 0;
  background: rgba(245, 239, 230, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brown-lt);
}

/* ── Stars ──────────────────────────────────────────────── */
.stars {
  color: var(--brown);
  letter-spacing: 2px;
}

/* ── Section sur mesure ─────────────────────────────────── */
.banner-sur-mesure {
  background: var(--green-dk);
  padding: 5rem 0;
  overflow: hidden;
}

.banner-sur-mesure__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.banner-sur-mesure__text .eyebrow {
  font-family: var(--font-head);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--cream-dk);
  margin-bottom: 1rem;
  display: block;
}

.banner-sur-mesure__text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-family: var(--font-title);
  font-weight: 400;
}

.banner-sur-mesure__text h2 em {
  color: var(--cream-dk);
  font-style: normal;
}

.banner-sur-mesure__text p {
  color: rgba(245, 239, 230, .7);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.banner-sur-mesure {
  position: relative;
}
.banner-sur-mesure::before,
.banner-sur-mesure::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(224, 185, 91, .18) 0%, transparent 60%);
}
.banner-sur-mesure::before { top: -80px; left: -80px; }
.banner-sur-mesure::after  { bottom: -80px; right: -80px; width: 340px; height: 340px; }

.banner-sur-mesure__deco {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bsm-medaillon {
  width: 100%;
  max-width: 400px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(224, 185, 91, .25));
  animation: bsm-rotate 120s linear infinite;
}
.bsm-medaillon:hover { animation-play-state: paused; }
@keyframes bsm-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.deco-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(224, 185, 91, .06) 24px, rgba(224, 185, 91, .06) 25px);
  border-radius: 50%;
}

/* ── Lookbook (slider créations signature) ────────────── */
.lookbook-section {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196, 154, 78, .06), transparent 50%),
    var(--white);
  overflow: hidden;
}

.section__head--center {
  text-align: center;
}

.section__head--center .section__eyebrow,
.section__head--center .section__title {
  text-align: center;
}

.lookbook-intro {
  max-width: 580px;
  margin: 1rem auto 0;
  color: var(--brown-lt, #8A6E2C);
  font-size: 1rem;
  line-height: 1.7;
}

.lookbook-slider {
  position: relative;
  margin-top: 3rem;
}

.lookbook-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 1rem 1.5rem;
  margin: -1rem -1rem -1.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(21, 36, 79, .3) transparent;
}

.lookbook-track::-webkit-scrollbar { height: 6px; }
.lookbook-track::-webkit-scrollbar-track { background: transparent; }
.lookbook-track::-webkit-scrollbar-thumb {
  background: rgba(21, 36, 79, .3);
  border-radius: 3px;
}

.lookbook-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform .35s var(--ease, ease);
}

.lookbook-card:hover { transform: translateY(-6px); }

.lookbook-card__img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream, #faf0d1);
  box-shadow: 0 12px 28px -10px rgba(15, 26, 58, .25);
}

.lookbook-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease, ease);
}

.lookbook-card:hover .lookbook-card__img img { transform: scale(1.05); }

.lookbook-card__img--fallback {
  background:
    linear-gradient(135deg,
      hsl(calc(20 + var(--i, 0) * 30), 45%, 35%),
      hsl(calc(40 + var(--i, 0) * 25), 60%, 22%));
}
.lookbook-card__img--fallback::after {
  content: 'Photo à venir';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 241, 232, .6);
  font-family: var(--font-head, serif);
  font-style: italic;
  font-size: 1rem;
}

.lookbook-card__num {
  position: absolute;
  top: .85rem;
  right: .85rem;
  background: rgba(15, 26, 58, .75);
  color: #C49A4E;
  padding: .3rem .55rem;
  border-radius: 2px;
  font-family: var(--font-head, serif);
  font-size: .72rem;
  letter-spacing: .15em;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.lookbook-card__body {
  padding: 1.1rem .25rem 0;
}

.lookbook-card__type {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #C49A4E;
  font-weight: 600;
}

.lookbook-card__name {
  font-family: var(--font-head, 'Cormorant Garamond', serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--brown-dk, #0F1A3A);
  margin: .25rem 0 .4rem;
  font-weight: 500;
}

.lookbook-card__desc {
  color: var(--brown-lt, #8A6E2C);
  font-size: .85rem;
  line-height: 1.55;
  margin: 0;
}

/* Boutons navigation */
.lookbook-nav {
  position: absolute;
  top: 38%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(21, 36, 79, .2);
  background: rgba(255, 255, 255, .95);
  color: var(--brown-dk, #0F1A3A);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px -4px rgba(15, 26, 58, .25);
  transition: background .2s, transform .2s;
}

.lookbook-nav:hover {
  background: var(--brown-dk, #0F1A3A);
  color: #FFF;
  transform: scale(1.08);
}

.lookbook-nav--prev { left: -8px; }
.lookbook-nav--next { right: -8px; }

.lookbook-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 700px) {
  .lookbook-card { flex: 0 0 240px; }
  .lookbook-nav--prev { left: 0; }
  .lookbook-nav--next { right: 0; }
}

/* ── Fondatrice (Claire Choukem) ─────────────────────── */
.fondatrice-section {
  position: relative;
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(196, 154, 78, .08), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(21, 36, 79, .06), transparent 55%),
    linear-gradient(180deg, #fdfaf3 0%, #f8f2e6 100%);
  overflow: hidden;
}

.fondatrice-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 78, .4), transparent);
}

.fondatrice-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.4fr;
  gap: 4rem;
  align-items: center;
}

.fondatrice-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(15, 26, 58, .35),
    0 0 0 1px rgba(196, 154, 78, .15);
  transform: rotate(-1deg);
  transition: transform .5s var(--ease, ease);
}

.fondatrice-photo:hover { transform: rotate(0deg) scale(1.01); }

.fondatrice-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}

.fondatrice-photo--fallback {
  background:
    linear-gradient(135deg, #15244F 0%, #0F1A3A 100%)
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .25);
  font-family: var(--font-head, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: 1.4rem;
}

.fondatrice-photo--fallback::after {
  content: 'Photo à venir';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fondatrice-photo__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.25rem .85rem;
  background: linear-gradient(0deg, rgba(15, 26, 58, .85) 0%, transparent 100%);
  color: rgba(255, 255, 255, .92);
  font-size: .78rem;
  letter-spacing: .04em;
  font-family: var(--font-head, serif);
  font-style: italic;
}

.fondatrice-text { max-width: 580px; }

.fondatrice-eyebrow {
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .72rem;
  font-weight: 600;
  color: #C49A4E;
  margin: 0 0 .85rem;
}

.fondatrice-title {
  font-family: var(--font-head, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 1.4rem + 2vw, 3.2rem);
  line-height: 1.1;
  font-weight: 500;
  color: var(--brown-dk, #0F1A3A);
  margin: 0 0 1rem;
}

.fondatrice-title em {
  display: block;
  font-style: italic;
  color: #15244F;
  font-weight: 400;
}

.fondatrice-divider {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 0 0 1.5rem;
  color: #C49A4E;
  font-size: .9rem;
}

.fondatrice-divider::before,
.fondatrice-divider::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: currentColor;
  opacity: .45;
}

.fondatrice-divider::after { flex: 1; }

.fondatrice-paragraph {
  font-size: .98rem;
  line-height: 1.75;
  color: var(--brown-dk, #0F1A3A);
  margin: 0 0 1.1rem;
}

.fondatrice-paragraph--lead::first-letter {
  font-family: var(--font-head, 'Cormorant Garamond', serif);
  font-size: 3.4rem;
  font-style: italic;
  font-weight: 500;
  float: left;
  line-height: .9;
  margin: .3rem .5rem 0 0;
  color: #15244F;
}

.fondatrice-paragraph strong {
  color: #15244F;
  font-weight: 600;
  font-style: italic;
}

.fondatrice-signature {
  margin: 1.75rem 0 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid #C49A4E;
  font-family: var(--font-head, 'Cormorant Garamond', serif);
}

.fondatrice-signature__name {
  display: block;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--brown-dk, #0F1A3A);
  line-height: 1;
}

.fondatrice-signature__role {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--brown-lt, #8A6E2C);
  margin-top: .35rem;
  font-family: var(--font-sans, sans-serif);
}

.fondatrice-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  background: var(--brown-dk, #0F1A3A);
  color: #FFF;
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: background .25s, transform .25s, box-shadow .25s;
}

.fondatrice-cta:hover {
  background: #15244F;
  transform: translateX(3px);
  box-shadow: 0 8px 24px -8px rgba(15, 26, 58, .5);
}

@media (max-width: 900px) {
  .fondatrice-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .fondatrice-photo {
    max-width: 360px;
    margin: 0 auto;
    transform: rotate(0deg);
  }
  .fondatrice-section { padding: 4rem 0; }
}

/* ── Valeurs ────────────────────────────────────────────── */
.valeurs-section {
  padding: 5rem 0;
  background: var(--white);
}

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

.valeur {
  text-align: center;
  padding: 2.5rem 2rem;
}

.valeur__num {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--cream-dkk);
  margin-bottom: 1rem;
  display: block;
  font-weight: 400;
}

.valeur h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--brown-dk);
}

.valeur p {
  color: var(--brown-lt);
  line-height: 1.8;
}

/* ── Témoignages ────────────────────────────────────────── */
.temoignages-section {
  background: var(--cream);
}

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

.temoignage {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.temoignage .stars {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.temoignage p {
  font-style: italic;
  color: var(--brown-lt);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.temoignage strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--brown-dk);
}

.temoignage small {
  color: var(--brown-lt);
  font-size: .8rem;
}

/* ── Footer ─────────────────────────────────────────────── */
/* ════════════════════════════════════════════════════════
   FOOTER — design refait, fond vert conservé
   ════════════════════════════════════════════════════════ */
.footer {
  background:
    radial-gradient(ellipse at top, rgba(196, 154, 78, .12), transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-dk) 100%);
  color: #fff;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(196, 154, 78,.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Liseré doré sophistiqué en haut du footer */
.footer__accent {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(196, 154, 78,.5) 20%,
    #C49A4E 50%,
    rgba(196, 154, 78,.5) 80%,
    transparent 100%
  );
  position: relative;
  z-index: 2;
}
.footer__accent::after {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--green-dk);
  color: #C49A4E;
  font-size: .75rem;
  padding: 0 .6rem;
  letter-spacing: .2em;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 3rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: start;
  gap: .35rem;
}

/* ── Brand block ── */
.footer__brand .logo--footer {
  display: inline-block;
  margin-bottom: .75rem;
}
.logo__img--footer {
  max-width: 140px;
  filter: brightness(1.05);
}

.footer__tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  margin: 0 0 1.25rem;
  font-weight: 400;
  max-width: 280px;
}

.footer__location {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}
.footer__location svg {
  color: #C49A4E;
}

/* Réseaux sociaux — plus grands et élégants */
.footer__social {
  display: flex;
  gap: .6rem;
  margin-top: .25rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
.footer__social a:hover {
  background: #C49A4E;
  border-color: #C49A4E;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(196, 154, 78,.4);
}

/* ── Titres de colonnes — serif élégant + accent doré ── */
.footer__nav h4,
.footer__newsletter h4 {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: #fff;
  margin: 0 0 1.5rem;
  padding-bottom: .85rem;
  position: relative;
  text-transform: none;
}
.footer__nav h4::after,
.footer__newsletter h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #C49A4E, rgba(196, 154, 78,.3));
  border-radius: 2px;
}

/* ── Liens nav — hover slide élégant ── */
.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav ul li {
  margin-bottom: .7rem;
}
.footer__nav a {
  font-family: var(--font-body);
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  transition: all .25s ease;
  position: relative;
}
.footer__nav a::before {
  content: "→";
  display: inline-block;
  color: #C49A4E;
  opacity: 0;
  margin-right: 0;
  width: 0;
  overflow: hidden;
  transition: all .25s ease;
}
.footer__nav a:hover {
  color: #fff;
}
.footer__nav a:hover::before {
  opacity: 1;
  margin-right: .35rem;
  width: 1rem;
}

/* ── Newsletter ── */
.footer__newsletter p {
  font-size: .87rem;
  color: rgba(255,255,255,.72);
  margin: 0 0 1.1rem;
  line-height: 1.65;
}

.newsletter-form {
  display: flex;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: .35rem;
  transition: all .25s ease;
  margin-bottom: 1rem;
}
.newsletter-form:focus-within {
  background: rgba(255,255,255,.12);
  border-color: rgba(196, 154, 78,.5);
  box-shadow: 0 0 0 3px rgba(196, 154, 78,.1);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: .55rem 1rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: .85rem;
  font-family: var(--font-body);
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255,255,255,.45);
}

.newsletter-form button {
  padding: .6rem 1.4rem;
  background: #C49A4E;
  color: #fff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: .72rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all .25s ease;
}
.newsletter-form button:hover {
  background: var(--brown);
  transform: translateX(2px);
  box-shadow: 0 4px 12px rgba(196, 154, 78,.4);
}

.footer__trust {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .74rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}
.footer__trust svg {
  color: #C49A4E;
  opacity: .8;
}

/* ── Barre de bas de page — épurée ── */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.06);
  position: relative;
  z-index: 1;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer__bottom-copy {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  min-width: 0;
}

.footer__bottom p {
  font-size: .77rem;
  color: rgba(255,255,255,.55);
  margin: 0;
  letter-spacing: .02em;
}
.footer__bottom p strong {
  color: #fff;
  font-weight: 600;
  font-family: var(--font-head);
  font-style: italic;
  font-size: .85rem;
}

.footer__bottom-location {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.72);
  font-size: .74rem;
  line-height: 1.2;
}

.footer__bottom-location svg {
  flex-shrink: 0;
  color: #C49A4E;
}

.footer__bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-left: auto;
}

/* ── Liens légaux ── */
.footer__legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: .76rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: all .2s ease;
  position: relative;
  padding-bottom: 2px;
}
.footer__legal a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #C49A4E;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.footer__legal a:hover {
  color: #fff;
}
.footer__legal a:hover::after {
  transform: scaleX(1);
}

/* ── Badges de paiement — refined ── */
.footer__paiements {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.pm {
  font-size: .64rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .1em;
  padding: .35rem .75rem;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all .2s ease;
  border: 1px solid transparent;
}

.pm--mtn {
  background: linear-gradient(135deg, rgba(255,203,0,.15), rgba(255,203,0,.08));
  color: #FFD93D;
  border-color: rgba(255,203,0,.3);
}
.pm--mtn:hover {
  background: rgba(255,203,0,.25);
  transform: translateY(-1px);
}

.pm--orange {
  background: linear-gradient(135deg, rgba(255,102,0,.15), rgba(255,102,0,.08));
  color: #FFA952;
  border-color: rgba(255,102,0,.3);
}
.pm--orange:hover {
  background: rgba(255,102,0,.25);
  transform: translateY(-1px);
}

.pm--card {
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.2);
}
.pm--card:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-1px);
}

/* ── Footer responsive ── */
@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }
  .footer__brand { grid-column: 1 / -1; text-align: left; max-width: 500px; }
  .footer__newsletter { grid-column: 1 / -1; max-width: 500px; }
}
@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 1rem;
  }
  .footer__bottom-right {
    justify-content: flex-start;
    margin-left: 0;
  }
  .footer__legal { flex-wrap: wrap; justify-content: flex-start; gap: 1rem; }
  .footer__paiements { justify-content: flex-start; flex-wrap: wrap; }
  .footer__tagline { max-width: 100%; }
}

/* ── Auth pages ─────────────────────────────────────────── */
/* ════════════════════════════════════════════════════════════
   AUTH v2 — split éditorial (navy + doré + crème)
   ════════════════════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.15fr);
  background: var(--cream);
  font-family: var(--font-body);
}

/* ─── Panneau gauche : signature éditoriale ─── */
.auth-aside {
  position: relative;
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(196,154,78,.22), transparent 55%),
    radial-gradient(80% 60% at 100% 100%, rgba(74,93,142,.45), transparent 60%),
    linear-gradient(160deg, var(--navy-dk) 0%, var(--navy) 60%, var(--navy-md) 100%);
  color: var(--cream);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}

/* Motif géométrique subtil — losanges or */
.auth-aside::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 49%, rgba(196,154,78,.05) 49%, rgba(196,154,78,.05) 51%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(196,154,78,.05) 49%, rgba(196,154,78,.05) 51%, transparent 51%);
  background-size: 32px 32px;
  opacity: .9;
  z-index: 0;
  pointer-events: none;
}

.auth-aside::after {
  content: '';
  position: absolute;
  top: -15%;
  right: -15%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(196,154,78,.18) 0%, transparent 65%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.auth-aside > * { position: relative; z-index: 1; }

.auth-aside__brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.auth-aside__brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50%;
}

.auth-aside__brand em {
  font-style: italic;
  font-family: 'Great Vibes', cursive;
  text-transform: none;
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 0;
  margin-left: -.15rem;
}

.auth-aside__hero {
  max-width: 28rem;
}

.auth-aside__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-head);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.auth-aside__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.auth-aside__title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1;
  color: var(--cream);
  margin-bottom: 1rem;
}

.auth-aside__title strong {
  display: block;
  font-family: var(--font-head);
  font-size: .42em;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: .9rem;
  line-height: 1.2;
}

.auth-aside__lede {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(245, 241, 232, .78);
  max-width: 24rem;
}

.auth-aside__quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.1rem;
  font-style: italic;
  font-size: .85rem;
  line-height: 1.6;
  color: rgba(245, 241, 232, .7);
  max-width: 24rem;
}

.auth-aside__quote span {
  display: block;
  margin-top: .55rem;
  font-style: normal;
  font-family: var(--font-head);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Panneau droit : formulaire ─── */
.auth-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--cream);
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.auth-card--wide {
  max-width: 560px;
}

.auth-card__logo {
  display: none; /* logo déplacé dans l'aside */
}

.auth-card__eyebrow {
  font-family: var(--font-head);
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: .9rem;
}

.auth-card__title {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--navy);
  margin-bottom: .55rem;
  text-align: left;
  position: relative;
}

.auth-card__title::after {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin-top: .9rem;
}

.auth-card__sub {
  text-align: left;
  color: var(--navy-lt);
  font-size: .94rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Mobile : passe en single column */
@media (max-width: 900px) {
  .auth-page {
    grid-template-columns: 1fr;
  }
  .auth-aside {
    padding: 1.75rem 1.5rem;
    min-height: auto;
  }
  .auth-aside__hero,
  .auth-aside__quote { display: none; }
  .auth-aside {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .auth-aside__brand { font-size: .95rem; }
  .auth-main { padding: 2rem 1.25rem 3rem; }
  .auth-card__title { text-align: center; }
  .auth-card__title::after { margin-left: auto; margin-right: auto; }
  .auth-card__sub { text-align: center; }
  .auth-card__eyebrow { text-align: center; }
}

/* ── Bouton Google sobre ────────────────────────────────── */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: .9rem 1.25rem;
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(21,36,79,.18);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: 1.5rem;
}

.btn-google:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(21,36,79,.18);
}

.btn-google:hover svg path[fill="none"] { fill: transparent !important; }

.btn-google:active { transform: translateY(0); }

/* ── Séparateur "ou" ───────────────────────────────────── */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--navy-lt);
  font-family: var(--font-head);
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cream-dkk), transparent);
}

.auth-divider span {
  white-space: nowrap;
  color: var(--gold-dk);
}

.auth-card__switch {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dk);
  font-size: .88rem;
  color: var(--navy-lt);
  font-family: var(--font-body);
}

.auth-card__switch a {
  color: var(--gold-dk);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.auth-card__switch a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.auth-card__switch a:hover {
  color: var(--navy);
}

.auth-card__switch a:hover::after {
  transform: scaleX(1);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

/* Inputs spécifiques auth — flat avec underline doré au focus */
.auth-form .form-group label {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .15rem;
}

.auth-form .form-group input {
  padding: .85rem 1rem;
  background: var(--white);
  border: 1px solid rgba(21,36,79,.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--navy);
  transition: all var(--transition);
  box-shadow: inset 0 0 0 0 rgba(196,154,78,0);
}

.auth-form .form-group input::placeholder {
  color: rgba(21,36,79,.35);
  font-style: italic;
}

.auth-form .form-group input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,154,78,.12);
  outline: none;
}

.auth-form .form-group input:hover:not(:focus) {
  border-color: rgba(21,36,79,.3);
}

.auth-form .form-group.has-error input {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(185,28,28,.08);
}

.auth-form .form-group small {
  font-size: .72rem;
  color: var(--navy-lt);
  font-style: italic;
  margin-top: .15rem;
}

.auth-form .form-error {
  font-size: .78rem;
  color: var(--error);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .1rem;
}

.auth-form .form-error::before {
  content: '⚠';
  font-size: .85rem;
}

/* Bouton principal auth */
.auth-form .btn--primary {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  margin-top: .5rem;
}

.auth-form .btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}

.auth-form .btn--primary > * { position: relative; z-index: 1; }

.auth-form .btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(21,36,79,.25);
}

.auth-form .btn--primary:hover::before { opacity: 1; }

.auth-form .btn--primary:active { transform: translateY(0); }

.auth-form .form-row--between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.auth-form .checkbox-label {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .85rem;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
}

.auth-form .checkbox-label input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

.auth-form .checkbox-label a {
  color: var(--gold-dk);
  text-decoration: underline;
  text-decoration-color: rgba(196,154,78,.4);
  text-underline-offset: 2px;
}

.auth-form .link-forgot {
  font-size: .82rem;
  color: var(--gold-dk);
  font-family: var(--font-head);
  letter-spacing: .08em;
  text-decoration: none;
  position: relative;
}

.auth-form .link-forgot::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.auth-form .link-forgot:hover { color: var(--navy); }
.auth-form .link-forgot:hover::after { transform: scaleX(1); transform-origin: left; }

.auth-form .eye-toggle {
  position: absolute;
  right: .85rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy-lt);
  padding: .25rem;
  transition: color var(--transition);
}

.auth-form .eye-toggle:hover { color: var(--gold-dk); }

.auth-form .optional {
  color: var(--navy-lt);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: .7rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brown-dk);
}

.form-group input,
.form-group textarea,
.form-group select,
.form-control {
  padding: .75rem 1rem;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
  color: var(--brown-dk);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brown);
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--error);
}

.form-error {
  font-size: .8rem;
  color: var(--error);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row--between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.optional {
  color: var(--brown-lt);
  font-weight: 400;
}

.input-eye {
  position: relative;
}

.input-eye input {
  padding-right: 2.75rem;
}

.eye-toggle {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown-lt);
  padding: .25rem;
}

.link-forgot {
  font-size: .85rem;
  color: var(--brown);
  font-family: var(--font-head);
}

.link-forgot:hover {
  color: var(--green);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  cursor: pointer;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--brown);
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  padding: 1.5rem 0;
  font-size: .85rem;
  color: var(--brown-lt);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

.breadcrumb a {
  color: var(--brown-lt);
}

.breadcrumb a:hover {
  color: var(--brown);
}

/* ── Catalogue ──────────────────────────────────────────── */
.catalogue-page {
  padding-bottom: 5rem;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
}

.catalogue-filters {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  height: max-content;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.filters-header h2 {
  font-size: 1rem;
  font-family: var(--font-head);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brown-dk);
}

.filters-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-group__title {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brown-lt);
  margin-bottom: 1rem;
}

/* ── Filtre catégories (accordéons familles) ─────────── */
.filter-all {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem .75rem;
  margin: 0 -.5rem .75rem;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--brown-dk, #0F1A3A);
  text-decoration: none;
  transition: background .15s, color .15s;
}

.filter-all:hover { background: var(--cream, #faf4e8); }

.filter-all--active {
  background: var(--brown-dk, #0F1A3A);
  color: #F5F1E8;
}

.filter-all--active svg { color: #C49A4E; }

.cat-families {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  border-top: 1px solid var(--cream-dk, #E8D9BD);
  padding-top: .75rem;
}

.cat-family {
  border-radius: 6px;
  overflow: hidden;
  transition: background .15s;
}

.cat-family[open] { background: var(--cream, #faf4e8); }

.cat-family__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem .75rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  border-radius: 6px;
  transition: background .15s;
}

.cat-family__head::-webkit-details-marker { display: none; }
.cat-family__head::marker { display: none; }

.cat-family:not([open]) .cat-family__head:hover {
  background: var(--cream, #faf4e8);
}

.cat-family__label {
  font-family: var(--font-head, 'Cormorant Garamond', serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--brown-dk, #0F1A3A);
  letter-spacing: .02em;
}

.cat-family__meta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.cat-family__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 .45rem;
  background: var(--cream-dk, #E8D9BD);
  color: var(--brown-dk, #0F1A3A);
  font-size: .7rem;
  font-weight: 700;
  border-radius: 999px;
}

.cat-family[open] .cat-family__count {
  background: #C49A4E;
  color: #F5F1E8;
}

.cat-family__chevron {
  color: var(--brown-lt, #8A6E2C);
  transition: transform .25s ease;
}

.cat-family[open] .cat-family__chevron {
  transform: rotate(180deg);
  color: #C49A4E;
}

.cat-family__list {
  list-style: none;
  padding: .25rem .5rem .65rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cat-family__link {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .55rem;
  border-radius: 5px;
  font-size: .82rem;
  color: var(--brown-dk, #0F1A3A);
  text-decoration: none;
  transition: background .15s, color .15s;
  line-height: 1.3;
}

.cat-family__link:hover {
  background: #fff;
  color: #15244F;
}

.cat-family__link--active {
  background: #fff;
  color: #C49A4E;
  font-weight: 700;
  box-shadow: inset 3px 0 0 #C49A4E;
}

.cat-family__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(15, 26, 58, .08);
}

.cat-family__name {
  flex: 1;
  min-width: 0;
}

.cat-family__num {
  color: var(--brown-lt, #8A6E2C);
  font-size: .72rem;
  font-weight: 500;
}

.cat-family__link--active .cat-family__num {
  color: #C49A4E;
}

/* ── Filtre étoiles (note minimum) ──────────────────── */
.star-filter {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.star-filter__label {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem .55rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .9rem;
  color: var(--brown-dk);
  transition: background var(--transition);
  user-select: none;
}

.star-filter__label:hover {
  background: var(--cream);
}

.star-filter__label input[type="radio"] {
  accent-color: var(--brown);
  margin: 0;
  flex-shrink: 0;
}

.star-filter__label .stars {
  letter-spacing: .08em;
  color: #d4a017;
  line-height: 1;
}

.star-filter__label .star-filter__text {
  color: var(--brown-lt);
  font-size: .85rem;
}

.star-filter__label:has(input:checked) {
  background: var(--cream);
  color: var(--brown);
  font-weight: 600;
}

.filter-list__link {
  display: flex;
  justify-content: space-between;
  padding: .4rem .5rem;
  border-radius: var(--radius);
  font-size: .9rem;
  transition: background var(--transition);
  color: var(--brown-dk);
}

.filter-list__link:hover {
  background: var(--cream);
}

.filter-list__link.active {
  color: var(--brown);
  font-weight: 600;
}

.price-range input[type=range] {
  width: 100%;
  accent-color: var(--brown);
}

.price-range span {
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--brown);
  display: block;
  margin-top: .5rem;
}

.catalogue-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.catalogue-count {
  font-size: .85rem;
  color: var(--brown-lt);
  font-family: var(--font-head);
  letter-spacing: .04em;
}

.catalogue-toolbar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-filters-toggle {
  display: none;
}

.select-tri {
  padding: .5rem 1rem;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  background: white;
  font-size: .85rem;
  cursor: pointer;
  outline: none;
  color: var(--brown-dk);
  font-family: var(--font-body);
}

.view-toggle {
  display: flex;
  gap: .25rem;
}

.view-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--cream-dk);
  background: white;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
}

.view-btn.active {
  background: var(--brown);
  border-color: var(--brown);
  color: white;
}

/* ── Pagination ─────────────────────────────────────────── */
.pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 3rem;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1.5px solid var(--cream-dk);
  font-size: .9rem;
  transition: all var(--transition);
  color: var(--brown-dk);
}

.pagination a:hover,
.pagination a.active {
  background: var(--brown);
  border-color: var(--brown);
  color: white;
}

.pagination .prev,
.pagination .next {
  width: auto;
  padding: 0 1rem;
}

/* ── Fiche produit ──────────────────────────────────────── */
.fiche-page {
  padding-bottom: 5rem;
}

.fiche-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.gallery-main__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--blue);
  color: white;
  padding: .35rem .75rem;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gallery-thumbs {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
}

.gallery-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.active {
  border-color: var(--brown);
}

.fiche-info__cat {
  font-family: var(--font-head);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--brown-lt);
  margin-bottom: .5rem;
}

.fiche-info__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--green-dk);
}

.fiche-info__rating {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.rating-count {
  font-size: .85rem;
  color: var(--brown-lt);
}

.fiche-info__prix {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.prix-principal {
  font-size: 2rem;
  color: var(--green);
}

.fiche-info__desc {
  color: var(--brown-lt);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.fiche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.tag {
  padding: .3rem .75rem;
  background: var(--cream);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--brown-lt);
}

.fiche-option {
  margin-bottom: 1.75rem;
}

.fiche-option label {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: .75rem;
  color: var(--brown-dk);
}

.size-picker,
.color-picker {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.size-btn {
  padding: .5rem .9rem;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  transition: all var(--transition);
  color: var(--brown-dk);
}

.size-btn:hover:not(.out) {
  border-color: var(--brown);
  color: var(--brown);
}

.size-btn.active {
  background: var(--brown);
  border-color: var(--brown);
  color: white;
}

.size-btn.out {
  opacity: .35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.color-btn {
  padding: .4rem .9rem;
  border: 1.5px solid var(--cream-dk);
  border-radius: 100px;
  background: white;
  cursor: pointer;
  font-size: .8rem;
  transition: all var(--transition);
  color: var(--brown-dk);
}

.color-btn.active {
  border-color: var(--brown);
  background: var(--brown);
  color: white;
}

.taille-guide,
.link-small {
  font-size: .8rem;
  color: var(--brown);
  margin-top: .5rem;
  display: inline-block;
}

.fiche-option--surmesure {
  background: var(--cream);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}

.fiche-option--surmesure h4 {
  margin-bottom: 1rem;
}

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

.qty-picker {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-picker button {
  width: 36px;
  height: 40px;
  background: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background var(--transition);
}

.qty-picker button:hover {
  background: var(--cream-dk);
}

.qty-picker input {
  width: 50px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  background: white;
  outline: none;
  color: var(--brown-dk);
}

.stock-info {
  margin-top: .5rem;
  font-size: .85rem;
}

.in-stock {
  color: var(--success);
  font-weight: 600;
  font-family: var(--font-head);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.out-stock {
  color: var(--error);
  font-weight: 600;
  font-family: var(--font-head);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.fiche-cta {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.fiche-reassurance {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.fiche-reassurance div {
  font-size: .85rem;
  color: var(--brown-lt);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.fiche-reassurance div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  flex-shrink: 0;
}

/* Onglets */
.fiche-tabs {
  margin-top: 3rem;
}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--cream-dk);
  margin-bottom: 2rem;
}

.tab-btn {
  background: none;
  border: none;
  padding: .75rem 1.5rem;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--brown-lt);
  position: relative;
  transition: color var(--transition);
}

.tab-btn.active {
  color: var(--brown-dk);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brown);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.description-body {
  color: var(--brown-lt);
  line-height: 1.9;
}

/* Avis */
.avis-stats {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.avis-stats__score {
  text-align: center;
}

.avis-stats__note {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--brown);
  display: block;
}

.rating-bar {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  gap: .75rem;
  font-size: .85rem;
}

.bar {
  background: var(--cream-dk);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
}

.bar__fill {
  background: var(--brown);
  height: 100%;
  border-radius: 100px;
  transition: width .5s ease;
}

.avis-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.avis-card {
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

/* Bandeaux informatifs autour du formulaire d'avis */
.avis-info {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  color: var(--navy, #15244F);
  font-size: .9rem;
  line-height: 1.5;
}
.avis-info--success {
  background: rgba(46, 145, 89, .08);
  border-left-color: var(--success);
  color: var(--success);
  font-weight: 600;
}
.avis-info a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.avis-info a:hover { text-decoration: underline; }

.avis-card__head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.avis-card__head small {
  margin-left: auto;
  color: var(--brown-lt);
  font-size: .8rem;
}

.avis-card__titre {
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--brown-dk);
}

.avis-form {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dk);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.avis-form h3 {
  font-size: 1.2rem;
  color: var(--green-dk);
}

.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: .25rem;
}

.star-rating-input input {
  display: none;
}

.star-rating-input label {
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--cream-dkk);
  transition: color var(--transition);
}

.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input:checked~label {
  color: var(--brown);
}

/* ── Panier ─────────────────────────────────────────────── */
.panier-page {
  padding: 2rem 0 5rem;
}

.page-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 2.5rem;
  color: var(--green-dk);
}

.panier-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.panier-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.panier-item__img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
}

.panier-item__info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--brown-dk);
}

.panier-item__meta {
  font-size: .8rem;
  color: var(--brown-lt);
}

.panier-item__prix {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--brown-dk);
}

.panier-item__total {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--green);
}

.btn-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--brown-lt);
  line-height: 1;
  transition: color var(--transition);
}

.btn-remove:hover {
  color: var(--error);
}

.panier-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.panier-summary {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h)+2rem);
}

.panier-summary h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--green-dk);
}

.promo-form {
  margin-bottom: 1.5rem;
}

.promo-input {
  display: flex;
  gap: .5rem;
  align-items: stretch;
}

.promo-input input {
  flex: 1;
  min-width: 0;
  padding: .65rem 1rem;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  outline: none;
  font-size: .9rem;
  color: var(--brown-dk);
}

.promo-input .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.promo-input input:focus {
  border-color: var(--brown);
}

.promo-ok {
  color: var(--success);
  font-size: .85rem;
  margin-top: .5rem;
  font-weight: 600;
}

.summary-lines {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--cream-dk);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--brown-dk);
}

.summary-line--promo {
  color: var(--success);
  font-weight: 600;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-top: .5rem;
}

.summary-total strong {
  font-family: var(--font-mono);
  color: var(--green);
}

.livraison-note {
  font-size: .8rem;
  color: var(--brown-lt);
  margin-top: .5rem;
}

.summary-paiements {
  text-align: center;
  margin-top: 1rem;
}

.summary-paiements small {
  display: block;
  color: var(--brown-lt);
  font-size: .75rem;
  margin-bottom: .5rem;
}

.payment-icon {
  display: inline-block;
  padding: .2rem .5rem;
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius);
  font-size: .75rem;
  margin: 0 .2rem;
}

/* ── Checkout ───────────────────────────────────────────── */
.checkout-page {
  padding: 2rem 0 5rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.checkout-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.checkout-section__title {
  font-size: 1rem;
  font-family: var(--font-head);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  color: var(--green-dk);
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brown);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.addresses-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1rem;
}

.address-card {
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  padding: 1rem;
  cursor: pointer;
  transition: border-color var(--transition);
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.address-card input[type=radio] {
  accent-color: var(--brown);
  margin-top: .25rem;
  flex-shrink: 0;
}

.address-card--selected,
.address-card:has(input:checked) {
  border-color: var(--brown);
}

.address-card__body strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--brown-dk);
}

.address-card__body p {
  font-size: .85rem;
  color: var(--brown-lt);
}

.address-card__default {
  background: var(--brown);
  color: white;
  font-size: .7rem;
  padding: .15rem .5rem;
  border-radius: 100px;
  margin-left: auto;
  flex-shrink: 0;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.checkout-merchant {
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 154, 78, .28);
  background: linear-gradient(135deg, rgba(196, 154, 78, .12), rgba(245, 241, 232, .85));
}

.checkout-merchant__label {
  display: block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown-lt);
  margin-bottom: .35rem;
}

.checkout-merchant__block {
  display: block;
  margin-top: .5rem;
  padding: .9rem 1rem;
  background: #fff;
  border: 1px solid rgba(196, 154, 78, .35);
  border-radius: var(--radius);
}
.checkout-merchant__block[hidden] { display: none !important; }
.checkout-merchant__row {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  margin-bottom: .55rem;
}
.checkout-merchant__op {
  display: inline-block;
  padding: .22rem .65rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .12em;
  font-weight: 700;
  text-transform: uppercase;
}
.js-merchant--mtn .checkout-merchant__op {
  background: #FFCC00; color: #000;
}
.js-merchant--orange .checkout-merchant__op {
  background: #FF6600; color: #fff;
}
.checkout-merchant__code {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--green-dk);
}
.checkout-merchant__ussd {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem .9rem;
  background: rgba(21, 36, 79, .05);
  border: 1px dashed rgba(21, 36, 79, .35);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.checkout-merchant__ussd:hover {
  background: rgba(21, 36, 79, .1);
  border-color: rgba(21, 36, 79, .55);
}
.checkout-merchant__ussd-label {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown-lt);
}
.checkout-merchant__ussd code {
  font-family: 'Space Mono', monospace;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dk);
  letter-spacing: .02em;
  word-break: break-all;
}
.checkout-merchant__hint {
  margin: .55rem 0 0;
  font-size: .8rem;
  color: var(--brown-lt);
  line-height: 1.5;
}
.checkout-merchant__hint strong {
  color: var(--green-dk);
  letter-spacing: .04em;
}
.checkout-merchant__block--pending em {
  color: var(--brown-lt);
  font-style: italic;
}
@media (max-width: 480px) {
  .checkout-merchant__ussd { flex-direction: column; align-items: flex-start; gap: .3rem; }
  .checkout-merchant__code { font-size: 1.15rem; }
}

.checkout-merchant__note {
  display: block;
  font-size: .82rem;
  color: var(--brown-lt);
}

.payment-card {
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  padding: 1rem;
  cursor: pointer;
  transition: border-color var(--transition);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.payment-card:has(input:checked) {
  border-color: var(--brown);
}

.payment-card input {
  accent-color: var(--brown);
  flex-shrink: 0;
}

.payment-logo {
  width: 48px;
  height: 28px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  font-family: var(--font-head);
}

.payment-logo--mtn {
  background: #FFCC00;
  color: #1A0A00;
}

.payment-logo--orange {
  background: #FF6600;
  color: white;
}

.payment-logo--card {
  background: var(--green-dk);
  color: var(--cream);
}

.payment-card__body strong {
  font-size: .9rem;
  color: var(--brown-dk);
}

.payment-card__body small {
  display: block;
  color: var(--brown-lt);
  font-size: .8rem;
}

/* ── Cartes mode de livraison ─────────────────────────── */
.delivery-modes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .75rem;
}

.delivery-card {
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  display: flex;
  gap: .65rem;
  align-items: flex-start;
}

.delivery-card input {
  accent-color: var(--brown);
  flex-shrink: 0;
  margin-top: .2rem;
}

.delivery-card--selected,
.delivery-card:has(input:checked) {
  border-color: var(--brown);
  background: var(--cream);
}

.delivery-card__body {
  flex: 1;
  min-width: 0;
}

.delivery-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .3rem;
}

.delivery-card__head strong {
  color: var(--brown-dk);
  font-size: .95rem;
}

.delivery-card__badge {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .15rem .55rem;
  border-radius: 999px;
}

.delivery-card__badge--normal {
  background: var(--green-dk);
  color: var(--cream);
}

.delivery-card__badge--express {
  background: #C49A4E;
  color: #F5F1E8;
}

.delivery-card__desc {
  color: var(--brown-lt);
  font-size: .82rem;
  margin: 0 0 .4rem;
}

.delivery-card__price {
  color: var(--brown-dk);
  font-size: .85rem;
  margin: 0;
}

.delivery-card__price small {
  color: var(--brown-lt);
  font-size: .75rem;
}

.delivery-warning {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .75rem;
  padding: .55rem .75rem;
  background: rgba(196, 154, 78, .12);
  border-left: 3px solid #C49A4E;
  border-radius: var(--radius);
  color: var(--brown-dk);
  font-size: .82rem;
}

.delivery-warning.hidden {
  display: none;
}

.checkout-section__hint {
  background: var(--cream);
  border-left: 3px solid var(--brown);
  padding: .65rem .85rem;
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--brown-dk);
  margin: 0 0 1rem;
}

.summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .75rem 0;
  border-top: 1px dashed var(--cream-dk);
  margin-top: .35rem;
}

.summary-line--strong span,
.summary-line--strong strong {
  font-weight: 700;
  color: var(--brown-dk);
}

.summary-line--solde {
  margin-top: .5rem;
  padding: .55rem .75rem;
  background: var(--cream);
  border-radius: var(--radius);
  color: var(--brown-dk);
  font-size: .85rem;
}

.recap-line--highlight {
  background: var(--cream);
  padding: .55rem .75rem;
  border-radius: var(--radius);
  margin-top: .25rem;
  border-left: 3px solid var(--brown);
}

/* ── Confirmation / Suivi ───────────────────────────────── */
.confirmation-page,
.suivi-page {
  padding: 3rem 0;
}

.confirmation-card {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.confirmation-icon {
  margin-bottom: 1.5rem;
}

.confirmation-icon svg {
  color: var(--success);
  margin: 0 auto;
}

.confirmation-ref {
  font-family: var(--font-mono);
  color: var(--brown-lt);
  margin-bottom: 1.5rem;
}

.confirmation-recap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.recap-line {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  font-size: .9rem;
  color: var(--brown-dk);
}

.timeline-step__dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--cream-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-step.done .timeline-step__dot {
  background: var(--brown);
  border-color: var(--brown);
}

.timeline-step.active .timeline-step__dot {
  border-color: var(--brown);
  box-shadow: 0 0 0 4px rgba(21, 36, 79, .15);
}

.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 38px;
  bottom: 0;
  width: 2px;
  background: var(--cream-dk);
}

.timeline-step.done::after {
  background: var(--brown);
}

/* ── Page compte ────────────────────────────────────────── */
.compte-page {
  padding: 2rem 0 5rem;
}

.compte-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
}

.compte-nav {
  position: sticky;
  top: calc(var(--header-h)+2rem);
  height: max-content;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.compte-nav__user {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dk);
}

.compte-nav__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
  margin: 0 auto .75rem;
}

.compte-nav__name {
  font-weight: 600;
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--brown-dk);
}

.compte-nav__role {
  font-size: .75rem;
  color: var(--brown-lt);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font-head);
}

.compte-nav__links {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.compte-nav__link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .75rem;
  border-radius: var(--radius);
  font-size: .88rem;
  transition: background var(--transition);
  color: var(--brown-lt);
}

.compte-nav__link:hover {
  background: var(--cream);
  color: var(--brown);
}

.compte-nav__link.active {
  background: var(--cream);
  color: var(--brown);
  font-weight: 600;
}

/* ── Badges statut ──────────────────────────────────────── */
.badge {
  padding: .25rem .6rem;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.badge-success {
  background: #DCFCE7;
  color: #166534;
}

.badge-info {
  background: #DBEAFE;
  color: #1E40AF;
}

.badge-warning {
  background: #FEF3C7;
  color: #92400E;
}

.badge-danger {
  background: #FEE2E2;
  color: #991B1B;
}

.badge-primary {
  background: #F5EFE6;
  color: #15244F;
}

.badge-secondary {
  background: #F3F4F6;
  color: #374151;
}

/* ── Alerts ─────────────────────────────────────────────── */
.alert {
  padding: .9rem 1.25rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  font-size: .9rem;
}

.alert-success {
  background: #F0FDF4;
  border-left: 3px solid #16A34A;
  color: #166534;
}

.alert-error,
.alert-danger {
  background: #FEF2F2;
  border-left: 3px solid #DC2626;
  color: #991B1B;
}

.alert-warning {
  background: #FFFBEB;
  border-left: 3px solid #D97706;
  color: #92400E;
}

/* ── Admin panel (partiel) ──────────────────────────────── */
.admin-btn {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── Dashboard client ───────────────────────────────────── */
.dashboard-welcome {
  background: linear-gradient(135deg, var(--green-dk) 0%, #0e2819 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--cream);
}

.dashboard-welcome__info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.dashboard-welcome__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 400;
  color: white;
  flex-shrink: 0;
}

.dashboard-welcome h1 {
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: .25rem;
}

.dashboard-welcome p {
  font-size: .9rem;
  color: rgba(245, 239, 230, .65);
}

.dashboard-welcome .wave {
  display: inline-block;
  animation: wave 2s ease-in-out infinite;
  transform-origin: 70% 70%;
}

@keyframes wave {

  0%,
  60%,
  100% {
    transform: rotate(0)
  }

  10%,
  30% {
    transform: rotate(14deg)
  }

  20% {
    transform: rotate(-8deg)
  }

  40% {
    transform: rotate(-4deg)
  }

  50% {
    transform: rotate(10deg)
  }
}

.dashboard-welcome__badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245, 239, 230, .1);
  border: 1px solid rgba(245, 239, 230, .2);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream);
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.dashboard-kpi {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.dashboard-kpi:hover {
  transform: translateY(-2px);
}

.dashboard-kpi__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard-kpi__icon--brown {
  background: rgba(155, 97, 30, .12);
  color: var(--brown);
}

.dashboard-kpi__icon--green {
  background: rgba(82, 182, 122, .12);
  color: var(--green);
}

.dashboard-kpi__icon--blue {
  background: rgba(12, 122, 224, .12);
  color: var(--blue);
}

.dashboard-kpi__icon--orange {
  background: rgba(234, 128, 56, .12);
  color: #EA8038;
}

.dashboard-kpi__body {
  min-width: 0;
}

.dashboard-kpi__val {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown-dk);
  line-height: 1;
  margin-bottom: .25rem;
}

.dashboard-kpi__val--sm {
  font-size: 1.1rem;
}

.dashboard-kpi__label {
  font-size: .8rem;
  color: var(--brown-lt);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.dashboard-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.shortcut-card {
  background: white;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
  transition: all var(--transition);
  color: var(--brown-dk);
}

.shortcut-card:hover {
  border-color: var(--brown);
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.shortcut-card svg {
  color: var(--brown);
}

.shortcut-card span {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.dashboard-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.dashboard-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.dashboard-section__head h2 {
  font-size: 1.1rem;
  color: var(--green-dk);
}

.dashboard-section__more {
  font-size: .85rem;
  color: var(--brown);
  font-family: var(--font-head);
  font-weight: 600;
}

.dashboard-section__more:hover {
  color: var(--green);
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.orders-table th {
  padding: .65rem .75rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brown-lt);
  border-bottom: 2px solid var(--cream-dk);
}

.orders-table td {
  padding: .85rem .75rem;
  border-bottom: 1px solid var(--cream-dk);
  vertical-align: middle;
}

.orders-table tbody tr:last-child td {
  border-bottom: none;
}

.orders-table tbody tr:hover td {
  background: var(--cream);
}

.order-ref {
  font-weight: 700;
  color: var(--brown);
  font-family: var(--font-head);
  font-size: .85rem;
}

.order-ref:hover {
  color: var(--green);
}

.text-muted {
  color: var(--brown-lt);
}

.text-right {
  text-align: right;
}

.font-mono {
  font-family: var(--font-mono);
}

.font-bold {
  font-weight: 700;
}

.pay-badge {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: .04em;
}

.pay-badge--mtn {
  background: #FFCC00;
  color: #1A0A00;
}

.pay-badge--orange {
  background: #FF6600;
  color: white;
}

.pay-badge--card {
  background: var(--green-dk);
  color: var(--cream);
}

.dashboard-empty {
  background: white;
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.dashboard-empty svg {
  color: var(--cream-dkk);
  margin: 0 auto 1.5rem;
}

.dashboard-empty p {
  color: var(--brown-lt);
  margin-bottom: 1.5rem;
}

/* Checkout phone field */
.payment-phone-field {
  display: none;
  margin-top: .75rem;
  padding: .75rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--brown);
}

.payment-phone-field.visible {
  display: block;
}

.payment-phone-field label {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .5rem;
  display: block;
  color: var(--brown-dk);
}

.payment-phone-field input {
  background: white;
}

/* Paiement attente */
.paiement-attente-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.paiement-attente-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.paiement-attente-card h2 {
  color: var(--green-dk);
  margin-bottom: 1rem;
}

.paiement-attente-card p {
  color: var(--brown-lt);
  margin-bottom: 1.5rem;
}

.paiement-spinner {
  width: 56px;
  height: 56px;
  border: 4px solid var(--cream-dk);
  border-top-color: var(--brown);
  border-radius: 50%;
  animation: spin .9s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.paiement-phone-display {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
  margin: 1rem 0;
}

.paiement-steps {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: left;
  margin: 1.5rem 0;
}

.paiement-steps li {
  padding: .4rem 0;
  font-size: .88rem;
  color: var(--brown-lt);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.paiement-steps li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brown);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .fiche-layout {
    grid-template-columns: 1fr;
  }

  .panier-layout,
  .checkout-layout,
  .suivi-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .nav,
  .search-form {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  .temoignages-grid,
  .valeurs-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-layout {
    grid-template-columns: 1fr;
  }

  .catalogue-filters {
    position: fixed;
    inset: 0;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform var(--transition);
    border-radius: 0;
    overflow-y: auto;
  }

  .catalogue-filters.open {
    transform: none;
  }

  .filters-close {
    display: block;
  }

  .btn-filters-toggle {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .fiche-layout {
    gap: 2rem;
  }

  .mensuration-grid {
    grid-template-columns: 1fr;
  }

  .compte-layout {
    grid-template-columns: 1fr;
  }

  .banner-sur-mesure__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

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

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

  .dashboard-welcome {
    padding: 1.5rem;
  }

  .dashboard-welcome h1 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

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

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .panier-item {
    grid-template-columns: 60px 1fr;
  }

  .panier-item__total,
  .btn-remove {
    grid-column: 2;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__legal {
    gap: 1rem;
  }
}
/* ── Bannières promotionnelles ─────────────────────────────── */
.bannieres-section { padding: 2rem 0 0; }
.bannieres-slider  { position: relative; overflow: hidden; border-radius: 12px; }
.banniere-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/5;
  text-decoration: none;
}
.bannieres-slider .banniere-card {
  position: absolute;
  inset: 0;
  border-radius: 0;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.bannieres-slider { aspect-ratio: 16/5; }
.bannieres-slider .banniere-card--active { opacity: 1; pointer-events: auto; }
.banniere-card--single { display: block; }
.banniere-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.banniere-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
  display: flex; align-items: center; padding: 0 3rem;
}
.banniere-card__text h2   { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem,3vw,2.4rem); color: #fff; margin-bottom: .5rem; }
.banniere-card__text p    { font-size: clamp(.85rem,1.5vw,1.05rem); color: rgba(255,255,255,.85); margin-bottom: 1rem; }
.banniere-card__btn {
  display: inline-block; padding: .55rem 1.5rem;
  background: var(--brown); color: #fff;
  border-radius: 4px; font-weight: 600; font-size: .9rem;
  transition: background .2s;
}
.banniere-card:hover .banniere-card__btn { background: #7a4a1e; }
.banniere-dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; }
.banniere-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.banniere-dot--active { background: #fff; transform: scale(1.3); }
@media (max-width: 600px) {
  .banniere-card__overlay { padding: 0 1.5rem; }
  .banniere-card__text p  { display: none; }
}

/* ── Language switcher ──────────────────────────────────── */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--brown);
  border: 1.5px solid var(--brown);
  background: transparent;
  text-decoration: none;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.lang-switcher:hover {
  background: var(--brown);
  color: #fff;
}

/* ── Page Loader (client) ───────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .35s ease, visibility .35s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__inner {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-loader__logo {
  position: absolute;
  font-family: 'Space Mono', monospace;
  font-size: 1.35rem;
  font-weight: 700;
  color: #C49A4E;
  line-height: 1;
  z-index: 1;
}
.page-loader__ring {
  color: #C49A4E;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.loader-arc {
  stroke-dasharray: 80 45;
}
.page-loader__bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #C49A4E, #e6b56a);
  animation: loadbar 1.2s ease-in-out infinite;
}
@keyframes loadbar {
  0%   { width: 0%;   left: 0; }
  50%  { width: 60%;  left: 20%; }
  100% { width: 0%;   left: 100%; }
}

/* ════════════════════════════════════════════════════════
   Pages legales — design editorial magazine
   ════════════════════════════════════════════════════════ */

.legal-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--brown), #d4a253);
  z-index: 999;
  transition: width .1s linear;
  box-shadow: 0 0 8px rgba(196, 154, 78,.4);
}

.legal-hero {
  background:
    radial-gradient(ellipse at top, rgba(196, 154, 78,.08), transparent 60%),
    linear-gradient(180deg, #fdfbf6 0%, #ffffff 100%);
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  border-bottom: 1px solid #f0e6d2;
  position: relative;
}
.legal-hero::before,
.legal-hero::after {
  content: "";
  position: absolute;
  width: 60px; height: 60px;
  border: 1px solid rgba(196, 154, 78,.25);
}
.legal-hero::before {
  top: 2rem; left: 2rem;
  border-right: none; border-bottom: none;
}
.legal-hero::after {
  bottom: 2rem; right: 2rem;
  border-left: none; border-top: none;
}
.legal-hero__decoration {
  color: var(--brown);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  letter-spacing: 1rem;
  opacity: .8;
}
.legal-hero__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.legal-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -.015em;
  color: #1a1a1a;
  line-height: 1.05;
  margin: 0 auto 1.75rem;
  max-width: 820px;
  font-style: italic;
}
.legal-hero__divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brown), transparent);
  margin: 0 auto 1.5rem;
  position: relative;
}
.legal-hero__divider::before {
  content: "\2726";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fdfbf6;
  padding: 0 .5rem;
  color: var(--brown);
  font-size: .8rem;
}
.legal-hero__date {
  font-family: 'Space Mono', monospace;
  font-size: .78rem;
  color: #999;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f0e6d2;
  z-index: 90;
  padding: .85rem 0;
}
.legal-nav__scroll {
  display: flex;
  gap: .35rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.legal-nav__scroll::-webkit-scrollbar { display: none; }
.legal-nav__scroll a {
  flex-shrink: 0;
  padding: .5rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: #777;
  text-decoration: none;
  border-radius: 100px;
  white-space: nowrap;
  transition: all .25s ease;
  border: 1px solid transparent;
}
.legal-nav__scroll a:hover {
  color: var(--brown);
  background: #faf5ec;
}
.legal-nav__scroll a.active {
  background: var(--brown);
  color: #fff;
  box-shadow: 0 2px 8px rgba(155,97,30,.3);
}

.legal-body {
  background: linear-gradient(180deg, #fafaf7 0%, #ffffff 100%);
  padding: 4rem 0 6rem;
  position: relative;
}

.legal-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-section {
  margin-bottom: 5rem;
  scroll-margin-top: 90px;
  position: relative;
}

.legal-section__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--brown), #d4a253);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .35;
  line-height: 1;
  margin-bottom: -3rem;
  letter-spacing: -.04em;
  font-style: italic;
  position: relative;
  z-index: 0;
}

.legal-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 1.75rem;
  letter-spacing: -.015em;
  line-height: 1.15;
  position: relative;
  padding-bottom: 1.1rem;
  z-index: 1;
}
.legal-section__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
}

.legal-section__content {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem;
  line-height: 1.85;
  color: #424242;
}

.legal-section__content p {
  margin: 0 0 1.3rem;
}

.legal-section__content > p:first-child::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--brown);
  float: left;
  line-height: .85;
  margin: .35rem .7rem 0 0;
  font-style: italic;
}

.legal-section__content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--brown);
  margin: 2.25rem 0 .9rem;
  font-weight: 600;
  font-style: italic;
}

.legal-section__content ul,
.legal-section__content ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.legal-section__content ul li,
.legal-section__content ol li {
  margin-bottom: .65rem;
  line-height: 1.7;
  padding-left: .3rem;
}
.legal-section__content ul li::marker {
  color: var(--brown);
  font-weight: 700;
}
.legal-section__content ol li::marker {
  color: var(--brown);
  font-weight: 600;
  font-family: 'Space Mono', monospace;
  font-size: .9rem;
}

.legal-section__content a {
  color: var(--brown);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  font-weight: 500;
  transition: color .2s;
}
.legal-section__content a:hover { color: #c8922a; }

.legal-section__content strong {
  color: #1a1a1a;
  font-weight: 600;
}

.legal-callout {
  background: linear-gradient(135deg, #faf5ec 0%, #fff 100%);
  border-left: 3px solid var(--brown);
  padding: 1.5rem 1.85rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
  position: relative;
}

.legal-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
}
.legal-table thead {
  background: linear-gradient(135deg, var(--brown) 0%, #b87a26 100%);
}
.legal-table thead th {
  color: #fff;
  font-weight: 600;
  padding: 1.1rem 1.5rem;
  text-align: left;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .12em;
}
.legal-table tbody td {
  padding: 1.05rem 1.5rem;
  border-bottom: 1px solid #f5f0e3;
  color: #424242;
}
.legal-table tbody tr:last-child td { border-bottom: none; }
.legal-table tbody tr:hover { background: #faf5ec; }
.legal-table tbody td:first-child {
  font-weight: 600;
  color: var(--brown);
}

.legal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5rem 0;
  position: relative;
}
.legal-divider::before,
.legal-divider::after {
  content: "";
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4b681, transparent);
}
.legal-divider span {
  padding: 0 1.5rem;
  color: var(--brown);
  font-size: 1.1rem;
  opacity: .6;
  letter-spacing: .4rem;
}

.legal-totop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(155,97,30,.35);
  opacity: 0;
  transform: translateY(20px) scale(.8);
  pointer-events: none;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  z-index: 80;
}
.legal-totop.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.legal-totop:hover {
  background: linear-gradient(135deg, var(--brown), #c8922a);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 32px rgba(155,97,30,.5);
}

@media (max-width: 768px) {
  .legal-hero { padding: 3.5rem 1.5rem 3rem; }
  .legal-hero::before, .legal-hero::after { display: none; }
  .legal-body { padding: 2.5rem 0 4rem; }
  .legal-section { margin-bottom: 3.5rem; }
  .legal-section__num { font-size: 4.5rem; margin-bottom: -2rem; }
  .legal-section__content { font-size: .96rem; line-height: 1.75; }
  .legal-section__content > p:first-child::first-letter { font-size: 3.2rem; }
  .legal-totop { bottom: 1rem; right: 1rem; width: 44px; height: 44px; }
  .legal-table { font-size: .85rem; }
  .legal-table thead th,
  .legal-table tbody td { padding: .85rem 1rem; }
  .legal-divider { margin: 3.5rem 0; }
}

.apropos-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.apropos-value {
  background: linear-gradient(135deg, #faf5ec, #fff);
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  border-left: 3px solid var(--brown);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .25s, box-shadow .25s;
}
.apropos-value:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(155,97,30,.12);
}
.apropos-value h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin: 0 0 .65rem;
  color: var(--brown);
  font-weight: 600;
  font-style: italic;
}
.apropos-value p {
  font-size: .9rem;
  margin: 0;
  color: #555;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Refonte globale (vitrine)
   Mobile-first overrides organisés par breakpoint.
   ════════════════════════════════════════════════════════ */

/* ── Base : sécurité images & touch targets ────────────── */
img, video, svg { max-width: 100%; height: auto; }
button, a.btn, input[type="submit"], .btn-connexion {
  min-height: 40px;
}
input, select, textarea {
  font-size: 16px; /* évite le zoom iOS au focus */
}

/* Scroll lock + overlay sombre quand nav mobile ouverte */
body.nav-open { overflow: hidden; }
body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 80;
  animation: navOverlayFade .2s ease;
}
@keyframes navOverlayFade { from { opacity: 0; } }

/* ── Tables responsive (panier, compte commandes…) ─────── */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ════════ Tablette landscape (≤1280px) ════════ */
@media (max-width: 1280px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .hero__title { font-size: clamp(2.5rem, 6vw, 4.5rem); }
}

/* ════════ Tablette portrait (≤1024px) ════════ */
@media (max-width: 1024px) {
  /* Header : logo proportionnel via height (fits header height) */
  .logo__img { width: auto; height: 60px; }
  .header__inner { gap: 1rem; }

  /* Hero */
  .hero__title { font-size: clamp(2.2rem, 7vw, 3.8rem); }
  .hero__sub { font-size: 1rem; }
  .hero__actions { gap: .75rem; }

  /* Sections */
  .section { padding: 3rem 0; }
  .section__title { font-size: clamp(1.8rem, 4vw, 2.6rem); }

  /* Products grid */
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

  /* Catégories */
  .categories-grid { grid-template-columns: repeat(3, 1fr); }

  /* Banner sur mesure */
  .banner-sur-mesure { padding: 3rem 0; }
}

/* ════════ Mobile large (≤768px) ════════ */
@media (max-width: 768px) {
  :root { --header-h: 80px; }

  body { font-size: 15px; }

  /* HEADER — burger menu drawer */
  .header__inner {
    height: var(--header-h);
    padding: 0 1rem;
  }
  .logo__img { width: auto; height: 50px; }

  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: #fff;
    box-shadow: -8px 0 32px rgba(0,0,0,.12);
    transform: translateX(100%);
    transition: transform .3s ease;
    display: flex !important;
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    z-index: 90;
    overflow-y: auto;
  }
  .nav.nav--open { transform: translateX(0); }
  .nav__list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: 100%;
  }
  .nav__link {
    padding: 1rem 0;
    border-bottom: 1px solid #f0e6d2;
    font-size: 1rem;
  }
  .nav__item--dropdown .dropdown {
    position: static;
    box-shadow: none;
    background: #faf5ec;
    margin: .5rem 0;
    padding: .75rem;
    border-radius: 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
  }
  .nav__item--dropdown:hover .dropdown,
  .nav__item--dropdown.open .dropdown { display: block; }

  /* Header actions : recherche cachée, panier + connexion visibles */
  .header__actions {
    gap: .5rem;
  }
  .search-form { display: none; }
  .lang-switcher { width: 30px; height: 30px; font-size: .65rem; }
  .header__icon { width: 36px; height: 36px; }
  .btn-connexion {
    padding: .4rem .85rem;
    font-size: .75rem;
  }
  .burger { display: flex; }

  /* User dropdown : devient liste plate dans le drawer */
  .header__user { display: none; }

  /* HERO */
  .hero { min-height: 60vh; }
  .hero__title { font-size: clamp(1.8rem, 7vw, 2.8rem); line-height: 1.1; }
  .hero__sub { font-size: .9rem; padding: 0 1rem; }
  .hero__eyebrow { font-size: .7rem; letter-spacing: .15em; }
  .hero__actions {
    flex-direction: column;
    padding: 0 1.5rem;
    gap: .65rem;
  }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }

  /* Bannières promotionnelles */
  .bannieres-slider { aspect-ratio: 16/9; }
  .banniere-card__overlay { padding: 0 1.25rem; }
  .banniere-card__text h2 { font-size: 1.3rem; }

  /* AVANTAGES — 2 colonnes */
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .advantage {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: .5rem;
  }
  .advantage strong { font-size: .9rem; }
  .advantage span { font-size: .78rem; }

  /* Sections */
  .section { padding: 2.5rem 0; }
  .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: 1.5rem;
  }
  .section__cta { font-size: .85rem; }

  /* Products grid mobile : 2 colonnes */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }
  .product-card__body { padding: .75rem; }
  .product-card__name { font-size: .85rem; }
  .product-card__prix .prix-actuel { font-size: .95rem; }

  /* Catégories : 2 colonnes */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }
  .cat-card { aspect-ratio: 1; }
  .cat-card__body h3 { font-size: 1rem; }

  /* Valeurs / Témoignages : 1 colonne */
  .valeurs-grid,
  .temoignages-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .valeur, .temoignage { padding: 1.25rem; }

  /* Banner sur mesure */
  .banner-sur-mesure__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .banner-sur-mesure__deco { display: none; }

  /* CATALOGUE filtres mobile (déjà présent, on consolide) */
  .catalogue-filters {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 200;
    transform: translateX(-100%);
    overflow-y: auto;
    border-radius: 0;
    padding: 1.5rem;
    background: #fff;
  }
  .catalogue-filters.open { transform: translateX(0); }

  /* Fiche produit */
  .fiche-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .fiche-images__main { aspect-ratio: 1; }
  .fiche-images__thumbs {
    grid-template-columns: repeat(4, 1fr);
    overflow-x: auto;
  }
  .fiche-actions {
    flex-direction: column;
    gap: .5rem;
  }
  .fiche-actions .btn { width: 100%; }

  /* Panier */
  .panier-item {
    flex-direction: column;
    text-align: center;
    gap: .75rem;
    padding: 1rem;
  }
  .panier-item__img {
    width: 80px; height: 80px;
    margin: 0 auto;
  }
  .panier-item__qte { justify-content: center; }
  .panier-recap { position: static; margin-top: 1.5rem; }

  /* Checkout */
  .checkout-layout { gap: 1.5rem; }
  .checkout-section { padding: 1.25rem; }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Compte client */
  .compte-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .compte-nav {
    position: static;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: .25rem;
    padding: .5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    -webkit-overflow-scrolling: touch;
  }
  .compte-nav a {
    flex-shrink: 0;
    padding: .65rem 1rem;
    white-space: nowrap;
    font-size: .85rem;
    border-radius: 6px;
  }
  .compte-nav a.active {
    background: var(--brown);
    color: #fff;
  }

  /* Forms (auth, compte, contact) */
  .auth-card {
    margin: 1rem;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }
  .auth-card h1 { font-size: 1.5rem; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: .75rem .85rem;
    font-size: 16px; /* anti-zoom iOS */
  }
  .form-actions { flex-direction: column; gap: .65rem; }
  .form-actions .btn { width: 100%; }

  /* Paiement attente */
  .paiement-attente-card {
    margin: 1rem;
    padding: 1.5rem 1.25rem;
  }
  .paiement-phone-display {
    font-size: 1.1rem;
    padding: .65rem;
  }

  /* Tables génériques (compte commandes, etc.) */
  .admin-table,
  table.commandes-list,
  table.adresses-list {
    font-size: .82rem;
  }
  .admin-table td,
  .admin-table th { padding: .6rem .5rem; }

  /* Buttons */
  .btn { font-size: .85rem; padding: .7rem 1.2rem; }
  .btn--lg { font-size: .95rem; padding: .85rem 1.5rem; }
  .btn--sm { font-size: .75rem; padding: .5rem .9rem; }
}

/* ════════ Mobile (≤600px) ════════ */
@media (max-width: 600px) {
  .container { padding-left: 1rem; padding-right: 1rem; }

  /* Hero plus compact */
  .hero { min-height: 50vh; padding: 3rem 0; }

  /* Promo bandeau */
  .promo-bandeau { font-size: .75rem; padding: .35rem 1rem; }

  /* Cart badge */
  .cart-badge { width: 16px; height: 16px; font-size: .65rem; }
}

/* ════════ Très petit mobile (≤400px) ════════ */
@media (max-width: 400px) {
  body { font-size: 14px; }

  /* Logo encore un peu plus petit */
  .logo__img { height: 44px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .product-card__name { font-size: .78rem; }
  .product-card__prix .prix-actuel { font-size: .85rem; }
  .product-card__rating { font-size: .7rem; }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .hero__title { font-size: 1.6rem; }
  .hero__sub { font-size: .85rem; }

  .section__title { font-size: 1.5rem; }

  .auth-card h1 { font-size: 1.3rem; }
  .auth-card { padding: 1.25rem 1rem; }
}

/* ════════ Landscape phones — keep compact ════════ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 100vh; padding: 1rem 0; }
  .hero__title { font-size: 2rem; }
  .hero__sub { font-size: .9rem; }
}

/* ════════ Touch device specific (no hover) ════════ */
@media (hover: none) and (pointer: coarse) {
  /* Désactiver les effets hover transformés qui restent collés au tap */
  .product-card:hover { transform: none; }
  .cat-card:hover { transform: none; }
  .advantage:hover { transform: none; }
  /* Affiche bien les actions sans hover */
  .product-card__actions { opacity: 1; transform: none; }
}

/* ════════ Print ════════ */
@media print {
  .header, .footer, .promo-bandeau,
  .nav, .burger, .header__actions,
  .product-card__actions,
  .btn, .page-loader { display: none !important; }
  body { background: #fff; color: #000; }
  .container { max-width: 100%; padding: 0; }
}

/* ═══════════════════════════════════════════════════════
   À PROPOS — Page éditoriale magazine
   ═══════════════════════════════════════════════════════ */

/* Tokens couleurs internes (s'auto-corrigent si déjà définis ailleurs) */
.ap-hero, .ap-story, .ap-sahel, .ap-values, .ap-engagements, .ap-cta-final {
  --ap-brown:     #0F1A3A;
  --ap-brown-md:  #15244F;
  --ap-brown-lt:  #8A6E2C;
  --ap-cream:     #FAF4E8;
  --ap-cream-dk:  #E8D9BD;
  --ap-gold:      #C49A4E;
  --ap-gold-lt:   #E0B95B;
  --ap-font-head: 'Cormorant Garamond', Georgia, serif;
}

.ap-narrow { max-width: 720px; }

/* ── Eyebrow / Divider partagés ─────────────────────── */
.ap-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--ap-gold);
  margin: 0 0 .85rem;
}

.ap-eyebrow--light { color: var(--ap-gold-lt); }

.ap-section__head {
  margin-bottom: 2.5rem;
}

.ap-section__head--center {
  text-align: center;
}

.ap-section__title {
  font-family: var(--ap-font-head);
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ap-brown);
  margin: 0 0 1rem;
}

.ap-section__title em {
  font-style: italic;
  color: var(--ap-brown-md);
}

.ap-divider {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: var(--ap-gold);
  font-size: .8rem;
  letter-spacing: .3em;
  margin: 1rem 0 0;
}

.ap-divider::before,
.ap-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .35;
}

.ap-divider span { white-space: nowrap; opacity: .8; }

.ap-section__head--center .ap-divider { justify-content: center; max-width: 240px; margin: 1rem auto 0; }
.ap-section__head--center .ap-eyebrow { display: block; }

.ap-divider--light { color: var(--ap-gold-lt); }

/* ── HERO ───────────────────────────────────────────── */
.ap-hero {
  position: relative;
  padding: 7rem 0 5rem;
  background:
    linear-gradient(180deg, var(--ap-cream) 0%, #fff 100%);
  overflow: hidden;
}

.ap-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ap-hero__deco {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 78, .15), transparent 65%);
}

.ap-hero__deco--1 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
}

.ap-hero__deco--2 {
  width: 350px; height: 350px;
  bottom: -50px; left: -80px;
  background: radial-gradient(circle, rgba(21, 36, 79, .1), transparent 65%);
}

.ap-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ap-hero__text { max-width: 580px; }

.ap-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ap-gold);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.ap-hero__star { font-size: .9rem; }

.ap-hero__title {
  font-family: var(--ap-font-head);
  font-size: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ap-brown);
  margin: 0 0 1.5rem;
}

.ap-hero__title em {
  display: inline;
  font-style: italic;
  color: var(--ap-brown-md);
}

.ap-hero__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ap-brown-md);
  margin: 0 0 2rem;
  max-width: 520px;
}

.ap-hero__signature {
  border-left: 2px solid var(--ap-gold);
  padding-left: 1rem;
  font-family: var(--ap-font-head);
}

.ap-hero__signature span {
  display: block;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ap-brown);
}

.ap-hero__signature small {
  display: block;
  font-family: sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--ap-brown-lt);
  margin-top: .35rem;
}

.ap-hero__photo {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 420px;
  margin-left: auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -25px rgba(15, 26, 58, .4),
    0 0 0 1px rgba(196, 154, 78, .2);
  transform: rotate(1.5deg);
  transition: transform .5s ease;
}

.ap-hero__photo:hover { transform: rotate(0deg); }

.ap-hero__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.ap-hero__photo--fallback {
  background: linear-gradient(135deg, #15244F, #0F1A3A);
}

.ap-hero__photo--fallback::after {
  content: 'Photo de Claire à venir';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 241, 232, .55);
  font-family: var(--ap-font-head);
  font-style: italic;
  font-size: 1.3rem;
  padding: 0 1rem;
  text-align: center;
}

.ap-hero__photo-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.4rem .9rem;
  background: linear-gradient(0deg, rgba(15, 26, 58, .85), transparent);
  color: rgba(255, 255, 255, .92);
  font-family: var(--ap-font-head);
  font-style: italic;
  font-size: .82rem;
  letter-spacing: .04em;
}

/* ── STORY ──────────────────────────────────────────── */
.ap-story {
  padding: 6rem 0;
  background: #fff;
}

.ap-prose p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ap-brown);
  margin: 0 0 1.4rem;
}

.ap-prose__lead {
  font-size: 1.2rem !important;
  color: var(--ap-brown-md) !important;
}

.ap-prose__lead::first-letter {
  font-family: var(--ap-font-head);
  font-size: 5rem;
  font-weight: 500;
  font-style: italic;
  float: left;
  line-height: .85;
  margin: .2rem .6rem 0 0;
  color: var(--ap-brown-md);
}

.ap-quote {
  margin: 3rem -2rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, var(--ap-cream), #fff8e7);
  border-left: 4px solid var(--ap-gold);
  font-family: var(--ap-font-head);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ap-brown);
  position: relative;
  border-radius: 0 6px 6px 0;
}

.ap-quote__mark {
  font-size: 3.5rem;
  color: var(--ap-gold);
  opacity: .35;
  line-height: 0;
  position: relative;
  top: .4rem;
  margin-right: .25rem;
}

.ap-quote__mark--end {
  margin-left: .25rem;
  margin-right: 0;
}

.ap-prose__signature {
  font-family: var(--ap-font-head);
  font-size: 1.5rem !important;
  font-style: italic;
  color: var(--ap-brown-md) !important;
  text-align: center;
  margin-top: 2.5rem !important;
}

.ap-prose__signature strong {
  color: var(--ap-gold);
  font-weight: 700;
  font-style: normal;
  letter-spacing: .02em;
}

/* ── SAHEL ─────────────────────────────────────────── */
.ap-sahel {
  position: relative;
  padding: 6rem 0;
  color: #fff;
  overflow: hidden;
}

.ap-sahel__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(196, 154, 78, .2), transparent 50%),
    linear-gradient(135deg, #0F1A3A 0%, #15244F 50%, #0F1A3A 100%);
}

.ap-sahel__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(196, 154, 78, .03) 30px, rgba(196, 154, 78, .03) 31px);
  opacity: .8;
}

.ap-sahel__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ap-sahel__title {
  font-family: var(--ap-font-head);
  font-size: clamp(3rem, 2rem + 4vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -.01em;
}

.ap-sahel__title em {
  font-style: italic;
  color: var(--ap-gold-lt);
}

.ap-sahel p {
  color: rgba(245, 241, 232, .85);
  line-height: 1.8;
  font-size: 1.02rem;
  margin: 0 0 1.2rem;
}

.ap-sahel p strong { color: var(--ap-gold-lt); font-weight: 600; }
.ap-sahel p em { color: var(--ap-gold-lt); font-style: italic; font-weight: 500; }

.ap-sahel__cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.5rem;
  padding: .9rem 1.8rem;
  background: var(--ap-gold);
  color: #0F1A3A;
  text-decoration: none;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  border-radius: 999px;
  transition: background .25s, transform .25s;
}

.ap-sahel__cta:hover {
  background: var(--ap-gold-lt);
  transform: translateX(3px);
}

.ap-sahel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ap-sahel__list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  background: rgba(245, 241, 232, .04);
  border: 1px solid rgba(196, 154, 78, .2);
  border-radius: 6px;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}

.ap-sahel__list li:hover {
  background: rgba(245, 241, 232, .08);
  border-color: rgba(196, 154, 78, .4);
}

.ap-sahel__num {
  font-family: var(--ap-font-head);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--ap-gold-lt);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}

.ap-sahel__list strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.ap-sahel__list span {
  color: rgba(245, 241, 232, .65);
  font-size: .85rem;
}

/* ── VALEURS ──────────────────────────────────────── */
.ap-values {
  padding: 6rem 0;
  background: var(--ap-cream);
}

.ap-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ap-value-card {
  position: relative;
  padding: 2.5rem 1.75rem 2rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 20px -8px rgba(15, 26, 58, .15);
  transition: transform .35s ease, box-shadow .35s ease;
}

.ap-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -12px rgba(15, 26, 58, .25);
}

.ap-value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--ap-gold);
  border-radius: 0 0 4px 4px;
}

.ap-value-card__num {
  display: inline-block;
  font-family: var(--ap-font-head);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--ap-gold);
  line-height: 1;
  margin-bottom: .5rem;
  opacity: .8;
}

.ap-value-card h3 {
  font-family: var(--ap-font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ap-brown);
  margin: 0 0 .75rem;
}

.ap-value-card p {
  color: var(--ap-brown-md);
  line-height: 1.65;
  margin: 0;
  font-size: .95rem;
}

/* ── ENGAGEMENTS ──────────────────────────────────── */
.ap-engagements {
  padding: 6rem 0;
  background: #fff;
}

.ap-engagements__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ap-engagements__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--ap-cream);
  border-radius: 6px;
  border-left: 3px solid var(--ap-gold);
  transition: transform .25s ease;
}

.ap-engagements__list li:hover {
  transform: translateX(6px);
}

.ap-engagements__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ap-gold);
  color: #fff;
  flex-shrink: 0;
}

.ap-engagements__list strong {
  display: block;
  color: var(--ap-brown);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .2rem;
}

.ap-engagements__list span {
  color: var(--ap-brown-lt);
  font-size: .88rem;
}

/* ── CTA FINALE ────────────────────────────────────── */
.ap-cta-final {
  padding: 5rem 0 7rem;
  background: var(--ap-cream);
}

.ap-cta-final__card {
  background:
    linear-gradient(135deg, #0F1A3A, #15244F);
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 24px 50px -20px rgba(15, 26, 58, .4);
  position: relative;
  overflow: hidden;
}

.ap-cta-final__card::before,
.ap-cta-final__card::after {
  content: '✦';
  position: absolute;
  color: var(--ap-gold);
  opacity: .25;
  font-size: 2rem;
}

.ap-cta-final__card::before { top: 1.5rem; left: 1.5rem; }
.ap-cta-final__card::after { bottom: 1.5rem; right: 1.5rem; }

.ap-cta-final__title {
  font-family: var(--ap-font-head);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.8rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 .75rem;
}

.ap-cta-final__sub {
  color: rgba(245, 241, 232, .7);
  font-size: 1rem;
  margin: 0 0 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.ap-cta-final__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.ap-cta-final__social {
  display: flex;
  justify-content: center;
  gap: .75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 154, 78, .25);
}

.ap-cta-final__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245, 241, 232, .1);
  color: var(--ap-gold-lt);
  transition: background .2s, transform .2s;
}

.ap-cta-final__social a:hover {
  background: var(--ap-gold);
  color: #0F1A3A;
  transform: translateY(-3px);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .ap-hero { padding: 4rem 0 3rem; }
  .ap-hero__inner,
  .ap-sahel__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ap-hero__photo { margin: 0 auto; max-width: 320px; }
  .ap-story, .ap-sahel, .ap-values, .ap-engagements { padding: 4rem 0; }
  .ap-quote {
    margin: 2rem 0;
    padding: 2rem;
    font-size: 1.2rem;
  }
  .ap-sahel__num { font-size: 1.8rem; width: 38px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PWA — install prompt, update toast, mode standalone, safe-area iOS
   ═══════════════════════════════════════════════════════════════════ */

/* Safe-area iOS (notch + home indicator) — applique padding aux
   surfaces fixes en mode standalone (application installée) */
@supports (padding: max(0px)) {
  .header {
    padding-top: max(0px, env(safe-area-inset-top));
  }
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Mode standalone (app installée) — retire les artefacts navigateur */
@media all and (display-mode: standalone) {
  /* Cache liens externes qui n'ont pas de sens hors navigateur */
  .browser-only { display: none !important; }
  /* Renforce le contact avec l'écran (pas de sélection accidentelle) */
  body {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
  /* Réactive la sélection sur le contenu utile */
  input, textarea, [contenteditable], .selectable, article, p, li, td, h1, h2, h3 {
    -webkit-user-select: text;
    user-select: text;
  }
}

/* Barre d'invitation à l'installation */
#pwaInstall {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 9990;
  background: #141416;
  color: #faf7f2;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
  padding: 14px 16px;
  transform: translateY(160%);
  opacity: 0;
  transition: transform .32s cubic-bezier(.2,.9,.3,1), opacity .32s ease;
  max-width: 440px;
  margin-inline: auto;
  font-size: 14px;
  line-height: 1.4;
}
#pwaInstall.is-shown { transform: translateY(0); opacity: 1; }
.pwa-install__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pwa-install__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.pwa-install__yes,
.pwa-install__no {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(250,247,242,.25);
  background: transparent;
  color: #faf7f2;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .15s ease, transform .15s ease;
}
.pwa-install__yes {
  background: #b8895a;
  border-color: #b8895a;
  color: #141416;
}
.pwa-install__yes:hover, .pwa-install__yes:focus-visible { transform: translateY(-1px); }
.pwa-install__no:hover, .pwa-install__no:focus-visible { background: rgba(250,247,242,.1); }

/* Toast "nouvelle version disponible" */
#pwaUpdate {
  position: fixed;
  left: 50%;
  bottom: calc(20px + env(safe-area-inset-bottom));
  transform: translate(-50%, 120%);
  opacity: 0;
  transition: transform .3s cubic-bezier(.2,.9,.3,1), opacity .3s ease;
  z-index: 9991;
  background: #faf7f2;
  color: #141416;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  max-width: calc(100vw - 24px);
}
#pwaUpdate.is-shown { transform: translate(-50%, 0); opacity: 1; }
#pwaUpdate button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #141416;
  color: #faf7f2;
  border: none;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — corrections mobile globales (≤ 480px)
   Cible : header, panier, formulaires, checkout, images produit.
   ═══════════════════════════════════════════════════════════════════ */

/* Empêche le débordement horizontal — cause n°1 du "layout cassé mobile" */
html, body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* Toute image reste dans son container */
img, video, canvas, svg { max-width: 100%; height: auto; }

/* Zones tactiles minimum WCAG 2.5.5 — 44×44 */
@media (hover: none) and (pointer: coarse) {
  a, button, [role="button"], input[type="submit"], input[type="button"], .btn {
    min-height: 44px;
    min-width: 44px;
  }
  /* Empêche le zoom iOS sur les inputs < 16px */
  input, select, textarea { font-size: max(16px, 1rem); }
}

/* Container global — padding cohérent sur mobile */
@media (max-width: 480px) {
  .container, .wrap, main {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* Grilles produits — 2 colonnes serrées sur mobile */
  .products-grid,
  .catalogue-grid,
  .grid-produits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  /* Boutons pleine largeur sur mobile pour les CTA critiques */
  .btn--block-mobile,
  .cart-actions .btn,
  .checkout-actions .btn {
    width: 100%;
    justify-content: center;
  }
  /* Header mobile — logo + burger + panier tiennent sur 320px */
  .header__inner {
    gap: 8px;
  }
  .logo__img {
    max-height: 36px;
    width: auto;
  }
}

/* Très petits écrans (320px, Galaxy Fold fermé) */
@media (max-width: 360px) {
  .products-grid,
  .catalogue-grid,
  .grid-produits {
    grid-template-columns: 1fr;
  }
  h1 { font-size: clamp(24px, 7vw, 32px); }
}

/* ════════ Accueil — catégories sur téléphone ════════
   37 catégories empilées une par une faisaient 11 000 px de haut
   (56 % de la page). Sur téléphone : un bandeau qu'on fait glisser. */
@media (max-width: 768px) {
  .categories-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: 42%;
    gap: .75rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .75rem;
    scrollbar-width: thin;
  }
  .cat-card { aspect-ratio: 3 / 4; scroll-snap-align: start; }
  .cat-card__body h3 { font-size: .95rem; line-height: 1.2; }
}
@media (max-width: 400px) {
  .categories-grid { grid-auto-columns: 46%; }
}

/* ════════ Menu mobile — correctif ════════
   Le flou d'arrière-plan (backdrop-filter) de l'en-tête faisait de lui le
   bloc conteneur du menu en position fixe : le tiroir était piégé dans les
   80 px de l'en-tête et n'en montrait qu'une bande de 48 px.
   Sur téléphone : en-tête opaque, sans flou → le menu occupe tout l'écran. */
@media (max-width: 768px) {
  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #F5EFE6;
  }
  .nav { height: calc(100dvh - var(--header-h)); }
}
@media (max-width: 768px) {
  .nav { justify-content: flex-start; }
  .nav__list > li { width: 100%; }
  .nav .nav__link {
    display: flex; align-items: center; min-height: 48px;
    padding: .9rem .25rem;
    border-bottom: 1px solid #f0e6d2;
    font-size: 1rem; letter-spacing: .08em;
  }
}

/* ════════ Pied de page sur téléphone ════════
   Avant : tout sur une colonne, liens très espacés → 1 864 px (2,3 écrans).
   Structure : marque centrée · Catalogue | Mon compte · Informations (2 colonnes
   de liens) · newsletter · barre du bas centrée. */
@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.25rem;
    padding-top: 2.75rem;
    padding-bottom: 2rem;
  }

  /* Marque */
  .footer__brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    max-width: none;
    gap: .5rem;
  }
  .footer__brand .logo--footer { margin-bottom: .25rem; }
  .logo__img--footer { max-width: 120px; }
  .footer__tagline { font-size: .95rem; }
  .footer__social { justify-content: center; margin-top: .5rem; }

  /* Groupes de liens */
  .footer__nav h4, .footer__newsletter h4 { font-size: 1rem; margin-bottom: .6rem; }
  .footer__nav ul li { margin: 0; }
  .footer__nav a {
    display: flex; align-items: center;
    min-height: 40px;
    font-size: .9rem;
    line-height: 1.25;
  }
  .footer__nav a::before { display: none; }
  /* « Informations » (6 liens) : pleine largeur, liens sur 2 colonnes */
  .footer__inner > .footer__nav:nth-child(4) { grid-column: 1 / -1; }
  .footer__inner > .footer__nav:nth-child(4) ul {
    display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.25rem;
  }

  /* Newsletter : champ + bouton sur une ligne */
  .footer__newsletter { grid-column: 1 / -1; max-width: none; }
  .newsletter-form { display: flex; }
  .newsletter-form input { flex: 1 1 auto; min-width: 0; }
  .newsletter-form button { flex: 0 0 auto; }

  /* Barre du bas */
  .footer__bottom-inner { align-items: center; text-align: center; gap: 1rem; }
  .footer__bottom-copy { display: flex; flex-direction: column; align-items: center; gap: .35rem; }
  .footer__bottom-right { align-items: center; justify-content: center; }
  .footer__legal { justify-content: center; gap: .4rem 1.1rem; }
  .footer__paiements { justify-content: center; }
}

/* Tablette : les 3 groupes de liens tiennent côte à côte */
@media (min-width: 601px) and (max-width: 1024px) {
  .footer__inner { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.5rem; }
  .footer__brand, .footer__newsletter { grid-column: 1 / -1; }
}

/* ════════ Page Contact ════════ */
.ct { padding: 3rem 0 4.5rem; }
.ct__inner { max-width: 1080px; }
.ct__head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.ct__eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-dk); margin: 0 0 .6rem;
}
.ct__title { font-family: var(--font-head); color: var(--navy); font-size: clamp(1.8rem, 1.3rem + 2vw, 2.6rem); margin: 0 0 1rem; }
.ct__lead { color: #5b5346; line-height: 1.7; margin: 0; }

.ct__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); gap: 1.75rem; align-items: start; }

/* Coordonnées : carte bleu nuit */
.ct__info {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dk) 100%);
  color: #fff; border-radius: 14px; padding: 2rem 1.75rem;
  box-shadow: 0 18px 40px -22px rgba(15, 26, 58, .55);
}
.ct__info-title { font-family: var(--font-head); font-size: 1.15rem; color: var(--gold-lt); margin: 0 0 1.25rem; letter-spacing: .04em; }
.ct__actions { display: grid; gap: .65rem; margin-bottom: 1.75rem; }
.ct__btn {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 48px; padding: .75rem 1rem; border-radius: 10px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ct__btn--wa { background: #1FA855; color: #fff; }
.ct__btn--wa:hover { background: #178A45; transform: translateY(-1px); }
.ct__btn--call { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(224,185,91,.45); }
.ct__btn--call:hover { background: rgba(224,185,91,.15); }

.ct__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.ct__list li { display: flex; gap: .9rem; align-items: flex-start; }
.ct__icon {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(224,185,91,.12); color: var(--gold-lt);
  border: 1px solid rgba(224,185,91,.35);
}
.ct__icon svg { width: 19px; height: 19px; }
.ct__label { display: block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.62); margin-bottom: .15rem; }
.ct__value { color: #fff; font-size: .98rem; text-decoration: none; overflow-wrap: anywhere; }
a.ct__value:hover { color: var(--gold-lt); }

/* Formulaire */
.ct__card {
  background: #fff; border: 1px solid var(--cream-dk); border-radius: 14px;
  padding: 2rem 1.75rem; box-shadow: 0 10px 30px -20px rgba(15, 26, 58, .35);
}
.ct__card-title { font-family: var(--font-head); color: var(--navy); font-size: 1.15rem; margin: 0 0 1.4rem; letter-spacing: .04em; }
.ct__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ct__field { margin-bottom: 1.1rem; }
.ct__field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.ct__field label span { color: var(--gold-dk); }
.ct__field input, .ct__field textarea {
  width: 100%; font: inherit; font-size: 16px; color: #2C2416;
  padding: .75rem .9rem; border: 1px solid var(--cream-dkk); border-radius: 9px;
  background: #FDFBF7; transition: border-color .2s, box-shadow .2s, background .2s;
}
.ct__field textarea { resize: vertical; min-height: 150px; line-height: 1.55; }
.ct__field input:focus, .ct__field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 3px rgba(196, 154, 78, .18);
}
.ct__field.has-error input, .ct__field.has-error textarea { border-color: #B91C1C; }
.ct__error { display: block; color: #B91C1C; font-size: .8rem; margin-top: .3rem; }
.ct__submit { width: 100%; justify-content: center; gap: .6rem; min-height: 50px; margin-top: .25rem; }
.ct__note { font-size: .78rem; color: #7a7061; text-align: center; margin: .85rem 0 0; }

/* Téléphone : coordonnées d'abord (WhatsApp en un geste), puis formulaire */
@media (max-width: 860px) {
  .ct__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ct { padding: 2rem 0 3rem; }
  .ct__head { margin-bottom: 1.75rem; }
  .ct__info, .ct__card { padding: 1.5rem 1.2rem; }
  .ct__row { grid-template-columns: 1fr; gap: 0; }
}
