/* ══════════════════════════════════════════════════════════════
   MAISON CHÉRIE · E-commerce mode féminine
   Palette blush · Playfair Display + Manrope + Caveat
   ══════════════════════════════════════════════════════════════ */

:root {
  --cream:        #fbf6f0;
  --cream-2:      #f5ede2;
  --cream-3:      #e8dfd0;
  --blush:        #f4d8cd;
  --blush-deep:   #e8b8a8;
  --rose:         #c47d7a;
  --rose-deep:    #a35c5b;
  --cherry:       #7a2e3f;
  --cherry-deep:  #5e1f2d;
  --gold:         #c4925b;
  --ink:          #2b2120;
  --ink-soft:     #5d4f4d;
  --ink-faded:    #8a7d7b;
  --line:         #ead8c9;
  --line-soft:    #f3e8da;
  --white:        #ffffff;
  --shadow-sm:    0 1px 3px rgba(122, 46, 63, 0.05), 0 4px 14px rgba(122, 46, 63, 0.05);
  --shadow:       0 8px 24px rgba(122, 46, 63, 0.07), 0 16px 40px rgba(122, 46, 63, 0.06);
  --shadow-lg:    0 20px 50px rgba(122, 46, 63, 0.1);
  --radius-sm:    6px;
  --radius:       14px;
  --radius-lg:    24px;
}

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

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

body {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px;
}

.script {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  color: var(--rose);
}

/* ── ANNONCE ──────────────────────────────────────────────── */
.annonce {
  background: var(--cherry);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.05em;
  overflow: hidden;
  padding: 9px 0;
  font-weight: 500;
}
.annonce-track {
  display: flex;
  gap: 26px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 240, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
}
.brand-mark {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--cherry);
  background: var(--cream);
  border: 1.5px solid var(--cherry);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  line-height: 0.8;
  padding-bottom: 4px;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-menu-left { justify-self: start; }
.nav-menu-right { justify-self: end; }
.nav-menu a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  position: relative;
  transition: color .2s;
  padding: 6px 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--cherry);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav-menu a:hover { color: var(--cherry); }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
}
.nav-icon {
  background: none;
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  position: relative;
  transition: all .2s;
}
.nav-icon:hover {
  background: var(--blush);
  color: var(--cherry);
}
.nav-cart .cart-bubble {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--cherry);
  color: var(--cream);
  font-size: 9.5px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(2.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 16px 36px 24px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.btn-primary {
  background: var(--cherry);
  color: var(--cream);
  border-color: var(--cherry);
}
.btn-primary:hover {
  background: var(--cherry-deep);
  border-color: var(--cherry-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(122, 46, 63, 0.25);
}
.btn-link {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  border-radius: 100px;
}
.btn-link:hover {
  background: var(--ink);
  color: var(--cream);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cherry);
  border-bottom: 1px solid var(--cherry);
  padding-bottom: 4px;
  transition: all .25s;
  align-self: flex-start;
}
.link-arrow:hover {
  gap: 12px;
  color: var(--cherry-deep);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 60px 0 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 30px;
}
.eyebrow-flower { color: var(--rose); font-size: 14px; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(46px, 6.4vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 30px;
}
.hero-line {
  display: block;
}
.hero-line-italic {
  font-style: italic;
  color: var(--rose);
  padding-left: 56px;
  position: relative;
}
.hero-line-italic::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 40px;
  height: 1px;
  background: var(--rose);
}
.hero-title em {
  font-style: italic;
  color: var(--cherry);
  font-weight: 500;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-script {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose);
  font-size: 19px;
}
.hero-script .script { font-size: 22px; }

/* ── HERO VISUAL ──────────────────────────────────────────── */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.15;
  min-height: 460px;
}
.hero-img {
  position: absolute;
  border-radius: 240px 240px 12px 12px;
  overflow: hidden;
  background: var(--blush);
  box-shadow: var(--shadow-lg);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-main {
  width: 75%;
  height: 90%;
  top: 5%;
  right: 0;
  z-index: 1;
}
.hero-img-mini {
  width: 36%;
  height: 32%;
  bottom: 8%;
  left: 0;
  z-index: 2;
  border-radius: 12px 12px 110px 110px;
}
.hero-product-card {
  position: absolute;
  top: 18%;
  left: -2%;
  z-index: 3;
  background: var(--white);
  padding: 12px 16px 12px 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hpc-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--blush);
  flex-shrink: 0;
}
.hpc-img img { width: 100%; height: 100%; object-fit: cover; }
.hpc-info { display: flex; flex-direction: column; gap: 2px; }
.hpc-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--cherry);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hpc-info strong {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}
.hpc-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--cherry);
}
.hero-flower {
  position: absolute;
  width: 80px; height: 80px;
  bottom: -10px; right: 18%;
  z-index: 4;
  animation: flowerSpin 24s linear infinite;
  filter: drop-shadow(0 4px 12px rgba(196, 125, 122, 0.4));
}
@keyframes flowerSpin {
  to { transform: rotate(360deg); }
}

/* ── USP ──────────────────────────────────────────────────── */
.usp {
  padding: 50px 0;
  background: var(--cherry);
  color: var(--cream);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.usp-item svg { color: var(--blush); flex-shrink: 0; }
.usp-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 2px;
}
.usp-item span {
  font-size: 12.5px;
  color: rgba(251, 246, 240, .7);
  letter-spacing: 0.02em;
}

/* ── SECTION HEAD ─────────────────────────────────────────── */
.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head-narrow { max-width: 620px; }
.section-head-row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  gap: 30px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 18px;
}
.eyebrow-bullet { color: var(--rose); font-size: 13px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--cherry);
}
.section-lede {
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 16px;
  line-height: 1.65;
}
.section-lede strong {
  color: var(--cherry);
  font-weight: 600;
}

/* ── CATÉGORIES ──────────────────────────────────────────── */
.cats {
  padding: 110px 0;
  background: var(--cream);
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 18px;
}
.cat {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blush);
  display: block;
  transition: transform .4s ease;
}
.cat-tall {
  grid-row: span 2;
}
.cat:hover { transform: translateY(-3px); }
.cat-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.cat:hover .cat-img img { transform: scale(1.06); }
.cat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(43, 33, 32, 0.55));
  pointer-events: none;
}
.cat-info {
  position: absolute;
  left: 22px; right: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--cream);
}
.cat-info h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.cat-info span {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.arrow {
  display: inline-block;
  transition: transform .3s;
}
.cat:hover .arrow { transform: translateX(6px); }

/* ── PRODUITS ─────────────────────────────────────────────── */
.produits {
  padding: 110px 0;
  background: var(--cream);
}
.produits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 18px;
}
.produit {
  background: var(--cream);
}
.produit-link { display: block; }
.produit-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--blush);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}
.produit-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.produit:hover .produit-img img {
  transform: scale(1.04);
}
.produit-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--cream);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  z-index: 2;
}
.produit-badge-best { background: var(--cherry); color: var(--cream); }
.produit-badge-new { background: var(--gold); color: var(--cream); }
.produit-badge-low { background: var(--ink); color: var(--cream); }
.produit-fav {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(251, 246, 240, .94);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  z-index: 2;
  transition: all .2s;
}
.produit-fav:hover {
  background: var(--cherry);
  color: var(--cream);
  transform: scale(1.1);
}
.produit-fav.active {
  background: var(--cherry);
  color: var(--cream);
}
.produit-fav.active svg { fill: currentColor; }
.produit-add {
  position: absolute;
  left: 12px; right: 12px;
  bottom: 12px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 11px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: all .25s;
}
.produit:hover .produit-add {
  opacity: 1;
  transform: translateY(0);
}
.produit-add:hover { background: var(--cherry); }
.produit-info { padding: 0 4px; }
.produit-cat {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faded);
  margin-bottom: 6px;
}
.produit-info h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.produit-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.produit-price strong {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--cherry);
}
.price-old {
  font-size: 13px;
  color: var(--ink-faded);
  text-decoration: line-through;
}
.produit-colors {
  display: flex;
  gap: 5px;
  align-items: center;
}
.produit-colors > span {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.produit-colors .more {
  width: auto;
  height: auto;
  font-size: 10px;
  color: var(--ink-faded);
  margin-left: 3px;
}

/* ── EDITORIAL ────────────────────────────────────────────── */
.edito {
  padding: 110px 0;
  background: var(--cream-2);
  position: relative;
}
.edito-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.edito-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blush);
}
.edito-img img { width: 100%; height: 100%; object-fit: cover; }
.edito-img-tag {
  position: absolute;
  bottom: 22px; left: 22px;
  background: var(--cream);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 16px;
  color: var(--cherry);
  box-shadow: var(--shadow-sm);
}
.edito-text .section-title { text-align: left; }
.edito-text .eyebrow { margin-bottom: 18px; }
.edito-lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 26px 0 36px;
}
.edito-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.edito-points li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.edito-points li:last-child { border-bottom: none; }
.ep-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--cherry);
  font-weight: 500;
}
.edito-points li strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 3px;
}
.edito-points li span {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ── LOOKBOOK ─────────────────────────────────────────────── */
.lookbook {
  padding: 110px 0;
  background: var(--cream);
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.look {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s;
}
.look:hover { transform: translateY(-4px); }
.look-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blush);
  margin-bottom: 18px;
}
.look-tall .look-img { aspect-ratio: 4 / 5.6; }
.look-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.look:hover .look-img img { transform: scale(1.05); }
.look-num {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--cream);
  color: var(--cherry);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}
.look-meta { padding: 0 4px; }
.look-meta h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.look-meta p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.look-shop {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-faded);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.shop-bullet {
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
}
.look-shop a {
  margin-left: auto;
  color: var(--cherry);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11.5px;
  border-bottom: 1px solid var(--cherry);
  padding-bottom: 2px;
}

/* ── INSTAGRAM ────────────────────────────────────────────── */
.insta {
  padding: 110px 0;
  background: var(--cream-2);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.insta-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--blush);
}
.insta-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(122, 46, 63, 0.6);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .25s;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.insta-tile:hover img { transform: scale(1.06); }
.insta-tile:hover .insta-overlay { opacity: 1; }

/* ── AVIS ─────────────────────────────────────────────────── */
.avis {
  padding: 110px 0;
  background: var(--cream);
}
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.avis-card {
  background: var(--cream-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.avis-card-feat {
  background: var(--blush);
  border-color: var(--blush-deep);
}
.avis-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 15px;
}
.avis-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.avis-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(122, 46, 63, 0.12);
}
.avis-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--cream);
  flex-shrink: 0;
}
.avis-avatar-1 { background: var(--rose); }
.avis-avatar-2 { background: var(--cherry); }
.avis-avatar-3 { background: var(--gold); }
.avis-card figcaption strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.avis-card figcaption span {
  font-size: 12px;
  color: var(--ink-faded);
}

/* ── CLUB / NEWSLETTER ────────────────────────────────────── */
.club {
  padding: 90px 0 110px;
  background: var(--cream);
}
.club-card {
  position: relative;
  background: var(--cherry);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 90px 40px 80px;
  text-align: center;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(244, 216, 205, .12), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(196, 146, 91, .15), transparent 30%);
}
.club-deco {
  position: absolute;
  font-size: 22px;
  color: rgba(244, 216, 205, .35);
  pointer-events: none;
}
.club-deco-1 { top: 30px; left: 50px; font-size: 28px; }
.club-deco-2 { top: 60px; right: 60px; }
.club-deco-3 { bottom: 50px; left: 80px; font-size: 18px; }

.script-lg {
  display: block;
  font-size: 26px;
  color: var(--blush);
  margin-bottom: 16px;
}
.club-card h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--cream);
}
.club-card h2 em {
  font-style: italic;
  color: var(--blush);
}
.club-card p {
  color: rgba(251, 246, 240, .8);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.club-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 22px;
  background: rgba(251, 246, 240, .12);
  border: 1px solid rgba(251, 246, 240, .25);
  padding: 6px;
  border-radius: 100px;
}
.club-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 22px;
  color: var(--cream);
  font-family: inherit;
  font-size: 14.5px;
}
.club-form input::placeholder { color: rgba(251, 246, 240, .55); }
.club-form input:focus { outline: none; }
.club-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--cherry);
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
}
.club-form button:hover {
  background: var(--blush);
  transform: translateY(-1px);
}
.club-ok {
  display: none;
  margin: 0 auto;
  max-width: 480px;
  background: rgba(251, 246, 240, .15);
  color: var(--blush);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 13.5px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.club-ok.show { display: block; }
.club-meta {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 12px;
  color: rgba(251, 246, 240, .6);
  letter-spacing: 0.04em;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--cream-2);
  padding: 80px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 2.4fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.brand-footer { margin-bottom: 22px; }
.footer-brand p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 320px;
  margin-bottom: 26px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all .2s;
}
.footer-social a:hover {
  background: var(--cherry);
  border-color: var(--cherry);
  color: var(--cream);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.footer-col a {
  font-size: 13.5px;
  color: var(--ink-soft);
  transition: color .2s;
}
.footer-col a:hover { color: var(--cherry); }

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  color: var(--ink-faded);
  flex-wrap: wrap;
}
.footer-legal {
  display: flex;
  gap: 18px;
}
.footer-legal a:hover { color: var(--cherry); }

/* ── REVEAL ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-inner { grid-template-columns: 1fr auto; gap: 16px; }
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .nav-actions { right: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .cat-tall { grid-row: span 1; }
  .produits-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .edito-grid { grid-template-columns: 1fr; gap: 50px; }
  .lookbook-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .avis-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 50px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .nav-inner { padding: 14px 22px; }
  .nav-actions { right: 22px; }
  .nav-actions .nav-icon { width: 34px; height: 34px; }
  .hero { padding: 30px 0 60px; }
  .hero-line-italic { padding-left: 0; }
  .hero-line-italic::before { display: none; }
  .hero-product-card { left: -8%; padding: 10px 14px 10px 10px; }
  .hpc-img { width: 46px; height: 46px; }
  .hpc-info strong { font-size: 13px; }
  .usp { padding: 36px 0; }
  .usp-grid { grid-template-columns: 1fr; gap: 18px; }
  .cats, .produits, .edito, .lookbook, .insta, .avis { padding: 70px 0; }
  .cats-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .produits-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer { padding: 60px 0 24px; }
  .club-card { padding: 60px 24px 50px; }
  .club-form { flex-direction: column; border-radius: var(--radius); padding: 8px; gap: 6px; }
  .club-form button { border-radius: 100px; padding: 13px; }
  .footer-bottom { flex-direction: column; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
}

/* ── INTERACTIVE STATES (favoris / panier / feedback) ────── */
.produit-fav.is-fav {
  background: var(--cherry);
  color: var(--cream);
  border-color: var(--cherry);
}
.produit-fav.is-fav svg { fill: var(--cream); stroke: var(--cream); }

.produit-add.is-added {
  background: var(--cherry) !important;
  color: var(--cream) !important;
  letter-spacing: .04em;
}

@keyframes cartBump {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.45); }
  70%  { transform: scale(.92); }
  100% { transform: scale(1); }
}
.cart-bubble.is-bumped {
  animation: cartBump .55s cubic-bezier(.34, 1.56, .64, 1);
  background: var(--gold) !important;
}

