﻿/* =========================================================================
   ZÉPHYR — Design system boutique ventilateurs brumisateurs
   ========================================================================= */

:root {
  --bg: #fcfdfd;
  --white: #ffffff;
  --mist: #eef7f6;
  --mist-2: #e3f2f0;
  --ink: #152228;
  --ink-2: #2c4048;
  --muted: #6b828a;
  --line: #dce8ea;
  --line-2: #c5d8db;

  --teal: #14b8a6;
  --teal-dark: #0d9488;
  --teal-deep: #0f766e;
  --teal-glow: rgba(20, 184, 166, .18);
  --teal-tint: #ecfdf9;

  --coral: #f43f5e;
  --coral-tint: #fff1f2;
  --amber: #f59e0b;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(21, 34, 40, .04);
  --shadow-sm: 0 4px 20px -8px rgba(21, 34, 40, .12);
  --shadow: 0 20px 50px -24px rgba(21, 34, 40, .22);
  --shadow-lg: 0 32px 80px -32px rgba(15, 118, 110, .28);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --container: 1160px;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;

  /* aliases compat store.js */
  --surface: var(--mist);
  --surface-2: var(--mist-2);
  --accent: var(--teal-dark);
  --accent-dark: var(--teal-deep);
  --accent-tint: var(--teal-tint);
  --ink-soft: var(--ink-2);
  --danger: var(--coral);
  --gold: var(--amber);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--teal); color: #fff; }

/* ---- Typo ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -.02em; }
.display { font-size: clamp(2.5rem, 1.5rem + 3.8vw, 4.2rem); }
.h2 { font-size: clamp(1.75rem, 1.1rem + 2vw, 2.75rem); }
.h3 { font-size: clamp(1.25rem, 1rem + .8vw, 1.65rem); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.lead { font-size: 1.08rem; color: var(--ink-2); line-height: 1.7; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(64px, 8vw, 110px); }
.section--tight { padding-block: clamp(36px, 5vw, 56px); }
.section-head { max-width: 560px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head p { margin-top: 14px; color: var(--muted); }
.stack > * + * { margin-top: 16px; }

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .94rem;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--accent {
  background: var(--teal-dark);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(13, 148, 136, .55);
}
.btn--accent:hover { background: var(--teal-deep); box-shadow: var(--shadow-sm); }
.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--line-2); background: var(--mist); }
.btn--light { background: #fff; color: var(--ink); box-shadow: var(--shadow-xs); }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 17px 32px; font-size: 1rem; }
.btn svg.arrow { transition: transform .22s var(--ease); }
.btn:hover svg.arrow { transform: translateX(3px); }
.linkarrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--teal-deep);
}
.linkarrow svg { transition: transform .22s var(--ease); }
.linkarrow:hover svg { transform: translateX(4px); }

/* ---- Bandeau ---- */
.announce {
  background: var(--ink);
  color: #b8cdd2;
  text-align: center;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 16px;
}
.announce strong { color: var(--teal); font-weight: 700; }

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 253, 253, .88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.header.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-xs);
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: .04em;
}
.brand__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px -6px rgba(13, 148, 136, .6);
}
.brand__icon svg { width: 18px; height: 18px; }
.nav { display: flex; gap: 32px; }
.nav a {
  font-size: .84rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  transition: color .2s;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
  border-radius: 2px;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: 6px; }
.iconbtn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background .2s;
  position: relative;
}
.iconbtn:hover { background: var(--mist); }
.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: var(--radius-pill);
  background: var(--teal-dark);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform .2s var(--ease);
}
.cart-count.is-visible { transform: scale(1); }
.burger { display: none; }

/* ---- Menu mobile ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
}
.mobile-nav.is-open { transform: none; }
.mobile-nav__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.65rem;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(20, 184, 166, .14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(244, 63, 94, .06), transparent 50%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: min(85vh, 760px);
  padding-block: clamp(48px, 6vw, 80px);
}
.hero__content { max-width: 500px; }
.hero__content .eyebrow { margin-bottom: 16px; }
.hero__content .lead { margin-top: 20px; }
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.tag--fill {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}
.tag--hot {
  background: var(--coral-tint);
  border-color: #fecdd3;
  color: #be123c;
}
.hero__pricebox {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
}
.hero__pricebox .now {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.75rem);
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1;
}
.hero__pricebox .was {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1rem;
}
.hero__pricebox .badge-save {
  background: var(--coral);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.hero__pricebox small {
  width: 100%;
  font-size: .82rem;
  color: var(--muted);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero__tier {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  min-width: 140px;
}
.hero__tier span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__tier strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.1;
}
.hero__tier--rose {
  border-color: rgba(244, 114, 182, .35);
  background: linear-gradient(135deg, #fff 0%, #fff1f2 100%);
}
.hero__tier--rose strong { color: var(--teal-deep); }
.hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__stats div span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}
.hero__stats div small { font-size: .78rem; color: var(--muted); }
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual-bg {
  position: absolute;
  width: min(420px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--white) 0%, var(--teal-tint) 55%, transparent 72%);
  filter: blur(2px);
}
.hero__visual img {
  position: relative;
  z-index: 1;
  max-height: min(520px, 70vh);
  width: auto;
  filter: drop-shadow(0 28px 48px rgba(21, 34, 40, .14));
}
.float-card {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
}
.float-card--tl { top: 8%; left: 0; }
.float-card--br { bottom: 10%; right: 0; }
.float-card .stars { color: var(--amber); letter-spacing: 1px; font-size: .75rem; }
.float-card b { display: block; font-family: var(--font-display); font-size: 1rem; margin-top: 4px; }

/* ---- Trust ---- */
.trust {
  background: var(--white);
  border-block: 1px solid var(--line);
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 28px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust__item svg { color: var(--teal-dark); flex: none; }
.trust__item b { display: block; font-size: .88rem; }
.trust__item small { color: var(--muted); font-size: .78rem; }

/* ---- Produits ---- */
.products {
  display: grid;
  gap: 20px;
}
.products--shop {
  grid-template-columns: repeat(3, 1fr);
}

/* ---- Collection organisée ---- */
.collection-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.collection-toolbar__count {
  font-size: .88rem;
  color: var(--muted);
}
.collection-toolbar__count strong { color: var(--ink); }
.color-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.collection-toolbar .color-chips { margin-bottom: 0; }
.color-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: border-color .2s, background .2s, transform .2s;
}
.color-chip:hover {
  border-color: var(--teal);
  background: var(--teal-tint);
  transform: translateY(-1px);
}
.color-chip.is-active {
  border-color: var(--teal-dark);
  background: var(--teal-tint);
  color: var(--teal-deep);
}
.color-chip__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
  flex: none;
}
.products--catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.card--pick {
  border-color: rgba(13, 148, 136, .28);
  box-shadow: 0 12px 40px -20px rgba(13, 148, 136, .35);
}
.card--pick .card__label--pick {
  background: var(--teal-dark);
}
.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.spotlight__media {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}
.spotlight__media img { max-height: 260px; object-fit: contain; }
.spotlight__body .eyebrow { margin-bottom: 10px; display: block; }
.spotlight__body h2 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin-bottom: 12px; }
.spotlight__body p { color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.spotlight__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.spotlight__price .now {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--teal-deep);
}
.spotlight__price .was { color: var(--muted); text-decoration: line-through; }
.spotlight__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}
.card--hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-color: rgba(13, 148, 136, .2);
  box-shadow: var(--shadow-lg);
}
.card__media {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--mist) 0%, var(--white) 100%);
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
}
.card--hero .card__media { aspect-ratio: auto; min-height: 300px; }
.card__media img {
  position: relative;
  z-index: 1;
  max-height: 100%;
  object-fit: contain;
  transition: transform .5s var(--ease);
  will-change: transform;
}
.card:hover .card__media img { transform: scale(1.03); }
.card__label {
  position: absolute;
  z-index: 3;
  top: 14px; left: 14px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--coral);
  color: #fff;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(21, 34, 40, .12);
}
.card__label--dark {
  top: auto; bottom: 14px;
  background: var(--ink);
}
.card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.card--hero .card__body {
  justify-content: center;
  padding: 32px 36px;
}
.card__color {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.card__color i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--swatch, var(--teal));
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.card__title { font-size: 1.15rem; line-height: 1.25; }
.card--hero .card__title { font-size: clamp(1.5rem, 1.2rem + .8vw, 2rem); }
.card__desc { font-size: .88rem; color: var(--muted); line-height: 1.5; flex: 1; }
.card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--muted);
}
.card__rating .stars { color: var(--amber); font-size: .72rem; }
.card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.card__price .now {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}
.card--hero .card__price .now { font-size: 2rem; }
.card__price .was { color: var(--muted); text-decoration: line-through; font-size: .9rem; }
.card__price .pct {
  position: relative;
  z-index: 1;
  font-size: .7rem;
  font-weight: 700;
  color: var(--teal-deep);
  background: var(--teal-tint);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}
.card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.card__actions .btn { padding: 12px 14px; font-size: .86rem; }

/* ---- Bande feature ---- */
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  background: var(--ink);
  color: #e2ecef;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  overflow: hidden;
  position: relative;
}
.feature-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(20, 184, 166, .25), transparent 50%);
  pointer-events: none;
}
.feature-band > * { position: relative; z-index: 1; }
.feature-band .eyebrow { color: var(--teal); }
.feature-band h2 { color: #fff; margin-top: 12px; }
.feature-band p { color: #9eb4bb; margin-top: 16px; line-height: 1.65; }
.feature-list { margin-top: 24px; display: grid; gap: 12px; }
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .94rem;
}
.feature-list svg { color: var(--teal); flex: none; margin-top: 2px; }
.feature-band__img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.feature-band__img img {
  max-height: 380px;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.35));
}

/* ---- Steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step__num {
  width: 48px; height: 48px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  border: 2px solid var(--teal);
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--muted); }

/* ---- Témoignages ---- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.quote .stars { color: var(--amber); font-size: .8rem; letter-spacing: 1px; margin-bottom: 12px; }
.quote p { color: var(--ink-2); font-size: .94rem; line-height: 1.6; }
.quote footer { margin-top: 16px; font-weight: 600; font-size: .88rem; }
.quote footer span { display: block; color: var(--muted); font-weight: 400; font-size: .78rem; margin-top: 2px; }

/* ---- CTA newsletter ---- */
.cta-band {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #115e59 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 72px);
  text-align: center;
}
.cta-band .eyebrow { color: #5eead4; }
.cta-band h2 { color: #fff; margin-top: 10px; }
.cta-band p { color: #99f6e4; margin: 14px auto 28px; max-width: 480px; }
.newsletter {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter input {
  flex: 1;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  outline: none;
}
.newsletter input::placeholder { color: #99f6e4; }
.newsletter input:focus { border-color: #fff; }

/* ---- Footer ---- */
.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding-block: 56px 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer h4 {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer ul { display: grid; gap: 10px; }
.footer a { font-size: .9rem; color: var(--ink-2); }
.footer a:hover { color: var(--teal-deep); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .8rem;
  color: var(--muted);
}
.pay { display: flex; gap: 6px; }
.pay span {
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--mist);
  color: var(--ink-2);
}

/* ---- Fil d'Ariane ---- */
.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: .84rem;
  color: var(--muted);
  padding-block: 20px;
}
.crumb a:hover { color: var(--teal-deep); }

/* ---- Fiche produit ---- */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.gallery__stage {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--mist) 0%, var(--white) 100%);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 40px;
}
.gallery__stage img {
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(21, 34, 40, .1));
}
.color-picker { margin-top: 16px; }
.color-picker__label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.color-swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.color-swatch {
  width: 52px; height: 52px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.color-swatch:hover { transform: translateY(-2px); border-color: var(--teal); }
.color-swatch.is-active {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.color-swatch img { width: 100%; height: 100%; object-fit: cover; }
.pdp__info { position: sticky; top: 86px; }
.pdp__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.pdp__meta .stars { color: var(--amber); font-size: .8rem; }
.pdp__meta span { font-size: .85rem; color: var(--muted); }
.pdp__title { font-size: clamp(1.75rem, 1.2rem + 1.4vw, 2.5rem); }
.pdp__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 20px;
}
.pdp__price .now {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--teal-deep);
}
.pdp__price .was { color: var(--muted); text-decoration: line-through; font-size: 1.1rem; }
.pdp__price .save {
  background: var(--teal-tint);
  color: var(--teal-deep);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.pdp__pitch { color: var(--ink-2); line-height: 1.65; }
.checklist { margin-top: 22px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.checklist svg { color: var(--teal-dark); flex: none; margin-top: 2px; }
.buybox { display: flex; gap: 12px; margin: 26px 0 20px; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--white);
}
.qty button { width: 44px; height: 50px; font-size: 1.15rem; color: var(--muted); }
.qty button:hover { color: var(--teal-deep); }
.qty input { width: 40px; height: 50px; text-align: center; border: none; background: none; font-weight: 600; }
.assurances { display: grid; gap: 10px; padding-top: 20px; border-top: 1px solid var(--line); }
.assurances li { display: flex; gap: 10px; align-items: center; font-size: .88rem; color: var(--ink-2); }
.assurances svg { color: var(--teal-dark); flex: none; }
.accordion { margin-top: 24px; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; color: var(--muted); font-size: 1.3rem; }
.accordion details[open] summary::after { content: "−"; }
.accordion .acc__body { padding-bottom: 18px; color: var(--ink-2); font-size: .92rem; line-height: 1.6; }

/* ---- Panier drawer ---- */
.overlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(21, 34, 40, .4);
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(3px);
}
.overlay.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 90;
  width: min(400px, 100%);
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: none; }
.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.drawer__head h3 { font-size: 1.15rem; }
.drawer__items { flex: 1; overflow-y: auto; padding: 8px 22px; }
.drawer__foot { padding: 20px 22px; border-top: 1px solid var(--line); }
.cart-line {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line__img {
  width: 68px; height: 68px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--mist);
}
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__title { font-weight: 600; font-size: .9rem; }
.cart-line__price { color: var(--muted); font-size: .82rem; }
.cart-line__qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 2px 4px;
}
.cart-line__qty button { width: 24px; height: 24px; border-radius: 50%; font-size: .9rem; }
.cart-line__remove { font-size: .75rem; color: var(--muted); text-decoration: underline; margin-top: 6px; display: block; }
.cart-line__remove:hover { color: var(--coral); }
.cart-line__sum { font-weight: 700; font-size: .95rem; }
.drawer__row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .92rem; }
.drawer__row.total { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin: 10px 0 14px; }
.cart-empty { text-align: center; color: var(--muted); padding: 48px 0; }
.cart-empty svg { margin: 0 auto 12px; color: var(--line-2); }
.freebar {
  background: var(--teal-tint);
  color: var(--teal-deep);
  font-size: .8rem;
  text-align: center;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

/* ---- Page panier ---- */
.cartpage {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 86px;
}
.summary h3 { font-family: var(--font-display); margin-bottom: 18px; }

/* ---- Popup ---- */
.promo-popup-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(21, 34, 40, .5);
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(5px);
}
.promo-popup-overlay.is-open { opacity: 1; visibility: visible; }
.promo-popup {
  position: fixed; left: 50%; top: 50%; z-index: 210;
  width: min(440px, calc(100% - 28px));
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 36px);
  transform: translate(-50%, -48%) scale(.96);
  opacity: 0; visibility: hidden;
  transition: transform .35s var(--ease), opacity .35s, visibility .35s;
  box-shadow: var(--shadow-lg);
}
.promo-popup.is-open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1; visibility: visible;
}
.promo-popup__x { position: absolute; top: 12px; right: 12px; color: var(--muted); }
.promo-popup__badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--teal-tint);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.promo-popup__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.promo-popup__offer {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}
.promo-popup__offer-top {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: center;
}
.promo-popup__offer-img {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.promo-popup__offer-img img {
  max-height: 100px;
  object-fit: contain;
  transition: transform .4s var(--ease);
}
.promo-popup__offer:hover .promo-popup__offer-img img { transform: scale(1.03); }
.promo-popup__offer-top > div:last-child {
  position: relative;
  z-index: 2;
}
.promo-popup__offer-tag { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--coral); }
.promo-popup__offer-title { font-family: var(--font-display); font-size: 1.2rem; margin: 4px 0; }
.promo-popup__offer-price strong { font-size: 1.3rem; color: var(--teal-deep); }
.promo-popup__offer-price s { color: var(--muted); margin-left: 6px; }
.promo-popup__stock {
  margin-top: 12px;
  font-size: .78rem;
  font-weight: 600;
  color: #be123c;
  background: var(--coral-tint);
  border: 1px solid #fecdd3;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}
.promo-popup__offer-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }
.promo-popup__points {
  display: grid; gap: 8px;
  margin-bottom: 18px;
  font-size: .86rem;
  color: var(--ink-2);
}
.promo-popup__points li { display: flex; gap: 8px; align-items: center; }
.promo-popup__points svg { color: var(--teal-dark); flex: none; }
.promo-popup__skip {
  display: block; width: 100%;
  margin-top: 10px;
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
  text-decoration: underline;
}

/* ---- Toast ---- */
.toast {
  position: fixed; bottom: 24px; left: 50%; z-index: 120;
  transform: translate(-50%, 120%);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s;
}
.toast.is-show { transform: translate(-50%, 0); opacity: 1; }
.toast svg { color: var(--teal); }

/* ---- Reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Feature contact ---- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.feature__body { max-width: 460px; }
.feature__body .eyebrow { margin-bottom: 12px; display: block; }
.feature__body p { margin-top: 14px; color: var(--ink-2); }
.feature__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; padding-block: 40px; }
  .hero__visual { order: -1; }
  .hero__visual img { max-height: 360px; }
  .products--shop { grid-template-columns: repeat(2, 1fr); }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__media { order: -1; max-height: 280px; aspect-ratio: auto; }
  .card--hero { grid-template-columns: 1fr; }
  .feature-band { grid-template-columns: 1fr; }
  .feature-band__img { order: -1; }
  .pdp { grid-template-columns: 1fr; }
  .pdp__info { position: static; }
  .cartpage { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trust__row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .container { padding-inline: 16px; }
  .header__bar {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    height: 62px;
  }
  .burger { display: grid; justify-self: start; }
  .brand { justify-self: center; font-size: 1.15rem; }
  .header__actions { justify-self: end; }
  .nav, .hero__stats { display: none; }
  .products--shop { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .card__actions { grid-template-columns: 1fr; }
  .buybox { flex-direction: column; }
  .announce { font-size: .64rem; letter-spacing: .08em; }
  .footer__grid { grid-template-columns: 1fr; }
  .float-card { display: none; }
}
