/* ===================================================================
   ÉTOFFE — Feuille de style
   Palette : crème chaud / encre / terracotta
   Typo : Fraunces (titres serif) + Instrument Sans (texte)
   =================================================================== */

:root {
  --creme: #F5F0E6;          /* fond principal */
  --creme-fonce: #ECE4D4;    /* fond alterné */
  --carte: #FDFAF3;          /* fond des cartes */
  --encre: #1A1712;          /* texte principal */
  --encre-60: rgba(26, 23, 18, 0.6);
  --encre-35: rgba(26, 23, 18, 0.35);
  --encre-12: rgba(26, 23, 18, 0.12);
  --encre-06: rgba(26, 23, 18, 0.06);
  --terracotta: #B25538;     /* accent */
  --terracotta-fonce: #93432B;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Instrument Sans", sans-serif;
  --transition: cubic-bezier(0.32, 0.72, 0, 1);
  --rayon: 1.6rem;
}

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

html { scroll-behavior: auto; }

body {
  font-family: var(--sans);
  background: var(--creme);
  color: var(--encre);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain léger sur toute la page — donne un rendu "papier" */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 480;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.conteneur { width: min(1240px, 92vw); margin-inline: auto; }

section { position: relative; }

/* Titres révélés ligne par ligne : chaque ligne est masquée */
.ligne { display: block; overflow: hidden; }
.ligne span { display: inline-block; will-change: transform; }

.italique { font-style: italic; font-weight: 380; color: var(--terracotta); }

.sur-titre {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--encre-60);
  margin-bottom: 1.6rem;
}
.sur-titre::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--terracotta);
}

/* ============================ BOUTONS ============================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.55rem 0.6rem 0.55rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.55s var(--transition), background 0.55s var(--transition), color 0.55s var(--transition), border-color 0.55s var(--transition);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn .btn-icone {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: transform 0.55s var(--transition);
}
.btn:hover .btn-icone { transform: translateX(3px); }

.btn-plein { background: var(--encre); color: var(--creme); }
.btn-plein .btn-icone { background: rgba(245, 240, 230, 0.14); }
.btn-plein:hover { background: var(--terracotta-fonce); }

.btn-contour { border-color: var(--encre-12); color: var(--encre); background: transparent; }
.btn-contour .btn-icone { background: var(--encre-06); }
.btn-contour:hover { border-color: var(--encre); }

.btn-accent { background: var(--terracotta); color: #FDF8EF; }
.btn-accent .btn-icone { background: rgba(255, 255, 255, 0.16); }
.btn-accent:hover { background: var(--terracotta-fonce); }

/* ============================ HEADER ============================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  justify-content: center;
  padding-top: 1.4rem;
  transition: transform 0.6s var(--transition), padding 0.6s var(--transition);
}
.site-header.compact { padding-top: 0.7rem; }
.site-header.cache { transform: translateY(-120%); }

.header-pill {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 0.65rem 0.9rem 0.65rem 1.5rem;
  border-radius: 999px;
  background: rgba(253, 250, 243, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--encre-06);
  box-shadow: 0 18px 40px -24px rgba(26, 23, 18, 0.35);
}

.logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.logo-point { color: var(--terracotta); }

.nav-desktop { display: flex; gap: 1.7rem; }
.nav-desktop a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--encre-60);
  transition: color 0.4s var(--transition);
  position: relative;
}
.nav-desktop a:hover, .nav-desktop a.actif { color: var(--encre); }
.nav-desktop a.actif::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1.5px;
  background: var(--terracotta);
}

.header-actions { display: flex; align-items: center; gap: 0.4rem; }

.lien-panier {
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--encre);
  color: var(--creme);
  transition: background 0.5s var(--transition);
}
.lien-panier:hover { background: var(--terracotta-fonce); }

.compteur-panier {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform 0.4s var(--transition);
}
.compteur-panier.visible { transform: scale(1); }

.burger {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--encre-12);
  background: transparent;
  position: relative;
}
.burger span {
  position: absolute;
  left: 50%;
  width: 1.05rem;
  height: 1.5px;
  background: var(--encre);
  transition: transform 0.5s var(--transition);
}
.burger span:nth-child(1) { transform: translate(-50%, -4px); }
.burger span:nth-child(2) { transform: translate(-50%, 3px); }
.burger.ouvert span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.burger.ouvert span:nth-child(2) { transform: translate(-50%, 0) rotate(-45deg); }

.menu-mobile {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--transition);
}
.menu-mobile.ouvert { opacity: 1; pointer-events: auto; }
.menu-mobile nav { display: flex; flex-direction: column; gap: 1.2rem; text-align: center; }
.menu-mobile a {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3rem);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
  transition-delay: calc(var(--i) * 80ms);
}
.menu-mobile.ouvert a { opacity: 1; transform: translateY(0); }
.menu-mobile a:hover { color: var(--terracotta); }

/* ============================ HERO ============================ */

.hero {
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: 8rem 0 3rem;
  overflow: hidden;
}

.hero-fond {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-fond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85);
}
.hero-fond::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20, 16, 10, 0.82) 0%, rgba(20, 16, 10, 0.25) 45%, rgba(20, 16, 10, 0.35) 100%);
}

.hero-contenu { color: #F7F2E7; width: min(1240px, 92vw); margin-inline: auto; }

.hero h1 {
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 430;
  max-width: 18ch;
  margin-bottom: 1.8rem;
}
.hero h1 .italique { color: #E5B79B; }

.hero-bas {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-texte {
  max-width: 34ch;
  font-size: 1.02rem;
  color: rgba(247, 242, 231, 0.78);
}
.hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero .btn-contour { border-color: rgba(247, 242, 231, 0.35); color: #F7F2E7; }
.hero .btn-contour .btn-icone { background: rgba(247, 242, 231, 0.12); }
.hero .btn-contour:hover { border-color: #F7F2E7; }
.hero .btn-plein { background: #F7F2E7; color: var(--encre); }
.hero .btn-plein .btn-icone { background: var(--encre-06); }
.hero .btn-plein:hover { background: #fff; }

.hero-indice {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(247, 242, 231, 0.65);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-indice::after {
  content: "";
  width: 1px;
  height: 2.6rem;
  background: linear-gradient(to bottom, rgba(247,242,231,0.7), transparent);
  animation: descend 2.2s var(--transition) infinite;
}
@keyframes descend {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================ MARQUEE ============================ */

.marquee {
  padding: 1.4rem 0;
  background: var(--encre);
  color: var(--creme);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-piste {
  display: inline-flex;
  gap: 3.5rem;
  padding-right: 3.5rem;
  animation: defile 26s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 420;
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee span::after { content: "✳"; color: var(--terracotta); font-size: 0.85rem; }
@keyframes defile { to { transform: translateX(-50%); } }

/* =================== SECTION HORIZONTALE (scrollytelling) =================== */

.horizontal { background: var(--creme-fonce); overflow: hidden; }

.horizontal-entete {
  padding: 7rem 0 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.horizontal-entete h2 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 16ch; }

.piste-horizontale {
  display: flex;
  gap: 2rem;
  padding: 0 8vw 7rem;
  width: max-content;
  align-items: stretch;
}

.panneau {
  position: relative;
  width: clamp(280px, 32vw, 460px);
  border-radius: var(--rayon);
  overflow: hidden;
  background: var(--carte);
  border: 1px solid var(--encre-06);
  padding: 0.55rem;
  flex-shrink: 0;
}
.panneau-interieur {
  border-radius: calc(var(--rayon) - 0.55rem);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.panneau img {
  width: 100%;
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  transition: transform 1s var(--transition);
}
.panneau:hover img { transform: scale(1.05); }
.panneau-legende {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
}
.panneau-legende h3 { font-size: 1.15rem; }
.panneau-legende .prix { font-weight: 600; color: var(--encre-60); font-size: 0.95rem; }

.panneau-citation {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2.5rem;
  background: var(--encre);
  color: var(--creme);
}
.panneau-citation p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 380;
  line-height: 1.3;
}
.panneau-citation em { color: #E5B79B; }

/* =================== MANIFESTE (texte qui se révèle mot à mot) =================== */

.manifeste { padding: clamp(7rem, 14vw, 12rem) 0; }
.manifeste p {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.25;
  max-width: 24ch;
  margin-inline: auto;
  text-align: center;
}
.manifeste .mot { opacity: 0.12; display: inline-block; }
.manifeste .accent-mot { color: var(--terracotta); font-style: italic; }

/* =================== GRILLE PRODUITS =================== */

.section-produits { padding: clamp(5rem, 10vw, 8rem) 0; }

.entete-section {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
}
.entete-section h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 18ch; }

.grille-produits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 2rem 1.6rem;
}

.carte-produit { display: block; }

.carte-visuel {
  position: relative;
  border-radius: var(--rayon);
  overflow: hidden;
  background: var(--carte);
  border: 1px solid var(--encre-06);
  aspect-ratio: 3 / 3.7;
}
.carte-visuel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition), opacity 0.8s var(--transition);
}
.carte-visuel .visuel-alt { opacity: 0; }
.carte-produit:hover .visuel-alt { opacity: 1; }
.carte-produit:hover .carte-visuel img { transform: scale(1.06); }

.badge-produit {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: rgba(253, 250, 243, 0.9);
  backdrop-filter: blur(6px);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.carte-cta {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: rgba(26, 23, 18, 0.85);
  backdrop-filter: blur(8px);
  color: var(--creme);
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s var(--transition), transform 0.55s var(--transition);
}
.carte-produit:hover .carte-cta { opacity: 1; transform: translateY(0); }
.carte-cta .fleche { transition: transform 0.55s var(--transition); }
.carte-produit:hover .carte-cta .fleche { transform: translateX(4px); }

.carte-infos { padding: 1rem 0.3rem 0; }
.carte-infos h3 { font-size: 1.12rem; font-weight: 500; }
.carte-ligne {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.3rem;
}
.carte-prix { font-weight: 600; color: var(--encre-60); font-size: 0.95rem; }
.carte-pastilles { display: flex; gap: 0.35rem; }
.pastille {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 1px solid var(--encre-12);
  display: inline-block;
}

/* =================== LOOKBOOK (éditorial) =================== */

.lookbook { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--creme-fonce); }
.lookbook-grille {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.6rem;
  align-items: center;
}
.look-1 { grid-column: 1 / 6; }
.look-texte { grid-column: 6 / 9; text-align: center; padding: 0 1rem; }
.look-2 { grid-column: 9 / 13; margin-top: 6rem; }
.lookbook figure {
  border-radius: var(--rayon);
  overflow: hidden;
  border: 1px solid var(--encre-06);
}
.lookbook img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.look-texte h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 1.2rem; }
.look-texte p { color: var(--encre-60); margin-bottom: 1.8rem; }

/* =================== BANDEAU ENGAGEMENTS =================== */

.engagements { padding: clamp(4rem, 8vw, 7rem) 0; }
.engagements-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.engagement {
  padding: 0.55rem;
  border-radius: var(--rayon);
  background: var(--carte);
  border: 1px solid var(--encre-06);
}
.engagement-interieur {
  border-radius: calc(var(--rayon) - 0.55rem);
  border: 1px solid var(--encre-06);
  padding: 2rem 1.8rem;
  height: 100%;
}
.engagement .chiffre {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.9rem;
  display: block;
}
.engagement h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.engagement p { font-size: 0.92rem; color: var(--encre-60); }

/* =================== CTA FINAL =================== */

.cta-final {
  margin: 0 auto clamp(5rem, 9vw, 8rem);
  width: min(1240px, 92vw);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.8rem, 5vw, 5rem);
  color: #F7F2E7;
  text-align: center;
}
.cta-final img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(20, 16, 10, 0.55), rgba(20, 16, 10, 0.8));
}
.cta-final h2 { font-size: clamp(2.2rem, 5.5vw, 4.4rem); max-width: 20ch; margin: 0 auto 1.4rem; }
.cta-final p { color: rgba(247, 242, 231, 0.8); max-width: 44ch; margin: 0 auto 2.4rem; }

/* =================== PAGE CATÉGORIE =================== */

.entete-categorie { padding: 10rem 0 3.5rem; }
.entete-categorie h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
.entete-categorie .compte { color: var(--encre-60); margin-top: 0.8rem; }

.filtres {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 2.2rem 0 3rem;
}
.filtre {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--encre-12);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--encre-60);
  transition: all 0.45s var(--transition);
}
.filtre:hover { border-color: var(--encre); color: var(--encre); }
.filtre.actif { background: var(--encre); border-color: var(--encre); color: var(--creme); }

.page-categorie .grille-produits { padding-bottom: clamp(5rem, 9vw, 8rem); }

.aucun-produit {
  padding: 4rem 0 8rem;
  text-align: center;
  color: var(--encre-60);
  font-family: var(--serif);
  font-size: 1.4rem;
}

/* =================== PAGE PRODUIT =================== */

.page-produit-grille {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 8.5rem 0 5rem;
  align-items: start;
}

.galerie { position: sticky; top: 6.5rem; }
.galerie-principale {
  border-radius: var(--rayon);
  overflow: hidden;
  border: 1px solid var(--encre-06);
  background: var(--carte);
  padding: 0.55rem;
}
.galerie-principale img {
  width: 100%;
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  border-radius: calc(var(--rayon) - 0.55rem);
  transition: opacity 0.5s var(--transition);
}
.galerie-vignettes { display: flex; gap: 0.8rem; margin-top: 0.8rem; }
.vignette {
  width: 5.2rem;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1.5px solid transparent;
  padding: 0;
  background: none;
  transition: border-color 0.4s var(--transition);
}
.vignette img { aspect-ratio: 1; object-fit: cover; }
.vignette.active { border-color: var(--encre); }

.fiche { padding-top: 0.5rem; }
.fil-ariane {
  font-size: 0.8rem;
  color: var(--encre-35);
  margin-bottom: 1.6rem;
}
.fil-ariane a:hover { color: var(--encre); }

.fiche h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: 0.5rem; }
.fiche .tagline { color: var(--encre-60); margin-bottom: 1.4rem; }
.fiche .prix-produit {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin-bottom: 2.2rem;
}

.choix-groupe { margin-bottom: 1.9rem; }
.choix-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.choix-label .valeur { color: var(--encre-60); text-transform: none; letter-spacing: 0; font-weight: 500; }
.choix-label .guide { color: var(--terracotta); text-transform: none; letter-spacing: 0; font-weight: 500; cursor: pointer; }

.swatches { display: flex; gap: 0.7rem; }
.swatch {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--encre-12);
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: outline-color 0.35s var(--transition), transform 0.35s var(--transition);
}
.swatch:hover { transform: scale(1.08); }
.swatch.actif { outline-color: var(--encre); }

.tailles-grille { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.taille {
  min-width: 3.1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.8rem;
  border: 1px solid var(--encre-12);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.35s var(--transition);
}
.taille:hover { border-color: var(--encre); }
.taille.actif { background: var(--encre); border-color: var(--encre); color: var(--creme); }

.achat-ligne {
  display: flex;
  gap: 0.8rem;
  margin: 2.4rem 0 1rem;
}
.selecteur-qte {
  display: flex;
  align-items: center;
  border: 1px solid var(--encre-12);
  border-radius: 999px;
  overflow: hidden;
}
.selecteur-qte button {
  width: 2.8rem;
  height: 3.4rem;
  border: none;
  background: transparent;
  font-size: 1.15rem;
  color: var(--encre-60);
  transition: color 0.3s;
}
.selecteur-qte button:hover { color: var(--encre); }
.selecteur-qte .qte-valeur { min-width: 2rem; text-align: center; font-weight: 600; }

.btn-ajouter {
  flex: 1;
  justify-content: space-between;
  padding: 0.55rem 0.55rem 0.55rem 1.8rem;
  font-size: 1rem;
}

.message-selection {
  font-size: 0.85rem;
  color: var(--terracotta);
  min-height: 1.4rem;
  margin-bottom: 1rem;
}

.reassurance {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding: 1.2rem 0;
  border-top: 1px solid var(--encre-12);
  border-bottom: 1px solid var(--encre-12);
  margin-bottom: 1.8rem;
  font-size: 0.84rem;
  color: var(--encre-60);
}
.reassurance span { display: inline-flex; align-items: center; gap: 0.45rem; }
.reassurance svg { flex-shrink: 0; }

.accordeon { border-bottom: 1px solid var(--encre-12); }
.accordeon summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.accordeon summary::-webkit-details-marker { display: none; }
.accordeon summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--encre-60);
  transition: transform 0.4s var(--transition);
}
.accordeon[open] summary::after { transform: rotate(45deg); }
.accordeon p { padding-bottom: 1.2rem; color: var(--encre-60); font-size: 0.94rem; }

.section-similaires { padding: clamp(3rem, 7vw, 6rem) 0 clamp(5rem, 9vw, 8rem); }

/* Barre d'achat flottante sur mobile */
.barre-achat-mobile {
  display: none;
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 80;
  padding: 0.7rem 0.7rem 0.7rem 1.2rem;
  border-radius: 999px;
  background: rgba(26, 23, 18, 0.92);
  backdrop-filter: blur(14px);
  color: var(--creme);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 18px 40px -18px rgba(26, 23, 18, 0.6);
}
.barre-achat-mobile .infos-mini { line-height: 1.25; }
.barre-achat-mobile .infos-mini strong { font-size: 0.92rem; display: block; }
.barre-achat-mobile .infos-mini span { font-size: 0.8rem; color: rgba(245, 240, 230, 0.7); }
.barre-achat-mobile button {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: var(--terracotta);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* =================== PAGE PANIER =================== */

.page-panier { padding: 9.5rem 0 clamp(5rem, 9vw, 8rem); min-height: 80vh; }
.page-panier h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 2.6rem; }

.panier-grille {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.lignes-panier { display: flex; flex-direction: column; gap: 1rem; }

.ligne-panier {
  display: grid;
  grid-template-columns: 6.5rem 1fr auto;
  gap: 1.3rem;
  padding: 0.55rem;
  border-radius: var(--rayon);
  background: var(--carte);
  border: 1px solid var(--encre-06);
  align-items: center;
}
.ligne-panier img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: calc(var(--rayon) - 0.55rem);
}
.ligne-infos h3 { font-size: 1.05rem; }
.ligne-infos .variante { font-size: 0.82rem; color: var(--encre-60); margin: 0.2rem 0 0.7rem; }
.ligne-infos .selecteur-qte button { height: 2.2rem; width: 2.2rem; font-size: 1rem; }

.ligne-droite {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
  padding-right: 0.8rem;
}
.ligne-droite .prix-ligne { font-weight: 600; }
.btn-supprimer {
  border: none;
  background: none;
  color: var(--encre-35);
  font-size: 0.8rem;
  text-decoration: underline;
  transition: color 0.3s;
}
.btn-supprimer:hover { color: var(--terracotta); }

.recap {
  position: sticky;
  top: 6.5rem;
  padding: 0.55rem;
  border-radius: var(--rayon);
  background: var(--carte);
  border: 1px solid var(--encre-06);
}
.recap-interieur {
  border: 1px solid var(--encre-06);
  border-radius: calc(var(--rayon) - 0.55rem);
  padding: 1.8rem;
}
.recap h2 { font-size: 1.5rem; margin-bottom: 1.4rem; }
.recap-ligne {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--encre-60);
  padding: 0.45rem 0;
}
.recap-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--encre);
  border-top: 1px solid var(--encre-12);
  margin-top: 0.8rem;
  padding-top: 1rem;
}
.recap .btn { width: 100%; justify-content: space-between; margin-top: 1.6rem; }
.recap-note { font-size: 0.78rem; color: var(--encre-35); margin-top: 0.9rem; text-align: center; }

.panier-vide {
  text-align: center;
  padding: 4rem 0;
}
.panier-vide p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 2rem;
}

/* Formulaire de commande (démo) */
.formulaire-commande { margin-top: 3.5rem; display: none; }
.formulaire-commande.visible { display: block; }
.formulaire-commande h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 1.8rem; }
.champs-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.champ { display: flex; flex-direction: column; gap: 0.4rem; }
.champ.pleine-largeur { grid-column: 1 / -1; }
.champ label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--encre-60); }
.champ input {
  padding: 0.95rem 1.1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--encre-12);
  background: var(--carte);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.champ input:focus { outline: none; border-color: var(--encre); }
.champ input.erreur { border-color: var(--terracotta); }

.confirmation {
  display: none;
  text-align: center;
  padding: 5rem 1rem;
}
.confirmation.visible { display: block; }
.confirmation .coche {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2rem;
}
.confirmation h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 0.8rem; }
.confirmation p { color: var(--encre-60); max-width: 48ch; margin: 0 auto 2rem; }

/* =================== TOAST =================== */

.toast {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translate(-50%, 140%);
  z-index: 95;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: var(--encre);
  color: var(--creme);
  font-size: 0.92rem;
  white-space: nowrap;
  box-shadow: 0 18px 40px -14px rgba(26, 23, 18, 0.5);
  transition: transform 0.6s var(--transition);
}
.toast.visible { transform: translate(-50%, 0); }
.toast a { color: #E5B79B; font-weight: 600; margin-left: 0.4rem; }

/* =================== FOOTER =================== */

.site-footer {
  background: var(--encre);
  color: var(--creme);
  border-radius: 2rem 2rem 0 0;
}
.footer-inner {
  width: min(1240px, 92vw);
  margin-inline: auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; margin-bottom: 1rem; }
.footer-baseline { color: rgba(245, 240, 230, 0.6); font-size: 0.92rem; }
.footer-titre {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.45);
  margin-bottom: 1.1rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a {
  color: rgba(245, 240, 230, 0.78);
  font-size: 0.92rem;
  transition: color 0.3s;
  width: fit-content;
}
.footer-col a:hover { color: #E5B79B; }
.footer-bas {
  width: min(1240px, 92vw);
  margin-inline: auto;
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid rgba(245, 240, 230, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(245, 240, 230, 0.45);
}
.footer-bas a { text-decoration: underline; }

/* =================== RESPONSIVE =================== */

@media (max-width: 960px) {
  .lookbook-grille { grid-template-columns: 1fr; }
  .look-1, .look-texte, .look-2 { grid-column: 1 / -1; margin-top: 0; }
  .look-texte { padding: 2.5rem 0; }
  .engagements-grille { grid-template-columns: 1fr; }
  .page-produit-grille { grid-template-columns: 1fr; padding-top: 7.5rem; }
  .galerie { position: static; }
  .panier-grille { grid-template-columns: 1fr; }
  .recap { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .burger { display: block; }
  .header-pill { gap: 1.2rem; }
  .hero { padding-bottom: 5.5rem; }
  .hero-indice { display: none; }
  .champs-grille { grid-template-columns: 1fr; }
  .ligne-panier { grid-template-columns: 5rem 1fr; }
  .ligne-droite {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.8rem 0.6rem;
  }
  .barre-achat-mobile.active { display: flex; }
  .achat-ligne { flex-wrap: wrap; }
  .btn-ajouter { width: 100%; }
}

/* Respect du réglage "réduire les animations" du visiteur */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
