/* ================================================================
   BOUTIQUE.CSS — CÆMAS Boutique
   Palette : turquoise #067a7e · orange #D85228 · encre · crème
   ================================================================ */

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

:root {
  --teal:       #067a7e;
  --teal-dk:    #044a4c;
  --teal-deep:  #033133;
  --orange:     #D85228;
  --cream:      #f5f0e4;
  /* Crème exacte de l'affiche vintage — parchemin chaud légèrement doré */
  --hero-cream: #F2E8CF;
  --ink:        #16130f;
  --fg:         #ffffff;
  --fg-soft:    rgba(255,255,255,0.60);
  --fg-muted:   rgba(255,255,255,0.35);
  --pad:        clamp(1.5rem, 6vw, 6rem);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spr:   cubic-bezier(0.34, 1.56, 0.64, 1);
  /* alias pour la modale d'options (réutilisée depuis la landing) */
  --base:       #f5f0e1;
  --royal:      #1C3E72;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Rideau « poisson » vers la réservation ──────────────── */
#fish-ink {
  position: fixed; inset: 0; z-index: 9998;
  background: #1C3E72;
  visibility: hidden;
  clip-path: circle(0px at 50% 50%);
  pointer-events: none;
}

html {
  overflow-x: hidden;
  /* PAS de scroll-behavior:smooth — Lenis gère tout le lissage */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-overflow-scrolling: auto;
  /* Scrollbar masquée comme sur la landing page */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar        { width: 0 !important; height: 0 !important; background: transparent; }
html::-webkit-scrollbar-thumb  { background: transparent; }
html::-webkit-scrollbar-track  { background: transparent; }

body {
  background: var(--teal);
  color: var(--fg);
  font-family: "Barlow", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: auto;
  touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar { width: 0 !important; background: transparent; }
/* Curseur masqué uniquement souris précise */
@media (pointer: fine) {
  body, body *,
  a, button, [role="button"], input, select, textarea, label,
  summary, [tabindex] { cursor: none !important; }
}
@media (pointer: coarse){ body, body * { cursor: auto !important; } }

/* ── GRAIN ──────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 9990;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.55;
}

/* ── CURSEUR ─────────────────────────────────────────── */
#cursor-dot {
  position: fixed; top: 0; left: 0;
  z-index: 99999;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#cursor-expand {
  position: fixed; top: 0; left: 0;
  z-index: 99998;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: #f1ebdc;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
  transition: opacity 0.2s ease, background-color 0.25s ease;
}
#cursor-expand.is-blend { background: #fff; mix-blend-mode: difference; }
#cursor-label {
  font-family: "Barlow", sans-serif;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #1c1812;
}
#cursor-expand.is-blend #cursor-label { opacity: 0; }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.6rem) var(--pad);
  /* Blend difference en temps réel (comme la landing) : le blanc s'inverse
     selon le fond → le texte CAEMAS reste toujours lisible, jamais invisible. */
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  gap: clamp(2rem, 5vw, 6rem);
}
.nav > * { pointer-events: auto; }

/* ── Bouton retour circulaire (design des onglets calendrier/réservation) ── */
.b-back {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px #fff;
  text-decoration: none;
  cursor: none;
  transition: transform 0.35s var(--ease-spr);
}
.b-back svg { width: 20px; height: 20px; transition: transform 0.35s var(--ease-out); }
.b-back:hover { transform: scale(1.08); }
.b-back:hover svg { transform: translateX(-3px); }

/* Sur les sections sombres (teal), le JS ajoute .nav--light */
.nav--light            { color: #fff; }
.nav--light .nav__links a { color: #fff; opacity: 0.72; }
.nav--light .nav__links a:hover { opacity: 1; }
.nav--light .nav__cta  {
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.7);
}
.nav--light .nav__cta:hover { box-shadow: inset 0 0 0 1.5px #fff; }

.nav__brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700; font-size: clamp(0.85rem, 1.4vw, 1rem);
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; color: inherit;
}
.nav__logo { width: 22px; height: 22px; object-fit: contain; filter: invert(1); }

.nav__links {
  display: flex; gap: clamp(1rem, 2.5vw, 2.5rem);
  list-style: none;
}
.nav__links a {
  font-size: clamp(0.72rem, 0.95vw, 0.82rem);
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; color: inherit;
  opacity: 0.62; transition: opacity 0.25s ease;
}
.nav__links a:hover { opacity: 1; }

/* CTA bouton */
.nav__cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.55em 1.2em;
  border-radius: 100px;
  background: transparent;
  color: inherit;
  box-shadow: inset 0 0 0 1.5px rgba(22,19,15,0.4);
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.35s var(--ease-spr), letter-spacing 0.3s ease,
              box-shadow 0.25s ease;
  cursor: none;
  overflow: hidden;
  white-space: nowrap;
}
.nav__cta:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.nav__cta-text { position: relative; z-index: 2; display: inline-block; }
.nav__cta-label { display: block; }
.nav__cta-label--inv { position: absolute; inset: 0; display: block; }
.nav__cta-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); }
.nav__cta-fill { position: absolute; inset: 0; border-radius: inherit; background: #fff; transform: scale(0); transform-origin: center; z-index: 0; transition: transform 0.4s var(--ease-out); }
.nav__cta:hover { transform: scale(1.05); }

/* ─────────────────────────────────────────────────────
   HÉROS — fond crème vintage
───────────────────────────────────────────────────── */
.b-hero {
  position: relative;
  min-height: 100vh;
  background: var(--hero-cream);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 0 var(--pad) clamp(5rem, 12vh, 9rem);
  overflow: hidden;
}

/* Ghost words — sombres sur fond crème */
.b-ghost {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none; overflow: hidden;
}
.b-ghost__word {
  position: absolute;
  font-family: "Barlow", sans-serif; font-weight: 900;
  font-size: clamp(5rem, 18vw, 20rem);
  text-transform: uppercase; color: rgba(22,19,15,0.045);
  white-space: nowrap; user-select: none; will-change: transform;
}
.b-ghost__word:nth-child(1) { top: 4%;  left: -3%; }
.b-ghost__word:nth-child(2) { top: 28%; right: -2%; }
.b-ghost__word:nth-child(3) { top: 55%; left: -1%; }
.b-ghost__word:nth-child(4) { top: 75%; right: 5%; }
.b-ghost__word:nth-child(5) { top: 92%; left: 20%; }

/* Produits flottants */
.b-hero__floats {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 48%; pointer-events: none;
  display: flex; align-items: flex-end; justify-content: center;
}
.b-float {
  position: absolute;
  object-fit: contain;
  /* Pas de mix-blend-mode:multiply — désature les images sur fond teal */
  will-change: transform;
}
.b-float--1 { width: clamp(160px, 22vw, 320px); bottom: 8%;  right: 6%; }
.b-float--2 { width: clamp(100px, 14vw, 210px); bottom: 38%; right: 32%; }
.b-float--3 { width: clamp(100px, 14vw, 210px); bottom: 40%; right: 8%; }

/* Contenu */
.b-hero__content { position: relative; z-index: 2; max-width: 820px; }

.b-eyebrow {
  font-size: clamp(0.62rem, 0.85vw, 0.72rem);
  font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(22,19,15,0.5);
  margin-bottom: clamp(0.9rem, 2vh, 1.4rem);
}

.b-hero__title {
  font-family: "Barlow", sans-serif;
  font-size: clamp(4.5rem, 15vw, 15rem);
  font-weight: 900; line-height: 0.88;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.b-hero__sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  color: rgba(22,19,15,0.55);
  margin-bottom: clamp(2rem, 4vh, 3rem);
}

.b-hero__cta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: rgba(22,19,15,0.5);
  transition: color 0.3s, gap 0.3s;
}
.b-hero__cta:hover { color: var(--ink); gap: 1rem; }
.b-hero__cta svg { width: 18px; height: 18px; }

/* Scroll hint */
.b-scroll-hint {
  position: absolute; bottom: 2.5rem; right: var(--pad);
  z-index: 3;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(22,19,15,0.3);
  writing-mode: vertical-rl;
}
.b-scroll-hint i {
  display: block; width: 1px; height: 28px;
  background: rgba(22,19,15,0.2);
  animation: b-hint 2.2s var(--ease-out) infinite;
}
@keyframes b-hint {
  0%, 100% { transform: scaleY(1);   opacity: 0.3; }
  50%       { transform: scaleY(1.9); opacity: 0.7; }
}

/* ─────────────────────────────────────────────────────
   SÉPARATEUR VAGUE
───────────────────────────────────────────────────── */
.b-wave-sep {
  width: 100%; height: 70px; overflow: hidden;
  flex-shrink: 0;
}
.b-wave-sep svg { width: 100%; height: 100%; display: block; }

/* ─────────────────────────────────────────────────────
   PRODUITS
───────────────────────────────────────────────────── */
.b-products {
  /* Turquoise plus lumineux (avant : --teal-dk trop foncé/terne) */
  background: #07868a;
  padding-bottom: clamp(6rem, 14vh, 12rem);
}
.b-products__inner {
  padding: clamp(4rem, 10vh, 8rem) var(--pad) 0;
}

/* En-tête */
.b-section-head { margin-bottom: clamp(2.5rem, 6vh, 5rem); }
.b-section-title {
  font-family: "Barlow", sans-serif;
  font-weight: 900; font-size: clamp(2.8rem, 7vw, 7rem);
  line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; margin-top: 0.8rem;
}

/* Filtres */
.b-filters {
  display: flex; gap: 0.65rem; flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 6vh, 5rem);
}
.b-filter {
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--fg-soft);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 100px; padding: 0.55em 1.3em;
  cursor: none;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.b-filter:hover,
.b-filter--active {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
}

/* Grille */
.b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

/* Carte */
.b-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
  cursor: none;
  transition: transform 0.45s var(--ease-out),
              border-color 0.45s ease,
              box-shadow 0.45s ease;
}
.b-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.b-card--soon { opacity: 0.68; }
.b-card--ed {
  background: var(--orange);
  border-color: transparent;
}
.b-card--ed:hover { box-shadow: 0 24px 64px rgba(216,82,40,0.35); }

/* Zone image */
.b-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f0ebe0; /* crème pour multiply */
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.b-card__img-wrap--ph {
  background: rgba(255,255,255,0.03);
}

.b-card__img {
  width: 72%; height: 88%;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out);
}
/* Plus de mix-blend-mode: multiply — fond crème + multiply = désaturation des couleurs */
.b-card:hover .b-card__img { transform: scale(1.07); }

.b-ph-icon { width: 70px; height: 110px; }

/* Tag coin */
.b-card__tag {
  position: absolute; top: 0.85rem; left: 0.85rem;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #fff;
  background: var(--teal); padding: 0.3em 0.75em;
  border-radius: 100px;
}

/* Corps */
.b-card__body {
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  flex: 1; display: flex; flex-direction: column; gap: 0.6rem;
}
.b-card__body--ed {
  justify-content: center; gap: 1.2rem;
  padding: clamp(2rem, 4vw, 3rem);
}

.b-card__cat {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange);
}
.b-card--ed .b-card__cat { color: rgba(255,255,255,0.65); }

.b-card__name {
  font-family: "Barlow", sans-serif;
  font-weight: 800; font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.1; text-transform: uppercase;
  color: #fff; letter-spacing: -0.01em;
}

.b-card__desc {
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  line-height: 1.7; color: var(--fg-soft); flex: 1;
}

.b-card__foot {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem; padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.b-card__price {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-muted);
}
.b-card__badge {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-muted);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 0.38em 0.9em;
}

.b-card__cta {
  font-family: "Barlow", sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px; padding: 0.45em 1.1em;
  cursor: none;
  transition: background 0.3s, border-color 0.3s;
}
.b-card__cta:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.35); }

/* Carte éditoriale */
.b-ed-title {
  font-family: "Barlow", sans-serif;
  font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1; text-transform: uppercase;
  letter-spacing: -0.02em; color: #fff;
}
.b-ed-body {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  line-height: 1.7; color: rgba(255,255,255,0.75);
}
.b-ed-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.45rem;
}
.b-ed-list li {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}

/* ─────────────────────────────────────────────────────
   VALEURS
───────────────────────────────────────────────────── */
.b-values {
  background: var(--teal);
  padding: 0 var(--pad) clamp(6rem, 14vh, 12rem);
}
.b-values__inner { padding-top: clamp(3rem, 7vh, 6rem); }

.b-val-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.b-val { display: flex; flex-direction: column; gap: 0.8rem; }

.b-val__sym {
  font-size: 1.6rem; color: var(--orange); line-height: 1;
}
.b-val__title {
  font-family: "Barlow", sans-serif;
  font-weight: 800; font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  text-transform: uppercase; letter-spacing: 0.05em; color: #fff;
}
.b-val__text {
  font-size: clamp(0.8rem, 1vw, 0.88rem);
  line-height: 1.72; color: var(--fg-soft);
}

/* ─────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────── */
.b-footer {
  background: var(--teal-deep);
  padding: clamp(2.5rem, 5vh, 4rem) var(--pad);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.b-footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.b-footer__brand {
  font-family: "Barlow", sans-serif; font-weight: 900;
  font-size: clamp(2rem, 6vw, 5rem); letter-spacing: 0.04em;
  text-transform: uppercase; color: rgba(255,255,255,0.06);
  user-select: none;
}
.b-footer__right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem;
}
.b-footer__tagline {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-muted);
}
.b-footer__back {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.b-footer__back:hover { color: #fff; }

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .b-grid { grid-template-columns: repeat(2, 1fr); }
  .b-val-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .b-card--ed { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .b-hero__floats { display: none; }
  .b-hero {
    min-height: unset;
    justify-content: flex-start;
    padding-top: clamp(5rem, 18vw, 9rem);
    padding-bottom: clamp(3rem, 8vh, 5rem);
  }
}
@media (max-width: 600px) {
  .b-grid { grid-template-columns: 1fr; }
  .b-card--ed { grid-column: span 1; }
  .b-val-grid { grid-template-columns: 1fr; }
  .b-footer__inner { flex-direction: column; align-items: flex-start; }
  .b-footer__right { align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════
   CARTES SÉANCES (catalogue de réservation)
   ════════════════════════════════════════════════════════════ */
.sc-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--fg-soft);
  font-size: 0.95rem;
  padding: 4rem 0;
}

.seance-card {
  position: relative;
  display: flex;
  flex-direction: column;
  /* Fond plein (plus de verre translucide) */
  background: #044f52;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 26px;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease-out),
              border-color 0.5s ease,
              box-shadow 0.5s ease,
              background 0.5s ease;
}
.seance-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255, 255, 255, 0.24);
  background: #06585b;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}
/* lueur orange douce au survol */
.seance-card__glow {
  position: absolute;
  top: -40%; left: 50%;
  width: 130%; aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(216, 82, 40, 0.22), transparent 62%);
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  z-index: -1;
}
.seance-card:hover .seance-card__glow { opacity: 1; }

.sc-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.sc-cat {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange);
}
.sc-idx {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.28); font-variant-numeric: tabular-nums;
}

.sc-wave {
  width: 100%; height: 9px; margin: 0.85rem 0 0.4rem;
  overflow: hidden; color: var(--orange); opacity: 0.55;
}
.sc-wave svg { display: block; width: 200%; height: 100%; animation: sc-wave-scroll 5s linear infinite; }
@keyframes sc-wave-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* keyframe utilisée aussi par la modale d'options */
@keyframes svc-wave-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.sc-body { display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.sc-title {
  font-family: "Barlow", sans-serif;
  font-weight: 800; font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.05; letter-spacing: -0.01em; text-transform: uppercase;
  color: #fff;
}
.sc-mode {
  align-self: flex-start;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-soft);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px; padding: 0.28em 0.8em;
}
.sc-desc {
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
  line-height: 1.65; color: var(--fg-soft);
}

.sc-options {
  list-style: none; display: flex; flex-direction: column; gap: 0.4rem;
  margin-top: 0.4rem; padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sc-options--scroll { max-height: 168px; overflow-y: auto; scrollbar-width: none; }
.sc-options--scroll::-webkit-scrollbar { display: none; }
.sc-options li {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.8rem; font-size: 0.8rem;
}
.sc-opt__l { color: rgba(255, 255, 255, 0.78); }
.sc-opt__p { color: #fff; font-weight: 600; white-space: nowrap; }
.sc-opt__p s { color: var(--fg-muted); font-weight: 400; margin-right: 0.15rem; }
.sc-opt__p strong { color: var(--orange); font-weight: 800; }

.sc-footer {
  margin-top: 1.4rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-direction: column; gap: 1rem;
}
.sc-pricing { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.sc-duration {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-muted);
  max-width: 11ch; line-height: 1.3;
}
.sc-price-group { display: flex; flex-direction: column; align-items: flex-end; line-height: 1; }
.sc-price {
  font-family: "Barlow", sans-serif; font-weight: 800;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem); color: #fff;
  letter-spacing: -0.01em; font-variant-numeric: tabular-nums;
}
.sc-price--promo { color: var(--orange); }
.sc-price--old { font-size: 0.85rem; font-weight: 500; color: var(--fg-muted); text-decoration: line-through; }
.sc-countdown {
  margin-top: 0.3rem; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange);
}

/* ── Boutons carte séance ── */
.sc-btns { display: flex; gap: 0.6rem; }
.sc-btn {
  position: relative;
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0.7em 1em;
  border: none; border-radius: 100px;
  font-family: "Barlow", sans-serif;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: none; overflow: hidden; isolation: isolate;
  transition: transform 0.3s var(--ease-spr), box-shadow 0.3s ease;
}
.sc-btn:hover { transform: translateY(-2px); }
.sc-btn__label { position: relative; z-index: 2; transition: color 0.35s ease; }
.sc-btn__fill {
  position: absolute; inset: 0; z-index: 1;
  background: var(--cream); transform: scaleX(0); transform-origin: right center;
  transition: transform 0.5s var(--ease-out);
}
.sc-btn--book {
  background: var(--orange); color: #fff;
  box-shadow: 0 8px 22px rgba(216, 82, 40, 0.28);
}
.sc-btn--book:hover .sc-btn__fill { transform: scaleX(1); transform-origin: left center; }
.sc-btn--book:hover .sc-btn__label { color: var(--ink); }
.sc-btn--ghost {
  background: transparent; color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.28);
}
.sc-btn--ghost:hover { box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.6); }

/* Découvrir — révélation du numéro */
.phone-reveal-btn { position: relative; }
.phone-reveal-btn__label { position: relative; z-index: 2; }
.phone-reveal-btn__number {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
  opacity: 0; z-index: 2; white-space: nowrap;
}
.phone-reveal-btn.is-revealed .phone-reveal-btn__label { opacity: 0; }
.phone-reveal-btn.is-revealed .phone-reveal-btn__number { opacity: 1; }

@media (max-width: 1024px) { .seance-card { border-radius: 22px; } }
@media (max-width: 600px)  { .sc-btns { flex-direction: column; } }

/* ════════════════════════════════════════════════════════════
   MODALE D'OPTIONS (réutilisée depuis la landing)
   ════════════════════════════════════════════════════════════ */
.opt-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(.75rem, 3vw, 1.5rem);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), visibility .22s var(--ease);
}
.opt-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.opt-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(22, 19, 15, .62);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
}
.opt-modal__panel {
  position: relative; width: min(540px, 100%);
  max-height: 92dvh; max-height: 92vh;
  display: flex; flex-direction: column;
  background: var(--base); color: var(--ink);
  border-radius: 28px; overflow: hidden;
  isolation: isolate; /* force les coins arrondis sur tous les enfants */
  box-shadow: 0 4px 12px rgba(22,19,15,.08), 0 24px 64px rgba(22,19,15,.28), 0 64px 128px rgba(22,19,15,.12);
  will-change: transform, opacity;
}
.opt-modal__head {
  position: relative;
  background: #0d9ea3;
  padding: 1.8rem 1.9rem 1.6rem;
  flex-shrink: 0; overflow: hidden;
  border-radius: 28px 28px 0 0;
}
.opt-modal__head::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.5; mix-blend-mode: multiply;
  pointer-events: none;
}
.opt-modal__head-inner { position: relative; z-index: 1; }
.opt-modal__close {
  position: absolute; top: 1.1rem; right: 1.1rem; z-index: 20;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: rgba(22,19,15,.1); border: 1px solid rgba(22,19,15,.18);
  border-radius: 50%; color: rgba(245,240,225,.7); cursor: none;
  transition: background .2s var(--ease), color .2s var(--ease), transform .25s var(--ease);
}
.opt-modal__close { color: rgba(22,19,15,.65); }
.opt-modal__close:hover { background: rgba(216,82,40,.18); color: #16130f; border-color: rgba(216,82,40,.35); transform: rotate(90deg) scale(1.1); }
.opt-modal__cat { display: inline-block; font-size: .62rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: var(--orange); margin-bottom: .55rem; }
.opt-modal__title { font-family: "Barlow", sans-serif; font-weight: 900; font-size: clamp(1.6rem, 4.5vw, 2.2rem); line-height: 1; letter-spacing: -.01em; text-transform: uppercase; color: #16130f; margin-bottom: .5rem; max-width: calc(100% - 3rem); }
.opt-modal__titlewave { display: none; }
.opt-modal__hint { font-size: .82rem; color: rgba(22,19,15,.52); font-weight: 500; }
.opt-modal__scroll { flex: 1 1 auto; min-height: 0; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; touch-action: pan-y; padding: 1.25rem 1.6rem 1rem; scrollbar-width: none; }
.opt-modal__scroll::-webkit-scrollbar { display: none; }
.opt-modal__list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.opt-item { position: relative; }
.opt-item__label { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 0 .9rem; padding: .95rem 1rem .95rem .85rem; background: #fbf7ec; border: 1.5px solid rgba(27,42,74,.1); border-radius: 16px; cursor: none; transition: border-color .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease); }
.opt-item__label:hover { border-color: rgba(27,42,74,.28); background: #fffdf7; box-shadow: 0 2px 10px rgba(27,42,74,.06); }
.opt-item__input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.opt-item__num { font-size: .64rem; font-weight: 800; letter-spacing: .1em; color: rgba(27,42,74,.3); font-variant-numeric: tabular-nums; min-width: 1.6rem; line-height: 1; user-select: none; }
.opt-item__name { font-size: .94rem; font-weight: 500; line-height: 1.35; color: var(--ink); transition: font-weight .18s ease, color .18s ease; }
.opt-item__input:checked ~ .opt-item__name { font-weight: 700; color: #1b2a4a; }
.opt-item__price { flex-shrink: 0; font-variant-numeric: tabular-nums; text-align: right; line-height: 1.25; display: flex; flex-direction: column; align-items: flex-end; gap: .05rem; font-size: .92rem; font-weight: 600; color: var(--ink); }
.opt-item__price s { color: rgba(22,19,15,.38); font-size: .76rem; font-weight: 500; text-decoration-color: rgba(22,19,15,.25); }
.opt-item__price strong { color: var(--orange); font-weight: 800; font-size: 1rem; }
.opt-item__mark { flex-shrink: 0; width: 20px; height: 20px; border: 2px solid rgba(27,42,74,.22); border-radius: 50%; background: rgba(255,255,255,.6); position: relative; transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease); }
.opt-item__input[type="checkbox"] ~ .opt-item__mark { border-radius: 6px; }
.opt-item__input:checked ~ .opt-item__mark { border-color: #1b2a4a; background: #1b2a4a; box-shadow: 0 0 0 4px rgba(27,42,74,.12), 0 2px 8px rgba(27,42,74,.35); }
.opt-item__input[type="radio"]:checked ~ .opt-item__mark::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: #f5f0e1; }
.opt-item__input[type="checkbox"]:checked ~ .opt-item__mark::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 5.5px; border-left: 2px solid #f5f0e1; border-bottom: 2px solid #f5f0e1; transform: translate(-50%, -62%) rotate(-45deg); }
.opt-item__label:has(.opt-item__input:checked) { border-color: rgba(27,42,74,.38); background: rgba(27,42,74,.06); box-shadow: 0 3px 14px rgba(27,42,74,.09), inset 0 0 0 1px rgba(27,42,74,.06); }
.opt-item__label:has(.opt-item__input:checked) .opt-item__num { color: #1b2a4a; }
.opt-modal__foot { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.6rem clamp(1.1rem, 2.5vw, 1.5rem); background: linear-gradient(to bottom, rgba(245,240,225,0) 0%, var(--base) 18%); border-top: 1px solid rgba(27,42,74,.08); }
.opt-modal__total { display: flex; flex-direction: column; gap: .1rem; }
.opt-modal__total-lbl { font-size: .6rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(22,19,15,.4); }
.opt-modal__total-val { font-size: 1.8rem; font-weight: 900; font-variant-numeric: tabular-nums; line-height: 1; letter-spacing: -.03em; color: #1b2a4a; }
.opt-modal__confirm { position: relative; overflow: hidden; isolation: isolate; border: none; background: var(--ink); color: #f0ebe0; padding: .85rem 1.9rem; border-radius: 100px; font-family: "Barlow", sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: none; transition: color .35s ease, opacity .2s ease; }
.opt-modal__confirm-label { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .5rem; transition: color .35s ease; }
.opt-modal__confirm-fill { position: absolute; inset: 0; z-index: 1; background: var(--royal); transform: scaleX(0); transform-origin: right center; transition: transform .65s cubic-bezier(.16,1,.3,1); }
.opt-modal__confirm:hover .opt-modal__confirm-fill { transform: scaleX(1); transform-origin: left center; }
.opt-modal__confirm:hover .opt-modal__confirm-label { color: #e0e4f5; }
.opt-modal__confirm.is-disabled, .opt-modal__confirm:disabled { opacity: .26; pointer-events: none; }
@media (max-width: 580px) {
  .opt-modal { padding: .4rem .4rem 0; align-items: flex-end; }
  .opt-modal__panel { width: 100%; max-height: 94dvh; max-height: 94vh; border-radius: 24px 24px 16px 16px; }
  .opt-modal__title { font-size: 1.55rem; }
  .opt-modal__foot { padding-bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px)); }
}
