/* ==========================================================================
   NOMA — Design tokens
   ========================================================================== */
:root {
  /* Couleurs — blanc cassé / crème / gris clair / anthracite / noir doux */
  --color-bg: #FAF9F6;
  --color-bg-cream: #F4F0E8;
  --color-surface: #FFFFFF;
  --color-border: #E4E0D8;
  --color-border-strong: #CFCABE;

  --color-text: #1B1A18;
  --color-text-secondary: #59564F;
  --color-text-muted: #726E62; /* contraste AA (4.84:1) sur fond crème — ajusté depuis #8B8779 (3.42:1) */

  --color-anthracite: #2A2925;
  --color-anthracite-dark: #171613;

  /* Accent — strictement monochrome (aucune teinte orange/marron dans l'identité NOMA) */
  --color-accent: #3D3A35;
  --color-accent-bg: #ECE9E1;

  --color-success: #3E6B4F;
  --color-error: #A23B32;

  --color-inverse-text: #FAF9F6;

  /* Typographie — piles système, zéro requête réseau (perf + pas de FOUT) */
  --font-heading: ui-serif, "New York", "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-h1: clamp(2.1rem, 1.6rem + 2.2vw, 3.6rem);
  --fs-h2: clamp(1.6rem, 1.35rem + 1.1vw, 2.4rem);
  --fs-h3: clamp(1.2rem, 1.1rem + 0.4vw, 1.5rem);
  --fs-lead: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.8125rem;

  --lh-tight: 1.15;
  --lh-heading: 1.25;
  --lh-body: 1.6;

  --tracking-eyebrow: 0.08em;

  /* Spacing (base 4px) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  --section-padding-y: clamp(48px, 6vw, 112px);

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 760px;
  --container-padding: clamp(20px, 5vw, 48px);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* Ombres — très discrètes */
  --shadow-sm: 0 1px 2px rgba(23, 22, 19, 0.06);
  --shadow-md: 0 8px 24px rgba(23, 22, 19, 0.08);
  --shadow-lg: 0 20px 48px rgba(23, 22, 19, 0.12);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 450ms;

  --header-height: 72px;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0ms;
    --duration-base: 0ms;
    --duration-slow: 0ms;
  }
}


/* ==========================================================================
   NOMA — Reset & bases
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: var(--lh-heading); font-weight: 500; letter-spacing: -0.01em; color: var(--color-text); }
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-family: var(--font-body); font-weight: 600; }

p { color: var(--color-text-secondary); }
p.lead { font-size: var(--fs-lead); color: var(--color-text); }

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

ul, ol { list-style: none; padding: 0; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: var(--space-4); top: -60px;
  background: var(--color-anthracite); color: var(--color-inverse-text);
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-sm);
  z-index: 1000; transition: top var(--duration-fast) var(--ease);
}
.skip-link:focus { top: var(--space-4); }


/* ==========================================================================
   NOMA — Layout (containers, rythme de sections, grilles, header, footer)
   Mobile-first. Breakpoints : 768 / 1024 / 1440.
   ========================================================================== */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

main { display: block; overflow-x: clip; }

.section { padding-block: var(--section-padding-y); }
.section--cream { background: var(--color-bg-cream); }
.section--dark { background: var(--color-anthracite); color: var(--color-inverse-text); }
.section--dark p { color: rgba(250, 249, 246, 0.72); }
.section--dark h2, .section--dark h3 { color: var(--color-inverse-text); }
.section--tight { padding-block: calc(var(--section-padding-y) * 0.55); }
.section--spacious { padding-block: clamp(72px, 12vw, 168px); }

.section-head { max-width: var(--container-narrow); margin-bottom: var(--space-10); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

/* Grilles */
.grid { display: grid; gap: var(--space-8); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------------------------------------------------------------------- */
/* Trust topbar — bandeau de réassurance au-dessus du header */
.trust-topbar { background: var(--color-anthracite); color: var(--color-inverse-text); }
.trust-topbar__inner {
  display: flex; align-items: center; justify-content: center; gap: var(--space-5);
  padding-block: var(--space-2);
  font-size: 11px; letter-spacing: 0.01em; white-space: nowrap;
  overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none;
}
.trust-topbar__inner::-webkit-scrollbar { display: none; }
.trust-topbar__item { display: inline-flex; align-items: center; gap: var(--space-2); flex: 0 0 auto; opacity: 0.92; }
.trust-topbar__item svg { flex: 0 0 auto; }
.trust-topbar__sep { width: 1px; height: 11px; background: rgba(250, 249, 246, 0.22); flex: 0 0 auto; }
@media (min-width: 640px) {
  .trust-topbar__inner { gap: var(--space-8); font-size: 12px; overflow-x: visible; }
}

/* ---------------------------------------------------------------------- */
/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  height: var(--header-height);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6);
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  white-space: nowrap;
}
.site-header__mark { flex: 0 0 auto; color: var(--color-text); }
.site-header__logo em { color: var(--color-text-secondary); font-weight: 400; font-style: normal; }

.site-header__nav { display: none; }
.site-header__nav ul { display: flex; gap: var(--space-8); }
.site-header__nav a {
  font-size: var(--fs-small); font-weight: 500;
  position: relative; padding-block: var(--space-1);
}
.site-header__nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px;
  background: var(--color-text); transition: right var(--duration-base) var(--ease);
}
.site-header__nav a:hover::after { right: 0; }

.site-header__actions { display: flex; align-items: center; gap: var(--space-5); }
.site-header__cart { position: relative; display: inline-flex; padding: var(--space-1); }
.site-header__cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--color-anthracite); color: var(--color-inverse-text);
  font-size: 10px; line-height: 1; font-weight: 600;
  min-width: 16px; height: 16px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center; padding: 0 3px;
}
.site-header__cart-count[data-empty="true"] { display: none; }

.site-header__burger {
  display: inline-flex; padding: var(--space-2);
}
.site-header__burger svg { width: 22px; height: 22px; }
.site-header__burger .icon-close { display: none; }
.site-header__burger[aria-expanded="true"] .icon-hamburger { display: none; }
.site-header__burger[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}
.mobile-menu ul { padding: var(--space-4) var(--container-padding) var(--space-6); }
.mobile-menu li { border-bottom: 1px solid var(--color-border); }
.mobile-menu a { display: block; padding: var(--space-4) 0; font-size: 1rem; font-weight: 500; }
.mobile-menu[hidden] { display: none; }

@media (min-width: 1024px) {
  .site-header__nav { display: block; }
  .site-header__burger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------------------------------------------------------------------- */
/* Footer */
.site-footer { background: var(--color-anthracite); color: rgba(250, 249, 246, 0.85); }
.site-footer__grid {
  display: grid; gap: var(--space-10);
  padding-block: var(--space-20) var(--space-12);
  grid-template-columns: 1fr;
}
.site-footer__brand p { color: rgba(250, 249, 246, 0.6); margin-top: var(--space-3); max-width: 32ch; }
.site-footer__logo { font-family: var(--font-heading); font-size: 1.25rem; color: var(--color-inverse-text); }
.site-footer__col h3 {
  font-size: var(--fs-eyebrow); letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase; color: rgba(250, 249, 246, 0.55); margin-bottom: var(--space-4); font-weight: 600;
}
.site-footer__col li { margin-bottom: var(--space-3); }
.site-footer__col a { color: rgba(250, 249, 246, 0.85); font-size: var(--fs-small); }
.site-footer__col a:hover { color: var(--color-inverse-text); }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  justify-content: space-between; align-items: center;
  padding-block: var(--space-6);
  border-top: 1px solid rgba(250, 249, 246, 0.12);
  font-size: var(--fs-small); color: rgba(250, 249, 246, 0.5);
}
@media (min-width: 640px) {
  .site-footer__grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1.3fr repeat(4, 1fr); }
}

/* ---------------------------------------------------------------------- */
/* Hero */
.hero { position: relative; overflow: hidden; background: var(--color-anthracite); }
.hero__media { position: relative; aspect-ratio: 4 / 5; }
.hero__media img, .hero__media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,22,19,0.15) 0%, rgba(23,22,19,0.65) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: var(--space-16) var(--container-padding) var(--space-12);
  color: var(--color-inverse-text);
  text-align: center;
}
.hero__content p.lead { color: rgba(250, 249, 246, 0.82); margin-block: var(--space-4) var(--space-8); }
.hero__ctas { display: flex; flex-direction: column; gap: var(--space-3); max-width: 320px; margin-inline: auto; }
@media (min-width: 640px) {
  .hero__ctas { flex-direction: row; max-width: none; justify-content: center; }
}
@media (min-width: 1024px) {
  .hero { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 640px; }
  .hero__media { position: absolute; inset: 0; aspect-ratio: auto; }
  .hero__scrim { background: linear-gradient(90deg, rgba(23,22,19,0.6) 0%, rgba(23,22,19,0.08) 62%); }
  .hero__content { grid-column: 1 / 2; align-self: center; padding-block: var(--space-16); max-width: 560px; margin-inline: auto; }
}

/* ---------------------------------------------------------------------- */
/* Steps ("comment ça marche") */
.steps { display: grid; gap: var(--space-10); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); } }
.step__num {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 500;
  width: 40px; height: 40px; border-radius: var(--radius-full);
  border: 1px solid var(--color-border-strong); background: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5); letter-spacing: 0.02em;
}
.step h3 { font-size: 1.05rem; margin-bottom: var(--space-3); }
.step__desc { font-size: 13px; color: var(--color-text-muted); margin-top: var(--space-2); }
.step__tag {
  display: inline-flex; align-items: center; gap: var(--space-2);
  margin-top: var(--space-5); font-size: 12px; font-weight: 600; color: var(--color-text);
}
.step__tag svg { flex: 0 0 auto; color: var(--color-text-muted); }

.steps-conclusion { text-align: center; max-width: 640px; margin: var(--space-16) auto 0; padding-top: var(--space-12); border-top: 1px solid var(--color-border); }
.steps-conclusion__lead { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-text); }
.steps-conclusion__sub { font-size: var(--fs-small); margin-top: var(--space-4); color: var(--color-text-secondary); }

/* ---------------------------------------------------------------------- */
/* Feature (produit vitrine MAX) */
.feature { display: grid; gap: var(--space-8); align-items: center; }
.feature__media { border-radius: var(--radius-lg); overflow: hidden; }
.feature__media img, .feature__media video { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
@media (min-width: 1024px) {
  .feature { grid-template-columns: 1.1fr 1fr; gap: var(--space-16); }
  .feature--reverse { direction: rtl; }
  .feature--reverse > * { direction: ltr; }
}

/* ---------------------------------------------------------------------- */
/* Buybox (fiche produit) */
.product-view { display: grid; gap: var(--space-10); padding-block: var(--space-10) var(--space-16); }
@media (min-width: 1024px) {
  .product-view { grid-template-columns: 1.1fr 1fr; gap: var(--space-16); align-items: start; }
  .product-view__buy { position: sticky; top: calc(var(--header-height) + var(--space-8)); }
}

.gallery__main { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-bg-cream); aspect-ratio: 1/1; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 40px; height: 40px; border-radius: var(--radius-full);
  background: rgba(250, 249, 246, 0.9); border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text); transition: background var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
}
.gallery__arrow:hover { background: var(--color-surface); }
.gallery__arrow:active { transform: translateY(-50%) scale(0.94); }
.gallery__arrow--prev { left: var(--space-4); }
.gallery__arrow--next { right: var(--space-4); }
@media (min-width: 640px) {
  .gallery__arrow { width: 44px; height: 44px; }
}
.gallery__thumbs { display: flex; gap: var(--space-3); margin-top: var(--space-4); overflow-x: auto; padding-bottom: var(--space-1); }
.gallery__thumb {
  flex: 0 0 auto; width: 72px; height: 72px; border-radius: var(--radius-sm);
  overflow: hidden; border: 1px solid var(--color-border); cursor: pointer;
  opacity: 0.7; transition: opacity var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { opacity: 1; border-color: var(--color-text); }

/* ---------------------------------------------------------------------- */
/* Comparateur — responsive : lignes empilées en cartes sur mobile, tableau vrai dès tablette */
.compare { overflow-x: auto; }
.compare table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare th, .compare td {
  text-align: left; padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border); font-size: var(--fs-small);
  vertical-align: top;
}
.compare thead th { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 500; }
.compare tbody th { color: var(--color-text-secondary); font-weight: 500; white-space: nowrap; }
.compare td.is-highlight, .compare th.is-highlight { background: var(--color-bg-cream); }
@media (max-width: 767px) {
  .compare table, .compare thead, .compare tbody, .compare th, .compare td, .compare tr { display: block; }
  .compare { overflow-x: visible; }
  .compare table { min-width: 0; }
  .compare thead { display: none; }
  .compare tbody tr { border: 1px solid var(--color-border); border-radius: var(--radius-md); margin-bottom: var(--space-4); padding: var(--space-4); }
  .compare tbody th { padding: var(--space-1) 0; }
  .compare td { display: flex; justify-content: space-between; gap: var(--space-4); border: none; padding: var(--space-2) 0; }
  .compare td::before { content: attr(data-label); color: var(--color-text-muted); }
}

/* ---------------------------------------------------------------------- */
/* Breadcrumbs */
.breadcrumbs { padding-block: var(--space-4); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: var(--space-2); font-size: var(--fs-small); color: var(--color-text-muted); }
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-text); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: var(--space-2); }

/* ---------------------------------------------------------------------- */
/* Trust bar */
.trust-bar { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 640px) { .trust-bar { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-bar { grid-template-columns: repeat(4, 1fr); } }

/* Trust grid — section de confiance premium (2x2), voir .trust-card dans components.css */
.trust-grid { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------------------------------------------------------------------- */
/* Lifestyle gallery */
.lifestyle-gallery { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .lifestyle-gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 220px; }
  .lifestyle-gallery > :nth-child(1) { grid-column: span 4; grid-row: span 2; }
  .lifestyle-gallery > :nth-child(2) { grid-column: span 2; }
  .lifestyle-gallery > :nth-child(3) { grid-column: span 2; }
}
.lifestyle-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }

/* ---------------------------------------------------------------------- */
/* Cart */
.cart-line { display: grid; grid-template-columns: 84px 1fr auto; gap: var(--space-4); align-items: center; padding-block: var(--space-5); border-bottom: 1px solid var(--color-border); }
.cart-line__img { width: 84px; height: 84px; border-radius: var(--radius-sm); overflow: hidden; background: var(--color-bg-cream); }
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-summary { border-top: 2px solid var(--color-text); margin-top: var(--space-6); padding-top: var(--space-6); }
.cart-summary__row { display: flex; justify-content: space-between; margin-bottom: var(--space-3); }
.cart-empty { text-align: center; padding-block: var(--space-20); }

@media (min-width: 1024px) {
  .cart-view { display: grid; grid-template-columns: 1.6fr 1fr; gap: var(--space-16); align-items: start; }
}


/* ==========================================================================
   NOMA — Composants
   ========================================================================== */

/* Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 0.9rem 1.75rem; border-radius: var(--radius-full);
  font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.01em;
  transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--color-anthracite); color: var(--color-inverse-text); }
.btn--primary:hover { background: var(--color-anthracite-dark); }
.btn--light { background: var(--color-inverse-text); color: var(--color-anthracite); }
.btn--light:hover { background: #fff; }
.btn--outline { background: transparent; border: 1px solid currentColor; }
.btn--outline:hover { background: var(--color-text); color: var(--color-bg); border-color: var(--color-text); }
.btn--outline-light { background: transparent; border: 1px solid rgba(250,249,246,0.55); color: var(--color-inverse-text); }
.btn--outline-light:hover { background: rgba(250,249,246,0.12); border-color: var(--color-inverse-text); }
.btn--ghost { padding-inline: 0; text-decoration: underline; text-underline-offset: 4px; }
.btn--block { width: 100%; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: var(--space-1);
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-full);
  background: var(--color-accent-bg); color: var(--color-accent);
}
.badge--dark { background: var(--color-anthracite); color: var(--color-inverse-text); }

/* Placeholder de contenu non confirmé — visible en prototype, à retirer avant mise en ligne */
.tbd {
  border-bottom: 1px dashed var(--color-accent);
  color: var(--color-accent);
  font-style: italic;
  cursor: help;
}

/* Cards génériques */
.card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: var(--space-6);
}

/* Product card (gamme) */
.product-card {
  display: flex; flex-direction: column;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--duration-base) var(--ease), transform var(--duration-base) var(--ease);
  height: 100%;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-card__media { position: relative; aspect-ratio: 1/1; background: var(--color-bg-cream); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card__media video { width: 100%; height: 100%; object-fit: contain; display: block; background: var(--color-bg-cream); }
.product-card__badge { position: absolute; top: var(--space-4); left: var(--space-4); }
.product-card__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.product-card__name { font-size: 1.15rem; }
.product-card__tagline { font-size: var(--fs-small); color: var(--color-text-secondary); }
.product-card__price { font-size: 1.05rem; font-weight: 600; }
.product-card__cta {
  display: inline-flex; align-items: center; gap: var(--space-1);
  margin-top: auto; padding-top: var(--space-4);
  font-size: var(--fs-small); font-weight: 600; color: var(--color-text);
  border-top: 1px solid var(--color-border);
}
.product-card:hover .product-card__cta { text-decoration: underline; }
.product-card__points { display: flex; flex-direction: column; gap: var(--space-2); }
.product-card__points li { display: flex; gap: var(--space-2); font-size: var(--fs-small); color: var(--color-text-secondary); }
.product-card__points svg { flex: 0 0 auto; margin-top: 3px; color: var(--color-accent); }

/* Benefit card */
.benefit-card { display: flex; flex-direction: column; gap: var(--space-4); }
.benefit-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--color-bg-cream); display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
}
.benefit-card h3 { font-size: 1.05rem; }
.benefit-card p { font-size: var(--fs-small); }

/* Trust card — section de confiance premium */
.trust-card {
  display: flex; gap: var(--space-6); align-items: flex-start;
  padding: var(--space-10) var(--space-8); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); background: var(--color-surface);
}
.trust-card__icon {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: var(--radius-full);
  background: var(--color-bg-cream); display: flex; align-items: center; justify-content: center;
  color: var(--color-text);
}
.trust-card h3 { font-size: 1.2rem; margin-bottom: var(--space-3); }
.trust-card p { font-size: var(--fs-small); }
.trust-card__note { display: block; margin-top: var(--space-2); font-size: 12px; color: var(--color-text-muted); }
.trust-card__link { display: inline-block; margin-top: var(--space-2); font-size: 1rem; font-weight: 700; color: var(--color-text); text-decoration: underline; text-underline-offset: 3px; }
.trust-card__divider { height: 1px; background: var(--color-border); margin-block: var(--space-4); }
.trust-card__meta { font-size: var(--fs-small); color: var(--color-text); margin-bottom: var(--space-3); }
.trust-card__meta strong { font-weight: 700; }
.trust-card__hint { font-size: 12px; color: var(--color-text-muted); }

/* Trust item */
.trust-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.trust-item__icon { flex: 0 0 auto; width: 40px; height: 40px; border-radius: var(--radius-full); border: 1px solid var(--color-border-strong); display: flex; align-items: center; justify-content: center; }
.trust-item h3 { font-size: 0.95rem; margin-bottom: var(--space-1); }
.trust-item p { font-size: var(--fs-small); margin: 0; }

/* Prix / disponibilité */
.price { font-size: 1.75rem; font-weight: 600; font-family: var(--font-heading); }
.price--sm { font-size: 1.1rem; }
.stock-pill { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--fs-small); color: var(--color-success); }
.stock-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* Quantity stepper */
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--color-border-strong); border-radius: var(--radius-full); }
.qty-stepper button { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.qty-stepper input { width: 32px; text-align: center; border: none; background: none; -moz-appearance: textfield; }
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Bullet list bénéfices buybox */
.check-list li { display: flex; gap: var(--space-3); padding-block: var(--space-2); font-size: var(--fs-small); color: var(--color-text-secondary); }
.check-list svg { flex: 0 0 auto; color: var(--color-accent); margin-top: 2px; }

/* Specs table (fiche produit) */
.spec-list { display: grid; gap: 0; border-top: 1px solid var(--color-border); }
.spec-list__row { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid var(--color-border); font-size: var(--fs-small); }
.spec-list__row dt { color: var(--color-text-muted); }
.spec-list__row dd { color: var(--color-text); }

/* FAQ (accordéon natif details/summary — accessible sans JS) */
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  padding-block: var(--space-5); cursor: pointer; list-style: none; font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon { flex: 0 0 auto; transition: transform var(--duration-base) var(--ease); }
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item p { padding-bottom: var(--space-5); max-width: 62ch; }

/* Comment ça marche icons steps already styled in layout.css (.step) */

/* Bandeau de consentement cookies (RGPD) */
.cookie-banner {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 200;
  background: var(--color-surface); border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  max-width: var(--container-max); margin-inline: auto;
  padding: var(--space-5) var(--container-padding);
  display: flex; flex-direction: column; gap: var(--space-4);
}
@media (min-width: 768px) {
  .cookie-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: var(--space-8); }
}
.cookie-banner__text p { font-size: var(--fs-small); color: var(--color-text-secondary); max-width: 62ch; }
.cookie-banner__text a { text-decoration: underline; color: var(--color-text); }
.cookie-banner__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; flex: 0 0 auto; }
.cookie-banner__panel {
  border-top: 1px solid var(--color-border);
  padding: var(--space-5) var(--container-padding);
  max-width: var(--container-max); margin-inline: auto;
  display: grid; gap: var(--space-4);
}
.cookie-banner__panel[hidden] { display: none; }
.cookie-banner__category label { display: flex; gap: var(--space-3); align-items: flex-start; cursor: pointer; font-size: var(--fs-small); }
.cookie-banner__category input { margin-top: 3px; flex: 0 0 auto; }
.cookie-banner__category span { display: block; color: var(--color-text-muted); font-size: 12px; margin-top: 2px; }

/* Statement — citation de marque isolée, mise en scène éditoriale */
.statement {
  font-family: var(--font-heading); font-weight: 500;
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.2rem);
  line-height: 1.35; text-align: center;
  max-width: 780px; margin-inline: auto; color: var(--color-text);
}

/* Titre manifeste — même échelle que le H1 du hero */
.manifesto-title {
  font-family: var(--font-heading); font-weight: 500;
  font-size: var(--fs-h1); line-height: var(--lh-tight); text-align: center;
}

/* Principes numérotés (01 / 02 / 03) */
.principle__num {
  font-family: var(--font-heading); font-size: 1.7rem; font-weight: 500;
  color: var(--color-text-muted); letter-spacing: 0.02em; margin-bottom: var(--space-3);
}
.principle h3 { font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: var(--space-2); }
.principle p { font-size: var(--fs-small); }

/* Liste éditoriale (règle horizontale) — alternative légère aux cartes */
.rule-list { display: grid; gap: var(--space-8); grid-template-columns: 1fr; }
@media (min-width: 640px) { .rule-list { grid-template-columns: repeat(2, 1fr); } }
.rule-item { border-top: 1px solid var(--color-border); padding-top: var(--space-5); }
.rule-item h3 { font-size: 1.05rem; margin-bottom: var(--space-2); }
.rule-item p { font-size: var(--fs-small); }
.rule-item strong { color: var(--color-text); font-weight: 700; }
.rule-item a { color: var(--color-text); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

/* Callout de réassurance / note interne */
.callout { border-radius: var(--radius-md); padding: var(--space-5) var(--space-6); background: var(--color-bg-cream); font-size: var(--fs-small); }
.callout strong { color: var(--color-text); }

/* Media query check-list / spec-list stack tighter on very small screens */
@media (max-width: 420px) {
  .spec-list__row { grid-template-columns: 1fr; gap: var(--space-1); }
}
