/* ============================================================
   Lady Lily — mode fait main · identité céleste
   Palette : noir profond, blanc étoilé, champagne pailleté
   ============================================================ */
:root {
  --bg:        #050507;
  --surface:   #0d0d13;
  --surface-2: #14141c;
  --line:      rgba(203, 203, 220, 0.12);
  --text:      #ecebf0;
  --muted:     #8b8b98;
  --accent:    #d8c48f;   /* champagne */
  --accent-2:  #f3e7c4;   /* champagne clair (reflets) */
  --accent-dim:#a9986e;
  --danger:    #e0736f;
  --radius:    2px;
  --maxw:      1180px;
  --display: 'Cormorant Garamond', 'Jost', serif;
  --sans: 'Jost', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ciel étoilé ambiant fixe */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,.35), transparent),
    radial-gradient(1.5px 1.5px at 85% 60%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 15% 85%, rgba(255,255,255,.3), transparent),
    radial-gradient(1px 1px at 60% 90%, rgba(255,255,255,.35), transparent);
  opacity: .5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   Effets réutilisables : brillance, paillettes, révélation
   ============================================================ */

/* Texte pailleté / brillant (balayage lumineux animé) */
.shimmer {
  background: linear-gradient(
    100deg,
    var(--text) 0%, var(--text) 35%,
    var(--accent-2) 48%, #ffffff 52%, var(--accent-2) 56%,
    var(--text) 68%, var(--text) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shine 5.5s linear infinite;
}
@keyframes shine {
  to { background-position: -250% center; }
}

/* Particules de paillettes (générées en JS) */
.sparkle {
  position: absolute;
  width: 6px; height: 6px;
  pointer-events: none;
  background: radial-gradient(circle, #fff 0%, var(--accent-2) 40%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  animation: twinkle var(--dur, 3s) ease-in-out var(--delay, 0s) infinite;
  z-index: 1;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1) rotate(45deg); }
}

/* Révélation au défilement */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .22s; }
.reveal.d3 { transition-delay: .34s; }

@media (prefers-reduced-motion: reduce) {
  .shimmer, .sparkle, .hero-slide, .star-spin { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 7, 0.55);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.site-header.scrolled {
  background: rgba(5, 5, 7, 0.85);
  border-bottom-color: var(--line);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
}
.brand .star-spin { width: 24px; height: 24px; flex: none; }
.nav { display: flex; gap: 30px; }
.nav a {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s;
  position: relative;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--accent); transition: width .3s;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.cart-btn {
  position: relative;
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 9px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .25s, color .25s;
}
.cart-btn:hover { border-color: var(--accent); color: var(--accent); }
.cart-count {
  position: absolute; top: -8px; right: -8px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--accent); color: #14100a;
  font-size: 0.72rem; font-weight: 600; border-radius: 999px;
  display: grid; place-items: center;
}

/* Étoile qui tourne doucement */
.star-spin { animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Hero + carrousel
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-carousel { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-carousel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,7,.55) 0%, rgba(5,5,7,.35) 40%, rgba(5,5,7,.9) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 0 24px; }
.hero .starburst { width: 92px; margin: 0 auto 20px; filter: drop-shadow(0 0 22px rgba(243,231,196,.55)); }
.hero .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3.4rem, 11vw, 7rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 18px;
}
.hero .lede {
  color: #d7d7e0;
  max-width: 500px;
  margin: 0 auto 34px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.3); cursor: pointer; transition: background .3s, transform .3s;
}
.hero-dots button.active { background: var(--accent); transform: scale(1.3); }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--muted); font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,7px)} }

/* Boutons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 13px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .3s, color .3s;
}
.btn:hover { background: var(--accent); color: #14100a; }
.btn:disabled { opacity: .4; cursor: not-allowed; }
.btn-solid { background: var(--accent); color: #14100a; border-color: var(--accent); }
.btn-solid:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn-block { width: 100%; padding: 15px; }

/* ============================================================
   Bandeau défilant (marquee)
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
  padding: 16px 0;
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: slide-left 26s linear infinite;
  font-family: var(--display); font-style: italic; font-size: 1.3rem; color: var(--muted);
}
.marquee-track span { display: flex; align-items: center; gap: 48px; white-space: nowrap; }
.marquee-track span::after { content: '✶'; color: var(--accent); font-style: normal; }
@keyframes slide-left { to { transform: translateX(-50%); } }

/* ============================================================
   Sections génériques
   ============================================================ */
.section { max-width: var(--maxw); margin: 0 auto; padding: 100px 24px; }
.section-eyebrow {
  font-family: var(--sans); letter-spacing: .35em; text-transform: uppercase;
  font-size: .72rem; color: var(--accent); text-align: center; margin-bottom: 14px;
}
.section-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.2rem); text-align: center; margin: 0 0 12px;
}
.section-sub { color: var(--muted); text-align: center; max-width: 520px; margin: 0 auto 52px; }

/* ============================================================
   Filtres par catégorie
   ============================================================ */
.filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-bottom: 44px;
}
.filter-pill {
  font-family: var(--sans);
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .25s, border-color .25s, background .25s;
}
.filter-pill:hover { color: var(--text); border-color: var(--accent); }
.filter-pill.active {
  color: #14100a; background: var(--accent); border-color: var(--accent);
}

/* ============================================================
   Grille produits
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,196,143,.45);
  box-shadow: 0 18px 45px -20px rgba(216,196,143,.35);
}
.card .thumb { position: relative; aspect-ratio: 3 / 4; background: var(--surface-2); overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.card:hover .thumb img { transform: scale(1.07); }
.card .tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(5,5,7,.72); backdrop-filter: blur(4px);
  color: var(--accent-2); font-family: var(--sans);
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 11px; border: 1px solid var(--line); border-radius: 999px;
}
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-cat { font-family: var(--sans); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.card h3 { font-family: var(--display); font-weight: 500; font-size: 1.4rem; margin: 0; }
.card .desc { color: var(--muted); font-size: 0.88rem; flex: 1; }
.card .row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.card .price { font-family: var(--sans); font-size: 1.1rem; color: var(--accent); letter-spacing: 0.03em; }
.card .add {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--line); background: none; color: var(--text);
  padding: 9px 16px; border-radius: var(--radius); cursor: pointer; transition: all .25s;
}
.card .add:hover { border-color: var(--accent); background: var(--accent); color: #14100a; }
.card .stock-out { color: var(--muted); font-size: 0.8rem; }

/* ============================================================
   À propos / savoir-faire
   ============================================================ */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about .visual {
  aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); position: relative;
}
.about .visual img { width: 100%; height: 100%; object-fit: cover; }
.about h2 { font-family: var(--display); font-weight: 500; font-size: clamp(2rem,4.5vw,3rem); margin: 0 0 20px; }
.about p { color: #c8c8d2; margin: 0 0 18px; }
.about .stats { display: flex; gap: 40px; margin-top: 30px; }
.about .stat .n { font-family: var(--display); font-size: 2.2rem; color: var(--accent); }
.about .stat .l { font-size: .78rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

/* ============================================================
   Journal (articles)
   ============================================================ */
.journal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 30px; }
.article {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .4s, border-color .4s;
}
.article:hover { transform: translateY(-5px); border-color: rgba(216,196,143,.4); }
.article .cover { aspect-ratio: 16/10; overflow: hidden; }
.article .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.article:hover .cover img { transform: scale(1.06); }
.article .body { padding: 22px; }
.article .meta { font-family: var(--sans); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.article h3 { font-family: var(--display); font-weight: 500; font-size: 1.5rem; margin: 0 0 10px; }
.article p { color: var(--muted); font-size: .9rem; margin: 0 0 14px; }
.article .more { font-family: var(--sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* ============================================================
   Avis clients
   ============================================================ */
.testimonials { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tmt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 30px; }
.tmt {
  padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg);
}
.tmt .stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 16px; }
.tmt blockquote { font-family: var(--display); font-style: italic; font-size: 1.25rem; line-height: 1.5; margin: 0 0 18px; color: var(--text); }
.tmt .who { font-family: var(--sans); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter { text-align: center; }
.newsletter .box {
  max-width: 560px; margin: 0 auto; padding: 56px 40px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: radial-gradient(120% 120% at 50% 0%, rgba(216,196,143,.08), transparent 60%);
}
.newsletter form { display: flex; gap: 10px; margin-top: 26px; }
.newsletter input {
  flex: 1; padding: 14px 16px; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius); color: var(--text);
  font-family: var(--body); font-size: .95rem;
}
.newsletter input:focus { outline: none; border-color: var(--accent); }
.newsletter .note { color: var(--muted); font-size: .8rem; margin-top: 14px; }
@media (max-width: 520px){ .newsletter form { flex-direction: column; } }

/* ============================================================
   Panier (drawer)
   ============================================================ */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 80; }
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 100%);
  background: var(--surface); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1);
  z-index: 90; display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer header { padding: 22px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.drawer header h2 { font-family: var(--display); font-weight: 500; font-size: 1.6rem; margin: 0; }
.drawer .close { background: none; border: none; color: var(--muted); font-size: 1.7rem; cursor: pointer; line-height: 1; }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 66px; height: 84px; object-fit: cover; border-radius: var(--radius); background: var(--surface-2); }
.cart-line .info { flex: 1; }
.cart-line .name { font-size: 0.95rem; }
.cart-line .unit { color: var(--muted); font-size: 0.82rem; }
.qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 6px; }
.qty button { width: 24px; height: 24px; border: 1px solid var(--line); background: none; color: var(--text); cursor: pointer; border-radius: var(--radius); }
.cart-line .remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.78rem; align-self: flex-start; }
.cart-empty { color: var(--muted); text-align: center; padding: 60px 20px; }
.drawer footer { padding: 22px 24px; border-top: 1px solid var(--line); }
.total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.total-row .label { font-family: var(--sans); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.8rem; color: var(--muted); }
.total-row .amount { font-family: var(--display); font-size: 2rem; color: var(--accent); }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--muted); font-size: 0.76rem; margin-top: 12px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding: 60px 24px 40px; background: var(--surface); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.site-footer .brand { font-size: 1.5rem; margin-bottom: 14px; }
.site-footer p { color: var(--muted); font-size: .88rem; max-width: 300px; }
.footer-col h4 { font-family: var(--sans); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text); margin: 0 0 16px; }
.footer-col a { display: block; color: var(--muted); font-size: .88rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { max-width: var(--maxw); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--line); text-align: center; color: var(--muted); font-size: .8rem; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--text); }

/* Toast */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--surface-2); border: 1px solid var(--accent); color: var(--text);
  padding: 12px 22px; border-radius: var(--radius); font-size: 0.9rem;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .nav { display: none; }
  .about { grid-template-columns: 1fr; gap: 34px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 22px; }
}
@media (max-width: 520px) {
  .header-inner { padding: 14px 18px; }
  .about .stats { gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Intro d'accueil : logo géant + pluie de paillettes
   ============================================================ */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(120% 120% at 50% 40%, #0b0b12 0%, #050507 70%);
  display: grid; place-items: center; overflow: hidden;
  transition: opacity .8s ease, visibility .8s;
}
.intro.hidden { opacity: 0; visibility: hidden; }
.intro-logo { position: relative; text-align: center; z-index: 2; }
.intro-logo img {
  display: block; margin: 0 auto;
  width: clamp(120px, 26vw, 220px);
  transform-origin: center center;
  filter: drop-shadow(0 0 40px rgba(243,231,196,.6));
  animation: introSpin 1.3s cubic-bezier(.3,.7,.2,1) both;
}
.intro-logo .name {
  position: absolute; left: 50%; top: calc(100% + 14px);
  transform: translateX(-50%); white-space: nowrap;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 4rem); letter-spacing: .1em;
  opacity: 0; animation: introName .5s ease .45s forwards;
}
@keyframes introSpin {
  0%   { transform: rotate(-180deg) scale(.2); opacity: 0; }
  60%  { transform: rotate(20deg) scale(1.1); opacity: 1; }
  100% { transform: rotate(0) scale(1); opacity: 1; }
}
@keyframes introName { to { opacity: 1; } }
.glitter {
  position: absolute; top: -20px; width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, var(--accent-2) 45%, transparent 70%);
  pointer-events: none; z-index: 1;
  animation: fall linear forwards;
}
@keyframes fall {
  0%   { transform: translateY(-20px) rotate(0); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(105vh) rotate(360deg); opacity: 0; }
}
body.intro-lock { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .intro-logo img, .glitter { animation: none !important; opacity: 1 !important; transform: none !important; }
  .intro-logo .name { animation: none !important; opacity: 1 !important; transform: translateX(-50%) !important; }
}

/* ============================================================
   Barre de catégories (navigation par type de vêtement)
   ============================================================ */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px;
}
.filter-chip {
  font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 9px 20px; border: 1px solid var(--line); border-radius: 999px;
  background: none; color: var(--muted); cursor: pointer; transition: all .25s;
}
.filter-chip:hover { color: var(--text); border-color: var(--accent); }
.filter-chip.active { background: var(--accent); color: #14100a; border-color: var(--accent); }

/* ============================================================
   Fenêtre produit (quick view) : tailles + couleurs
   ============================================================ */
.pmodal-bg {
  position: fixed; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(4px);
  display: none; place-items: center; z-index: 120; padding: 20px;
}
.pmodal-bg.open { display: grid; }
.pmodal {
  width: 100%; max-width: 860px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
  max-height: 92vh;
}
.pmodal .pm-img { background: var(--surface-2); }
.pmodal .pm-img img { width: 100%; height: 100%; object-fit: cover; }
.pmodal .pm-body { padding: 38px; overflow-y: auto; }
.pmodal .pm-cat { font-family: var(--sans); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.pmodal h2 { font-family: var(--display); font-weight: 500; font-size: 2.2rem; margin: 0 0 8px; }
.pmodal .pm-price { font-family: var(--sans); font-size: 1.3rem; color: var(--accent); margin-bottom: 18px; }
.pmodal .pm-desc { color: #c8c8d2; font-size: .95rem; margin-bottom: 26px; }
.pmodal .pm-label { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 22px 0 12px; display: flex; justify-content: space-between; align-items: center; }
.size-guide-link { color: var(--accent); cursor: pointer; text-transform: none; letter-spacing: normal; border-bottom: 1px solid var(--accent); font-size: .78rem; }
.opt-row { display: flex; flex-wrap: wrap; gap: 10px; }
.size-btn {
  min-width: 48px; padding: 10px 14px; border: 1px solid var(--line); background: none; color: var(--text);
  font-family: var(--sans); cursor: pointer; border-radius: var(--radius); transition: all .2s;
}
.size-btn:hover { border-color: var(--accent); }
.size-btn.active { background: var(--accent); color: #14100a; border-color: var(--accent); }
.swatch {
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer; position: relative;
  border: 2px solid transparent; box-shadow: 0 0 0 1px var(--line);
  transition: transform .2s;
}
.swatch:hover { transform: scale(1.1); }
.swatch.active { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.swatch .tick { position:absolute; inset:0; display:grid; place-items:center; color:#fff; font-size:14px; opacity:0; }
.swatch.active .tick { opacity: 1; }
.pm-actions { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.pm-qty { display: inline-flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 10px; }
.pm-qty button { width: 26px; height: 26px; border: none; background: none; color: var(--text); cursor: pointer; font-size: 1.1rem; }
.pmodal .pm-close { position: absolute; top: 18px; right: 22px; background: none; border: none; color: var(--muted); font-size: 1.8rem; cursor: pointer; z-index: 2; }
.pm-warn { color: var(--danger); font-size: .82rem; margin-top: 10px; min-height: 18px; }
@media (max-width: 720px) {
  .pmodal { grid-template-columns: 1fr; }
  .pmodal .pm-img { max-height: 240px; }
}

/* ============================================================
   Tableau des tailles (mensurations françaises)
   ============================================================ */
.sizeguide-bg { position: fixed; inset: 0; background: rgba(0,0,0,.8); display: none; place-items: center; z-index: 140; padding: 20px; }
.sizeguide-bg.open { display: grid; }
.sizeguide { width: 100%; max-width: 620px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; max-height: 90vh; overflow-y: auto; position: relative; }
.sizeguide h2 { font-family: var(--display); font-weight: 500; font-size: 1.8rem; margin: 0 0 6px; }
.sizeguide p.sub { color: var(--muted); font-size: .88rem; margin: 0 0 22px; }
.sizeguide table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.sizeguide th, .sizeguide td { padding: 11px 8px; text-align: center; border-bottom: 1px solid var(--line); }
.sizeguide th { color: var(--accent); font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 400; }
.sizeguide td:first-child { color: var(--accent); font-weight: 500; }
.sizeguide .note { color: var(--muted); font-size: .8rem; margin-top: 18px; }
.sizeguide .close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--muted); font-size: 1.7rem; cursor: pointer; }

/* Petites pastilles couleur sur les cartes */
.card .swatches { display: flex; gap: 6px; margin-top: 4px; }
.card .swatches i { width: 14px; height: 14px; border-radius: 50%; box-shadow: 0 0 0 1px var(--line); display: inline-block; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ic { color: var(--accent); flex: none; margin-top: 3px; }
.contact-item .k { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-item .v { color: var(--text); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea {
  padding: 13px 15px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--text); font-family: var(--body); font-size: .95rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-note { color: var(--muted); font-size: .78rem; text-align: center; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ============================================================
   Lot 1 : recherche, favoris, produits similaires
   ============================================================ */
.search-wrap { position: relative; max-width: 520px; margin: 0 auto 26px; }
.search-wrap .search-ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.search-wrap input {
  width: 100%; padding: 14px 44px 14px 46px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; color: var(--text); font-family: var(--body); font-size: .95rem;
}
.search-wrap input:focus { outline: none; border-color: var(--accent); }
.search-wrap input::placeholder { color: var(--muted); }
.search-clear { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--muted); font-size: 1.4rem; cursor: pointer; line-height: 1; }
.search-clear:hover { color: var(--text); }

/* Cœur favori sur les cartes */
.fav-btn {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(5,5,7,.6); backdrop-filter: blur(4px); color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: all .2s; padding: 0;
}
.fav-btn:hover { border-color: var(--accent); transform: scale(1.08); }
.fav-btn svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.8; transition: fill .2s, stroke .2s; }
.fav-btn.on svg { fill: var(--accent); stroke: var(--accent); }

/* Produits similaires dans la fenêtre produit */
.pm-similar { margin-top: 28px; }
.pm-similar h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.pm-similar .row2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pm-sim { cursor: pointer; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface-2); transition: border-color .2s; }
.pm-sim:hover { border-color: var(--accent); }
.pm-sim .t { aspect-ratio: 3/4; overflow: hidden; }
.pm-sim .t img { width: 100%; height: 100%; object-fit: cover; }
.pm-sim .n { padding: 8px; font-size: .74rem; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pm-sim .p { padding: 0 8px 8px; font-size: .74rem; color: var(--accent); }

/* Bandeau "aucun résultat" */
.no-results { color: var(--muted); text-align: center; padding: 50px 20px; grid-column: 1 / -1; }

/* ============================================================
   Lot 2 : galerie photos + liste d'attente
   ============================================================ */
.pm-img { display: flex; flex-direction: column; }
.pm-img > img { flex: 1; min-height: 0; }
.pm-thumbs { display: flex; gap: 8px; padding: 10px; background: var(--surface); flex-wrap: wrap; }
.pm-thumbs .pm-thumb { width: 54px; height: 66px; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 1px solid var(--line); opacity: .6; transition: opacity .2s, border-color .2s; }
.pm-thumbs .pm-thumb.active, .pm-thumbs .pm-thumb:hover { opacity: 1; border-color: var(--accent); }
.pm-thumbs .pm-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pm-waitlist { margin-top: 8px; }
.wl-row { display: flex; gap: 10px; margin-top: 10px; }
.wl-row input { flex: 1; padding: 12px 14px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); color: var(--text); font-family: var(--body); }
.wl-row input:focus { outline: none; border-color: var(--accent); }
.wl-msg { color: var(--accent); font-size: .84rem; margin-top: 10px; min-height: 18px; }

/* ============================================================
   Lot 3 : FAQ (accordéon)
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 40px 22px 0; position: relative; color: var(--text);
  font-family: var(--display); font-size: 1.3rem; font-weight: 500;
}
.faq-q::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1.4rem; transition: transform .3s; }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--muted); }
.faq-a p { margin: 0 0 22px; padding-right: 40px; }
.faq-item.open .faq-a { max-height: 320px; }

/* ============================================================
   Lookbook + lightbox
   ============================================================ */
.lookbook-grid { columns: 3; column-gap: 14px; }
@media (max-width: 820px){ .lookbook-grid { columns: 2; } }
@media (max-width: 500px){ .lookbook-grid { columns: 1; } }
.lb-item { break-inside: avoid; margin-bottom: 14px; position: relative; cursor: pointer; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.lb-item img { width: 100%; display: block; transition: transform .6s ease; }
.lb-item:hover img { transform: scale(1.05); }
.lb-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 14px;
  background: linear-gradient(transparent, rgba(5,5,7,.85));
  color: #fff; font-family: var(--display); font-size: 1.1rem;
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s;
}
.lb-item:hover .cap { opacity: 1; transform: none; }

.lightbox { position: fixed; inset: 0; background: rgba(5,5,7,.94); z-index: 150; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; max-width: 90vw; max-height: 88vh; text-align: center; }
.lightbox img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: var(--radius); }
.lightbox figcaption { color: var(--muted); font-family: var(--display); font-size: 1.2rem; margin-top: 14px; }
.lb-close { position: absolute; top: 20px; right: 26px; background: none; border: none; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: #fff; font-size: 3rem; cursor: pointer; padding: 0 20px; opacity: .6; transition: opacity .2s; }
.lb-nav:hover { opacity: 1; }
.lb-prev { left: 10px; } .lb-next { right: 10px; }
@media (max-width: 560px){ .lb-nav { font-size: 2.2rem; padding: 0 8px; } }
