/* SkinVitalis — Luxury cosmetics e-commerce */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0A;
  --ink: #F5F0EE;
  --rose: #E8A4B0;
  --rose-deep: #C97D8C;
  --rose-grad: linear-gradient(135deg, #E8A4B0 0%, #C97D8C 60%, #B86E7D 100%);
  --accent: #E8A4B0;
  --accent-soft: #F4D2D8;
  --rule: rgba(245, 240, 238, 0.12);
  --soft: rgba(245, 240, 238, 0.55);
  --softer: rgba(245, 240, 238, 0.35);
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; padding: 0; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════════════════════════════
   INTRO SPLASH — rideau noir qui s'ouvre en deux
═══════════════════════════════════════════════════════════════ */
.sv-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 1;
  overflow: hidden;
  pointer-events: none;
}
.sv-intro-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #0A0A0A;
}
.sv-intro-curtain-left { left: 0; }
.sv-intro-curtain-right { right: 0; }

.sv-intro-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Le mot est dupliqué en deux moitiés superposées ; chaque moitié ne
   montre que sa part gauche/droite grâce au clip-path, comme si le
   texte était réellement coupé au milieu. */
.sv-intro-half {
  position: absolute;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: clamp(40px, 9vw, 140px);
  color: var(--rose, #E8A4B0);
  white-space: nowrap;
}
.sv-intro-half-left  { clip-path: inset(0 50% 0 0); }
.sv-intro-half-right { clip-path: inset(0 0 0 50%); }
a { color: inherit; text-decoration: none; cursor: pointer; }
input, select { font: inherit; color: inherit; background: transparent; border: 0; outline: none; }

/* ===== TYPE ===== */
.sv-display {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 0.92;
}
.sv-italic { font-style: italic; font-weight: 300; }
.sv-eyebrow {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--soft);
}
.sv-soft { color: var(--soft); }
.sv-softer { color: var(--softer); }
.sv-rose { color: var(--rose); }
.sv-rose-bold { color: var(--rose); }

/* ===== NAV (floating, transparent) ===== */
.sv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border: 0;
  pointer-events: none;
}
.sv-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  gap: 16px;
  max-width: 1760px;
  margin: 0 auto;
  pointer-events: none;
}
.sv-nav-inner > * { pointer-events: auto; }

.sv-nav-menu {
  display: flex;
  gap: 10px;
  align-items: center;
}
.sv-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 11px 22px;
  position: relative;
  transition: color 0.25s, transform 0.25s;
}
.sv-nav-link:hover { color: var(--rose); transform: translateY(-1px); }
.sv-nav-link.active { color: var(--rose); }
.sv-nav-link.active::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 6px;
  width: 6px; height: 1px;
  background: var(--rose);
  transform: translateX(-50%);
}

/* Liquid-glass primitives */
.sv-glass {
  position: relative;
  background: rgba(245, 240, 238, 0.10);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(245, 240, 238, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  isolation: isolate;
}
.sv-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 38%, rgba(255,255,255,0) 62%, rgba(255,255,255,0.1) 100%),
    radial-gradient(120% 80% at 30% 0%, rgba(255, 220, 230, 0.18), transparent 60%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.95;
}
.sv-glass::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), transparent 35%, transparent 70%, rgba(255,255,255,0.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.7;
}
.sv-glass:hover {
  background: rgba(245, 240, 238, 0.16);
  border-color: rgba(245, 240, 238, 0.3);
}
.sv-glass-pill { border-radius: 999px; }
.sv-glass-round { border-radius: 999px; }

.sv-logo-mark {
  display: flex;
  align-items: center;
  padding: 4px 6px;
  margin-left: 8px;
}
.sv-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.sv-logo-text {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
.sv-logo-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--soft);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.sv-nav-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.sv-icon-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--ink);
  transition: transform 0.25s, color 0.25s;
  position: relative;
  flex-shrink: 0;
}
.sv-icon-btn:hover { color: var(--rose); transform: translateY(-1px); }
.sv-cart-pill {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--rose);
  color: var(--bg);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 10px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: grid; place-items: center;
  letter-spacing: 0;
  border: 1.5px solid #0A0A0A;
  z-index: 2;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SIDE MENU ===== */
.sv-side-menu {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.sv-side-menu.open { opacity: 1; pointer-events: auto; }
.sv-side-menu-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 420px;
  background: #0A0A0A;
  border-right: 1px solid var(--rule);
  padding: 48px 48px 40px;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(.7,0,.3,1);
  display: flex;
  flex-direction: column;
}
.sv-side-menu.open .sv-side-menu-panel { transform: translateX(0); }
.sv-side-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--softer);
  margin-bottom: 48px;
  font-size: 14px;
}
.sv-side-list { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.sv-side-list button {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  width: 100%;
  transition: color 0.2s, padding 0.2s;
}
.sv-side-list button:hover { color: var(--rose); padding-left: 16px; }
.sv-side-foot { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--rule); }
.sv-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 36px; height: 36px;
  font-size: 26px;
  font-weight: 100;
  color: var(--ink);
  line-height: 1;
  transition: transform 0.3s;
}
.sv-close:hover { transform: rotate(90deg); color: var(--rose); }

/* ===== CART DRAWER ===== */
.sv-cart-drawer {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.sv-cart-drawer.open { opacity: 1; pointer-events: auto; }
.sv-cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 460px;
  background: #0A0A0A;
  border-left: 1px solid var(--rule);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(.7,0,.3,1);
  display: flex;
  flex-direction: column;
}
.sv-cart-drawer.open .sv-cart-panel { transform: translateX(0); }
.sv-cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--rule);
}
.sv-cart-head h3 { font-size: 24px; }
.sv-cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  text-align: center;
}
.sv-cart-list { flex: 1; overflow-y: auto; padding: 12px 0; }
.sv-cart-list li {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.sv-cart-thumb {
  width: 64px; height: 64px;
  border-radius: 4px;
  display: grid; place-items: center;
  border: 1px solid var(--rule);
  padding: 6px;
}
.sv-cart-thumb svg { max-height: 100%; }
.sv-cart-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sv-cart-price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  color: var(--rose);
  font-size: 18px;
  letter-spacing: 0.04em;
}
.sv-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.sv-qty button {
  width: 22px; height: 22px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
}
.sv-qty button:hover { border-color: var(--rose); color: var(--rose); }
.sv-qty span { font-family: 'Big Shoulders Display', sans-serif; font-weight: 500; font-size: 13px; min-width: 18px; text-align: center; }
.sv-remove {
  font-style: italic;
  font-size: 12px;
  color: var(--softer);
  margin-left: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
  border: 0 !important;
  border-radius: 0 !important;
  width: auto !important;
}
.sv-remove:hover { color: var(--rose); }
.sv-cart-foot {
  border-top: 1px solid var(--rule);
  padding: 24px 32px 32px;
}
.sv-cart-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}
.sv-cart-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 8px;
  margin-bottom: 22px;
  border-top: 1px solid var(--rule);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.06em;
}
.sv-cart-total > span:last-child { color: var(--rose); }

/* ===== BUTTONS ===== */
.sv-btn-outline {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid var(--rose);
  color: var(--rose);
  background: transparent;
  transition: all 0.3s cubic-bezier(.7,0,.3,1);
  position: relative;
  overflow: hidden;
}
.sv-btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose-grad);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(.7,0,.3,1);
  z-index: -1;
}
.sv-btn-outline { position: relative; z-index: 0; }
.sv-btn-outline:hover { color: var(--bg); border-color: var(--rose-deep); }
.sv-btn-outline:hover::before { transform: translateY(0); }

.sv-btn-solid {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 18px 32px;
  width: 100%;
  background: var(--rose-grad);
  color: var(--bg);
  border: 0;
  transition: filter 0.3s;
}
.sv-btn-solid:hover { filter: brightness(1.1); }

.sv-link-under {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 4px;
  transition: border-color 0.3s, color 0.3s;
}
.sv-link-under:hover { color: var(--rose); border-color: var(--rose); }

/* ===== HERO ===== */
.sv-hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 820px;
  overflow: hidden;
  background: #0A0A0A;
  z-index: 1;
  transform-origin: top center;
  will-change: transform, filter, border-radius;
}
.sv-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(232, 164, 176, 0.18), transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(201, 125, 140, 0.10), transparent 70%),
    #0A0A0A;
  z-index: 0;
}

/* Type layer — behind the figures */
.sv-hero-words {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}
/* Dark scrim directly behind the type so the gradient reads strongly */
.sv-hero-words::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 48% 58% at 50% 50%, rgba(8,6,8,0.78) 0%, rgba(8,6,8,0.45) 45%, transparent 72%);
  z-index: 0;
}
.sv-hero-title-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0;
  padding-top: 4vh;
  line-height: 0.82;
}
.sv-hero-word {
  display: block;
  text-align: center;
  font-size: clamp(110px, 17vw, 280px);
  line-height: 0.82;
}
.sv-hero-word-display {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #F5F0EE;
  text-shadow:
    0 0 50px rgba(232, 164, 176, 0.65),
    0 0 120px rgba(232, 164, 176, 0.4),
    0 4px 24px rgba(0, 0, 0, 0.6);
  background: linear-gradient(180deg, #FBEFF1 0%, #F0B6C2 50%, #D88E9D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sv-hero-word-script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #FCF6F4;
  text-shadow:
    0 0 40px rgba(245, 240, 238, 0.5),
    0 4px 30px rgba(0, 0, 0, 0.6);
  margin-top: -0.05em;
}

/* Figures image — sits ON TOP of the type so the figures occlude it */
.sv-hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(1.02) saturate(1.02) contrast(1.05);
  z-index: 2;
  /* Punch out a wide window at the centre so the type reads through the cloud area */
  -webkit-mask-image:
    radial-gradient(ellipse 46% 62% at 50% 47%, transparent 0%, transparent 30%, rgba(0,0,0,0.5) 60%, #000 82%);
  mask-image:
    radial-gradient(ellipse 46% 62% at 50% 47%, transparent 0%, transparent 30%, rgba(0,0,0,0.5) 60%, #000 82%);
}
.sv-hero-vignette {
  position: absolute; inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 65% 50% at 50% 55%, transparent, rgba(10,10,10,0.4) 80%, rgba(10,10,10,0.85) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, transparent 20%, transparent 70%, rgba(10,10,10,0.85) 100%);
  pointer-events: none;
}

.sv-hero-stars { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.sv-hero-stars span {
  position: absolute;
  width: 2px; height: 2px;
  background: #F5F0EE;
  border-radius: 50%;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.6); }
}

.sv-hero-tags {
  position: absolute;
  top: 110px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 16px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--soft);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.sv-hero-tags .sv-dot { color: var(--rose); }

/* Floating bottom-left CTA */
.sv-hero-cta-floating {
  position: absolute;
  left: 48px; bottom: 56px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* Mini product card hero — bottom right, style NØRD */
.sv-hero-product-card {
  position: absolute;
  right: 48px; bottom: 48px;
  z-index: 4;
  background: #F5D5DB;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px 16px 16px;
  cursor: pointer;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 280px;
  max-width: 340px;
}
.sv-hero-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}
.sv-hero-pc-img-wrap {
  flex-shrink: 0;
  width: 110px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-hero-pc-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}
.sv-hero-pc-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sv-hero-pc-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #1A1A1A;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}
.sv-hero-pc-link {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s;
}
.sv-hero-pc-link:hover { opacity: 0.7; }

/* Floating liquid-glass tagline pill, bottom-right */
.sv-hero-tagline-pill {
  position: absolute;
  right: 48px; bottom: 56px;
  z-index: 4;
  border-radius: 999px;
  padding: 18px 32px;
  max-width: 360px;
  color: #F5F0EE;
}
.sv-hero-tagline-pill .sv-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* ===== CATEGORY INDEX (HOME) ===== */
.sv-cat-index {
  padding: 140px 40px 120px;
  max-width: 1680px;
  margin: 0 auto;
}
.sv-section-head { text-align: center; margin-bottom: 96px; }
.sv-section-head .sv-eyebrow { color: var(--rose); display: block; margin-bottom: 20px; font-family: 'Cormorant Garamond', serif; font-style: italic; letter-spacing: 0.12em; font-size: 15px; font-weight: 300; }
.sv-section-title { font-size: clamp(48px, 6vw, 96px); }
.sv-section-lead {
  margin-top: 28px;
  font-size: 20px;
  max-width: 540px;
  margin-inline: auto;
  color: var(--soft);
  line-height: 1.5;
}

.sv-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.sv-cat-card {
  border-right: 1px solid var(--rule);
  padding: 48px 32px;
  position: relative;
  cursor: pointer;
  transition: background 0.5s;
  display: flex;
  flex-direction: column;
}
.sv-cat-card:last-child { border-right: 0; }
.sv-cat-card:hover { background: rgba(245, 240, 238, 0.02); }
.sv-cat-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--softer);
  margin-bottom: 32px;
}
.sv-cat-visual {
  height: 320px;
  display: grid; place-items: center;
  margin-bottom: 32px;
  border-radius: 4px;
  transition: transform 0.6s cubic-bezier(.7,0,.3,1);
}
.sv-cat-visual svg { width: 50%; }
.sv-cat-card:hover .sv-cat-visual { transform: translateY(-12px); }
.sv-cat-meta { position: relative; }
.sv-cat-meta .sv-eyebrow { display: block; margin-bottom: 10px; }
.sv-cat-name { font-size: 38px; margin-bottom: 12px; }
.sv-cat-arrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  margin-top: 24px;
  display: inline-block;
  color: var(--rose);
  transition: transform 0.3s, color 0.3s;
}
.sv-cat-card:hover .sv-cat-arrow { transform: translateX(8px); }

/* ===== PHILOSOPHY STRIP (HOME) ===== */
.sv-philo {
  background: #F5F0EE;
  color: #0A0A0A;
  padding: 140px 40px 120px;
}
.sv-philo-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.sv-philo-pre .sv-eyebrow { color: #8a7d7a; }
.sv-philo-title { font-size: clamp(56px, 8vw, 128px); color: #0A0A0A; }
.sv-philo-title .sv-rose { color: var(--rose-deep); font-style: normal; }
.sv-philo-text {
  font-size: 17px;
  line-height: 1.6;
  color: #2a2522;
}

.sv-philo-pillars {
  margin: 120px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1440px;
  border-top: 1px solid rgba(10,10,10,0.15);
}
.sv-pillar {
  padding: 40px 32px;
  border-right: 1px solid rgba(10,10,10,0.15);
}
.sv-pillar:last-child { border-right: 0; }
.sv-pillar-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--rose-deep);
  display: block;
  margin-bottom: 18px;
}
.sv-pillar h4 {
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.sv-pillar p {
  font-size: 14px;
  line-height: 1.5;
  color: #5a4f4c;
}
.sv-philo .sv-soft { color: #5a4f4c; }

/* ===== CATALOG ===== */
.sv-catalog {
  padding-top: 120px;
  min-height: 100vh;
}
.sv-cat-banner {
  text-align: center;
  padding: 64px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.sv-breadcrumb {
  position: absolute;
  top: 0; left: 40px;
  font-size: 13px;
  color: var(--softer);
}
.sv-breadcrumb button { font-style: italic; }
.sv-breadcrumb button:hover { color: var(--rose); }
.sv-cat-banner .sv-eyebrow {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.12em;
}
.sv-cat-banner-title {
  font-size: clamp(72px, 12vw, 168px);
  line-height: 0.85;
  text-shadow: 0 0 80px color-mix(in oklch, var(--accent) 30%, transparent);
}
.sv-cat-banner-sub {
  font-size: clamp(20px, 2vw, 28px);
  margin-top: 24px;
  color: var(--ink);
}

.sv-cat-banner-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 56px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.sv-cat-banner-meta > div { text-align: center; }
.sv-cat-meta-val { font-size: 28px; color: var(--accent); margin-top: 6px; }
.sv-vline { width: 1px; height: 40px; background: var(--rule); }

.sv-cat-banner-desc {
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--soft);
  max-width: 720px;
  margin-inline: auto;
}

/* Toolbar */
.sv-cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1680px;
  margin: 0 auto;
  padding: 32px 40px;
  border-bottom: 1px solid var(--rule);
}
.sv-cat-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.sv-cat-pill {
  padding: 8px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
  cursor: pointer;
  transition: all 0.3s;
}
.sv-cat-pill:hover { color: var(--accent); border-color: var(--accent); }
.sv-cat-pill.active { color: var(--bg); background: var(--accent); border-color: var(--accent); }
.sv-cat-sort {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.sv-cat-sort select {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  border-bottom: 1px solid var(--rule);
  padding: 4px 8px 4px 0;
  cursor: pointer;
  color: var(--ink);
}
.sv-cat-sort select option { background: #0A0A0A; color: var(--ink); }

/* Product grid */
.sv-prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1680px;
  margin: 0 auto;
}
.sv-prod-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.sv-prod-card:nth-child(3n) { border-right: 0; }
.sv-prod-visual {
  height: 460px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: background 0.4s;
}
.sv-prod-visual svg { width: 42%; transition: transform 0.6s cubic-bezier(.7,0,.3,1); }
.sv-prod-card:hover .sv-prod-visual svg { transform: scale(1.06); }
.sv-prod-badge {
  position: absolute;
  top: 20px; left: 20px;
  padding: 5px 10px;
  background: var(--accent);
  color: var(--bg);
  font-size: 12px;
  letter-spacing: 0.04em;
  border-radius: 2px;
  z-index: 2;
}
.sv-prod-num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--softer);
}

.sv-prod-hover {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  display: flex;
  gap: 8px;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,0.9) 40%);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(.7,0,.3,1);
}
.sv-prod-hover.visible { opacity: 1; transform: translateY(0); }
.sv-prod-action {
  flex: 1;
  padding: 11px 14px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid rgba(245,240,238,0.3);
  color: var(--ink);
  transition: all 0.2s;
}
.sv-prod-action:hover { border-color: var(--accent); color: var(--accent); }
.sv-prod-action-fill {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.sv-prod-action-fill:hover { background: transparent; color: var(--accent); }

.sv-prod-meta {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sv-prod-name {
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  font-weight: 300;
}
.sv-prod-sub { font-size: 14px; }
.sv-prod-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.sv-prod-price { font-size: 24px; letter-spacing: 0.06em; }
.sv-prod-plus {
  width: 36px; height: 36px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 300;
  color: var(--ink);
  transition: all 0.3s;
}
.sv-prod-plus:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: rotate(90deg);
}

/* Editorial bar */
.sv-cat-editorial {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 96px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 140px 40px;
  border-top: 1px solid var(--rule);
}
.sv-cat-edit-left .sv-eyebrow { color: var(--accent); display: block; margin-bottom: 28px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; letter-spacing: 0.1em; font-weight: 300; }
.sv-cat-edit-title { font-size: clamp(40px, 4.5vw, 72px); }
.sv-cat-edit-right p { font-size: 17px; line-height: 1.7; color: var(--soft); }
.sv-cat-edit-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.sv-cat-edit-list li { font-size: 15px; font-style: italic; color: var(--soft); }
.sv-cat-edit-list li span { color: var(--accent); margin-right: 10px; }

/* Modal */
.sv-modal {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 40px;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.sv-modal-panel {
  background: #0A0A0A;
  border: 1px solid var(--rule);
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s cubic-bezier(.7,0,.3,1);
}
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.sv-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.sv-modal-visual {
  height: 600px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--rule);
}
.sv-modal-visual svg { width: 40%; }
.sv-modal-text { padding: 64px 48px; }
.sv-modal-text .sv-eyebrow { color: var(--accent); display: block; margin-bottom: 16px; }
.sv-modal-price {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.sv-modal-list {
  margin-top: 32px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.sv-modal-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
}

/* Category hop */
.sv-cat-hop {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.sv-cat-hop-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 48px 64px;
  text-align: left;
  transition: background 0.3s;
}
.sv-cat-hop-side.right { text-align: right; align-items: flex-end; }
.sv-cat-hop-side:hover { background: rgba(245,240,238,0.02); }
.sv-cat-hop-name { font-size: clamp(28px, 3.5vw, 52px); }
.sv-cat-hop-mid {
  display: grid;
  place-items: center;
  padding: 0 48px;
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}

/* ===== INSPIRATION ===== */
.sv-insp { background: #F5F0EE; color: #0A0A0A; }
.sv-insp-intro {
  text-align: center;
  padding: 160px 40px 80px;
}
.sv-insp-intro .sv-eyebrow { color: #8a7d7a; display: block; margin-bottom: 28px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px; letter-spacing: 0.12em; font-weight: 300; }
.sv-insp-title { font-size: clamp(56px, 9vw, 156px); color: #0A0A0A; }
.sv-insp-lead {
  margin-top: 32px;
  font-size: 20px;
  max-width: 640px;
  margin-inline: auto;
  color: #5a4f4c;
  line-height: 1.5;
}

.sv-insp-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 720px;
}
.sv-insp-block.right { direction: rtl; }
.sv-insp-block.right > * { direction: ltr; }
.sv-insp-text {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.sv-insp-text .sv-eyebrow { display: block; margin-bottom: 28px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px; letter-spacing: 0.12em; font-weight: 300; }
.sv-insp-h { font-size: clamp(48px, 6vw, 96px); }
.sv-insp-body {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.65;
  max-width: 480px;
}
.sv-insp-num {
  position: absolute;
  bottom: 60px;
  font-size: 96px;
  opacity: 0.08;
  letter-spacing: 0;
}
.sv-insp-image {
  position: relative;
  padding: 40px;
  display: grid;
  place-items: stretch;
}
.sv-placeholder-frame {
  border: 1px solid;
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.sv-placeholder-stripes {
  position: absolute;
  inset: 0;
}
.sv-placeholder-label {
  position: relative;
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  z-index: 2;
}

.sv-insp-quote {
  background: #1a1a1a;
  color: var(--ink);
  text-align: center;
  padding: 160px 40px;
  position: relative;
}
.sv-quote-mark {
  font-size: 200px;
  line-height: 0.5;
  color: var(--rose);
  margin-bottom: 32px;
}
.sv-insp-quote blockquote {
  font-size: clamp(28px, 4vw, 56px);
  font-style: italic;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
}
.sv-quote-attr { margin-top: 48px; font-size: 16px; }

/* ===== FOOTER ===== */
.sv-footer {
  background: #0A0A0A;
  color: var(--ink);
  border-top: 1px solid var(--rule);
}
.sv-footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.4fr;
  gap: 64px;
  padding: 96px 40px 80px;
  max-width: 1680px;
  margin: 0 auto;
}
.sv-footer-logo { font-size: 36px; letter-spacing: 0.1em; }
.sv-footer-tagline { font-size: 14px; margin-top: 12px; letter-spacing: 0.04em; }
.sv-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.sv-footer-col h4 { margin-bottom: 24px; color: var(--rose); }
.sv-footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.sv-footer-col button {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--soft);
  text-align: left;
  transition: color 0.2s, padding-left 0.2s;
}
.sv-footer-col button:hover { color: var(--rose); padding-left: 8px; }

.sv-footer-news h4 { color: var(--rose); margin-bottom: 14px; }
.sv-footer-news p { font-size: 14px; color: var(--soft); line-height: 1.6; }
.sv-news-form {
  display: flex;
  margin-top: 20px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 4px;
}
.sv-news-form input {
  flex: 1;
  padding: 10px 0;
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
}
.sv-news-form input::placeholder { color: var(--softer); font-style: italic; }
.sv-news-form button {
  padding: 0 8px;
  font-size: 22px;
  color: var(--rose);
  transition: transform 0.2s;
}
.sv-news-form button:hover { transform: translateX(4px); }
.sv-socials {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  font-size: 14px;
}
.sv-socials a {
  font-style: italic;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.sv-socials a:hover { color: var(--rose); border-color: var(--rose); }

.sv-footer-marquee {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.sv-footer-marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-size: clamp(60px, 10vw, 144px);
  color: var(--ink);
}
.sv-footer-marquee-track .sv-rose { color: var(--rose); }

.sv-footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  font-size: 12px;
  max-width: 1680px;
  margin: 0 auto;
}
.sv-footer-legal {
  display: flex;
  gap: 24px;
  font-style: italic;
  font-size: 13px;
}
.sv-footer-legal a { color: var(--soft); transition: color 0.2s; }
.sv-footer-legal a:hover { color: var(--rose); }

/* ═══════════════════════════════════════════════
   TRUEKIND STYLE — Catalog + Inspiration pages
   Fond clair · Typo mixte premium · Blocs alternés
═══════════════════════════════════════════════ */

/* Catalog page wrapper */
.sv-cat-page { min-height: 100vh; }

/* ── Hero banner (fond sombre) ── */
.sv-cat-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.sv-cat-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}
.sv-breadcrumb {
  font-size: 13px;
  color: rgba(245,240,238,0.5);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sv-breadcrumb button { color: rgba(245,240,238,0.5); transition: color .2s; }
.sv-breadcrumb button:hover { color: #F5F0EE; }
.sv-bsep { opacity: 0.35; }

/* Titre hero mixte */
.sv-cat-hero-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}
.sv-cat-hero-word {
  font-size: clamp(72px, 10vw, 160px);
  line-height: 0.88;
  letter-spacing: 0.04em;
}
.sv-cat-hero-sub {
  font-size: clamp(20px, 2.5vw, 32px);
  color: rgba(245,240,238,0.7);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-top: 8px;
}

/* Stats */
.sv-cat-hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.sv-cat-stat { display: flex; flex-direction: column; gap: 6px; }
.sv-cat-stat-val { font-size: clamp(28px, 3vw, 44px); line-height: 1; }
.sv-cat-stat-divider { width: 1px; height: 40px; background: rgba(245,240,238,0.15); }
.sv-cat-hero-desc {
  font-size: 16px;
  max-width: 600px;
  color: rgba(245,240,238,0.65);
  line-height: 1.75;
}

/* ── Bande engagements TrueKind ── */
.sv-tk-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(10,10,10,0.1);
  border-bottom: 1px solid rgba(10,10,10,0.1);
}
.sv-tk-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  gap: 8px;
  border-right: 1px solid rgba(10,10,10,0.1);
}
.sv-tk-pillar:last-child { border-right: none; }
.sv-tk-pillar-icon { font-size: 18px; margin-bottom: 4px; }
.sv-tk-pillar-label { font-size: 13px; letter-spacing: 0.1em; color: #0A0A0A; }
.sv-tk-pillar-sub { font-size: 13px; color: #7a6a6a; margin-top: 2px; }

/* ── Toolbar ── */
.sv-cat-toolbar-tk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 64px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}

/* ── Grille produits TrueKind ── */
.sv-tk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 64px 96px;
}
.sv-tk-card {
  background: #fff;
  border: 1px solid rgba(10,10,10,0.07);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}
.sv-tk-card:hover {
  box-shadow: 0 12px 48px rgba(10,10,10,0.1);
  transform: translateY(-4px);
  z-index: 2;
}

/* Image produit */
.sv-tk-card-img {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.sv-tk-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 10px;
  border-radius: 2px;
}
.sv-tk-card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
}
.sv-tk-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.sv-tk-card-overlay.visible { opacity: 1; }
.sv-tk-overlay-btn {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: #F5F0EE;
  border: 1px solid rgba(245,240,238,0.5);
  padding: 10px 28px;
  background: transparent;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}
.sv-tk-overlay-btn:hover { background: #F5F0EE; color: #0A0A0A; }

/* Meta carte */
.sv-tk-card-meta { padding: 20px 22px 24px; background: #fff; }
.sv-tk-card-name { margin-bottom: 6px; line-height: 1.15; }
.sv-tk-card-sub { font-size: 13px; margin-bottom: 16px; }
.sv-tk-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.sv-tk-price {
  font-size: 18px;
  letter-spacing: 0.04em;
}
.sv-tk-add-btn {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 8px 18px;
  border: 1px solid;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}

/* ── Bloc éditorial ── */
.sv-tk-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-width: 1200px;
  margin: 0 auto 0;
  border-top: 1px solid rgba(10,10,10,0.08);
}
.sv-tk-edit-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.sv-tk-edit-title {
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1;
  margin: 8px 0;
}
.sv-tk-edit-em {
  font-size: 0.6em;
  font-family: 'Cormorant Garamond', serif;
}
.sv-tk-edit-body {
  font-size: 16px;
  line-height: 1.8;
  color: #4a3a3a;
  max-width: 440px;
}
.sv-tk-edit-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.sv-tk-edit-list li { font-style: italic; font-size: 14px; color: #7a6a6a; }
.sv-tk-edit-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  min-height: 400px;
}
.sv-tk-edit-tag {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  white-space: nowrap;
  opacity: 0.85;
}

/* ── Modal TrueKind ── */
.sv-modal-panel-tk {
  background: #fff;
  color: #0A0A0A;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}
.sv-modal-panel-tk .sv-close { color: #0A0A0A; opacity: 0.4; }
.sv-modal-panel-tk .sv-close:hover { opacity: 1; }
.sv-tk-modal-title {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  margin: 12px 0;
}

/* ── Inspiration TrueKind ── */
.sv-insp-title-mix {
  font-size: clamp(52px, 7vw, 110px);
  line-height: 0.95;
  margin: 24px 0;
}
.sv-tk-insp-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.sv-tk-insp-block.right { direction: rtl; }
.sv-tk-insp-block.right > * { direction: ltr; }
.sv-tk-insp-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.sv-tk-insp-title {
  font-size: clamp(44px, 5vw, 80px);
  line-height: 0.95;
  margin: 8px 0;
}
.sv-tk-insp-body {
  font-size: 16px;
  line-height: 1.8;
  max-width: 460px;
}
.sv-tk-insp-num {
  position: absolute;
  bottom: 48px;
  right: 48px;
  font-size: 120px;
  line-height: 1;
  pointer-events: none;
}
.sv-tk-insp-visual {
  position: relative;
  overflow: hidden;
}
.sv-placeholder-frame {
  position: absolute;
  inset: 32px;
  border: 1px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 2px;
  overflow: hidden;
}
.sv-placeholder-stripes {
  position: absolute;
  inset: 0;
}
.sv-placeholder-label {
  position: relative;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 0 24px;
}

/* Section Canada × Sénégal */
.sv-tk-origin {
  background: #0A0A0A;
  padding: 120px 40px;
  text-align: center;
}
.sv-tk-origin-inner { max-width: 720px; margin: 0 auto; }
.sv-tk-origin-title {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  margin: 20px 0;
}
.sv-tk-origin-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
}
.sv-tk-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sv-tk-flag span:first-child { font-size: 48px; }
.sv-tk-flag-arrow { font-size: 32px; }

/* ═══════════════════════════════════════════════
   FIN TRUEKIND STYLES
═══════════════════════════════════════════════ */

/* Page transition */
.sv-page-enter {
  animation: pageIn 0.6s cubic-bezier(.5,0,.3,1);
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 02 — SÉLECTIONNÉS AVEC EXIGENCE
═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   SECTION 02 — SÉLECTIONNÉS AVEC EXIGENCE
═══════════════════════════════════════════════════════════════ */
.sv-exigence {
  background: #0A0A0A;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 100px 60px 100px;
  min-height: 100vh;
}

/* Grille principale: titre+portraits à gauche, cartes à droite */
.sv-ex-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

/* Colonne gauche */
.sv-ex-content-col {
  position: relative;
}

/* Groupe titre */
.sv-ex-title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 2;
}
.sv-ex-word {
  display: block;
  line-height: 0.88;
}
.sv-ex-gold {
  font-size: clamp(60px, 9.5vw, 148px);
  color: #E8A4B0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
}
.sv-ex-avec {
  font-size: clamp(56px, 9vw, 140px);
  color: #F5F0EE;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 4px 0;
}

/* Produit incliné — positionné à droite du titre, grand format */
.sv-ex-product {
  position: absolute;
  right: -60px;
  top: 10%;
  z-index: 3;
  width: clamp(200px, 22vw, 340px);
  transform: rotate(-14deg);
  transform-origin: bottom center;
  mix-blend-mode: screen;
}
.sv-ex-product-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Portraits — juste après le titre */
.sv-ex-portraits {
  display: flex;
  gap: 24px;
  margin-top: 52px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.sv-ex-portrait-f {
  width: clamp(160px, 18vw, 300px);
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transform: rotate(-4deg);
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.6));
}
.sv-ex-portrait-h {
  width: clamp(160px, 18vw, 300px);
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transform: rotate(3deg);
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.6));
}
.sv-ex-portrait-f.sv-img-ph,
.sv-ex-portrait-h.sv-img-ph {
  width: clamp(160px, 18vw, 300px);
  height: clamp(200px, 24vw, 380px);
  background: linear-gradient(135deg, rgba(232,164,176,0.1), rgba(10,10,10,0.4));
  border: 1px solid rgba(232,164,176,0.15);
  border-radius: 10px;
}

/* Colonne droite — 3 cartes en haut */
.sv-ex-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  position: relative;
  z-index: 3;
}
.sv-ex-card {
  padding: 28px 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: default;
  transition: background 0.3s;
  will-change: transform;
}
.sv-ex-card:hover { background: rgba(255,255,255,0.13); }
.sv-ex-card-icon {
  font-size: 20px;
  color: #E8A4B0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(232,164,176,0.3);
  display: grid; place-items: center;
}
.sv-ex-card-title {
  font-size: clamp(13px, 1.2vw, 16px);
  color: #F5F0EE;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Big Shoulders Display', sans-serif;
}
.sv-ex-card-text {
  font-size: 14px;
  color: rgba(245,240,238,0.6);
  line-height: 1.7;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 03 — LE RITUEL COMPLET (horizontal scroll)
═══════════════════════════════════════════════════════════════ */
.sv-rituel {
  background: #FFFFFF;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.sv-rituel-header {
  padding: 52px 60px 28px;
  text-align: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.sv-rituel-eyebrow {
  color: #C97D8C;
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 0.14em;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}
.sv-rituel-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 16px;
  margin: 0;
}
.sv-rituel-word {
  font-size: clamp(36px, 5vw, 72px);
  color: #1A1A1A;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1;
}
.sv-rituel-italic {
  font-size: clamp(34px, 4.8vw, 68px);
  color: #1A1A1A;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}
.sv-rituel-lead {
  display: inline-block;
  margin-top: 20px;
  padding: 18px 36px;
  font-size: 19px;
  color: #1A1A1A;
  line-height: 1.5;
  font-weight: 600;
  background: var(--rose-grad, #E8A4B0);
  border-radius: 999px; /* forme cylindre / pilule */
  box-shadow: 0 14px 34px rgba(232,164,176,0.35);
  max-width: 640px;
}
@media (max-width: 640px) {
  .sv-rituel-lead { padding: 14px 22px; font-size: 16px; border-radius: 28px; }
}

/* Slider horizontal */
.sv-rituel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0 60px 0;
  width: max-content;
  will-change: transform;
  flex: 1;
  align-items: stretch;
}
.sv-rituel-card {
  background: #111111;
  width: clamp(260px, 24vw, 320px);
  height: calc(100vh - 190px);
  margin-right: 20px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s;
  position: relative;
  border: 1px solid rgba(232,164,176,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  cursor: pointer;
}
.sv-rituel-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 32px 64px rgba(232,164,176,0.22);
  border-color: rgba(232,164,176,0.45);
}
.sv-rituel-card:active {
  transform: translateY(-6px) scale(0.99);
}
.sv-rituel-card-cart {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #F5F0EE;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.sv-rituel-card-cart:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.08);
}
.sv-rituel-card-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px 8px;
  height: 48%;
  flex-shrink: 0;
  position: relative;
}
.sv-rituel-card-img {
  height: 85%;
  width: auto;
  max-width: 85%;
  object-fit: contain;
  mix-blend-mode: screen;
}
.sv-rituel-card-img.sv-img-ph {
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  min-height: 200px;
  width: 100%;
}
.sv-rituel-soon-ph {
  width: 100%;
  min-height: 200px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
}
.sv-soon-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #1A1A1A;
  color: #F5F0EE;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.sv-rituel-card-meta {
  padding: 20px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sv-rituel-num {
  font-size: 13px;
  color: rgba(232,164,176,0.55);
  font-family: 'Cormorant Garamond', serif;
}
.sv-rituel-card-name {
  font-size: clamp(18px, 2vw, 24px);
  color: #F5F0EE;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.sv-rituel-card-desc {
  font-size: 14px;
  color: rgba(245,240,238,0.55);
  line-height: 1.65;
  font-style: italic;
  margin-top: 4px;
}
.sv-rituel-cta {
  margin-top: 12px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8A4B0;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.sv-rituel-card:hover .sv-rituel-cta { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   SECTION 04 — NOS PRODUITS VEDETTES
═══════════════════════════════════════════════════════════════ */
.sv-produits {
  background: #FFFFFF;
  padding: 120px 60px 140px;
  border-top: 1px solid rgba(26,26,26,0.08);
}
.sv-produits-header {
  text-align: center;
  margin-bottom: 72px;
}
.sv-produits-eyebrow {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  color: rgba(26,26,26,0.7);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  display: block;
  margin-bottom: 0;
}
/* Titre géant façon "HIGHLIGHTS" — occupe presque toute la largeur, en rose */
.sv-produits-title {
  font-size: clamp(72px, 13.5vw, 220px);
  color: var(--rose, #E8A4B0);
  letter-spacing: 0.02em;
  font-weight: 800;
  line-height: 0.9;
  white-space: nowrap;
}
.sv-produits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
  padding-bottom: 120px; /* espace pour la montée parallaxe des cartes */
}
/* Décalage en escalier — comme la référence, les cartes ne sont pas alignées */
.sv-prod-card:nth-child(2) { margin-top: 70px; }
.sv-prod-card:nth-child(3) { margin-top: 30px; }
.sv-prod-card:nth-child(4) { margin-top: 100px; }
.sv-prod-card {
  background: #111111;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s;
  will-change: transform;
}
.sv-prod-card:hover {
  box-shadow: 0 16px 48px rgba(201,125,140,0.18);
}
.sv-prod-img-wrap {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 16px;
  position: relative;
}
.sv-prod-img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.sv-prod-cart-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1A1A1A;
  color: #F5F0EE;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.sv-prod-cart-icon:hover {
  background: #E8A4B0;
  color: #1A1A1A;
  transform: scale(1.1);
}
.sv-prod-img.sv-img-ph {
  min-height: 160px;
  width: 100%;
  background: rgba(255,255,255,0.4);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #C97D8C;
}
.sv-prod-meta {
  padding: 16px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  /* Infos cachées par défaut — révélées au survol de la carte */
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.sv-prod-card:hover .sv-prod-meta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (hover: none) {
  /* Tactile : pas de hover — on garde les infos visibles */
  .sv-prod-meta { opacity: 1; transform: none; pointer-events: auto; }
}
.sv-prod-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F5F0EE;
  line-height: 1.2;
}
.sv-prod-sub {
  font-size: 13px;
  color: rgba(245,240,238,0.5);
  font-style: italic;
}
.sv-prod-price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #E8A4B0;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.sv-btn-add-cart {
  margin-top: 14px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid rgba(245,240,238,0.25);
  background: transparent;
  color: #F5F0EE;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.sv-btn-add-cart:hover {
  background: #E8A4B0;
  color: #1A1A1A;
  border-color: #E8A4B0;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 05 — BENTO GALLERY
═══════════════════════════════════════════════════════════════ */
.sv-bento {
  background: #0A0A0A;
  padding: 100px 40px 120px;
  overflow: hidden;
}
.sv-bento-label {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 800;
  color: #F5F0EE;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 48px;
  overflow: hidden;
  line-height: 1;
}
.sv-bento-label span { display: inline-block; }
.sv-bento-label-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: #E8A4B0;
  margin-left: 16px;
}
.sv-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 320px 360px 360px;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
}
.sv-bento-cell {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  will-change: transform, filter;
}
.sv-bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
}
.sv-bento-cell:hover .sv-bento-img {
  transform: scale(1.06);
}

/* Vertical coin haut-gauche */
.sv-bento-c1 { grid-column: 1;     grid-row: 1 / 3; }
.sv-bento-c1 .sv-bento-img { object-position: center top; }
/* Horizontal large haut — image beauté : texte en haut gauche */
.sv-bento-c2 { grid-column: 2 / 4; grid-row: 1; }
.sv-bento-c2 .sv-bento-img { object-position: left center; }
/* 2 horizontaux milieu */
.sv-bento-c3 { grid-column: 2;     grid-row: 2; }
.sv-bento-c4 { grid-column: 3;     grid-row: 2; }
.sv-bento-c4 .sv-bento-img { object-position: left top; }
/* 2 horizontaux larges bas — soin : texte en haut gauche */
.sv-bento-c5 { grid-column: 1 / 3; grid-row: 3; }
.sv-bento-c5 .sv-bento-img { object-position: left top; }
.sv-bento-c6 { grid-column: 1 / 3; grid-row: 4; }
/* Vertical coin bas-droite */
.sv-bento-c7 { grid-column: 3;     grid-row: 3 / 5; }
.sv-bento-c7 .sv-bento-img { object-position: center top; }

@media (max-width: 768px) {
  .sv-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .sv-bento-c1 { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 9/16; }
  .sv-bento-c2 { grid-column: 1 / 3; grid-row: auto; }
  .sv-bento-c3, .sv-bento-c4 { grid-column: auto; grid-row: auto; }
  .sv-bento-c5, .sv-bento-c6 { grid-column: 1 / 3; grid-row: auto; }
  .sv-bento-c7 { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 9/16; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER — deux parties
═══════════════════════════════════════════════════════════════ */
.sv-footer {
  background: #0A0A0A;
  color: #F5F0EE;
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 160px) clamp(20px, 5vw, 80px) clamp(60px, 7vw, 110px);
}

/* Image de fond pleine section */
.sv-footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sv-footer-bg-img {
  width: 100%;
  height: 115%; /* marge pour la parallaxe */
  object-fit: cover;
  display: block;
}
.sv-footer-bg-img.sv-img-ph {
  background: linear-gradient(135deg, #F5D5DB 0%, #E8A4B0 40%, #C97D8C 100%);
  border: none;
  min-height: 100%;
}
.sv-footer-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 45%, rgba(10,10,10,0.75) 100%);
}

/* Carte flottante devant l'image */
.sv-footer-card {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(232,164,176,0.14);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 64px) clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.sv-footer-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.sv-footer-card-left { flex: 0 1 auto; }
.sv-footer-card-right {
  flex: 1 1 auto;
  text-align: right;
}
.sv-footer-col-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,238,0.45);
  margin-bottom: 18px;
}

/* Wordmark géant rose — Cormorant Garamond Light Italic */
.sv-footer-big {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(56px, 8.5vw, 150px);
  color: var(--rose, #E8A4B0);
  letter-spacing: 0.01em;
  line-height: 0.95;
  white-space: nowrap;
}
.sv-footer-sub {
  font-size: clamp(15px, 1.6vw, 22px);
  color: rgba(245,240,238,0.55);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  margin-top: 10px;
  letter-spacing: 0.06em;
}

/* Portraits dispersés */
.sv-footer-portrait {
  position: absolute;
  z-index: 1;
  width: clamp(120px, 15vw, 240px);
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.45));
}
.sv-footer-portrait.sv-img-ph {
  height: clamp(160px, 20vw, 320px);
  background: linear-gradient(135deg, rgba(232,164,176,0.06), rgba(10,10,10,0.4));
  border: 1px solid rgba(232,164,176,0.12);
}
/* Femme — en haut à droite, juste au-dessus du texte SkinVitalis */
.sv-fp-top-right {
  top: clamp(12px, 2.5vw, 40px);
  right: clamp(30px, 7vw, 130px);
  transform: rotate(3deg);
}
/* Homme — en bas à gauche */
.sv-fp-bottom-left {
  bottom: clamp(10px, 2vw, 32px);
  left: clamp(20px, 4vw, 70px);
  transform: rotate(-3deg);
}

/* Liens rapides — colonne dans la carte */
.sv-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.sv-footer-link {
  font-size: 15px;
  color: rgba(245,240,238,0.55);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  transition: color 0.2s;
  padding: 4px 8px;
}
.sv-footer-link:hover { color: #E8A4B0; }
.sv-footer-sep {
  color: rgba(245,240,238,0.25);
  font-size: 14px;
  padding: 0 4px;
}

/* Réseaux sociaux */
.sv-footer-socials {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.sv-social {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,240,238,0.5);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: color 0.25s;
  text-decoration: none;
}
.sv-social:hover { color: #E8A4B0; }

/* Copyright */
.sv-footer-copy {
  font-size: 13px;
  color: rgba(245,240,238,0.3);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   UTILITAIRE — Image placeholder brand
═══════════════════════════════════════════════════════════════ */
.sv-img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232,164,176,0.06), rgba(201,125,140,0.03));
  border: 1px solid rgba(232,164,176,0.12);
  border-radius: 8px;
}

/* Responsive (light touch) */
@media (max-width: 1280px) {
  .sv-nav-menu { gap: 6px; }
  .sv-nav-link { padding: 9px 16px; font-size: 14px; }
  .sv-nav-inner { padding: 18px 20px; }
}
@media (max-width: 1100px) {
  .sv-nav-menu { display: none; }
  .sv-nav-inner { padding: 14px 20px; }
  .sv-hero-product-card { right: 16px; bottom: 16px; min-width: 220px; padding: 10px 14px 10px 10px; }
  .sv-hero-pc-img-wrap { width: 80px; height: 88px; }
  .sv-hero-cta-floating { left: 24px; bottom: 24px; }
  .sv-hero-word { font-size: clamp(60px, 18vw, 140px); }
  .sv-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-cat-card:nth-child(2n) { border-right: 0; }
  .sv-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-prod-card:nth-child(3n) { border-right: 1px solid var(--rule); }
  .sv-prod-card:nth-child(2n) { border-right: 0; }
  .sv-cat-editorial { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }
  .sv-philo-grid { grid-template-columns: 1fr; gap: 40px; }
  .sv-philo-pillars { grid-template-columns: repeat(2, 1fr); }
  .sv-pillar:nth-child(2n) { border-right: 0; }
  .sv-insp-block { grid-template-columns: 1fr; }
  .sv-insp-text { padding: 60px 32px; }
  .sv-footer-top { grid-template-columns: 1fr; gap: 56px; }
  .sv-footer-cols { grid-template-columns: repeat(3, 1fr); }
  .sv-cart-panel, .sv-side-menu-panel { width: 100%; max-width: 460px; }
  .sv-modal-grid { grid-template-columns: 1fr; }
  .sv-modal-visual { height: 360px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .sv-modal-text { padding: 40px 28px; }
  /* Nouvelles sections */
  .sv-ex-cards { grid-template-columns: 1fr; padding: 40px 24px; gap: 16px; }
  .sv-ex-portraits { display: none; }
  .sv-produits { padding: 80px 24px 100px; }
  .sv-produits-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-prod-card:nth-child(3) { margin-top: 0; }
  .sv-prod-card:nth-child(4) { margin-top: 70px; }
  .sv-rituel-header { padding: 80px 24px 32px; }
  .sv-rituel-track { padding: 0 24px 60px; }

  /* Tactile : la rangée se fait glisser au doigt plutôt que d'être
     épinglée au scroll. La section reprend une hauteur normale. */
  .sv-rituel-track {
    width: auto;
    scroll-padding-left: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .sv-rituel-track::-webkit-scrollbar { display: none; }
  .sv-rituel-card {
    scroll-snap-align: start;
    height: auto;
    min-height: 62vh;
    flex: 0 0 auto;
  }
  .sv-rituel { height: auto; min-height: 0; }
  .sv-footer-card-inner { flex-direction: column; align-items: center; }
  .sv-footer-card-left, .sv-footer-card-right { text-align: center; }
  .sv-footer-links { align-items: center; }
  .sv-footer-portrait { width: clamp(90px, 16vw, 150px); }
  .sv-footer-big { white-space: normal; }
}

@media (max-width: 640px) {
  .sv-produits-grid { grid-template-columns: 1fr; padding-bottom: 40px; }
  .sv-prod-card:nth-child(2), .sv-prod-card:nth-child(3), .sv-prod-card:nth-child(4) { margin-top: 0; }
  .sv-ex-composition { padding: 0 20px; }
  .sv-ex-product { width: 120px; }
  .sv-footer-big { font-size: 44px; }
  .sv-footer-portrait { display: none; } /* trop petit sur mobile — on garde la carte propre */
  .sv-rituel-card { width: clamp(260px, 82vw, 360px); }
}


/* ═══════════════════════════════════════════════════════════════
   PAGE COLLAGÈNES — sur mesure
   1. Hero dégradé rose→noir · 2. Produits · 3. Éditorial spirale
   ═══════════════════════════════════════════════════════════════ */

.cg-page {
  background: #0A0A0A;
  --cg-rose: #E8A4B0;
  --cg-rose-clair: #F4C6CE;
  --cg-rose-deep: #C97D8C;
}

/* ─────────── SECTION 1 · HERO ─────────── */

/* la marge blanche qui encadre le panneau */
.cg-hero {
  --cg-marge: clamp(8px, 1.1vw, 18px);
  background: #fff;
  padding: var(--cg-marge);
}

/* le panneau lui-même : dégradé, angles arrondis, tout est posé dedans */
.cg-hero-panneau {
  position: relative;
  overflow: hidden;
  border-radius: clamp(18px, 2.2vw, 38px);
  min-height: calc(100vh - 2 * var(--cg-marge));
  min-height: calc(100svh - 2 * var(--cg-marge));
  background:
    radial-gradient(circle at 50% 40%,
      #F7C9D2 0%,
      #E8A4B0 12%,
      #D08A99 24%,
      #A75F71 38%,
      #6B3A48 52%,
      #3A1E27 66%,
      #170C10 82%,
      #0A0A0A 100%);
}

/* halo diffus derrière le produit */
.cg-hero-halo {
  position: absolute;
  left: 50%; top: 38%;
  width: min(148vw, 1180px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 214, 224, 0.42) 0%, rgba(232, 164, 176, 0.16) 34%, transparent 66%);
  filter: blur(38px);
  z-index: 0;
}

/* grain fin — évite l'effet dégradé plastique */
.cg-hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='0.55'/></svg>");
}

/* icônes en haut à droite */
.cg-hero-icones {
  position: absolute;
  top: clamp(78px, 10.5vh, 118px);
  right: clamp(18px, 3.4vw, 52px);
  display: flex;
  gap: 10px;
  z-index: 6;
}
.cg-hero-icone {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: background .35s ease, transform .35s ease;
  cursor: default;
}
.cg-hero-icone:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

/* bloc de texte calé à gauche du panneau */
.cg-hero-texte {
  position: absolute;
  z-index: 4;
  left: clamp(20px, 4vw, 66px);
  top: clamp(130px, 21vh, 210px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 2.6vh, 30px);
}

.cg-hero-mot {
  display: flex;
  white-space: nowrap;
  color: #fff;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(50px, 11.5vw, 188px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin: 0;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.cg-hero-lettre-masque { display: inline-block; overflow: hidden; padding-bottom: 0.06em; }
.cg-hero-lettre { display: inline-block; }

/* la main : posée au sol du panneau, centrée, aucun espace sous elle */
.cg-hero-produit {
  position: absolute;
  /* centrage par marges auto, PAS par translateX : GSAP anime transform
     et écraserait le centrage, décalant la main vers la droite */
  left: 0; right: 0;
  margin-inline: auto;
  bottom: 0;
  /* devant le texte (z-index 4) : les lettres passent derrière le flacon.
     pointer-events:none plus bas garde les boutons cliquables au travers */
  z-index: 5;
  height: clamp(300px, 68vh, 740px);
  width: auto;
  max-width: 54vw;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 40px 66px rgba(0, 0, 0, 0.5));
  user-select: none;
  pointer-events: none;
}

/* rectangle de verre liquide qui porte le sous-titre */
.cg-verre-carte {
  position: relative;
  overflow: hidden;
  padding: clamp(14px, 1.7vw, 22px) clamp(20px, 2.4vw, 32px);
  border-radius: clamp(14px, 1.6vw, 22px);
  max-width: min(34ch, 46vw);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 12px 34px rgba(0, 0, 0, 0.22);
}
.cg-hero-sub {
  margin: 0;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.45;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}
.cg-hero-cta { display: flex; align-items: center; gap: 14px; }

/* pilule verre liquide */
.cg-verre-pilule {
  position: relative;
  padding: 15px 34px;
  border-radius: 999px;
  color: #fff;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    0 10px 32px rgba(0, 0, 0, 0.24);
  transition: transform .38s cubic-bezier(.22,1,.36,1), background .38s ease;
}
.cg-verre-pilule::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 55%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  transition: left .75s cubic-bezier(.22,1,.36,1);
}
.cg-verre-pilule:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }
.cg-verre-pilule:hover::before { left: 115%; }
.cg-verre-pilule span { position: relative; z-index: 1; }

.cg-fleche-rond {
  width: 52px; height: 52px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  cursor: pointer;
  color: #2A121A;
  background: linear-gradient(150deg, #F4C6CE 0%, #E8A4B0 48%, #C97D8C 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 10px 26px rgba(0, 0, 0, 0.3);
  transition: transform .38s cubic-bezier(.22,1,.36,1), box-shadow .38s ease;
}
.cg-fleche-rond:hover { transform: translateY(3px) scale(1.05); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36); }

/* ─────────── PAGE HUILES & CHEVEUX — 404 ─────────── */

.hc-centre {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vh, 34px);
  padding: clamp(90px, 14vh, 150px) clamp(20px, 5vw, 60px) clamp(60px, 10vh, 110px);
  text-align: center;
}
.hc-404 {
  display: flex;
  margin: 0;
  color: #fff;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(110px, 25vw, 340px);
  line-height: 0.84;
  letter-spacing: 0.01em;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}
.hc-chiffre { display: inline-block; }

.hc-carte { max-width: min(52ch, 88vw); text-align: left; }
.hc-titre {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(19px, 2vw, 27px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hc-texte {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.55;
}

.hc-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.hc-signature {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translate(-50%, 14%);
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.26);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(74px, 17.5vw, 288px);
  line-height: 0.82;
  filter: blur(5px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 55%, transparent 96%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 55%, transparent 96%);
}

@media (max-width: 620px) {
  .hc-404 { font-size: clamp(88px, 30vw, 170px); }
  .hc-carte { max-width: 92vw; }
}

/* signature géante et floue en pied de hero */
.cg-hero-signature {
  position: absolute;
  left: 50%; bottom: 0;
  /* la main (z-index 3) passe par-dessus ce mot */
  transform: translate(-50%, 12%);
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.34);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(74px, 17.5vw, 288px);
  line-height: 0.82;
  letter-spacing: 0.01em;
  filter: blur(5px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 55%, transparent 96%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 55%, transparent 96%);
}

/* ─────────── SECTION 2 · PRODUITS ─────────── */

.cg-produits {
  position: relative;
  background: #fff;
  padding: clamp(74px, 11vh, 130px) clamp(14px, 4vw, 56px) clamp(130px, 20vh, 230px);
  overflow: hidden;
}
.cg-produits-tete { text-align: center; }
.cg-eyebrow {
  display: block;
  margin-bottom: clamp(14px, 2.4vh, 26px);
  color: var(--cg-rose-deep);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.16em;
}

/* le titre occupe exactement la largeur de la section */
.cg-grandmot { display: block; width: 100%; height: auto; overflow: visible; }
.cg-grandmot text {
  fill: var(--cg-rose);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 118px;
  letter-spacing: 0;
}

.cg-rangee {
  margin-top: clamp(34px, 5.5vh, 66px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(12px, 1.7vw, 26px);
}

.cg-carte {
  /* décalage statique en marge : GSAP pilote transform, pas de conflit */
  margin-top: var(--decalage, 0px);
  position: relative;
  width: clamp(196px, 21.5vw, 306px);
  aspect-ratio: 3 / 4.05;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(168deg, #171717 0%, #0A0A0A 58%, #050505 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  transition: box-shadow .45s ease, border-color .45s ease;
  will-change: transform;
}
.cg-carte::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 22%, rgba(232, 164, 176, 0.17) 0%, transparent 62%);
}
.cg-carte:hover { box-shadow: 0 30px 62px rgba(0, 0, 0, 0.32); border-color: rgba(232, 164, 176, 0.34); }

.cg-carte-visuel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 13% 14% 17%;
}
.cg-carte-visuel img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.5));
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.cg-carte:hover .cg-carte-visuel img { transform: scale(1.06) translateY(-4px); }

/* voile révélé au survol */
.cg-carte-voile {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  padding: 18px 17px 17px;
  opacity: 0;
  transition: opacity .42s ease;
  background: linear-gradient(to top, rgba(5,5,5,0.96) 0%, rgba(5,5,5,0.82) 34%, rgba(5,5,5,0.28) 66%, transparent 100%);
}
.cg-carte-marque {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cg-rose);
}
.cg-carte-nom {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1;
}
.cg-carte-format {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.66);
}
.cg-carte-pied {
  margin-top: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cg-carte-prix { color: var(--cg-rose); font-size: 16px; letter-spacing: 0.05em; }
.cg-carte-plus {
  width: 27px; height: 27px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 13px;
  color: #0A0A0A;
  background: var(--cg-rose);
}

/* étiquette permanente — écrans tactiles (pas de survol possible) */
.cg-carte-etiquette {
  display: none;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  flex-direction: column;
  gap: 2px;
  padding: 32px 15px 14px;
  background: linear-gradient(to top, rgba(5,5,5,0.94) 0%, rgba(5,5,5,0.62) 55%, transparent 100%);
}
.cg-carte-etiquette-nom {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
}
.cg-carte-etiquette-prix {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.07em;
  color: var(--cg-rose);
}

@media (hover: hover) and (pointer: fine) {
  .cg-carte:hover .cg-carte-voile,
  .cg-carte:focus-visible .cg-carte-voile { opacity: 1; }
}
@media (hover: none), (pointer: coarse) {
  .cg-carte-voile { display: none; }
  .cg-carte-etiquette { display: flex; }
}

/* ─────────── POPUP PRODUIT ─────────── */

.cg-popup-fond {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 40px);
  background: rgba(6, 4, 5, 0.74);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.cg-popup {
  position: relative;
  width: min(1020px, 100%);
  max-height: min(88vh, 780px);
  overflow-y: auto;
  border-radius: 26px;
  background: #FFFDFD;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.48);
}
.cg-popup-fermer {
  position: absolute;
  top: 14px; right: 16px;
  z-index: 3;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
  color: #2A1A1E;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.cg-popup-fermer:hover { background: var(--cg-rose); transform: rotate(90deg); }

.cg-popup-grille {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(20px, 3vw, 38px);
}
.cg-popup-grand {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(165deg, #FDF3F5 0%, #F7E7EB 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.cg-popup-grand img { width: 100%; height: 100%; object-fit: cover; }
.cg-popup-vignettes { margin-top: 11px; display: flex; gap: 9px; }
.cg-popup-vignette {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 11px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #F7E7EB;
  border: 2px solid transparent;
  transition: border-color .3s ease, transform .3s ease;
}
.cg-popup-vignette img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cg-popup-vignette:hover { transform: translateY(-2px); }
.cg-popup-vignette.actif { border-color: var(--cg-rose); }

.cg-popup-texte { display: flex; flex-direction: column; }
.cg-popup-marque {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cg-rose-deep);
}
.cg-popup-nom {
  margin: 9px 0 0;
  color: #0A0A0A;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 0.98;
}
.cg-popup-accroche {
  margin: 13px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.42;
  color: #7C5A63;
}
.cg-popup-desc {
  margin: 15px 0 0;
  font-size: 14.5px;
  line-height: 1.72;
  color: #4A3D40;
}
.cg-popup-details {
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.cg-popup-details li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cg-popup-cle {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #9A868C;
}
.cg-popup-val {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: #2A1A1E;
  text-align: right;
}
.cg-popup-achat {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cg-popup-prix { font-size: 30px; color: #0A0A0A; letter-spacing: 0.03em; }
.cg-popup-btn {
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #E8A4B0 0%, #C97D8C 100%);
  border: none;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(201, 125, 140, 0.4);
  transition: transform .34s cubic-bezier(.22,1,.36,1), box-shadow .34s ease;
}
.cg-popup-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 34px rgba(201, 125, 140, 0.5); }

/* ─────────── SECTION 3 · ÉDITORIAL + SPIRALE ─────────── */

.cg-edito {
  --cg-marge: clamp(8px, 1.1vw, 18px);
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: var(--cg-marge);
}

/* le panneau vidéo : même encadrement que le hero */
.cg-video-panneau {
  position: relative;
  overflow: hidden;
  border-radius: clamp(18px, 2.2vw, 38px);
  /* pleine hauteur d'écran, marge blanche déduite — même calcul que le hero */
  height: calc(100vh - 2 * var(--cg-marge));
  height: calc(100svh - 2 * var(--cg-marge));
  min-height: 460px;
  background: #0A0A0A;
}
.cg-video-fond {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* cover : la vidéo remplit tout le cadre, quel que soit le format d'écran */
  object-fit: cover;
  display: block;
}

/* la carte de verre posée sur la vidéo, dans sa moitié gauche vide */
.cg-edito-carte {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 3.4vw, 54px);
  top: clamp(16px, 3.4vw, 54px);
  max-width: min(46ch, 52%);
}
.cg-edito-titre {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3.4vw, 58px);
  line-height: 0.98;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.4);
}
.cg-edito-masque { display: block; overflow: hidden; padding-bottom: 0.05em; }
.cg-edito-ligne { display: block; }

/* voile sombre en pied de vidéo — le texte blanc reste lisible même
   quand une image claire passe à cet endroit */
.cg-video-voile {
  position: absolute;
  z-index: 1;
  left: 0; right: 0; bottom: 0;
  height: 52%;
  pointer-events: none;
  background: linear-gradient(to top,
    rgba(5, 3, 4, 0.92) 0%,
    rgba(5, 3, 4, 0.70) 34%,
    rgba(5, 3, 4, 0.28) 66%,
    transparent 100%);
}

/* texte et lien, posés sur la vidéo */
.cg-edito-bas {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(20px, 3.4vw, 54px);
}
.cg-edito-para {
  margin: 0;
  max-width: 62ch;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.66;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  cursor: default;
}

.cg-edito-suivant {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px 13px 27px;
  border-radius: 999px;
  cursor: pointer;
  color: #2A121A;
  background: linear-gradient(135deg, #F4C6CE 0%, #E8A4B0 52%, #DE96A4 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 30px rgba(201, 125, 140, 0.34);
  transition: transform .38s cubic-bezier(.22,1,.36,1), box-shadow .38s ease;
  white-space: nowrap;
}
.cg-edito-suivant:hover { transform: translateX(5px); box-shadow: 0 16px 38px rgba(201, 125, 140, 0.44); }
.cg-edito-suivant-label {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.cg-edito-suivant-fleche {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1A0D11;
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.cg-edito-suivant:hover .cg-edito-suivant-fleche { transform: translateX(3px); }

/* ─────────── RESPONSIVE ─────────── */

@media (max-width: 900px) {
  .cg-popup-grille { grid-template-columns: 1fr; }
  .cg-edito-bas { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .cg-edito-suivant { justify-self: start; }
  .cg-edito-carte { max-width: min(46ch, 78%); }
  .cg-carte { width: clamp(178px, 44vw, 250px); }
  .cg-hero-icones { top: clamp(72px, 10vh, 100px); right: clamp(14px, 4vw, 26px); }
  .cg-hero-produit { max-width: 72vw; }
  .cg-verre-carte { max-width: min(34ch, 78vw); }
}

@media (max-width: 620px) {
  /* la main reste collée en bas, mais laisse la place au texte au-dessus */
  .cg-hero-produit { height: clamp(240px, 42vh, 380px); max-width: 84vw; }
  .cg-hero-mot { font-size: clamp(40px, 15vw, 92px); }
  .cg-hero-texte { top: clamp(96px, 15vh, 140px); left: clamp(16px, 5vw, 28px); }
  .cg-verre-carte { max-width: 86vw; }
  .cg-rangee { gap: 12px; }
  .cg-carte { width: calc(50% - 8px); margin-top: 0; }
  /* en mobile le texte prend plus de place, la vidéo se resserre un peu */
  .cg-video-panneau { height: calc(88svh - 2 * var(--cg-marge)); }
  .cg-edito-carte { max-width: 88%; left: 16px; top: 16px; }
  .cg-video-voile { height: 66%; }
}

/* ─────────── ACCESSIBILITÉ — mouvement réduit ─────────── */

@media (prefers-reduced-motion: reduce) {
  .cg-hero-produit,
  .cg-carte,
  .cg-spirale { animation: none !important; }
  .cg-verre-pilule::before { transition: none; }
}


/* ═══════════════════════════════════════════════════════════════
   PANIER — COORDONNÉES, WHATSAPP, WAVE
   ═══════════════════════════════════════════════════════════════ */

.sv-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 18px 0 14px;
}
.sv-champ {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: #F5F0EE;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: border-color .3s ease, background .3s ease;
}
.sv-champ::placeholder {
  color: rgba(245, 240, 238, 0.42);
  font-style: italic;
}
.sv-champ:focus {
  outline: none;
  border-color: var(--rose, #E8A4B0);
  background: rgba(255, 255, 255, 0.09);
}
.sv-erreur {
  margin: 2px 0 0;
  font-size: 13px;
  color: #FF9BA8;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* Bouton WhatsApp — vert de la marque, reconnaissable au premier coup d'œil */
.sv-btn-whatsapp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  color: #fff;
  background: #25D366;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.28);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.sv-btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.38);
}

/* Bloc Wave */
.sv-wave {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(26, 178, 255, 0.08);
  border: 1px solid rgba(26, 178, 255, 0.22);
}
.sv-wave-titre {
  margin: 0 0 6px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6FD0FF;
}
.sv-wave-txt {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 240, 238, 0.82);
}
.sv-wave-num {
  color: #6FD0FF;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.sv-btn-wave {
  display: block;
  margin-top: 12px;
  padding: 13px 18px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  color: #04263A;
  background: #1AB2FF;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.sv-btn-wave:hover { transform: translateY(-2px); }


/* ═══════════════════════════════════════════════════════════════
   ACCUEIL — AJUSTEMENTS TÉLÉPHONE UNIQUEMENT
   Ce bloc est volontairement placé en dernier : il corrige des
   règles écrites plus haut. Il ne concerne QUE le mobile, la version
   grand écran n'est touchée par aucune de ces lignes.
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {

  /* ── 1. Photo du hero entièrement visible ──────────────────────
     L'image fait 1740x904, soit un format très large. En « cover »
     sur un écran de téléphone, le navigateur n'en garde qu'une bande
     centrale et coupe l'homme et la femme. En « contain » elle rentre
     en entier. */
  .sv-hero-img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center 46%;
  }

  /* ── 2. Portraits de la section Exigence ───────────────────────
     Ils étaient masqués (display:none) : d'où le vide signalé. */
  .sv-ex-portraits {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
  }
  /* 2 x 33vw + l'écart tiennent dans la largeur d'écran ;
     au-delà les deux portraits se chevauchaient. */
  .sv-ex-portrait-f,
  .sv-ex-portrait-h {
    width: clamp(110px, 33vw, 175px);
  }
  .sv-ex-portrait-f.sv-img-ph,
  .sv-ex-portrait-h.sv-img-ph {
    width: clamp(110px, 33vw, 175px);
    height: clamp(140px, 40vw, 215px);
  }
}

@media (max-width: 768px) {

  /* ── 3. La galerie bento redevient une mosaïque ────────────────
     Les cellules passaient toutes en pleine largeur, deux d'entre
     elles en format 9/16 : la grille devenait une pile de grands
     blocs. On repasse sur deux colonnes avec des hauteurs variées,
     ce qui redonne l'effet mosaïque. */
  .sv-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: clamp(96px, 26vw, 150px);
    gap: 8px;
  }
  .sv-bento-c1 { grid-column: 1;     grid-row: span 2; aspect-ratio: auto; }
  .sv-bento-c2 { grid-column: 2;     grid-row: span 2; aspect-ratio: auto; }
  .sv-bento-c3 { grid-column: 1;     grid-row: span 1; aspect-ratio: auto; }
  .sv-bento-c4 { grid-column: 2;     grid-row: span 1; aspect-ratio: auto; }
  .sv-bento-c5 { grid-column: 1 / 3; grid-row: span 1; aspect-ratio: auto; }
  .sv-bento-c6 { grid-column: 1;     grid-row: span 2; aspect-ratio: auto; }
  .sv-bento-c7 { grid-column: 2;     grid-row: span 2; aspect-ratio: auto; }
  .sv-bento-cell { border-radius: 12px; }
}

@media (max-width: 640px) {

  /* ── 4. Portraits du pied de page ──────────────────────────────
     Ils étaient masqués eux aussi. On les garde, en plus petit, aux
     deux coins opposés comme sur grand écran. */
  .sv-footer-portrait {
    display: block;
    width: clamp(84px, 26vw, 130px);
  }
  .sv-fp-top-right {
    top: 8px;
    right: 10px;
  }
  .sv-fp-bottom-left {
    bottom: 8px;
    left: 10px;
  }
  .sv-footer-portrait.sv-img-ph {
    height: clamp(110px, 34vw, 170px);
  }
}
