/* Go To Shop — thème clair / sombre, UI 2025 */

:root,
[data-theme="dark"] {
  --primary: #ff6825;
  --primary-glow: rgba(255, 104, 37, 0.45);
  --navy: #1f2540;
  --bg: #06080f;
  --bg-elevated: #0e111a;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text: #f2f4ff;
  --text-muted: rgba(242, 244, 255, 0.55);
  --border: rgba(255, 255, 255, 0.09);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  --hero-mesh: radial-gradient(ellipse 100% 80% at 0% -30%, rgba(255, 104, 37, 0.22), transparent 55%),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(31, 37, 64, 0.9), transparent 50%),
    linear-gradient(180deg, #05060a 0%, var(--bg) 45%);
  --dock-bg: rgba(10, 12, 20, 0.78);
  --card-img-bg: #141a28;
  --apple-icon-filter: invert(1);
}

[data-theme="light"] {
  --bg: #faf8f5;
  --bg-elevated: #ffffff;
  --surface: rgba(31, 37, 64, 0.04);
  --surface-strong: rgba(31, 37, 64, 0.07);
  --text: #1a1f2e;
  --text-muted: rgba(26, 31, 46, 0.55);
  --border: rgba(31, 37, 64, 0.1);
  --shadow: 0 24px 60px rgba(31, 37, 64, 0.1);
  --hero-mesh: radial-gradient(ellipse 90% 70% at 0% -20%, rgba(255, 104, 37, 0.18), transparent 50%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(31, 37, 64, 0.06), transparent 45%),
    linear-gradient(180deg, #fff 0%, #faf8f5 100%);
  --dock-bg: rgba(255, 255, 255, 0.82);
  --card-img-bg: #f0eef0;
  --apple-icon-filter: none;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.75rem;
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 6.75rem;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--hero-mesh);
  transition: background 0.35s ease, color 0.2s ease;
  --font-display: "Outfit", "DM Sans", system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ——— Barre flottante (remplace nav lourde) ——— */
.floating-dock {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  padding-left: max(clamp(0.75rem, 3vw, 1.5rem), env(safe-area-inset-left));
  padding-right: max(clamp(0.75rem, 3vw, 1.5rem), env(safe-area-inset-right));
  background: var(--dock-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.floating-dock::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 104, 37, 0.45), transparent);
  opacity: 0.65;
  pointer-events: none;
}

[data-theme="dark"] .floating-dock {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.floating-dock__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.floating-dock__logo:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 14px;
}

.floating-dock__logo img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.floating-dock__country {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.floating-dock__country label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.gts-select {
  appearance: none;
  -webkit-appearance: none;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff6825' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  max-width: 200px;
  min-height: 44px;
}

.gts-select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .gts-select {
    max-width: 160px;
    font-size: 0.78rem;
  }
}

.theme-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.theme-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.theme-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.theme-btn svg {
  width: 20px;
  height: 20px;
}

.floating-dock__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 104, 37, 0.45);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.store-pill:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.store-pill img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.store-pill--apple img {
  filter: var(--apple-icon-filter);
}

@media (max-width: 640px) {
  .floating-dock {
    row-gap: 0.55rem;
  }

  .floating-dock__stores {
    flex: 1 1 100%;
    justify-content: center;
    order: 4;
  }

  .floating-dock__country {
    flex: 1 1 auto;
    min-width: 0;
  }

  .gts-select {
    max-width: min(200px, 100%);
  }
}

@media (max-width: 400px) {
  .floating-dock__logo span {
    display: none;
  }

  .store-pill {
    font-size: 0.7rem;
    padding: 0.38rem 0.65rem;
    gap: 0.35rem;
  }

  .store-pill img {
    width: 16px;
    height: 16px;
  }

  .theme-btn {
    width: 40px;
    height: 40px;
  }
}

/* ——— Contenu ——— */
.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(5.5rem, 4.5rem + 4vw, 6.25rem) clamp(1rem, 4vw, 2rem) max(2.5rem, env(safe-area-inset-bottom));
}

/* ——— Accueil — hero & sections ——— */
.home-hero {
  position: relative;
  margin: 0 0 2.5rem;
  padding: 0.5rem 0 2rem;
}

.home-hero__aurora {
  position: absolute;
  inset: -2rem -8vw 40%;
  background: radial-gradient(ellipse 80% 60% at 15% 20%, rgba(255, 104, 37, 0.16), transparent 50%),
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(99, 102, 241, 0.1), transparent 45%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(31, 37, 64, 0.12), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.home-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 960px) {
  .home-hero__layout {
    grid-template-columns: 1.08fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.home-hero__visual {
  position: relative;
}

.home-hero__lottie.hero__lottie-wrap,
.hero__lottie-wrap {
  position: relative;
  min-height: 260px;
  border-radius: 28px;
  background: linear-gradient(155deg, var(--surface-strong), transparent 58%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.home-hero__lottie.hero__lottie-wrap::before,
.hero__lottie-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 35%, var(--primary-glow), transparent 55%);
  pointer-events: none;
  opacity: 0.75;
}

.home-hero__visual-glow {
  position: absolute;
  inset: auto -12% -18% -12%;
  height: 55%;
  background: radial-gradient(ellipse at center, var(--primary-glow), transparent 70%);
  opacity: 0.45;
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
}

#hero-lottie {
  width: 100%;
  height: min(320px, 52vw);
  max-height: 340px;
}

.home-hero__copy {
  max-width: 560px;
}

.home-hero__eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  font-weight: 800;
  margin: 0 0 0.65rem;
}

.home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.05rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 1.15rem;
  letter-spacing: -0.045em;
}

.home-hero__title-accent {
  background: linear-gradient(125deg, var(--primary), #ffb36a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* GtsSlotText / GtsTextRotator — piste translateY (effet « rouleau ») */
.home-hero__slot-block {
  margin: 0 0 1.15rem;
}

.home-hero__slot-label {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin: 0 0 0.45rem;
}

.home-hero__slot-prefix {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.home-hero__slot-colon {
  font-weight: 800;
  color: var(--primary);
}

.gts-slot {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 104, 37, 0.12), rgba(99, 102, 241, 0.08));
  border: 1px solid rgba(255, 104, 37, 0.28);
  padding: 0 1rem;
  box-shadow: 0 12px 40px rgba(255, 104, 37, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

[data-theme="light"] .gts-slot {
  box-shadow: 0 14px 44px rgba(31, 37, 64, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.gts-slot--masked {
  -webkit-mask-image: linear-gradient(transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.gts-slot__track {
  will-change: transform;
}

.gts-slot__line {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.22rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.gts-slot--hero {
  min-height: 46px;
}

/* Bande chiffres — sous le hero */
.home-stats {
  margin: -0.5rem 0 2rem;
}

.home-stats__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.home-stat-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .home-stat-pill {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.home-stat-pill__n {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(125deg, var(--primary), #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-stat-pill__t {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Accueil : effet machine à écrire */
.home-hero__typewriter-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 1.15rem;
  min-height: 1.75rem;
}

.home-hero__tw-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.home-hero__typewriter.gts-typewriter {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary);
}

.home-hero__typewriter.gts-typewriter::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 3px;
  background: var(--primary);
  vertical-align: -0.12em;
  animation: gtsCursorBlink 0.95s steps(1) infinite;
}

.home-hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1.35rem;
  max-width: 46ch;
}

.home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.home-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid var(--border);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--primary-glow);
}

.home-cta-btn--play {
  background: linear-gradient(135deg, #1f2937, #0f172a);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.home-cta-btn--apple {
  background: var(--surface-strong);
  color: var(--text);
}

.home-cta-btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(255, 104, 37, 0.45);
}

.home-hero__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.85rem 0 0;
  max-width: 44ch;
  line-height: 1.45;
}

.home-hero__mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.home-mini-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, var(--surface), rgba(255, 104, 37, 0.04));
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, border-color 0.2s ease;
}

[data-theme="dark"] .home-mini-card {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.home-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 104, 37, 0.35);
}

.home-mini-card .mini-lottie {
  height: 72px;
  margin: 0 auto 0.35rem;
}

.home-mini-card__t {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
}

.home-mini-card__d {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
}

/* Bande confiance */
.home-trust {
  margin: 0 0 2.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .home-trust {
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
}

.home-trust__inner {
  text-align: center;
}

.home-trust__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.home-trust__rotor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.25rem;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.home-trust__rotor--tick {
  opacity: 0.35;
  transform: translateY(4px);
}

.home-trust__icon {
  font-size: 1.15rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.home-trust__label {
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

/* Features */
.home-features {
  margin: 0 0 2.5rem;
}

.section-head--home {
  margin-bottom: 1.5rem;
}

.section-head__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.section-head--home h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.home-features__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .home-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .home-features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home-feat-card {
  padding: 1.35rem 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 104, 37, 0.3);
  box-shadow: 0 16px 44px var(--primary-glow);
}

.home-feat-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
  line-height: 1;
}

.home-feat-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.home-feat-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.home-feat-card code {
  font-size: 0.78rem;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  background: var(--surface-strong);
}

/* Étapes */
.home-steps {
  margin: 0 0 2.5rem;
}

.home-steps__inner {
  border-radius: 24px;
  padding: 2rem 1.35rem 2.25rem;
  background: linear-gradient(145deg, #1a1f35 0%, #12151f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .home-steps__inner {
  background: linear-gradient(145deg, #1f2540 0%, #0f1219 100%);
}

.section-head--on-dark h2 {
  color: #fff;
}

.section-head--on-dark .section-head__tag {
  color: rgba(255, 180, 120, 0.95);
}

.section-head--on-dark + p,
.section-head--on-dark p {
  color: rgba(255, 255, 255, 0.55);
}

.home-steps__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 900px) {
  .home-steps__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.home-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-step__num {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #e85520);
  color: #fff;
}

.home-step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
}

.home-step p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* CTA abonnement */
.home-cta-banner {
  margin: 0 0 2.5rem;
  border-radius: 22px;
  padding: 0.15rem;
  background: linear-gradient(130deg, rgba(255, 104, 37, 0.55), rgba(99, 102, 241, 0.45));
  box-shadow: 0 12px 40px rgba(255, 104, 37, 0.2);
}

.home-cta-banner__content {
  padding: 1.65rem 1.5rem;
  border-radius: 20px;
  background: var(--bg-elevated);
  text-align: center;
}

.home-cta-banner__content h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-cta-banner__content p {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.home-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  background: linear-gradient(135deg, var(--primary), #ff9a4d);
  color: #fff;
  border: none;
  box-shadow: 0 10px 28px var(--primary-glow);
}

.home-cta-banner__btn:hover {
  filter: brightness(1.05);
}

.home-annonces {
  padding-top: 0.5rem;
}

@keyframes gtsCursorBlink {
  50% {
    opacity: 0;
  }
}

/* ——— Section annonces ——— */
.section-head {
  margin: 2.75rem 0 1.25rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.15rem;
  }
}

.grid-empty-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.22s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .product-card {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 104, 37, 0.4);
  box-shadow: 0 16px 48px var(--primary-glow);
}

.product-card__img {
  aspect-ratio: 4 / 3;
  background: var(--card-img-bg);
  position: relative;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 2.5rem;
  opacity: 0.35;
}

.product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--primary), #e85520);
  color: #fff;
}

.product-card__body {
  padding: 0.85rem 0.95rem 1rem;
}

.product-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
}

.product-card__price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
}

.product-grid--loading .product-card--skel {
  animation: skelPulse 1.1s ease-in-out infinite;
}

.product-card--skel .product-card__img {
  min-height: 120px;
}

.skel-line {
  height: 12px;
  border-radius: 6px;
  background: var(--surface-strong);
}

.skel-line--lg {
  width: 100%;
  margin-bottom: 8px;
}

.skel-line--sm {
  width: 55%;
}

@keyframes skelPulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.85;
  }
}

/* ——— Vues deeplink ——— */
.hero-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin: 0 auto;
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--card-img-bg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 3rem;
  opacity: 0.35;
}

.hero-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.hero-card .kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.hero-card .title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}

.hero-card .sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.45;
}

.hero-card .deeplink-app-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 520px) {
  .hero-card .deeplink-app-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.hero-card--deeplink {
  max-width: 560px;
}

.deeplink-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.deeplink-hint {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.deeplink-back {
  margin: 0 0 1rem;
  font-size: 0.85rem;
}

.deeplink-back a {
  color: var(--primary);
  font-weight: 700;
}

.btn-secondary--outline {
  background: transparent !important;
  border: 1px solid var(--border) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff8f5a);
  color: #fff;
  box-shadow: 0 12px 32px var(--primary-glow);
}

.btn-secondary {
  background: var(--surface-strong);
  color: var(--text);
  border: 1px solid var(--border);
}

.skel {
  animation: skelPulse 1.2s ease-in-out infinite;
}

.hidden {
  display: none !important;
}

/* ——— Footer minimal ——— */
.site-foot-min {
  text-align: center;
  padding: 2rem 1rem 2.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.site-foot-min a {
  color: var(--primary);
  font-weight: 600;
}

/* ——— Navigation principale (sous la barre flottante) ——— */
.site-nav-main {
  position: sticky;
  top: 0.35rem;
  z-index: 150;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.4rem;
  padding: 0.48rem 0.65rem 0.48rem 0.75rem;
  margin: 0 auto 0.75rem;
  max-width: min(1180px, calc(100% - 1.5rem));
  padding-top: calc(4.25rem + 0.35rem);
  margin-top: 0;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 85%, var(--primary) 15%);
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(255, 104, 37, 0.06);
}

[data-theme="dark"] .site-nav-main {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-nav__link {
  font-family: var(--font-display);
  font-size: 0.81rem;
  font-weight: 700;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.site-nav__link:hover {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
  transform: translateY(-1px);
}

.site-nav__link--active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(255, 104, 37, 0.18), rgba(255, 104, 37, 0.06));
  border-color: rgba(255, 104, 37, 0.45);
  box-shadow: 0 4px 18px rgba(255, 104, 37, 0.15);
}

.site-nav__link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.shell--nav {
  padding-top: 0.5rem;
}

/* Mobile / tablette : la nav horizontale est masquée — sans marge, le <main> passe sous la barre
   flottante (dock + rangée des stores) et masque le haut du hero / Lottie. */
@media (max-width: 960px) {
  .shell--nav {
    padding-top: max(7.75rem, calc(5.25rem + env(safe-area-inset-top)));
  }
}

/* Tablette / écran moyen : toute la nav visible en défilant horizontalement */
@media (min-width: 961px) and (max-width: 1280px) {
  .site-nav-main {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 104, 37, 0.45) transparent;
    max-width: calc(100% - 1rem);
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    gap: 0.3rem;
  }

  .site-nav-main::-webkit-scrollbar {
    height: 5px;
  }

  .site-nav-main::-webkit-scrollbar-thumb {
    background: rgba(255, 104, 37, 0.35);
    border-radius: 999px;
  }
}

.page-section {
  padding-bottom: 2rem;
}

.page-section--legal .section-head p {
  max-width: 52ch;
}

/* ——— Fiche produit ——— */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}

.breadcrumb span {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.product-detail {
  max-width: 1080px;
  margin: 0 auto;
}

.product-detail__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

#product-body {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  #product-body {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: start;
  }
}

.product-gallery__main {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-img-bg);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.product-gallery__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  width: 72px;
  height: 54px;
  cursor: pointer;
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-gallery__thumb.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(255, 104, 37, 0.25);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__content .deeplink-app-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

@media (min-width: 520px) {
  .product-detail__content .deeplink-app-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.product-detail__price {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 0.5rem;
}

.product-detail__loc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.product-specs {
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.product-specs > div {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.5rem 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
}

.product-specs > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-specs dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.product-specs dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.product-detail__content h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 1.25rem 0 0.5rem;
  letter-spacing: -0.02em;
}

.product-detail__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  white-space: pre-wrap;
  margin: 0 0 1.25rem;
}

.product-video-wrap {
  margin: 1rem 0 1.5rem;
}

.product-video-wrap video {
  width: 100%;
  max-height: 420px;
  border-radius: 16px;
  background: #000;
  border: 1px solid var(--border);
}

.seller-card-inline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 1rem;
}

.seller-av {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 104, 37, 0.35);
}

.seller-link {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

.seller-link:hover {
  text-decoration: underline;
}

/* ——— Grille boutiques ——— */
.seller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.seller-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .seller-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.seller-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 104, 37, 0.4);
  box-shadow: 0 16px 44px var(--primary-glow);
}

.seller-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--card-img-bg);
  border: 1px solid var(--border);
}

.seller-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seller-card__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1.75rem;
  opacity: 0.45;
}

.seller-card__body {
  min-width: 0;
}

.seller-card__body strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 0.15rem;
}

.seller-card__body span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ——— Page boutique ——— */
.boutique-page .section-head {
  margin-top: 0;
}

.boutique-err {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.08);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ——— Abonnements ——— */
.sub-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .sub-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.sub-card {
  padding: 1.35rem 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .sub-card {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.sub-card h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sub-card--pro {
  border-color: rgba(255, 104, 37, 0.45);
  background: linear-gradient(165deg, rgba(255, 104, 37, 0.1), var(--surface) 55%);
}

.sub-card--premium {
  border-color: rgba(99, 102, 241, 0.45);
  background: linear-gradient(165deg, rgba(99, 102, 241, 0.12), var(--surface) 55%);
}

.sub-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
}

.sub-list li {
  margin-bottom: 0.4rem;
}

.sub-footnote {
  margin-top: 1.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 60ch;
}

.sub-footnote a {
  color: var(--primary);
  font-weight: 600;
}

/* ——— Aide ——— */
.help-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
}

.help-list li {
  padding: 1rem 1.15rem;
  margin-bottom: 0.65rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.92rem;
  line-height: 1.55;
}

.help-list code {
  font-size: 0.82rem;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

.help-list a {
  color: var(--primary);
  font-weight: 600;
}

/* ——— Accessibilité ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Menu latéral mobile ——— */
.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mobile-nav-toggle:hover {
  box-shadow: 0 6px 20px var(--primary-glow);
  border-color: rgba(255, 104, 37, 0.35);
}

.mobile-nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.mobile-drawer {
  pointer-events: none;
}

.mobile-drawer.mobile-drawer--open {
  pointer-events: auto;
}

.mobile-drawer__backdrop {
  position: fixed;
  inset: 0;
  z-index: 280;
  background: rgba(5, 7, 12, 0.58);
  opacity: 0;
  transition: opacity 0.32s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-drawer--open .mobile-drawer__backdrop {
  opacity: 1;
}

.mobile-drawer__panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(340px, calc(100vw - max(0.75rem, env(safe-area-inset-left), env(safe-area-inset-right))));
  z-index: 290;
  background: linear-gradient(168deg, var(--bg-elevated) 0%, color-mix(in srgb, var(--bg-elevated) 94%, var(--primary)) 55%, var(--bg-elevated) 100%);
  border-right: 1px solid color-mix(in srgb, var(--border) 70%, var(--primary) 30%);
  border-radius: 0 22px 22px 0;
  box-shadow: 24px 0 64px rgba(0, 0, 0, 0.48), inset -1px 0 0 rgba(255, 255, 255, 0.05);
  transform: translateX(-105%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer__panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), #7c3aed 45%, transparent 100%);
  opacity: 0.55;
  pointer-events: none;
}

.mobile-drawer--open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: max(1.1rem, env(safe-area-inset-top)) 1.1rem 1.1rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.035em;
  background: linear-gradient(128deg, rgba(255, 104, 37, 0.16), transparent 62%);
}

.mobile-drawer__head img {
  border-radius: 12px;
  box-shadow: 0 6px 22px var(--primary-glow);
}

.mobile-drawer__close {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-strong);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.mobile-drawer__close:hover {
  background: var(--surface);
  box-shadow: 0 4px 16px rgba(255, 104, 37, 0.2);
  transform: scale(1.03);
}

.mobile-drawer__close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.mobile-drawer__nav a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 0.9rem;
  gap: 0.4rem;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer__nav a {
  display: block;
  position: relative;
  padding: 0.88rem 1rem 0.88rem 1rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--text-muted);
  border-left: 3px solid transparent;
  box-shadow: inset 0 0 0 1px transparent;
  transition: background 0.22s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.22s ease;
}

.mobile-drawer__nav a:hover,
.mobile-drawer__nav a.site-nav__link--active {
  background: color-mix(in srgb, var(--surface-strong) 95%, var(--primary) 5%);
  color: var(--text);
  border-left-color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(255, 104, 37, 0.12);
  transform: translateX(3px);
}

.mobile-drawer__hint {
  margin-top: auto;
  padding: 1.2rem 1.2rem max(1.5rem, env(safe-area-inset-bottom));
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.55;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
}

[data-theme="light"] .mobile-drawer__hint {
  background: rgba(255, 255, 255, 0.35);
}

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .mobile-nav-toggle {
    display: inline-flex;
  }

  .site-nav-main {
    display: none;
  }

  .floating-dock {
    justify-content: flex-start;
  }
}

@media (min-width: 961px) {
  .site-nav__link--compact {
    font-size: 0.78rem;
    padding: 0.4rem 0.65rem;
  }
}

/* ——— Révélations au scroll ———
   Le contenu reste TOUJOURS lisible (opacity 1) : l’observer ne fait qu’ajouter une animation
   si supporté — évite pages « vides » si JS échoue ou IO ne se déclenche pas (aperçu, file://). */
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0.98;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Badges fiches ——— */
.product-detail__badges,
.boutique-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.detail-badge--boost {
  background: linear-gradient(135deg, var(--primary), #e85520);
  color: #fff;
}

.detail-badge--verified {
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.detail-badge--pro {
  background: rgba(255, 104, 37, 0.15);
  color: var(--primary);
  border: 1px solid rgba(255, 104, 37, 0.35);
}

.detail-badge--premium {
  background: rgba(99, 102, 241, 0.18);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.4);
}

.detail-badge--cert {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.35);
}

/* ——— Boutique stats ——— */
.boutique-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.boutique-stat {
  min-width: 4.5rem;
  padding: 0.5rem 0.65rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}

.boutique-stat__val {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.boutique-stat__lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.boutique-bio {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 1rem;
  white-space: pre-wrap;
}

/* ——— Caractéristiques & similaires ——— */
.product-attributes {
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.product-attributes h3 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
}

.product-attributes__list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.product-similar {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.product-similar__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}

.product-similar__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.products-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.15rem;
}

.products-search {
  flex: 1;
  min-width: 200px;
  max-width: 420px;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.products-toolbar__count {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.legal-prose {
  max-width: 720px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
}

.legal-prose p {
  margin: 0 0 1rem;
}

/* ——— Gabarit pages intérieures (catalogue, légal, fiches) ——— */
.page-shell {
  position: relative;
  padding-bottom: 2rem;
}

.page-shell__aurora {
  position: absolute;
  inset: -1rem -6vw 50%;
  background: radial-gradient(ellipse 70% 55% at 12% 8%, rgba(255, 104, 37, 0.14), transparent 52%),
    radial-gradient(ellipse 55% 45% at 88% 0%, rgba(99, 102, 241, 0.09), transparent 48%);
  pointer-events: none;
  z-index: 0;
}

.page-shell__aurora--soft {
  opacity: 0.85;
  inset: -0.5rem -4vw 40%;
}

.page-shell__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(0.25rem, 2vw, 0.5rem);
  padding-right: clamp(0.25rem, 2vw, 0.5rem);
}

@media (max-width: 480px) {
  .page-shell__inner {
    padding-left: max(0.65rem, env(safe-area-inset-left));
    padding-right: max(0.65rem, env(safe-area-inset-right));
  }
}

.page-shell__inner--narrow {
  max-width: 760px;
}

.page-hero {
  margin-bottom: 1.75rem;
}

.page-hero__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.8vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 0 0.5rem;
}

.page-hero__lead {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 0 0.25rem;
}

.page-hero__accent-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1rem;
}

.page-hero__accent-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.gts-slot--page-accent {
  max-width: 300px;
  min-height: 36px;
  padding: 0 0.75rem;
  border-radius: 12px;
}

.gts-slot--page-accent .gts-slot__line {
  font-size: 0.92rem;
  font-weight: 700;
}

.glass-panel {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, var(--surface-strong), rgba(255, 104, 37, 0.03));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(12px);
}

[data-theme="dark"] .glass-panel {
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
}

.glass-panel--gallery {
  padding: 0.85rem;
}

.glass-panel--gallery .product-gallery__main {
  border-radius: 16px;
  box-shadow: none;
}

.glass-panel--detail {
  padding: 1.25rem 1.35rem 1.5rem;
}

.glass-panel--legal {
  padding: 1.35rem 1.4rem;
  margin-top: 0.5rem;
}

.glass-panel--boutique {
  border-radius: 22px;
  overflow: hidden;
}

.products-toolbar.glass-panel {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 1.35rem;
  align-items: center;
}

.page-breadcrumb {
  margin-bottom: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.82rem;
  max-width: 100%;
}

@media (max-width: 560px) {
  .page-breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    border-radius: 14px;
    padding: 0.55rem 0.85rem;
  }

  .page-breadcrumb a,
  .page-breadcrumb span {
    flex-shrink: 0;
  }
}

.product-detail.page-shell {
  max-width: none;
  margin: 0;
}

.product-detail__shell {
  padding-top: 0.5rem;
}

.page-section-head {
  margin: 2.25rem 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 85%, var(--primary) 15%);
}

.page-section-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
}

.page-section-head__sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.seller-grid--page {
  margin-top: 0.25rem;
}

.help-list--page {
  margin-top: 0.5rem;
}

.help-list--page li {
  margin-bottom: 0.75rem;
}

.help-list--page a {
  color: var(--primary);
  font-weight: 600;
}

.page-cta-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.boutique-page__shell {
  padding-top: 0.35rem;
}

.hero-card.glass-panel--boutique {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero-card.glass-panel--boutique {
  background: rgba(255, 255, 255, 0.92);
}

/* ——— Pages légales & documentation ——— */
.page-shell__inner--doc {
  max-width: 52rem;
}

.page-shell__inner--subs {
  max-width: 72rem;
}

.page-hero--glow .page-hero__title {
  background: linear-gradient(105deg, var(--text) 0%, var(--primary) 45%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
  .page-hero--glow {
    animation: gts-hero-fade 0.9s ease-out both;
  }
}

@keyframes gts-hero-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.doc-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(255, 104, 37, 0.2), transparent),
    radial-gradient(ellipse 60% 40% at 85% 30%, rgba(139, 92, 246, 0.15), transparent),
    radial-gradient(ellipse 50% 60% at 40% 90%, rgba(45, 206, 137, 0.08), transparent);
}

.doc-section {
  margin-bottom: 1.35rem;
  padding: 1.45rem 1.5rem;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--border) 92%, var(--primary) 8%);
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.06), var(--surface));
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

@media (max-width: 480px) {
  .doc-section {
    padding: 1.15rem 1.1rem;
    border-radius: 16px;
    margin-bottom: 1rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .doc-section:hover {
    border-color: rgba(255, 104, 37, 0.22);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
  }
}

[data-theme="dark"] .doc-section {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.doc-section h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.doc-section p,
.doc-section li {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.doc-section p {
  margin: 0 0 0.75rem;
}

.doc-section p:last-child {
  margin-bottom: 0;
}

.doc-section ul {
  margin: 0.35rem 0 0;
  padding-left: 1.2rem;
}

.doc-section a {
  color: var(--primary);
  font-weight: 600;
}

.doc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.sub-card--free {
  border-style: dashed;
  opacity: 0.95;
}

.sub-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.sub-card--pro .sub-card__badge {
  background: rgba(255, 104, 37, 0.15);
  border-color: rgba(255, 104, 37, 0.35);
  color: var(--primary);
}

.sub-card--premium .sub-card__badge {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.35);
  color: #a5b4fc;
}

.disclosure-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (min-width: 800px) {
  .disclosure-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.disclosure-card {
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.disclosure-card h4 {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text);
}

.help-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.help-tile {
  padding: 1.25rem 1.3rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .help-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
  }
}

.help-tile__icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.help-tile h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.help-tile p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.help-faq {
  margin-top: 2rem;
}

.help-faq details {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 0.55rem;
  overflow: hidden;
}

.help-faq summary {
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  list-style: none;
}

.help-faq summary::-webkit-details-marker {
  display: none;
}

.help-faq details[open] summary {
  border-bottom: 1px solid var(--border);
}

.help-faq details div {
  padding: 0.85rem 1.1rem 1.1rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.site-foot-min.site-foot--rich {
  margin-top: 3.25rem;
  padding: 2.75rem 1.25rem max(3rem, env(safe-area-inset-bottom));
  border-top: none;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 104, 37, 0.06) 40%, color-mix(in srgb, var(--bg) 96%, var(--navy)) 100%);
  position: relative;
}

.site-foot-min.site-foot--rich::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.site-foot--rich {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  text-align: center;
}

.site-foot__legal {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.25rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  font-family: var(--font-display);
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 88%, var(--primary) 12%);
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .site-foot__legal {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.site-foot__legal a {
  color: var(--text-muted);
  font-weight: 700;
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-foot__legal a:hover {
  color: var(--primary);
  background: rgba(255, 104, 37, 0.1);
}

@media (max-width: 520px) {
  .site-foot__legal {
    flex-direction: column;
    border-radius: 18px;
    gap: 0.35rem;
    padding: 0.75rem 1rem;
    max-width: 100%;
  }

  .site-foot__legal a {
    width: 100%;
    text-align: center;
    padding: 0.45rem 0.75rem;
  }
}

.site-foot__copy {
  margin: 0;
  max-width: 40rem;
  margin-inline: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  line-height: 1.65;
}

.site-foot__copy a {
  color: var(--primary);
  font-weight: 700;
}

/* ─── Pages deeplink /l/… /b/… (produit.html, boutique.html) ─── */
.shell--deeplink {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.product-detail--deeplink .page-shell__aurora--soft,
.boutique-page--deeplink .page-shell__aurora--soft {
  opacity: 0.6;
}

body.gts-deeplink-loading #product-title,
body.gts-deeplink-loading #boutique-title {
  animation: gts-deeplink-title 1.1s ease-in-out infinite;
}

@keyframes gts-deeplink-title {
  0%,
  100% {
    opacity: 0.42;
  }
  50% {
    opacity: 1;
  }
}

.boutique-page--deeplink .hero-card--deeplink.glass-panel--boutique {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  border: 1px solid color-mix(in srgb, var(--border) 80%, var(--primary) 20%);
}

#boutique-err:not(.hidden) {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.45;
  border: 1px solid color-mix(in srgb, #e74c3c 45%, var(--border));
  background: color-mix(in srgb, #e74c3c 12%, var(--surface));
  color: var(--text);
}

/* En-tête deeplink aligné sur index (page-hero + home-cta-btn) */
.deeplink-page-header {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.deeplink-page-header .page-breadcrumb {
  margin-bottom: 1rem;
}

.deeplink-page-header .page-hero__tag {
  margin-bottom: 0.5rem;
}

.deeplink-page-header .product-detail__badges {
  margin-bottom: 0.65rem;
}

.deeplink-page-lead {
  margin: 0.65rem 0 0;
  max-width: 52ch;
}

.product-detail--deeplink .product-detail__title.page-hero__title {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3.8vw, 2.25rem);
}

.deeplink-seller-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  margin: 1.25rem 0 1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, var(--surface), rgba(255, 104, 37, 0.05));
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .deeplink-seller-card {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.deeplink-app-cta.home-hero__cta {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.deeplink-app-cta .deeplink-cta-app {
  background: linear-gradient(135deg, var(--primary), #ff8f5a);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 32px var(--primary-glow);
}

.deeplink-app-cta .deeplink-cta-app:hover {
  box-shadow: 0 14px 40px rgba(255, 104, 37, 0.45);
}

.glass-panel--detail .deeplink-hint.home-hero__note {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  max-width: 48ch;
}

.hero-card--deeplink .title.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 0 0 0.45rem;
}

.hero-card--deeplink .hero-body .kicker {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.boutique-page--deeplink .page-section-head {
  margin-top: 2.5rem;
}
