/*
Theme Name: Stickers du Monde
Author: CM
Description: stickers-du-monde.com — charte de marque v2 (Bleu Pacific, Encre Nuit, Corail, Myriad Pro avec repli Source Sans 3). Homepage editoriale + vue article CM Media.
Version: 2.0-sdm-0b9709ec
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: template-site-actu
*/

/* ─────────────────────────────────────────────────────────────────────────────
 * Palette « Garçonne » (dérivée du logo : magenta + bleu nuit + turquoise)
 *   Magenta    #E6006E - couleur de marque, CTA, kickers (coral-500)
 *   Turquoise  #16A9C6 - accent, liens, icones (forest-400)
 *   Turquoise foncé #1390A8 - liens/boutons (forest-500)
 *   Bleu nuit  #14142A - titres, hero, footer, texte (forest-700 / ink)
 *   Turquoise pale #E8F6F9 - fonds, cartes
 *   Gris moyen  #6B7177 - texte secondaire
 *   Gris clair  #F7F8FA - fond global
 *   Bordures   #E2E5E9
 * ───────────────────────────────────────────────────────────────────────── */

:root {
  /* forest = turquoise (accent froid) -> bleu nuit (structure, titres, hero) */
  --color-forest-50:  #e8f6f9;
  --color-forest-100: #c5e9f0;
  --color-forest-200: #93d6e3;
  --color-forest-300: #57bdd2;
  --color-forest-400: #16a9c6;
  --color-forest-500: #1390a8;
  --color-forest-600: #107387;
  --color-forest-700: #14142a;
  --color-forest-800: #0d0d1c;
  --color-forest-900: #070710;

  /* coral = magenta (marque, CTA, kickers, halos) */
  --color-coral-50:  #fde6f1;
  --color-coral-100: #fbc0dc;
  --color-coral-200: #f78ec0;
  --color-coral-300: #f25aa3;
  --color-coral-400: #ed2f8b;
  --color-coral-500: #e6006e;
  --color-coral-600: #c80060;
  --color-coral-700: #a3014f;
  --color-coral-800: #7d0a40;
  --color-coral-900: #520a2c;

  --color-trust-50:  #e8f6f9;
  --color-trust-500: #1390a8;
  --color-trust-700: #14142a;

  --color-sand-50:  #f7f8fa;
  --color-sand-100: #eef0f2;
  --color-sand-200: #e2e5e9;
  --color-sand-300: #c2c7cd;

  --color-ink:    #14142a;
  --color-muted:  #6b7177;

  --color-amber-50: #fff7e6;
  --color-amber-200:#f8c976;
  --color-amber-700:#a4691a;
  --color-amber-900:#5c3608;

  --font-display: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 0.5rem;
  --radius:    0.875rem;
  --radius-lg: 1.125rem;
  --radius-xl: 1.5rem;

  --shadow-soft: 0 1px 2px rgba(20,20,42, 0.04), 0 8px 24px -8px rgba(20,20,42, 0.12);
  --shadow-lift: 0 2px 4px rgba(20,20,42, 0.06), 0 18px 40px -12px rgba(20,20,42, 0.22);
}

/* ─── Reset minimal ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--color-sand-50);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Empeche un eventuel pseudo-element decoratif (halo hero-og,
     dropdown mega-menu) d'elargir le body au-dela du viewport et
     decentrer .container (le header transparent absolute parait
     alors non-aligne avec le contenu de la page). */
  overflow-x: hidden;
}
html { overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-forest-600); text-decoration: none; }
a:hover { color: var(--color-forest-500); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-forest-700);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

/* ─── Layout containers ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  padding: 0 1.5rem; /* 24px - confort mobile (standard Apple/Stripe) */
}
@media (min-width: 640px) {
  .container { padding: 0 1.75rem; } /* 28px tablette */
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; } /* 32px desktop */
}

/* ─── Header / nav ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(241, 239, 232, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-sand-200);
}
.site-header--transparent {
  position: absolute;
  inset: 0 0 auto 0;
  background: transparent;
  border: 0;
  /* Sinon le blur+saturate herite cree une bande blanchatre/floue en
     haut du hero (la "fade-to-white" signalee par l'utilisateur). */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.site-header__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 68px;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--color-forest-700);
}
.site-header--transparent .site-header__logo { color: #fff; }
.site-header__logo span { color: var(--color-coral-500); }
.site-header__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1rem;
  font-size: 14px;
  font-weight: 500;
}
.site-header__nav a {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  color: rgba(44, 44, 42, 0.8);
}
.site-header__nav a:hover { background: var(--color-sand-100); }
.site-header--transparent .site-header__nav a { color: rgba(255,255,255,0.9); }
.site-header--transparent .site-header__nav a:hover { background: rgba(255,255,255,0.1); }
.site-header__spacer { flex: 1; }
.site-header__cta {
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  font-size: 14px;
}
.site-header--transparent .site-header__cta { color: #fff; }
.site-header--transparent .site-header__cta:hover { background: rgba(255,255,255,0.1); }

/* ─── Burger button (mobile only) ─────────────────────────────────────── */
.site-header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  margin-left: .25rem;
}
.site-header__burger:hover { background: var(--color-sand-100); }
.site-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-ink);
  border-radius: 1px;
  transition: transform .2s, opacity .15s;
  transform-origin: center;
}
.site-header--transparent .site-header__burger:hover { background: rgba(255,255,255,.1); }
.site-header--transparent .site-header__burger span { background: #fff; }
.site-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger.is-open span:nth-child(2) { opacity: 0; }
.site-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mega menu et CTA Newsletter : caches sur mobile, burger affiche */
@media (max-width: 1023.98px) {
  .mega-menu-wrap { display: none !important; }
  .site-header__cta { display: none; }
}
@media (min-width: 1024px) {
  .site-header__nav { display: inline-flex; }
  .mega-menu-wrap { display: inline-flex; }
  .site-header__burger { display: none; }
}

/* ─── Panel mobile (slide-down full-width) ───────────────────────────── */
.site-mobile-menu {
  position: fixed;
  inset: 68px 0 0 0; /* sous le header de 68px */
  background: #fff;
  z-index: 39;
  overflow-y: auto;
  animation: flmFadeIn .2s ease;
}
@keyframes flmFadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.site-mobile-menu__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.site-mobile-menu section { display: flex; flex-direction: column; }
.site-mobile-menu__title {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--color-coral-600);
  margin: 0 0 .5rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--color-sand-200);
}
.site-mobile-menu a {
  display: block;
  padding: .85rem .5rem;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s;
}
.site-mobile-menu a:hover, .site-mobile-menu a:focus {
  background: var(--color-sand-100);
  color: var(--color-trust-600);
}

/* ─── Mega menu Outils ───────────────────────────────────────────────────── */
.mega-menu-wrap { position: relative; }
.mega-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  background: transparent;
  border: 0;
  color: inherit;
}
.mega-menu-trigger:hover { background: var(--color-sand-100); }
.site-header--transparent .mega-menu-trigger { color: rgba(255,255,255,0.9); }
.site-header--transparent .mega-menu-trigger:hover { background: rgba(255,255,255,0.1); color: #fff; }
.mega-menu {
  position: absolute;
  right: 0;
  top: 100%;
  width: min(960px, calc(100vw - 2rem));
  background: #fff;
  border: 1px solid var(--color-sand-200);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(20,20,42, 0.25);
  display: none;
  z-index: 50;
  /* Decale visuellement la dropdown de 8px sous le trigger sans creer
     de trou pour le pointeur : ::before remplit cet espace de maniere
     invisible et reste dans la zone hover du wrap. */
  margin-top: 8px;
  overflow: hidden;
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0; right: 0;
  height: 8px;
}
/* Petite marge de tolerance sous le trigger pour absorber le saut de
   pointeur en diagonal entre 'Nos outils' et la dropdown. */
.mega-menu-wrap::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 8px;
}
.mega-menu-wrap:hover .mega-menu,
.mega-menu-wrap:focus-within .mega-menu { display: grid; grid-template-columns: 1fr 1.6fr; }
.mega-menu__col { padding: 1.25rem; }
.mega-menu__col--aide {
  background: rgba(232,246,249, 0.4);
  border-right: 1px solid var(--color-sand-200);
}
/* Liste des simulateurs en 2 colonnes (col 'Simulateurs' contient
   1 lien 'multi-aides' + 14 simulations -> 15 items, 2 cols = ~8
   lignes par colonne, plus aere). */
.mega-menu__col--sim .mega-menu__sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem .5rem;
}
.mega-menu__col--sim .mega-menu__sim-grid > a:first-child {
  grid-column: 1 / -1;
}
.mega-menu__title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  margin-bottom: 0.75rem;
}
.mega-menu__col--aide .mega-menu__title { color: var(--color-forest-700); }
.mega-menu__col--sim .mega-menu__title { color: var(--color-coral-500); }
.mega-menu__link {
  display: flex;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius);
  color: var(--color-ink);
  font-size: 13px;
  text-decoration: none;
}
.mega-menu__link:hover { background: var(--color-sand-100); color: var(--color-forest-700); }
.mega-menu__link strong { display: block; font-weight: 600; font-size: 14px; }
.mega-menu__link span { color: var(--color-muted); font-size: 11px; }

/* ─── Hero OG (reprend la palette de l'image de partage) ─────────────────── */
.hero-og {
  background: linear-gradient(135deg, var(--color-forest-700) 0%, var(--color-forest-500) 60%, var(--color-forest-600) 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero-og::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(230, 0, 110, 0.42) 0%, rgba(230, 0, 110, 0) 70%);
  pointer-events: none;
  z-index: -1;
}
.hero-og::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}
/* Padding vertical seulement - sinon le shorthand padding: V 0 V ecrase
   le padding horizontal du .container parent (collait bord a bord). */
.hero-og__inner { padding-top: 5rem; padding-bottom: 2rem; position: relative; }
@media (min-width: 1024px) { .hero-og__inner { padding-top: 6rem; padding-bottom: 2.5rem; } }
.hero-og__breadcrumb { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 0.75rem; }
.hero-og__breadcrumb a { color: inherit; }
.hero-og__breadcrumb a:hover { color: var(--color-coral-300); }
.hero-og__kicker {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--color-coral-400);
  margin-bottom: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.hero-og__title {
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero-og__lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-top: 0.75rem;
  max-width: 40rem;
}
.hero-og__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-coral-500);
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  text-decoration: none;
}
.hero-og__cta:hover { background: var(--color-coral-600); color: #fff; }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.375rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 0;
}
.btn--primary {
  background: var(--color-forest-500);
  color: #fff;
  box-shadow: 0 6px 20px -6px rgba(19,144,168, 0.55);
}
.btn--primary:hover { background: var(--color-forest-600); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px -6px rgba(19,144,168, 0.7); }
.btn--accent { background: var(--color-coral-500); color: #fff; }
.btn--accent:hover { background: var(--color-coral-600); color: #fff; }
.btn--ghost { background: #fff; border: 1px solid var(--color-sand-200); color: var(--color-ink); padding: 0.75rem 1.125rem; }
.btn--ghost:hover { border-color: var(--color-forest-500); }

/* ─── Card ──────────────────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--color-sand-200);
  border-radius: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* ─── Mise en forme prose pour simulation, article ───────────────────────── */
.prose-simulation { color: rgba(44, 44, 42, 0.85); font-size: 16px; line-height: 1.75; }
.prose-simulation > * + * { margin-top: 1.1rem; }
.prose-simulation h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.2;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-sand-200);
  scroll-margin-top: 5rem;
  color: var(--color-forest-700);
}
.prose-simulation h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-forest-700);
  scroll-margin-top: 5rem;
}
.prose-simulation strong { font-weight: 700; color: inherit; }
.prose-simulation a {
  color: var(--color-forest-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose-simulation ul, .prose-simulation ol { margin-left: 1.2rem; list-style-position: outside; }
.prose-simulation ul { list-style-type: disc; }
.prose-simulation ol { list-style-type: decimal; }
.prose-simulation li { padding-left: 0.25rem; margin-top: 0.4rem; }

/* ─── Prose universelle (pages legales, single article body) ────────────── */
.flm-prose { font-size: 16px; line-height: 1.7; color: var(--color-ink); }
.flm-prose > * + * { margin-top: 1rem; }
.flm-prose p { margin: 0.75rem 0; }
.flm-prose strong { color: var(--color-ink); font-weight: 700; }
.flm-prose em { color: var(--color-muted); font-style: italic; }
.flm-prose a { color: var(--color-trust-600); text-decoration: underline; text-underline-offset: 2px; }
.flm-prose a:hover { color: var(--color-trust-700); }
.flm-prose h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-ink);
  margin: 2.5rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--color-sand-200);
  scroll-margin-top: 5rem;
}
.flm-prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-ink);
  margin: 1.5rem 0 .5rem;
  scroll-margin-top: 5rem;
}
.flm-prose ul, .flm-prose ol { margin: .75rem 0; padding-left: 1.5rem; }
.flm-prose ul { list-style: disc; }
.flm-prose ol { list-style: decimal; }
.flm-prose li { margin: .35rem 0; }
.flm-prose li::marker { color: var(--color-coral-500); }
.flm-prose code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: .85em;
  background: var(--color-sand-100);
  border: 1px solid var(--color-sand-200);
  border-radius: 4px;
  padding: .1rem .35rem;
  color: var(--color-trust-700);
}
.flm-prose table {
  width: 100%;
  margin: 1.25rem 0;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--color-sand-200);
  border-radius: 14px;
  overflow: hidden;
  font-size: 14px;
}
.flm-prose thead { background: var(--color-sand-100); }
.flm-prose th {
  text-align: left;
  padding: .65rem 1rem;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--color-muted);
}
.flm-prose td {
  padding: .75rem 1rem;
  border-top: 1px solid var(--color-sand-200);
  vertical-align: top;
}
.flm-prose blockquote {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  background: rgba(232,246,249, .5);
  border-left: 4px solid var(--color-trust-500);
  border-radius: 8px;
  color: var(--color-muted);
  font-style: italic;
}
.flm-prose figure { margin: 1.5rem 0; }
.flm-prose figure img { width: 100%; height: auto; border-radius: 14px; }
.flm-prose figcaption { font-size: 13px; color: var(--color-muted); text-align: center; margin-top: .5rem; }
.flm-prose img { max-width: 100%; height: auto; border-radius: 14px; }
.flm-prose hr { border: 0; border-top: 1px solid var(--color-sand-200); margin: 2rem 0; }

/* ─── Pagination (listings) ─────────────────────────────────────────────── */
.pagination, .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 0;
}
.pagination .page-numbers,
.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 .75rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid var(--color-sand-200);
  border-radius: 12px;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s, transform .1s;
}
.pagination .page-numbers:hover,
.nav-links .page-numbers:hover {
  background: var(--color-sand-100);
  border-color: var(--color-sand-200);
  color: var(--color-trust-700);
}
.pagination .page-numbers.current,
.nav-links .page-numbers.current {
  background: var(--color-trust-500);
  border-color: var(--color-trust-500);
  color: #fff;
}
.pagination .page-numbers.dots,
.nav-links .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  color: var(--color-muted);
  min-width: 20px;
  padding: 0;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next,
.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
  padding: 0 1rem;
  background: #fff;
}
.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover,
.nav-links .page-numbers.prev:hover,
.nav-links .page-numbers.next:hover {
  background: var(--color-trust-500);
  border-color: var(--color-trust-500);
  color: #fff;
}
/* WP enveloppe la pagination dans <h2 class="screen-reader-text"> + ul */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}

.prose-resume { color: var(--color-ink); font-size: 0.95rem; line-height: 1.55; }
.prose-resume ul { list-style: none; margin: 0; padding: 0; }
.prose-resume li { position: relative; padding-left: 1.5rem; margin-top: 0.6rem; }
.prose-resume li:first-child { margin-top: 0; }
.prose-resume li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--color-coral-500);
}
.prose-resume strong { font-weight: 700; color: inherit; }

.prose-bon-a-savoir p { color: var(--color-amber-900); margin-bottom: 0.5rem; }
.prose-bon-a-savoir ul { margin-left: 1.2rem; list-style-type: disc; }
.prose-bon-a-savoir li { margin-top: 0.4rem; color: rgba(120, 53, 15, 0.92); line-height: 1.65; }

/* ─── Footer (OG palette) ────────────────────────────────────────────────── */
.site-footer { padding: 4rem 0 2rem; color: #fff; }

/* ─── 1. Bande newsletter en haut ───────────────────────────────────── */
.site-footer-newsletter {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 1024px) {
  .site-footer-newsletter {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 2rem;
  }
}
.site-footer-nl-form {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.site-footer-nl-form input[type="email"] {
  flex: 1; min-width: 200px;
  padding: .75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .15s, background .15s;
}
.site-footer-nl-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.site-footer-nl-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-coral-400);
  background: rgba(255,255,255,0.12);
}
.site-footer-nl-form button {
  padding: .75rem 1.5rem;
  border: 0; border-radius: 12px;
  background: var(--color-coral-500);
  color: #fff; font-weight: 700; font-size: 14px;
  cursor: pointer;
  transition: background .15s;
}
.site-footer-nl-form button:hover { background: var(--color-coral-600); }
.site-footer-nl-msg { font-size: 13px; margin: .5rem 0 0; min-height: 1em; }

/* ─── 2. Grid 2/5 cols + brand col + socials ────────────────────────── */
.site-footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); margin-bottom: 3rem; }
@media (min-width: 768px) { .site-footer-grid { grid-template-columns: repeat(5, 1fr); } }
.site-footer__brand-col { grid-column: span 2; }
.site-footer__brand-col a:hover { opacity: .85; }

.site-footer-socials {
  display: flex; gap: .5rem; margin-top: 1.25rem;
}
.site-footer-socials a {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .15s;
}
.site-footer-socials a:hover { background: var(--color-coral-500); }

.site-footer__col-title { font-weight: 600; margin-bottom: 0.75rem; color: #fff; font-size: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0.5rem 0; }
.site-footer a { color: rgba(255,255,255,0.7); font-size: 14px; text-decoration: none; transition: color .15s; }
.site-footer a:hover { color: var(--color-coral-300); }

/* ─── 3. Bottom bar ─────────────────────────────────────────────────── */
.site-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.site-footer-bottom a { color: inherit; font-size: 12px; }
.site-footer-bottom a:hover { color: #fff; }

/* ─── Utility ───────────────────────────────────────────────────────────── */
.kicker {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--color-coral-500);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.muted { color: var(--color-muted); }
.text-amber { color: var(--color-coral-500); }
.text-blue { color: var(--color-forest-500); }
/* Padding vertical seulement (cf .hero-og__inner). */
.section { padding-top: 3rem; padding-bottom: 3rem; }
@media (min-width: 1024px) { .section { padding-top: 4rem; padding-bottom: 4rem; } }

/* ═══════════════════════════════════════════════════════════════════════════
 * Classes extraites des anciens styles inline (refactor propreté).
 * ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Commun ─────────────────────────────────────────────────────────────── */
.hero-og__breadcrumb strong { color: #fff; }
.hero-og__title--sm { font-size: clamp(28px, 4vw, 48px); }
.hero-og__title--xs { font-size: clamp(28px, 3vw, 40px); }

/* ─── Header / footer : logo ─────────────────────────────────────────────── */
.site-header__logo img { height: 56px; width: auto; display: block; }
.site-footer__logo { display: inline-block; text-decoration: none; transition: opacity .15s; }
.site-footer__logo img { height: 64px; width: auto; display: block; }
.site-footer__desc { margin-top: .75rem; color: rgba(255,255,255,.6); font-size: 14px; max-width: 30rem; line-height: 1.5; }

/* ─── Footer : bandeau newsletter + bottom ───────────────────────────────── */
.site-footer-newsletter .kicker { color: var(--color-coral-300); }
.site-footer-nl__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3vw, 36px); line-height: 1.15; margin: .25rem 0 .5rem; color: #fff; }
.site-footer-nl__text { color: rgba(255,255,255,.7); max-width: 28rem; font-size: 14px; line-height: 1.55; margin: 0; }
.site-footer-bottom__links { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Commentaires ───────────────────────────────────────────────────────── */
.comment-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.comments-closed { font-size: 13px; color: var(--color-muted); margin-top: 1rem; }
.flm-comment-reply-title { font-size: 1.05rem; margin: 0 0 1rem; color: var(--color-ink); }
.flm-label-note { font-weight: 400; text-transform: none; letter-spacing: 0; }
.flm-cform-extra { margin-top: .5rem; }
.flm-cform-extra a { font-size: 12px; color: var(--color-trust-600); font-weight: 600; text-decoration: none; }

/* ─── Listings (archive / category / author) ─────────────────────────────── */
.flm-link-strong { color: var(--color-trust-600); font-weight: 600; text-decoration: none; }

.flm-chip-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.flm-chip {
    padding: .4rem .9rem;
    border: 1px solid var(--color-sand-200);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    background: #fff;
    color: var(--color-ink);
}
.flm-chip.is-active {
    background: var(--color-forest-500);
    border-color: var(--color-forest-500);
    color: #fff;
}

.flm-grid-cards { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.flm-post-card { padding: 1.5rem; }
.flm-post-card__thumb { display: block; margin: -1.5rem -1.5rem 1rem; border-radius: 20px 20px 0 0; overflow: hidden; }
.flm-post-card__thumb img { width: 100%; height: auto; display: block; }
.flm-post-card__title { font-size: 1.125rem; margin: .25rem 0 .5rem; }
.flm-post-card__title a { color: inherit; }
.flm-post-card__excerpt { font-size: 14px; line-height: 1.55; }
.flm-post-card__meta { margin-top: .75rem; font-size: 12px; color: var(--color-muted); }

.flm-pagination-center { margin-top: 2.5rem; display: flex; justify-content: center; }
.flm-empty { color: var(--color-muted); }

/* ─── Page auteur ────────────────────────────────────────────────────────── */
.flm-cat-meta { font-size: 14px; color: var(--color-muted); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.flm-author-head { display: flex; gap: 1.25rem; align-items: flex-start; margin-top: 1rem; }
.flm-author-photo { width: 80px; height: 80px; border-radius: 50%; border: 3px solid rgba(255,255,255,.25); flex-shrink: 0; }
.flm-author-socials { display: flex; gap: .75rem; margin-top: .75rem; font-size: 14px; }
.flm-author-socials a { color: #fff; }
.flm-author-h2 { margin-bottom: 1rem; }
.flm-count-note { font-weight: 400; color: var(--color-muted); font-family: var(--font-body); font-size: .75em; }

/* ═══════════════════════════════════════════════════════════════════════
 * Sous-menus déroulants (menu principal 2 niveaux) + bouton CTA
 * Ajout greffe — structure d'arborescence assurance.
 * ═══════════════════════════════════════════════════════════════════════ */
.site-header__nav .nav-item { position: relative; display: inline-flex; align-items: center; }
.site-header__nav .nav-item > a { padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); white-space: nowrap; color: rgba(44,44,42,0.8); }
.site-header__nav .nav-item > a:hover { background: var(--color-sand-100); }
.site-header--transparent .site-header__nav .nav-item > a { color: rgba(255,255,255,0.9); }
.site-header--transparent .site-header__nav .nav-item > a:hover { background: rgba(255,255,255,0.1); }
.site-header__nav .nav-item--has-children > a::after { content: "\25BE"; margin-left: 0.3rem; font-size: 0.7em; opacity: 0.85; }
.site-header__nav .nav-dropdown {
	position: absolute; top: calc(100% + 4px); left: 0; min-width: 224px;
	display: none; flex-direction: column;
	background: #fff; border: 1px solid var(--color-border, #E2E5E9); border-radius: 12px;
	box-shadow: 0 14px 34px rgba(20,20,42,0.14); padding: 0.4rem; z-index: 60;
}
.site-header__nav .nav-item--has-children:hover .nav-dropdown,
.site-header__nav .nav-item--has-children:focus-within .nav-dropdown { display: flex; }
.site-header__nav .nav-dropdown a { padding: 0.55rem 0.7rem; border-radius: 8px; white-space: nowrap; color: var(--color-forest-700, #14142A); font-weight: 500; }
.site-header__nav .nav-dropdown a:hover { background: var(--color-sand-100, #F7F8FA); color: var(--color-coral-500, #E6006E); }

/* Bouton CTA (Comparer / Devis rapide) */
.site-header__cta--accent { background: var(--color-coral-500, #E6006E); color: #fff !important; border-radius: 999px; }
.site-header__cta--accent:hover { background: #c00060; color: #fff !important; }
.site-header--transparent .site-header__cta--accent,
.site-header--transparent .site-header__cta--accent:hover { color: #fff !important; }

/* Panneau mobile : CTA visible + sous-menus dépliés (statiques) */
.site-mobile-menu .site-header__cta { display: inline-flex !important; margin-bottom: 0.75rem; }
.site-mobile-menu .nav-item, .site-mobile-menu .nav-item > a { display: block; }
.site-mobile-menu .nav-dropdown { display: flex !important; flex-direction: column; position: static; box-shadow: none; border: 0; padding: 0.15rem 0 0.5rem 0.85rem; min-width: 0; background: transparent; }
.site-mobile-menu .nav-item--has-children > a::after { content: ""; }
.site-mobile-menu .nav-dropdown a { color: inherit; padding: 0.35rem 0; }

/* ═══ Squelette Éditorial — blocs sur les pages et archives (chrome TSA) ═══
   Mêmes blocs que sur la page article, exprimés avec les tokens du thème
   d'accueil pour rester dans la charte de chaque site. */

.flm-prose .se-chapo{
  font-size:1.16em; line-height:1.6; font-weight:500;
  color:var(--color-muted); margin-bottom:1.6em;
}

.flm-prose .se-essentiel{
  background:var(--color-sand-100);
  border:1px solid var(--color-sand-200);
  border-left:3px solid var(--color-coral-500);
  border-radius:var(--radius-sm);
  padding:1.25em 1.5em; margin:1.8em 0 2em;
}
.flm-prose .se-essentiel .se-essentiel-titre{
  margin:0 0 .7em; font-size:1.15em; color:var(--color-ink);
  font-family:var(--font-display);
}
.flm-prose .se-essentiel .se-essentiel-liste{ margin:0; padding-left:1.2em; }
.flm-prose .se-essentiel .se-essentiel-liste li{ margin-bottom:.5em; line-height:1.55; }
.flm-prose .se-essentiel .se-essentiel-liste li:last-child{ margin-bottom:0; }

.flm-prose h2.se-faq{
  margin-top:2.2em; padding-top:1.1em;
  border-top:1px solid var(--color-sand-200);
}

.flm-prose .se-maillage{
  background:var(--color-sand-100);
  border:1px solid var(--color-sand-200);
  border-left:3px solid var(--color-coral-500);
  border-radius:var(--radius-sm);
  padding:1.1em 1.4em; margin:2.2em 0 1em;
}
.flm-prose .se-maillage .se-maillage-titre{
  margin:0 0 .6em; font-size:1.05em; color:var(--color-ink);
  font-family:var(--font-display);
}
.flm-prose .se-maillage ul{ margin:0; padding-left:1.2em; }
.flm-prose .se-maillage li{ margin-bottom:.4em; }
.flm-prose .se-maillage li:last-child{ margin-bottom:0; }

/* Intro SEO des pages de rubrique (fournie par le plugin) */
.se-cat-intro{ color:var(--color-muted); line-height:1.65; }
.se-cat-intro-toggle{ color:var(--color-coral-500); }

/* ═══════════════════════════════════════════════════════════════════════
 * CHARTE DE MARQUE « STICKERS DU MONDE » v2 — Juillet 2026
 * Appliquée au pied de la lettre depuis stickers-du-monde-brand-kit.
 * Les valeurs brutes vivent dans assets/css/tokens.css (chargé AVANT ce
 * fichier, comme l'exige le LISEZ-MOI du kit) ; ici on ne fait que mapper
 * les variables du thème sur ces jetons, puis poser les composants du §6.
 *
 * Équilibre imposé §3 : 60 % blanc/Brume — 25 % Encre Nuit — 10 % Bleu
 * Pacific — 5 % Corail. « Le Corail est rare et sacré : un écran = un seul
 * bouton corail. » D'où un seul sélecteur de bouton principal en Corail.
 * ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* forest = structure du thème (header, héro, footer, titres) → Encre Nuit */
  --color-forest-50:#F5F7FC;  --color-forest-100:#E4EBFF; --color-forest-200:#C3CCE0;
  --color-forest-300:#8A94AC; --color-forest-400:#5B6478; --color-forest-500:#2A3654;
  --color-forest-600:#1B2740; --color-forest-700:#101A2E;
  --color-forest-800:#0B1322; --color-forest-900:#070C16;

  /* coral = accent du thème (liens, kickers, éléments actifs) → Bleu Pacific.
     ATTENTION : malgré son nom, cette échelle n'est PAS le Corail de la
     charte. Le Corail #FF5A3C est réservé aux boutons d'achat (voir plus bas). */
  --color-coral-50:#E4EBFF;  --color-coral-100:#C9D8FF; --color-coral-200:#9DBAFF;
  --color-coral-300:#6E99FF; --color-coral-400:#2C7BFF; --color-coral-500:#0B5FFF;
  --color-coral-600:#0A3FCF; --color-coral-700:#0832A6; --color-coral-800:#06277E;
  --color-coral-900:#041B57;

  --color-trust-50:#F5F7FC; --color-trust-500:#2A3654; --color-trust-700:#101A2E;

  --color-sand-50:#FFFFFF; --color-sand-100:#F5F7FC;
  --color-sand-200:#E4EBFF; --color-sand-300:#C3CCE0;

  --color-ink:#101A2E; --color-muted:#5B6478;

  /* Une seule famille sur toute la marque (§4). */
  --font-display:var(--sdm-font);
  --font-body:var(--sdm-font);

  /* Rayons imposés §5 : 12 cartes · 20 grandes vignettes · 999 badges/boutons */
  --radius-sm:12px; --radius:12px; --radius-lg:20px; --radius-xl:20px;

  --shadow-soft:var(--sdm-shadow-1);
  --shadow-lift:var(--sdm-shadow-2);
}

/* ─── Typographie §4 ─────────────────────────────────────────────────────
   Échelle desktop / mobile explicite. Casse phrase, pas de justification,
   pas de césure, jamais plus de deux graisses dans un bloc. */
body{
  font-family:var(--sdm-font);
  background:var(--sdm-white);
  color:var(--sdm-ink);
  font-size:18px; line-height:1.6; font-weight:400;
  hyphens:none; text-align:left;
}
h1,h2,h3,h4,h5,h6{ font-family:var(--sdm-font); color:var(--sdm-ink); text-wrap:balance; }
h1{ font-size:48px; line-height:1.1; font-weight:700; letter-spacing:-0.01em; }
/* Le titre de héros a sa propre classe dans le thème de base, plafonnée à
   60 px (« clamp(28px,4vw,60px) », l. 411) : elle ignorait l'échelle H1 de la
   charte. On la ramène au 48 / 32 px imposé au §4. */
.hero-og__title{ font-size:clamp(32px, 4vw, 48px); line-height:1.1; font-weight:700; }
.hero-og__title--sm{ font-size:clamp(28px, 3.4vw, 40px); }
.hero-og__title--xs{ font-size:clamp(26px, 3vw, 34px); }
.hero-og__lead{ font-size:21px; line-height:1.5; }
@media (max-width:768px){ .hero-og__lead{ font-size:19px; } }
h2{ font-size:34px; line-height:1.2; font-weight:700; }
h3{ font-size:24px; line-height:1.3; font-weight:600; }
p{ line-height:1.6; }
.flm-prose p, .cm-entry p{ max-width:72ch; }   /* 65-75 caractères §4 */

.se-chapo{ font-size:21px; line-height:1.5; font-weight:400; color:var(--sdm-ink); }
.entry-meta, .flm-post-card__meta, .post-meta, figcaption, small{
  font-size:14px; line-height:1.4; color:var(--sdm-slate);
}

@media (max-width:768px){
  body{ font-size:17px; }
  h1{ font-size:32px; }
  h2{ font-size:26px; }
  h3{ font-size:20px; }
  .se-chapo{ font-size:19px; }
}

a{ color:var(--sdm-blue); }
a:hover{ color:var(--sdm-blue-deep); }
/* §3 accessibilité : Bleu Pacific interdit sous 16 px sur fond Brume. */
.se-maillage a, .site-footer a{ font-size:16px; }

.kicker{
  color:var(--sdm-blue); font-weight:600;
  letter-spacing:0.08em; text-transform:uppercase; font-size:14px;
}

/* ─── Logo §2 ────────────────────────────────────────────────────────────
   Les SVG du kit portent width="1014" : sans contrainte, ils débordent de
   l'en-tête. On fixe la HAUTEUR et on laisse la largeur suivre.
   PIÈGE : un SVG dans un conteneur flex se calcule à largeur 0 ; `width:auto`
   ne suffit pas, il faut aussi `max-width:none` et `flex:0 0 auto`.
   Taille minimale imposée par la charte : 140 px de large. Le ratio du logo
   horizontal est 1014/128 ≈ 7,9 → 28 px de haut donnent ≈ 222 px de large.

   ⚠️ Le thème de base pose « .site-header__logo img{height:56px} » (l. 795) et
   « .site-footer__logo img{height:64px} » (l. 797). Ces sélecteurs valent
   (0,1,1) et battaient un simple « .site-header__logo-img » (0,1,0) : le logo
   sortait au double de sa taille. On réécrit donc AVEC LA MÊME FORME, ce bloc
   étant plus bas dans le fichier il l'emporte à spécificité égale. */
.site-header__logo img, .site-header__logo-img,
.cm-logo img, .cm-logo-img{
  height:28px; width:auto; max-width:none; flex:0 0 auto;
}
.site-footer__logo img, .site-footer__logo-img{   /* signature, ratio ≈ 6,85 */
  height:38px; width:auto; max-width:none; flex:0 0 auto;
}
@media (max-width:768px){
  .site-header__logo img, .site-header__logo-img,
  .cm-logo img, .cm-logo-img{ height:24px; }      /* ≈ 190 px, > 140 px */
}
/* Le conteneur du logo porte encore le nom du site en texte dans le thème de
   base : il ferait doublon avec le wordmark vectorisé. */
.site-header__logo{ font-size:0; gap:0; }

/* ─── Héro : Encre Nuit plein, sans dégradé ni pois ────────────────────── */
.hero-og{ background:var(--sdm-ink) !important; }
.hero-og::before, .hero-og::after{ display:none !important; }
.hero-og, .hero-og h1, .hero-og h2, .hero-og p, .hero-og a{ color:var(--sdm-white); }
.hero-og .kicker{ color:var(--sdm-blue-light); }

/* ─── Cartes §6 : photo 4:3, radius 12, ombres imposées §5 ─────────────── */
.flm-post-card{
  background:var(--sdm-white); border:1px solid var(--sdm-paper-blue);
  border-radius:var(--sdm-r-card);
  box-shadow:var(--sdm-shadow-1);
  transition:box-shadow .18s ease, transform .18s ease;
}
.flm-post-card:hover{ box-shadow:var(--sdm-shadow-2); transform:translateY(-2px); }
.flm-post-card img{ aspect-ratio:4/3; object-fit:cover; }

/* ─── Boutons §6 ─────────────────────────────────────────────────────────
   Principal = Corail, blanc Semibold, pilule, 52 px de haut, 28 px de padding.
   UN SEUL par écran (§11). Secondaire = contour Bleu Pacific 2 px. */
.sdm-btn,
.site-header__cta--accent,
.button, .btn, input[type="submit"], button[type="submit"]{
  display:inline-flex; align-items:center; justify-content:center; gap:.4em;
  min-height:52px; padding:0 28px;
  background:var(--sdm-coral); color:var(--sdm-white) !important;
  font-family:var(--sdm-font); font-weight:600; font-size:16px; letter-spacing:.2px;
  border:0; border-radius:var(--sdm-r-pill); cursor:pointer;
  text-decoration:none;
}
.sdm-btn:hover,
.site-header__cta--accent:hover,
.button:hover, .btn:hover, input[type="submit"]:hover, button[type="submit"]:hover{
  background:#E8492D; color:var(--sdm-white) !important;
}
.sdm-btn--secondaire{
  background:transparent; color:var(--sdm-blue) !important;
  border:2px solid var(--sdm-blue);
}
.sdm-btn--secondaire:hover{ background:var(--sdm-paper-blue); color:var(--sdm-blue-deep) !important; }

/* ─── Badge affiliation §6 — sur CHAQUE module sortant ─────────────────── */
.sdm-badge-partenaire{
  display:inline-block;
  background:var(--sdm-paper-blue); color:var(--sdm-blue-deep);
  font-size:12px; font-weight:700; letter-spacing:.8px; text-transform:uppercase;
  padding:4px 12px; border-radius:var(--sdm-r-pill);
}

/* ─── Bandeau d'information affiliation §9.1 ──────────────────────────── */
.sdm-bandeau-affiliation{
  background:var(--sdm-paper-blue); color:var(--sdm-ink);
  border-radius:var(--sdm-r-card);
  padding:var(--sdm-space-2) var(--sdm-space-3);
  font-size:14px; line-height:1.4;
  margin:0 0 var(--sdm-space-3);
}

/* ─── Prix §4 ─────────────────────────────────────────────────────────── */
.sdm-prix{ font-size:22px; font-weight:700; color:var(--sdm-coral); }
.sdm-prix-maj{ font-size:12px; color:var(--sdm-slate); }  /* date de mise à jour §9.6 */

/* ─── Bloc verdict §6 ─────────────────────────────────────────────────── */
.sdm-verdict{
  background:var(--sdm-mist); border-left:4px solid var(--sdm-mint);
  border-radius:0 var(--sdm-r-card) var(--sdm-r-card) 0;
  padding:var(--sdm-space-3);
}
.sdm-verdict .sdm-plus{ color:var(--sdm-mint); font-weight:600; }
.sdm-verdict .sdm-moins{ color:var(--sdm-coral); font-weight:600; }

/* ─── Note globale §6 : disque Bleu Pacific, chiffre blanc, sur 5 ─────── */
.sdm-note{
  display:inline-flex; align-items:center; justify-content:center;
  width:72px; height:72px; border-radius:var(--sdm-r-pill);
  background:var(--sdm-blue); color:var(--sdm-white);
  font-weight:700; font-size:26px; line-height:1;
}

/* ─── Tableau comparatif §6 ───────────────────────────────────────────── */
.sdm-tableau{ width:100%; border-collapse:collapse; font-size:16px; }
.sdm-tableau thead th{
  background:var(--sdm-ink); color:var(--sdm-white);
  font-weight:600; text-align:left; padding:var(--sdm-space-2);
}
.sdm-tableau tbody tr:nth-child(odd){ background:var(--sdm-mist); }
.sdm-tableau td{ padding:var(--sdm-space-2); border-bottom:1px solid var(--sdm-paper-blue); }
.sdm-tableau .sdm-notre-choix{ background:rgba(255,201,60,.15); }
@media (max-width:768px){
  .sdm-tableau thead th{ position:sticky; top:0; z-index:2; }
}

/* ─── Encadré info §6 ─────────────────────────────────────────────────── */
.sdm-info{
  background:var(--sdm-paper-blue); border-radius:var(--sdm-r-card);
  padding:var(--sdm-space-3); color:var(--sdm-ink);
}

/* ─── Bandeau Bons Plans §6 ───────────────────────────────────────────── */
.sdm-bandeau-promo{
  background:var(--sdm-coral); color:var(--sdm-white);
  padding:var(--sdm-space-1) var(--sdm-space-3);
  font-weight:600; font-size:16px; text-align:center;
}

/* ─── Barre supérieure §7 ─────────────────────────────────────────────── */
.sdm-topbar{
  background:var(--sdm-ink); color:var(--sdm-white);
  font-size:14px; line-height:1.4;
}
.sdm-topbar .container{
  display:flex; align-items:center; justify-content:space-between;
  gap:var(--sdm-space-2); min-height:36px;
}
.sdm-topbar a{ color:var(--sdm-white); }
.sdm-topbar a:hover{ color:var(--sdm-blue-light); }
.sdm-topbar__liens{ display:flex; gap:var(--sdm-space-2); }
@media (max-width:768px){ .sdm-topbar__accroche{ display:none; } }

/* ─── Fil d'Ariane §6 : 14 px Gris Ardoise, séparateur › ──────────────── */
.sdm-ariane, .breadcrumbs, .seopress-breadcrumbs{
  font-size:14px; color:var(--sdm-slate); line-height:1.4;
}
.sdm-ariane a, .breadcrumbs a, .seopress-breadcrumbs a{ color:var(--sdm-slate); }
.sdm-ariane a:hover, .breadcrumbs a:hover{ color:var(--sdm-blue); }

/* ─── Newsletter §6 : Encre Nuit + motif de pastilles 8 % ─────────────── */
.flm-newsletter, .newsletter, .site-newsletter{
  background:var(--sdm-ink); color:var(--sdm-white); position:relative;
}
/* Motif de marque §5 : semis de pastilles die-cut, opacité 8 %,
   jamais derrière un paragraphe long → cantonné à ce bloc court. */
.flm-newsletter::before, .newsletter::before, .site-newsletter::before{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.08;
  background-image:radial-gradient(circle at 12px 12px, #fff 4px, transparent 5px);
  background-size:48px 48px;
}
.flm-newsletter > *, .newsletter > *, .site-newsletter > *{ position:relative; z-index:1; }
.flm-newsletter input[type="email"], .newsletter input[type="email"]{
  background:var(--sdm-white); color:var(--sdm-ink);
  border:0; border-radius:var(--sdm-r-pill); min-height:52px; padding:0 24px;
}

/* ─── Couleurs de rubrique §3 ─────────────────────────────────────────── */
.rubrique-stickers  { --rubrique:var(--sdm-blue); }
.rubrique-machines  { --rubrique:var(--sdm-ink); }
.rubrique-tests     { --rubrique:var(--sdm-mint); }
.rubrique-guides    { --rubrique:var(--sdm-blue-deep); }
.rubrique-mag       { --rubrique:var(--sdm-violet); }
.rubrique-bons-plans{ --rubrique:var(--sdm-coral); }
[class*="rubrique-"] .kicker{ color:var(--rubrique); }
[class*="rubrique-"].flm-post-card{ border-top:3px solid var(--rubrique); }

/* ─── Chrome ─────────────────────────────────────────────────────────────
   NE JAMAIS écrire de règle .site-header{background} : l'en-tête est posé
   au-dessus du héro en transparence, une telle règle gagnerait la cascade. */
.site-footer{ background:var(--sdm-ink); color:var(--sdm-white); }
.site-footer a{ color:#C9D8FF; }
.site-footer a:hover{ color:var(--sdm-white); }
.site-header__nav .nav-dropdown a:hover{ background:var(--sdm-mist); color:var(--sdm-blue); }

/* Le CTA d'en-tête reste le seul Corail de l'écran : on neutralise les
   boutons génériques du chrome pour respecter la règle du §11. */
.site-header__cta:not(.site-header__cta--accent){
  background:transparent; color:inherit !important; min-height:auto; padding:.5rem .75rem;
}
