/* ==========================================================================
   Vapelite France — Vieux-Port, Marseille
   Vitrine produits animée. Bannière bleu Klein (couleur de la boutique),
   reste du site en blanc / gris clair / noir pour laisser la place aux produits.
   Logo issu de la charte graphique ; typographie épurée façon Apple.
   ========================================================================== */

/* Police auto-hébergée (SIL Open Font License) : Inter, proche de la police d'Apple
   (SF Pro est utilisée directement sur iPhone / Mac). Titres en graisse fine, texte en graisse normale. */
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-latin-wght-normal.woff2") format("woff2-variations"),
       url("assets/fonts/inter-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Couleurs */
  --klein: #002fa7;         /* bleu Klein — bannière et actions */
  --klein-deep: #001f73;
  --brand: #2c5794;         /* bleu de référence de la charte (logo) */
  --ink: #0e1116;           /* texte principal */
  --ink-soft: #545b69;      /* texte secondaire */
  --line: #e6e8ec;
  --surface: #f4f5f7;
  --white: #ffffff;
  --night: #0b0d12;         /* sections sombres */

  --font: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", "Segoe UI", Roboto, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", "Segoe UI", Roboto, sans-serif;

  --gutter: clamp(16px, 4vw, 56px);
  --max: 1320px;
  --header-h: 76px;
  --radius: 24px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

h1, h2, h3, p, ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }

::selection { background: var(--klein); color: var(--white); }
:focus-visible { outline: 3px solid #5ac8fa; outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus { left: 12px; }

/* Sprite SVG : masqué sans display:none pour que les dégradés restent utilisables */
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.device {
  display: block;
  width: auto;
  overflow: visible;
}

/* --------------------------------------------------------------------------
   Boutons, liens, titres
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--klein { background: var(--klein); color: var(--white); }
.btn--klein:hover { background: var(--klein-deep); }
.btn--white { background: var(--white); color: var(--klein); }
.btn--white:hover { background: #e8eeff; }
.btn--ghost-white { border-color: rgba(255, 255, 255, 0.55); color: var(--white); }
.btn--ghost-white:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.1); }
.btn--outline { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn--waze { background: #33ccff; color: #0e1116; }
.btn--waze:hover { background: #1fb8ec; }
.btn--outline:hover { border-color: var(--ink); }

.link {
  font-weight: 600;
  text-decoration: underline 2px transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}
.link:hover { text-decoration-color: currentColor; color: var(--klein); }

.eyebrow {
  margin-bottom: 10px;
  color: var(--klein);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow--light { color: #8fb0ff; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) var(--gutter);
}
.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 48px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.6vw, 72px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.section__title--light { color: var(--white); }
.section__lead {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 19px);
}
.muted { color: var(--ink-soft); }
.nowrap { white-space: nowrap; }

/* --------------------------------------------------------------------------
   En-tête
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(14, 17, 22, 0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  height: var(--header-h);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
/* Logo en haut à gauche, largeur ≥ 20 mm (charte) */
.header__logo { flex: none; width: 84px; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__list {
  display: flex;
  gap: 28px;
}
.nav__list a {
  position: relative;
  padding: 6px 0;
  font-weight: 600;
  text-decoration: none;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--klein);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__list a:hover::after { transform: scaleX(1); }
.nav__cta { min-height: 42px; padding: 8px 20px; }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--klein);
  color: var(--white);
  cursor: pointer;
  place-content: center;
  gap: 4px;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Bannière bleu Klein (slider)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(calc(100svh - var(--header-h)), 880px);
  background:
    radial-gradient(90% 70% at 72% 45%, #1446d6 0%, rgba(20, 70, 214, 0) 60%),
    var(--klein);
  color: var(--white);
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22'%3E%3Cpath d='M9 7l-2 7' stroke='%23ffffff' stroke-opacity='.09' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 22px 22px;
}
.hero__rings {
  position: absolute;
  top: 50%;
  left: 72%;
  width: 0;
  height: 0;
}
.hero__rings span {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ring 9s ease-in-out infinite;
}
.hero__rings span:nth-child(1) { width: 360px; height: 360px; }
.hero__rings span:nth-child(2) { width: 560px; height: 560px; animation-delay: -3s; }
.hero__rings span:nth-child(3) { width: 780px; height: 780px; animation-delay: -6s; }
@keyframes ring {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.5; }
}
.hero__word {
  position: absolute;
  left: -0.04em;
  bottom: -0.2em;
  font-size: clamp(90px, 19vw, 300px);
  font-family: var(--font-display);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.13);
}

.slides {
  position: relative;
  max-width: var(--max);
  min-height: inherit;
  margin: 0 auto;
}
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 48px var(--gutter) 88px;
  visibility: hidden;
}
.slide.is-active { position: relative; visibility: visible; min-height: inherit; }

.slide__text > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.8s var(--ease);
}
.slide.is-active .slide__text > * { opacity: 1; transform: none; }
.slide.is-active .slide__text > :nth-child(2) { transition-delay: 0.08s; }
.slide.is-active .slide__text > :nth-child(3) { transition-delay: 0.16s; }
.slide.is-active .slide__text > :nth-child(4) { transition-delay: 0.24s; }

.kicker {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.slide__title {
  font-size: clamp(42px, 6.4vw, 88px);
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.045em;
}
.slide__lead {
  max-width: 34ch;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.5vw, 19px);
}
.slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Étapes « Bien choisir » : un message à la fois, les barres indiquent la progression */
.hero-steps { max-width: 460px; margin-top: 28px; }
.hero-steps__bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.hero-steps__bars span {
  position: relative;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
.hero-steps__bars span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-steps__bars span.is-done::after { transform: scaleX(1); }
.hero-steps__bars span.is-active::after { animation: step-fill var(--step-ms, 3000ms) linear forwards; }
@keyframes step-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-steps__list { display: grid; margin-top: 16px; }
.hero-steps__list li {
  grid-area: 1 / 1;
  color: var(--white);
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
/* Animation : le message entre par le bas, sort par le haut, puis laisse place au suivant */
.js .hero-steps__list li {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.6s var(--ease);
}
.js .hero-steps__list li.is-done { transform: translateY(-16px); }
.js .hero-steps__list li.is-active { opacity: 1; transform: none; transition-delay: 0.25s; }
.hero-steps.is-static .hero-steps__list li { grid-area: auto; opacity: 1; transform: none; margin-top: 10px; }

/* Étiquette posée sur la photo de la Pixo Max, avec un cœur qui bat */
.hero-tag {
  position: absolute;
  right: var(--gutter);
  bottom: 96px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 20, 80, 0.25);
  color: var(--ink);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.4s, transform 0.9s var(--ease) 0.4s, background 0.3s ease;
}
.slide.is-active .hero-tag { opacity: 1; transform: none; }
.hero-tag:hover { background: var(--white); }
.hero-tag svg { flex: none; color: #d6336c; }
.hero-tag strong { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }

/* Diapositive photo (plein cadre derrière le texte) */
.slide__media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
  background: #0b0709;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.is-active .slide__media { opacity: 1; }
.slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 5, 8, 0.85) 0%, rgba(8, 5, 8, 0.55) 38%, rgba(8, 5, 8, 0) 68%),
    linear-gradient(0deg, rgba(8, 5, 8, 0.55) 0%, rgba(8, 5, 8, 0) 32%);
}
.slide--photo .slide__text { position: relative; z-index: 1; }
.slide--photo { grid-template-columns: minmax(0, 620px); }

/* Diapositive photo : Pixo Max White Glow, photo calée à droite sur un fond assorti */
.slide__media--glow {
  background: linear-gradient(135deg, #9eb2ea 0%, #b7b9ec 45%, #8ccdf3 100%);
}
.slide__media--glow picture {
  position: absolute;
  inset: 0;
}
.slide__media--glow img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
  transform: scale(1.02);
  transform-origin: 60% 50%;
  transition: transform 7s ease-out;
}
.slide.is-active .slide__media--glow img { transform: scale(1.1); }
.slide__media--glow::after {
  background: linear-gradient(90deg, rgba(0, 31, 125, 0.82) 0%, rgba(0, 31, 125, 0.55) 34%, rgba(0, 31, 125, 0) 60%);
}
.slide__title em { font-style: normal; font-weight: 200; }
.slide--photo .slide__title { font-size: clamp(40px, 4.4vw, 64px); }

/* --------------------------------------------------------------------------
   Ruban défilant et atouts
   -------------------------------------------------------------------------- */

.marquee {
  overflow: hidden;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 0;
  padding: 0;
  animation: marquee 55s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
/* Nom de marque (en attendant le logo) ou logo en image */
.partner {
  flex: none;
  display: flex;
  align-items: center;
  height: 36px;
  margin-right: clamp(40px, 5vw, 72px);
  color: #9097a3;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.partner:hover { color: var(--ink); }
.partner img {
  height: 32px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.partner:hover img { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

.perks {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px var(--gutter);
}
.perks__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-soft);
}
.perk svg {
  flex: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 14px;
  background: #eef2ff;
  color: var(--klein);
}
.perk strong { display: block; color: var(--ink); font-size: 15px; }

/* Cœur qui bat (bannière et carte Pixo Max) : double battement puis pause */
.heartbeat { transform-origin: 50% 55%; animation: heartbeat 1.4s ease-in-out infinite; }
@keyframes heartbeat {
  0%, 60%, 100% { transform: scale(1); }
  12% { transform: scale(1.28); }
  24% { transform: scale(1); }
  36% { transform: scale(1.2); }
}

/* --------------------------------------------------------------------------
   Gamme
   -------------------------------------------------------------------------- */

.products { padding-top: clamp(48px, 7vw, 88px); }

.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  min-height: 42px;
  padding: 8px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(14, 17, 22, 0.1);
}
.card[hidden] { display: none; }
.card.is-entering { animation: card-in 0.5s var(--ease) both; }
@keyframes card-in { from { opacity: 0; transform: translateY(20px) scale(0.97); } }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
}
.badge--new { background: var(--klein); color: var(--white); }
.badge--heart { background: #ffe3ee; color: #c2255c; }
.badge.badge--icon { display: grid; place-items: center; width: 32px; height: 32px; padding: 0; border-radius: 50%; }
.badge--icon .heartbeat { color: #d6336c; }

.card__visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 300px;
  background: var(--tint, var(--surface));
  transition: background-color 0.4s ease;
}
.card__visual::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.6s var(--ease);
}
.card:hover .card__visual::before { transform: scale(1.12); }
.card__visual .device {
  position: relative;
  height: 230px;
  filter: drop-shadow(0 18px 20px rgba(14, 17, 22, 0.18));
  transition: transform 0.6s var(--ease);
}
.card:hover .card__visual .device { transform: translateY(-10px) rotate(-5deg) scale(1.04); }

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}
.card__cat {
  color: var(--klein);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.card__name {
  margin-top: 2px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.card__desc {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}
.specs {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}
.specs li {
  position: relative;
  padding-left: 16px;
}
.specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--klein);
}
.card__visual .device--real {
  position: relative;
  width: auto;
  height: 232px;
  filter: drop-shadow(0 18px 20px rgba(14, 17, 22, 0.2));
  transition: transform 0.6s var(--ease), opacity 0.25s ease;
}
.card:hover .card__visual .device--real { transform: translateY(-10px) rotate(-4deg) scale(1.04); }
.card__visual .device--real.is-swapping { opacity: 0; }
.card__visual .device--kiwi { height: 236px; margin-top: 22px; }
.card__visual .device--box { height: 236px; margin-top: 14px; }
.card__visual .device--dojo { height: 228px; }
.swatches { flex-wrap: wrap; }
.card__visual--photo { padding: 0; }
.card__visual--photo::before { display: none; }
.card .card__visual--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.8s var(--ease);
}
.card:hover .card__visual.card__visual--photo img { transform: scale(1.04); }
.card__colors {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13px;
}
.card__visual .device--cartridges { height: auto; width: 78%; }
.card__visual img { position: relative; height: 240px; width: auto; object-fit: contain; filter: drop-shadow(0 18px 20px rgba(14, 17, 22, 0.18)); transition: transform 0.6s var(--ease); }
.card:hover .card__visual img { transform: translateY(-10px) rotate(-4deg) scale(1.04); }

.swatches { display: flex; gap: 8px; margin-top: auto; padding-top: 16px; }
.swatches button {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
/* Zone tactile agrandie à 28 px sur téléphone (32 px sur ordinateur) sans changer l'aspect des pastilles */
.swatches button { position: relative; }
.swatches button::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; }
.swatches button:hover { transform: scale(1.12); }
.swatches button { background: var(--c); }
.swatches button[aria-checked="true"] { box-shadow: 0 0 0 2px var(--ink); }

/* Types de cigarettes électroniques */
a.chip { display: inline-flex; align-items: center; text-decoration: none; color: var(--ink); }
a.chip:hover { background: var(--ink); color: var(--white); }
.types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 0;
  list-style: none;
}
.type { scroll-margin-top: calc(var(--header-h) + 20px); }
/* Fond bleu Klein autour du rond blanc, comme l'encart puff rechargeable */
.type .card__visual:not(.card__visual--photo):not(.card__visual--soon) {
  background: radial-gradient(80% 80% at 50% 40%, #1446d6, #001f73);
}
.type .card__visual:not(.card__visual--photo)::before { background: rgba(255, 255, 255, 0.92); }
.type--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.type--wide .card__visual { height: 100%; min-height: 560px; background: #0d0806; }
.type--wide .badge { top: auto; bottom: 14px; z-index: 1; }
.type--wide .card__visual--photo img { object-fit: cover; }
.type--wide .card__body { justify-content: center; }
.type--wide .card__body {
  border-top: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.type__label {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--klein);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.type__desc {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}
.type__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.type__model { margin-top: 4px; font-weight: 600; }
.type__duo .specs { margin-top: 6px; }
.type__brands { margin-top: 10px; }
.type__brands-title { margin-top: 18px; }
.card__visual--soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: radial-gradient(80% 80% at 50% 40%, #1f2430, #0b0d12);
  color: var(--white);
  text-align: center;
}
.card__visual--soon::before { display: none; }
.card__visual--soon-alt { background: radial-gradient(80% 80% at 50% 40%, #1446d6, #001f73); }
.soon__brand {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.soon__name {
  font-size: 34px;
  font-weight: 200;
  letter-spacing: -0.03em;
}
@media (max-width: 1100px) {
  .types { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .type--wide { grid-column: span 2; }
}
@media (max-width: 700px) {
  .types { grid-template-columns: 1fr; gap: 16px; }
  .type--wide { grid-column: auto; display: flex; }
  .type--wide .card__visual { height: auto; min-height: 0; aspect-ratio: 2 / 3; }
  .type--wide .card__body { border-top: 0; border-left: 1px solid var(--line); border-radius: 0 0 var(--radius) var(--radius); }
  .type__duo { grid-template-columns: 1fr 1fr; gap: 10px; }
}

.products__note {
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   La collection d'e-liquides Vapelite (vrais rendus des flacons)
   -------------------------------------------------------------------------- */

.collection {
  background: #f6f3ee;
  padding-bottom: clamp(64px, 9vw, 112px);
}
.collection__inner { padding-bottom: 28px; }
.collection__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 48px;
  margin: -8px 0 32px;
  padding: 0;
  list-style: none;
}
.collection__stats li {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.collection__stats strong {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--klein);
}
.collection__stats sup { font-size: 0.6em; font-family: var(--font); font-weight: 600; vertical-align: 0.5em; margin-left: 2px; }
.collection__stats span {
  max-width: 16ch;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.3;
}
.products__lead { margin-top: 14px; }
.products__stats { margin: 22px 0 0; }
.products__stats span { max-width: 22ch; }
.brands__count {
  margin: -8px 0 16px;
  color: var(--klein);
  font-size: 14px;
  font-weight: 600;
}
.collection__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.collection__arrows { display: flex; gap: 10px; }
.round-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.round-btn:hover { border-color: var(--ink); }
.round-btn:disabled { opacity: 0.35; cursor: default; }

.flavors {
  --edge: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(210px, 21vw, 260px);
  gap: 20px;
  padding: 8px var(--edge) 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--edge);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.flavors::-webkit-scrollbar { display: none; }

.flavor {
  scroll-snap-align: start;
}
.flavor[hidden] { display: none; }
.flavor.is-entering { animation: card-in 0.5s var(--ease) both; }
.flavor__visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 380px;
  border-radius: var(--radius);
  background:
    radial-gradient(60% 45% at 50% 55%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 70%),
    var(--tint);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease);
}
.flavor__visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: var(--c);
  opacity: 0.85;
}
.flavor__img {
  position: relative;
  width: auto;
  height: 320px;
  transition: transform 0.6s var(--ease);
}
.flavor:hover .flavor__visual { box-shadow: 0 24px 48px rgba(14, 17, 22, 0.1); }
.flavor:hover .flavor__img { transform: translateY(-10px) rotate(-3deg) scale(1.03); }
.flavor__fam {
  margin-top: 16px;
  color: var(--c);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  filter: saturate(1.2) brightness(0.85);
}
.flavor__name {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.flavor__notes {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 15px;
}

@media (max-width: 560px) {
  .flavors { grid-auto-columns: 64vw; gap: 14px; }
  .flavor__visual { height: 300px; }
  .flavor__img { height: 250px; }
  .flavor__name { font-size: 22px; }
  .collection__arrows { display: none; }
}

/* --------------------------------------------------------------------------
   Marques partenaires
   -------------------------------------------------------------------------- */

.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.brands__col {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.brands__col h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.brands__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brands__list li {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
}
.brands__list--main li {
  border-color: transparent;
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
}
.brands__also {
  margin: 20px 0 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .brands__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Intérieur de la boutique (photo plein cadre)
   -------------------------------------------------------------------------- */

.inside {
  --z: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(92vh, 860px);
  overflow: hidden;
  background: var(--night);
  color: var(--white);
  isolation: isolate;
}
.inside__photo,
.inside__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.inside__photo { z-index: -2; }
.inside__photo img {
  object-fit: cover;
  object-position: 50% 45%;
  transform: scale(calc(1.18 - var(--z) * 0.18));
  will-change: transform;
}
.inside::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 13, 18, 0.15) 0%, rgba(11, 13, 18, 0.55) 45%, rgba(11, 13, 18, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 25, 90, 0.55), rgba(0, 25, 90, 0) 65%);
}
.inside__content {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--gutter) clamp(48px, 7vw, 88px);
}
.inside__lead {
  max-width: 48ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.5vw, 19px);
}
.inside__values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  padding: 0;
  list-style: none;
}
.inside__value {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.inside__value span {
  color: #8fb0ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.inside__value h3 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.inside__value p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.45;
}
@media (max-width: 1000px) { .inside__values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .inside__values { gap: 10px; }
  .inside__value { padding: 16px; }
  .inside__value h3 { font-size: 20px; }
  .inside__value p { font-size: 13px; }
}

/* --------------------------------------------------------------------------
   Valeurs
   -------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------
   Boutique
   -------------------------------------------------------------------------- */

.shop__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}
.shop__visual {
  position: relative;
  padding: 0 12% 48px 0;
}
.shop__video {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 9 / 16;
  max-height: 78vh;
  border-radius: 28px;
  overflow: hidden;
  background: var(--klein);
  box-shadow: 0 30px 60px rgba(0, 31, 115, 0.22);
}
.shop__video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop__night {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  max-width: 240px;
  border: 6px solid var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(14, 17, 22, 0.25);
  transform: rotate(4deg);
  transition: transform 0.6s var(--ease);
}
.shop__night:hover { transform: rotate(0deg) scale(1.03); }
.shop__night img { width: 100%; height: auto; }

.shop__info .section__lead { margin-top: 18px; }
.info {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}
.info div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.info dt { font-weight: 600; }
.info dd { overflow-wrap: anywhere; }
.shop__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* --------------------------------------------------------------------------
   Bandeau avis Google
   -------------------------------------------------------------------------- */

.reviews {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 112px) var(--gutter);
  background:
    radial-gradient(70% 90% at 85% 20%, #1446d6 0%, rgba(20, 70, 214, 0) 60%),
    var(--klein);
  color: var(--white);
}
.reviews__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px 64px;
  max-width: var(--max);
  margin: 0 auto;
}
.reviews__intro { max-width: 640px; }
.reviews__score {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.reviews__note {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}
.reviews__stars {
  color: #ffc83d;
  font-size: 20px;
  letter-spacing: 3px;
}
.reviews__count {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
}
.reviews__lead {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.5vw, 19px);
}
.reviews__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.g-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: conic-gradient(#ea4335 0 25%, #fbbc05 0 50%, #34a853 0 75%, #4285f4 0);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.reviews__list {
  --edge: max(var(--gutter), calc((100vw - var(--max)) / 2));
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 30vw, 380px);
  align-items: start;
  gap: 18px;
  margin: 48px calc(-1 * var(--gutter)) 0;
  padding: 4px var(--edge) 12px;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--edge);
  scrollbar-width: none;
}
.reviews__list::-webkit-scrollbar { display: none; }
.review {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  color: var(--ink);
  scroll-snap-align: start;
  box-shadow: 0 20px 40px rgba(0, 10, 60, 0.25);
}
.review__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--av);
  color: var(--white);
  font-weight: 600;
}
.review__name { font-weight: 600; }
.review__guide { color: var(--ink-soft); font-size: 13px; }
.review__g { margin-left: auto; }
.review__stars { color: #fbbc05; font-size: 18px; letter-spacing: 2px; }
.review__text { margin: 0; color: #2a2f38; font-size: 15px; line-height: 1.55; }
.review__visit { margin-top: auto; color: var(--ink-soft); font-size: 13px; }
.reviews__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 18px auto 0;
}
.reviews__arrows { display: flex; gap: 10px; }
.round-btn--light { border-color: rgba(255, 255, 255, 0.45); background: transparent; color: var(--white); }
.round-btn--light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.1); }
.reviews__note-legal {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}
@media (max-width: 560px) { .reviews__list { grid-auto-columns: 84vw; gap: 12px; } .reviews__arrows { display: none; } }

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */

.footer {
  background: radial-gradient(80% 80% at 50% 40%, #1446d6, #001f73);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px var(--gutter) 48px;
}
.footer__brand img { width: 120px; }
.footer__brand p { max-width: 28ch; margin-top: 18px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { text-decoration: none; overflow-wrap: anywhere; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--white); }
.footer__title {
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 600;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--gutter) 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
}
.footer__legal p:first-child { max-width: 80ch; }
.footer__legal strong { color: var(--white); }

/* --------------------------------------------------------------------------
   Vérification de l'âge
   -------------------------------------------------------------------------- */

.age {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 31, 115, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.age[hidden] { display: none; }
.age__card {
  width: min(460px, 100%);
  padding: 36px 28px 28px;
  border-radius: 28px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 10, 50, 0.35);
  animation: pop 0.5s var(--ease) both;
}
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(0.96); } }
.age__logo { width: 96px; margin: 0 auto 22px; }
.age__title { font-family: var(--font-display); font-size: 30px; font-weight: 300; line-height: 1.15; letter-spacing: -0.03em; }
.age__card > p { margin-top: 10px; color: var(--ink-soft); }
.age__actions { display: grid; gap: 10px; margin-top: 26px; }
.age__denied { margin-top: 16px; color: var(--klein); font-weight: 600; }

/* --------------------------------------------------------------------------
   Apparition au défilement
   -------------------------------------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .card.reveal.is-visible:hover { transform: translateY(-6px); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .burger { display: grid; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px var(--gutter) 32px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(14, 17, 22, 0.1);
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.3s var(--ease), visibility 0.3s;
  }
  .nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__list a { display: block; padding: 10px 0; font-family: var(--font-display); font-size: 30px; font-weight: 300; letter-spacing: -0.03em; }
  .nav__list a::after { display: none; }

  .slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: start;
    gap: 0;
    padding-top: 36px;
    padding-bottom: 48px;
  }
  .hero__rings { left: 50%; top: 26%; }
  .slide__title { font-size: clamp(44px, 12vw, 66px); }
  .slide__lead { margin-top: 14px; }
  .slide__actions { margin-top: 22px; }

  .perks__list { grid-template-columns: 1fr 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

  .shop__grid { grid-template-columns: 1fr; }
  .shop__visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .inside { min-height: 78vh; }
  .slide--photo { align-content: end; padding-top: 0; }
  .hero-tag { top: 20px; bottom: auto; padding: 9px 16px 9px 12px; gap: 10px; }
  .hero-steps { margin-top: 20px; }
  .hero-steps__list li { font-size: 18px; }
  .hero-tag strong { font-size: 15px; }
  .slide__media--glow img {
    left: 0;
    width: 100%;
    height: 62%;
    object-fit: cover;
    object-position: 44% 50%;
    -webkit-mask-image: linear-gradient(0deg, transparent 0%, #000 30%);
    mask-image: linear-gradient(0deg, transparent 0%, #000 30%);
  }
  .slide__media.slide__media--glow::after {
    background: linear-gradient(0deg, rgba(0, 31, 125, 0.95) 0%, rgba(0, 31, 125, 0.78) 42%, rgba(0, 31, 125, 0) 66%);
  }
  .slide__media::after {
    background: linear-gradient(0deg, rgba(8, 5, 8, 0.94) 0%, rgba(8, 5, 8, 0.7) 45%, rgba(8, 5, 8, 0.1) 100%);
  }
  .inside::after {
    background: linear-gradient(180deg, rgba(11, 13, 18, 0.2) 0%, rgba(11, 13, 18, 0.7) 40%, rgba(11, 13, 18, 0.94) 100%);
  }
}

@media (max-width: 560px) {
  :root { --header-h: 68px; --radius: 20px; }
  .header__logo { width: 76px; }
  .perks__list { gap: 18px 14px; }
  .perk { flex-direction: column; align-items: flex-start; gap: 10px; font-size: 13px; }
  .card__visual { height: 200px; }
  .card__visual::before { width: 130px; height: 130px; }
  .card__visual .device { height: 160px; }
  .card__visual img { height: 170px; }
  .card__visual .device--real { height: 175px; }
  .card__visual .device--kiwi { height: 160px; margin-top: 18px; }
  .card__visual .device--box { height: 170px; margin-top: 10px; }
  .card__visual .device--dojo { height: 168px; }
  .specs { font-size: 13px; }
  .card__body { padding: 14px 14px 16px; }
  .card__name { font-size: 17px; }
  .card__desc { font-size: 13px; }
  .badge { top: 10px; left: 10px; font-size: 11px; padding: 4px 10px; }
  .swatches { gap: 6px; }
  .swatches button { width: 22px; height: 22px; }
  .info div { grid-template-columns: 1fr; gap: 4px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding-top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__rings { display: none; }
  .js .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Mentions légales
   -------------------------------------------------------------------------- */

.legal { max-width: 860px; }
.legal h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.legal h2 { margin-top: 44px; font-size: 20px; font-weight: 600; }
.legal p { margin-top: 10px; color: var(--ink-soft); font-size: 17px; }
