/* ============================================================
   Ledan Candle — Feuille de style principale
   Rose & blanc · Luxe / Chic · Aurora · Hover 3D
   ============================================================ */

:root {
  --rose:        #c4828f;
  --rose-dark:   #9e5f6d;
  --rose-deep:   #7a4551;
  --rose-soft:   #f7e7ea;
  --rose-mist:   #fdf6f7;
  --gold:        #b08d57;
  --gold-soft:   #e8d9c3;
  --ink:         #241a1e;
  --body:        #5c5054;
  --gray:        #948489;
  --line:        #eee2e4;
  --white:       #ffffff;
  --bg:          #fffcfc;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;

  --shadow-s: 0 4px 18px rgba(122, 69, 81, .07);
  --shadow-m: 0 14px 40px rgba(122, 69, 81, .10);
  --shadow-l: 0 26px 70px rgba(122, 69, 81, .16);
  --radius: 16px;
  --radius-s: 10px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  font-weight: 300;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: .2px;
}
h1 { font-size: clamp(34px, 6vw, 66px); }
h2 { font-size: clamp(27px, 4.4vw, 44px); }
h3 { font-size: clamp(19px, 2.4vw, 24px); }
p  { font-weight: 300; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 22px; }
.section { padding: 78px 0; position: relative; }
.section-soft { background: var(--rose-mist); }

/* ---------------- Aurora (degrade anime) ---------------- */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora::before,
.aurora::after {
  content: '';
  position: absolute;
  width: 70vw; height: 70vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  animation: auroraMove 18s ease-in-out infinite alternate;
}
.aurora::before { background: radial-gradient(circle, #f6c9d4 0%, transparent 68%); top: -22vw; left: -14vw; }
.aurora::after  { background: radial-gradient(circle, #e6d3f0 0%, transparent 68%); bottom: -26vw; right: -16vw; animation-delay: -8s; }
@keyframes auroraMove {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(6%, -5%, 0) scale(1.15); }
  100% { transform: translate3d(-5%, 6%, 0) scale(1.05); }
}
.aurora-soft::before, .aurora-soft::after { opacity: .32; }

.section > .container, .section-head { position: relative; z-index: 1; }

/* ---------------- Boutons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 34px;
  border: none;
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .38s var(--ease);
  background: transparent;
  position: relative;
  overflow: hidden;
}
.btn-filled {
  background: linear-gradient(120deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(196, 130, 143, .34);
}
.btn-filled:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(196, 130, 143, .44); }
.btn-outline { border: 1px solid var(--rose); color: var(--rose-dark); background: rgba(255,255,255,.6); }
.btn-outline:hover { background: var(--rose); color: #fff; transform: translateY(-3px); }
.btn-ghost { border: 1px solid rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--rose-deep); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 11px; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-s); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 76px;
}
.logo {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.logo span { color: var(--rose); }
.logo small {
  display: block;
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 3.4px;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: -3px;
}
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 12.5px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .3s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width .35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--rose-dark); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .3s ease;
}
.icon-btn:hover { color: var(--rose-dark); }
.cart-count {
  position: absolute;
  top: -7px; right: -9px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count[data-count="0"] { display: none; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span {
  display: block;
  width: 24px; height: 1.6px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Menu mobile */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  z-index: 899;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 27px;
  color: var(--ink);
  padding: 12px 0;
  letter-spacing: 1px;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #efe3e6;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.13); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,26,30,.42) 0%, rgba(36,26,30,.30) 45%, rgba(36,26,30,.62) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 110px 0 90px; }
.hero-content { max-width: 700px; color: #fff; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
  opacity: .95;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: rgba(255,255,255,.7); }
.hero h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 4px 30px rgba(0,0,0,.25); }
.hero p { color: rgba(255,255,255,.92); font-size: 17px; max-width: 560px; margin-bottom: 34px; font-weight: 300; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Bandeau defilant */
.marquee {
  background: linear-gradient(90deg, var(--rose-deep), var(--rose), var(--rose-deep));
  color: #fff;
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 46px; animation: marquee 30s linear infinite; }
.marquee span { font-size: 11.5px; letter-spacing: 3.4px; text-transform: uppercase; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- Titres de section ---------------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--gray); }
.title-deco { position: relative; display: inline-block; padding-bottom: 26px; }
.title-deco::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 12px;
  transform: translateX(-50%);
  width: 64px; height: 1px;
  background: var(--rose);
}

/* ---------------- Cartes generiques (3D hover) ---------------- */
.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 34px 28px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s ease;
  transform-style: preserve-3d;
}
.card:hover {
  transform: translateY(-10px) rotateX(3deg) rotateY(-3deg);
  box-shadow: var(--shadow-l);
  border-color: var(--rose-soft);
}

/* ---------------- Collections ---------------- */
.collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  box-shadow: var(--shadow-s);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.collection-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-l); }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.collection-card:hover img { transform: scale(1.07); }
.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,26,30,0) 38%, rgba(36,26,30,.72) 100%);
}
.collection-info {
  position: absolute;
  left: 26px; right: 26px; bottom: 26px;
  z-index: 2;
  color: #fff;
}
.collection-info h3 { color: #fff; margin-bottom: 4px; }
.collection-info span {
  font-size: 11px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  opacity: .85;
}

/* ---------------- Grille produits ---------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-m); }
.product-card .img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--rose-mist);
}
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product-card:hover .img-wrap img { transform: scale(1.06); }
.badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 9.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 30px;
  z-index: 2;
}
.badge-promo { background: var(--rose); }
.product-card .info { padding: 20px 18px 22px; display: flex; flex-direction: column; flex: 1; }
.product-card .cat { font-size: 10.5px; letter-spacing: 2.6px; text-transform: uppercase; color: var(--rose); }
.product-card h3 { font-size: 19px; margin: 8px 0 10px; }
.product-card .price { font-family: var(--serif); font-size: 20px; color: var(--ink); margin-top: auto; }
.product-card .price .old { font-size: 14px; color: var(--gray); text-decoration: line-through; margin-left: 9px; font-family: var(--sans); }
.product-card .btns { display: flex; gap: 10px; margin-top: 16px; }
.product-card .btns .btn { flex: 1; }

/* Carrousel vedettes (desktop) */
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .6s var(--ease);
}
.carousel-track .product-card { flex: 0 0 calc((100% - 40px) / 3); }
.carousel-btn {
  position: absolute;
  top: 42%;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all .3s ease;
}
.carousel-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.carousel-btn.prev { left: -8px; }
.carousel-btn.next { right: -8px; }

/* ---------------- Reassurance ---------------- */
.reassurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reassurance-item {
  text-align: center;
  padding: 30px 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.reassurance-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-s); }
.reassurance-item svg { color: var(--rose); margin: 0 auto 14px; }
.reassurance-item h4 { font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: .4px; color: var(--ink); margin-bottom: 5px; }
.reassurance-item p { font-size: 12.5px; color: var(--gray); line-height: 1.6; }

/* ---------------- A propos / texte + image ---------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow-m); width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { margin-bottom: 18px; }
.split-text p { margin-bottom: 16px; }
.split-list { margin: 22px 0 28px; }
.split-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
}
.split-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1.5px;
  background: var(--rose);
}

/* ---------------- Temoignages ---------------- */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; margin-bottom: 14px; }
.testi p { font-family: var(--serif); font-size: 19px; color: var(--ink); line-height: 1.6; margin-bottom: 18px; }
.testi-author { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); }

/* ---------------- Formulaire ---------------- */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 11.5px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gray); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: #fff;
  font-size: 15px;
  font-weight: 300;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(196,130,143,.12);
}
.form-note { font-size: 12.5px; color: var(--gray); }

/* ---------------- Page hero interne ---------------- */
.page-hero {
  position: relative;
  padding: 84px 0 66px;
  background: linear-gradient(160deg, var(--rose-soft) 0%, #fff 62%);
  text-align: center;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: 11.5px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--gray); margin-top: 14px; }
.breadcrumb a:hover { color: var(--rose); }

/* ---------------- Filtres ---------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 11px 22px;
  border-radius: 40px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 11.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s ease;
}
.filter-btn:hover { border-color: var(--rose); color: var(--rose-dark); }
.filter-btn.active { background: var(--rose); color: #fff; border-color: var(--rose); }
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--gray);
}
.toolbar select { padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--radius-s); background: #fff; }

/* ---------------- Fiche produit ---------------- */
.product-layout { display: grid; grid-template-columns: 1fr; gap: 34px; }
.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--rose-mist);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background .3s ease;
}
.gal-arrow:hover { background: #fff; }
.gal-arrow.prev { left: 14px; }
.gal-arrow.next { right: 14px; }
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.thumbs img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-s);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .3s ease, opacity .3s ease;
  opacity: .7;
}
.thumbs img.active, .thumbs img:hover { border-color: var(--rose); opacity: 1; }

.product-detail h1 { font-size: clamp(28px, 4.4vw, 42px); margin: 10px 0 14px; }
.detail-price { font-family: var(--serif); font-size: 30px; color: var(--ink); display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.detail-price .old { font-family: var(--sans); font-size: 16px; color: var(--gray); text-decoration: line-through; }
.detail-price .badge-promo { position: static; font-size: 10px; padding: 5px 12px; }
.detail-desc { margin: 20px 0 26px; }
.sizes-wrap { margin-bottom: 22px; }
.sizes-wrap .label { font-size: 11.5px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gray); margin-bottom: 10px; display: block; }
.sizes { display: flex; flex-wrap: wrap; gap: 9px; }
.size-btn {
  min-width: 48px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-s);
  cursor: pointer;
  font-size: 13px;
  transition: all .3s ease;
}
.size-btn:hover { border-color: var(--rose); }
.size-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.size-btn.sold-out { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.stock-info { font-size: 13px; color: #2e7d5b; margin-top: 10px; min-height: 20px; }
.stock-info.low { color: #c0392b; }

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 22px;
}
.qty button { width: 42px; height: 46px; border: none; background: #fff; cursor: pointer; font-size: 17px; color: var(--ink); transition: background .25s ease; }
.qty button:hover { background: var(--rose-soft); }
.qty input { width: 54px; height: 46px; border: none; text-align: center; font-size: 15px; background: #fff; }

.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.detail-reassure { border-top: 1px solid var(--line); padding-top: 22px; display: grid; gap: 14px; }
.detail-reassure div { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; }
.detail-reassure svg { color: var(--rose); flex-shrink: 0; margin-top: 2px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 17, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s ease;
  padding: 24px;
}
.lightbox.active { opacity: 1; }
.lightbox img { max-width: 92%; max-height: 88%; object-fit: contain; border-radius: 6px; }
.lightbox-close {
  position: absolute;
  top: 18px; right: 24px;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

/* ---------------- Panier ---------------- */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  font-size: 10.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.cart-table td { padding: 18px 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-prod { display: flex; align-items: center; gap: 14px; }
.cart-prod img { width: 74px; height: 74px; object-fit: cover; border-radius: var(--radius-s); background: var(--rose-mist); }
.cart-prod h4 { font-family: var(--sans); font-size: 14.5px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.cart-prod span { font-size: 12px; color: var(--gray); }
.cart-summary {
  background: var(--rose-mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: sticky;
  top: 100px;
}
.cart-summary h3 { margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14.5px; }
.sum-row.total {
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 16px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}
.remove-btn { background: none; border: none; cursor: pointer; color: var(--gray); font-size: 12px; text-decoration: underline; transition: color .3s ease; }
.remove-btn:hover { color: #c0392b; }
.empty-state { text-align: center; padding: 70px 20px; }
.empty-state svg { color: var(--rose-soft); margin: 0 auto 22px; }

/* Etapes commande */
.steps { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.step { display: flex; align-items: center; gap: 9px; font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gray); }
.step b {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
}
.step.active { color: var(--rose-dark); }
.step.active b { background: var(--rose); border-color: var(--rose); color: #fff; }
.step-sep { width: 34px; height: 1px; background: var(--line); align-self: center; }

.choice-box { display: grid; gap: 12px; margin: 22px 0; }
.choice-box .btn { justify-content: flex-start; padding: 18px 24px; letter-spacing: 1.2px; }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-s);
}
.panel h3 { margin-bottom: 20px; }
.hidden { display: none !important; }

/* ---------------- Auth / Compte ---------------- */
.auth-wrap { max-width: 520px; margin: 0 auto; }
.auth-tabs { display: flex; gap: 8px; margin-bottom: 26px; background: var(--rose-mist); padding: 6px; border-radius: 40px; }
.auth-tab {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  border-radius: 40px;
  cursor: pointer;
  font-size: 11.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: all .3s ease;
}
.auth-tab.active { background: #fff; color: var(--rose-dark); box-shadow: var(--shadow-s); }
.account-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.account-tabs::-webkit-scrollbar { display: none; }
.account-tab {
  padding: 14px 4px;
  margin-right: 26px;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gray);
  flex-shrink: 0;
}
.account-tab.active { color: var(--ink); border-color: var(--rose); }

.order-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.order-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--rose-mist);
  border-bottom: 1px solid var(--line);
}
.order-card-header strong { font-family: var(--serif); font-size: 18px; color: var(--ink); }
.order-card-body { padding: 20px 22px; }
.order-lines { width: 100%; border-collapse: collapse; margin-top: 12px; }
.order-lines td { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.order-lines td:last-child { text-align: right; }
.status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 500;
}
.status-en_attente { background: #fff4e0; color: #a9741b; }
.status-confirmee { background: #e8f1ff; color: #2b5fa8; }
.status-prete { background: #e9f7ee; color: #2e7d5b; }
.status-retiree { background: #eee9f6; color: #5b4b8a; }
.status-annulee { background: #fdeaea; color: #c0392b; }

/* ---------------- Galerie ---------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gallery-grid a, .gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-s);
}
.gallery-grid a { aspect-ratio: 1 / 1; overflow: hidden; display: block; }
.gallery-grid img { transition: transform .7s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.07); }

/* ---------------- Faq ---------------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  position: relative;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--rose);
  transition: transform .3s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 0 22px; color: var(--gray); }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-s); }
.contact-item svg { color: var(--rose); flex-shrink: 0; }
.contact-item h4 { font-family: var(--sans); font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; font-weight: 500; }
.contact-item a, .contact-item p { color: var(--ink); font-size: 15px; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: linear-gradient(165deg, #2b1f23 0%, #3a282e 100%);
  color: rgba(255,255,255,.72);
  padding: 66px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 34px; position: relative; z-index: 1; }
.site-footer h4 {
  font-family: var(--sans);
  color: #fff;
  font-size: 12px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.site-footer .logo { color: #fff; margin-bottom: 16px; font-size: 24px; }
.site-footer p { font-size: 14px; line-height: 1.8; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14px; transition: color .3s ease; }
.footer-links a:hover { color: var(--rose); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .35s var(--ease);
}
.socials a:hover { background: var(--rose); transform: translateY(-3px); }
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 12.5px;
  position: relative;
  z-index: 1;
}
.footer-bottom a:hover { color: var(--rose); }

/* ---------------- Toast ---------------- */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: #fff;
  padding: 15px 26px;
  border-radius: 40px;
  font-size: 13.5px;
  z-index: 10000;
  transition: transform .45s var(--ease);
  box-shadow: var(--shadow-m);
  max-width: 90vw;
  text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: #2e7d5b; }
.toast.error { background: #c0392b; }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@keyframes revealFallback { to { opacity: 1 !important; transform: none !important; } }
.reveal { animation: revealFallback .8s ease .4s forwards; }
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  .aurora::before, .aurora::after, .hero-bg, .marquee-track { animation: none; }
}

/* ---------------- Skeleton ---------------- */
.skeleton {
  background: linear-gradient(90deg, #f7eef0 25%, #fdf6f7 50%, #f7eef0 75%);
  background-size: 200% 100%;
  animation: sk 1.4s infinite;
  border-radius: var(--radius);
}
@keyframes sk { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .main-nav { display: none; }
  .burger { display: block; }
  .header-inner { height: 66px; }
  .logo { font-size: 21px; letter-spacing: 2px; }
  .hero { min-height: 76vh; }
  .hero-inner { padding: 84px 0 66px; }
  .hero p { font-size: 15.5px; }
  .hero-btns .btn { width: 100%; }
  .products-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .product-layout { grid-template-columns: 1fr; }
  .gal-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Carrousel : defilement natif sur mobile */
  .carousel-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .carousel-wrap::-webkit-scrollbar { display: none; }
  .carousel-track { transform: none !important; gap: 14px; padding-bottom: 8px; }
  .carousel-track .product-card { flex: 0 0 62vw; scroll-snap-align: start; }
  .carousel-btn { display: none; }
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }
  .section { padding: 96px 0; }
  .collections-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .reassurance-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1.15fr .85fr; gap: 42px; }
  .cart-layout { grid-template-columns: 1.6fr 1fr; gap: 42px; }
  .product-layout { grid-template-columns: 1fr 1fr; gap: 54px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 46px; }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid.big { grid-template-columns: repeat(3, 1fr); }
}
