/* ===========================================================================
   MOTORA — feuille de style commune (site autonome, sans CDN)
   Base réinitialisée + conteneur plein écran + composants réutilisables.
   =========================================================================== */

:root {
  --accent: #b9e3c6;
  --ink: #141414;
  --paper: #ffffff;
  --muted: #6f6f6a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #141414;
  -webkit-font-smoothing: antialiased;
}

a { color: #141414; text-decoration: none; }
a:hover { color: #5b5b5b; }

input, select, button { font-family: inherit; }
input:focus, select:focus { outline: none; }

/* Conteneur du site : plein écran (plus de "carte" centrée sur fond noir) */
.site {
  width: 100%;
  margin: 0 auto;
  background: var(--paper);
  min-height: 100vh;
  overflow-x: clip; /* garde-fou anti-scroll horizontal (compatible sticky) */
}

/* --- Emplacement image (remplace <image-slot> de la maquette) ------------- */
.img-slot {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  background:
    radial-gradient(120% 90% at 50% 0%, #f4f2ee 0%, #eceae5 100%);
  border: 1px dashed rgba(0, 0, 0, .12);
  color: #b3b1ab;
  text-align: center;
  padding: 12px;
  box-sizing: border-box;
}
.img-slot svg { opacity: .6; }
.img-slot span {
  font-size: 11.5px;
  letter-spacing: .3px;
  max-width: 220px;
  line-height: 1.4;
}

/* --- Animations d'entrée / au scroll (remplacent GSAP) --------------------
   L'état masqué initial n'est appliqué QUE si JS est actif (classe .js posée
   par un script en <head>). Sans JS, tout le contenu reste visible. */
.js .reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .7s cubic-bezier(.16, .84, .44, 1),
              transform .5s cubic-bezier(.22, 1, .36, 1),
              box-shadow .35s ease, border-color .35s ease;
}
.js .reveal.in { opacity: 1; transform: none; }

.js [data-hero] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, .84, .44, 1),
              transform .7s cubic-bezier(.16, .84, .44, 1);
}
.js [data-hero].in { opacity: 1; transform: none; }

/* --- Keyframes reprises de la maquette ----------------------------------- */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeA   { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop     { from { opacity: 0; transform: scale(.94) translateY(12px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes menuIn  { from { opacity: 0; transform: translateY(-6px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes cardIn  { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* --- Slider de prix (marketplace) ---------------------------------------- */
.rng {
  position: absolute; inset: 0; width: 100%; height: 18px; margin: 0;
  -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none;
}
.rng::-webkit-slider-thumb {
  -webkit-appearance: none; pointer-events: auto; width: 15px; height: 15px; border-radius: 50%;
  background: #1f8b5f; border: 3px solid #fff; box-shadow: 0 0 0 1px rgba(0, 0, 0, .3); cursor: pointer; margin-top: 0;
}
.rng::-moz-range-thumb {
  pointer-events: auto; width: 9px; height: 9px; border-radius: 50%;
  background: #1f8b5f; border: 3px solid #fff; box-shadow: 0 0 0 1px rgba(0, 0, 0, .3); cursor: pointer;
}
.rng::-moz-range-track { background: transparent; }

/* --- Survol des cartes (marketplace) ------------------------------------- */
[data-flip] .hoverbg { opacity: 0; transition: opacity .3s ease; }
[data-flip]:hover .hoverbg { opacity: 1; }

/* --- Respect des préférences de mouvement réduit ------------------------- */
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js [data-hero] { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================================
   HERO (accueil) — fond clair épuré, recherche au centre
   =========================================================================== */
.hero {
  /* Photo de fond claire (voiture blanche studio) */
  --hero-img: url('../hero.png');
  position: relative;
  min-height: 100svh; /* header en overlay (position:fixed) → hero plein écran */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  overflow: hidden;
  color: #141414;
  background: #eef0ec;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
  background-color: #eef0ec;
  background-image:
    /* halo blanc doux derrière le texte centré (lisibilité) */
    radial-gradient(120% 78% at 50% 40%, rgba(255, 255, 255, .42) 0%, rgba(255, 255, 255, 0) 55%),
    /* léger voile clair haut + bas */
    linear-gradient(180deg, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, .38) 100%),
    var(--hero-img);
  background-size: cover;
  background-position: center;
}
.hero-grid { display: none; }
.hero-halo {
  position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%);
  width: min(760px, 94vw); height: min(760px, 94vw); border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 196, 146, .16) 0%, rgba(92, 196, 146, .06) 38%, transparent 70%);
  filter: blur(8px);
}
.hero-brand { display: none; }
/* Header transparent sur le hero, apparition "glass" au scroll (index) */
.hero-hdr {
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.hero-hdr.is-glass {
  background: rgba(255, 255, 255, .6);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: rgba(0, 0, 0, .06);
  box-shadow: 0 4px 22px rgba(0, 0, 0, .05);
}
@media (max-width: 768px) {
  /* évite le coût du backdrop-filter au scroll sur mobile → fond solide léger */
  .hero-hdr.is-glass { background: rgba(255, 255, 255, .92); -webkit-backdrop-filter: none; backdrop-filter: none; }
}
/* Bouton burger (injecté par app.js) — masqué sur bureau, visible en mobile */
.nav-toggle {
  display: none; width: 42px; height: 42px; padding: 0; border: none; cursor: pointer;
  background: transparent; border-radius: 10px; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; transition: background .2s ease;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px; background: #141414;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .2s ease;
}
.hdr.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.hdr.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Sur l'accueil, le header transparent devient glass quand le menu est ouvert */
.hero-hdr.nav-open {
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4);
}
@keyframes navLinkIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: none; } }

/* Lueurs d'ambiance dans les coins (au-dessus de l'image, sous le texte) */
.hero-glow {
  position: absolute; z-index: 1; pointer-events: none; border-radius: 50%;
  width: 46vw; height: 46vw; max-width: 600px; max-height: 600px;
  filter: blur(26px); will-change: transform, opacity;
}
.hero-glow--tl { top: -15%; left: -12%; background: radial-gradient(circle, rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, 0) 66%); animation: heroGlowA 12s ease-in-out infinite; }
.hero-glow--tr { top: -12%; right: -10%; background: radial-gradient(circle, rgba(92, 196, 146, .34) 0%, rgba(92, 196, 146, 0) 66%); animation: heroGlowB 15s ease-in-out infinite; }
.hero-glow--bl { bottom: -16%; left: -10%; background: radial-gradient(circle, rgba(255, 255, 255, .6) 0%, rgba(255, 255, 255, 0) 66%); animation: heroGlowB 18s ease-in-out infinite reverse; }
@keyframes heroGlowA { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(4%, 5%) scale(1.08); } }
@keyframes heroGlowB { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-5%, 4%) scale(1.1); } }
@media (prefers-reduced-motion: reduce) { .hero-glow { animation: none; } }
@media (max-width: 768px) { .hero-glow { animation: none; opacity: .7; } }
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: 720px;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.hero-title { font-size: clamp(42px, 6.4vw, 82px); line-height: 1; font-weight: 700; letter-spacing: -2px; margin: 0; color: #141414; }
.hero-title span { color: #1f8b5f; }
.hero-search {
  width: 100%; max-width: 560px; display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid rgba(0, 0, 0, .12); border-radius: 999px;
  padding: 9px 9px 9px 24px;
  box-shadow: 0 26px 60px -24px rgba(20, 90, 55, .38), 0 10px 28px rgba(0, 0, 0, .12);
}
.hero-search input { border: none; background: transparent; flex: 1; font-size: 15.5px; color: #141414; min-width: 0; }
.hero-search button {
  padding: 15px 30px; border-radius: 999px; border: none; background: #1f8b5f; color: #fff;
  font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background .2s ease;
}
.hero-chips { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.hero-chips a {
  padding: 8px 15px; border-radius: 999px; border: 1px solid rgba(0, 0, 0, .1);
  background: rgba(255, 255, 255, .7); font-size: 12px; color: #141414; transition: all .2s ease;
}
.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: rgba(20, 20, 20, .5);
}

/* Recherche instantanée du hero (menu de suggestions) */
.search-wrap { position: relative; width: 100%; max-width: 560px; }
.suggest {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 6;
  background: #fff; border: 1px solid rgba(0, 0, 0, .08); border-radius: 18px;
  box-shadow: 0 26px 60px -22px rgba(20, 90, 55, .4), 0 8px 24px rgba(0, 0, 0, .07);
  overflow: hidden; text-align: left;
  /* fermé par défaut — apparition ET disparition symétriques */
  opacity: 0; transform: translateY(-8px) scale(.985); pointer-events: none;
  transition: opacity .2s ease, transform .2s cubic-bezier(.22, 1, .36, 1);
}
.suggest.open { opacity: 1; transform: none; pointer-events: auto; }
.suggest-row {
  width: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px;
  padding: 12px 18px; background: transparent; border: none; border-bottom: 1px solid rgba(0, 0, 0, .05);
  cursor: pointer; text-align: left; font: inherit;
}
.suggest-row.active, .suggest-row:hover { background: #f1f8f4; }
.s-ico { width: 30px; height: 30px; border-radius: 9px; background: #eaf5ef; display: grid; place-items: center; }
.s-txt { display: flex; flex-direction: column; min-width: 0; }
.s-name { font-size: 14px; font-weight: 600; color: #141414; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s-meta { font-size: 11.5px; color: #8f8f8a; margin-top: 1px; }
.s-price { font-size: 13.5px; font-weight: 700; color: #141414; white-space: nowrap; }
.suggest-all {
  width: 100%; padding: 13px 18px; background: #fafbfa; border: none; border-top: 1px solid rgba(0, 0, 0, .06);
  cursor: pointer; font: inherit; font-size: 12.5px; font-weight: 600; color: #1f8b5f; text-align: left;
}
.suggest-all:hover { background: #eef6f1; }

/* Bandeau de marques (transition après le hero) */
.marquee-band {
  border-top: 1px solid rgba(0, 0, 0, .06); border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: 18px 0; overflow: hidden; background: #fff;
}
.marquee-track {
  display: flex; gap: 64px; width: max-content; animation: marquee 28s linear infinite;
  font-size: 13px; letter-spacing: 3px; color: #b3b3ae; font-weight: 600;
}
.marquee-track span { white-space: nowrap; }

/* ===== Landing pro (piliers, feature, stats) ===== */
.eyebrow { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #1f8b5f; font-weight: 700; }
.hero-sub { font-size: 14.5px; color: #5b6b62; max-width: 460px; margin: 0; line-height: 1.55; }
.hero-sub strong { color: #2e4437; font-weight: 700; }

.pillar { background: #fff; border: 1px solid rgba(0, 0, 0, .07); border-radius: 18px; padding: 30px 26px; }
.pillar-ico { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(140deg, #d9f2e4, #b9e3c6); display: grid; place-items: center; margin-bottom: 18px; }
.pillar h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.pillar p { font-size: 13.5px; color: #6f6f6a; line-height: 1.6; margin: 0; }

.feat-check { width: 20px; height: 20px; flex: none; border-radius: 50%; background: #d9f2e4; color: #1f8b5f; font-size: 11px; font-weight: 700; display: inline-grid; place-items: center; }
.feature-cta { display: inline-block; margin-top: 24px; font-size: 14px; font-weight: 700; color: #1f8b5f; transition: opacity .2s ease; }
.feature-cta .arrow { display: inline-block; transition: transform .3s cubic-bezier(.34, 1.56, .64, 1); }

.fcard { background: #fff; border: 1px solid rgba(0, 0, 0, .07); border-radius: 20px; padding: 24px; box-shadow: 0 34px 70px -34px rgba(20, 90, 55, .4); }
.fbars { display: flex; align-items: flex-end; gap: 10px; height: 160px; }
.fbar { flex: 1; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, #5cc492, #1f8b5f); }
.fbar.hot { background: linear-gradient(180deg, #8fe0b6, #12b866); }

.stat-num { font-size: 50px; font-weight: 800; letter-spacing: -2px; line-height: 1; background: linear-gradient(100deg, #1f8b5f, #5cc492); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat-label { font-size: 13px; color: #6f6f6a; margin-top: 6px; }
.audience { text-align: center; color: #8a8a86; font-size: 14px; line-height: 1.6; }
.audience b { color: #141414; font-weight: 600; }

@media (hover: hover) and (pointer: fine) {
  .pillar:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(0, 0, 0, .10) !important; border-color: rgba(0, 0, 0, .14) !important; }
  .feature-cta:hover .arrow { transform: translateX(5px); }
}

@media (max-width: 768px) {
  .hero-sub { font-size: 13px !important; text-align: center; }
  .stat-num { font-size: 40px !important; }
  .fbars { height: 120px !important; }
  .feature-visual { margin-top: 10px; }
}

/* ===========================================================================
   Page Recherche : filtres, tags, boxplot, cartes annonces, pagination
   =========================================================================== */
/* -- Filtres (aside) -- */
.filters-aside { font-size: 13px; }
.fsection { border-bottom: 1px solid rgba(0, 0, 0, .06); }
.fhead { width: 100%; display: flex; align-items: center; gap: 8px; padding: 13px 2px; background: none; border: none; cursor: pointer; font: inherit; font-weight: 600; color: #141414; text-align: left; transition: color .2s ease; }
.fsection.has-sel > .fhead { color: #1f8b5f; }
.fhead-static { padding: 13px 2px 8px; font-weight: 600; color: #141414; }
.fcount { margin-left: auto; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: #1f8b5f; color: #fff; font-size: 10.5px; font-weight: 700; display: inline-grid; place-items: center; }
.fcount:empty { display: none; }
.fchev { transition: transform .25s ease; }
.fsection.open .fchev { transform: rotate(180deg); }
.fbody { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s cubic-bezier(.4, 0, .2, 1); }
.fsection.open .fbody { grid-template-rows: 1fr; }
.fbody-in { overflow: hidden; padding: 2px 2px 14px; }
.fopts { display: flex; flex-direction: column; gap: 4px; max-height: 240px; overflow-y: auto; }
.fopt { display: flex; align-items: center; gap: 9px; padding: 5px 6px; border-radius: 8px; cursor: pointer; color: #3f4a44; }
.fopt input { accent-color: #1f8b5f; width: 15px; height: 15px; }
.fgroup { margin-bottom: 8px; }
.fgroup-h { font-size: 10.5px; letter-spacing: .8px; text-transform: uppercase; color: #9a9a95; font-weight: 700; margin: 6px 0 3px; }
.fhint { font-size: 11.5px; color: #9a9a95; margin-bottom: 8px; }
.fsearch, .ftext { width: 100%; border: 1px solid rgba(0, 0, 0, .12); border-radius: 9px; padding: 8px 11px; font-size: 12.5px; margin-bottom: 8px; box-sizing: border-box; transition: border-color .2s ease, box-shadow .2s ease; }
.ftext:focus, .fsearch:focus, .frange input:focus { outline: none; border-color: #1f8b5f; box-shadow: 0 0 0 3px rgba(31, 139, 95, .12); }
.frange { display: flex; align-items: center; gap: 6px; }
.frange input { width: 100%; min-width: 0; border: 1px solid rgba(0, 0, 0, .12); border-radius: 9px; padding: 8px 8px; font-size: 12.5px; box-sizing: border-box; }
.frange .funit { color: #9a9a95; font-size: 11px; }
.fradios { display: flex; border: 1px solid rgba(0, 0, 0, .12); border-radius: 10px; overflow: hidden; }
.fradio { flex: 1; display: flex; align-items: center; justify-content: center; padding: 9px 6px; cursor: pointer; font-size: 12px; color: #3f4a44; border-right: 1px solid rgba(0, 0, 0, .08); transition: background .2s ease, color .2s ease; position: relative; }
.fradio:last-child { border-right: none; }
.fradio input { position: absolute; opacity: 0; pointer-events: none; }
.fradio:has(input:checked) { background: #1f8b5f; color: #fff; font-weight: 600; }
.ftoggle { display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; }
.switch { position: relative; width: 42px; height: 24px; flex: none; }
.switch input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; z-index: 2; }
.sw-track { position: absolute; inset: 0; background: #d7dcd8; border-radius: 999px; transition: background .25s ease; }
.sw-track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .25); transition: transform .25s cubic-bezier(.34, 1.56, .64, 1); }
.switch input:checked + .sw-track { background: #1f8b5f; }
.switch input:checked + .sw-track::after { transform: translateX(18px); }

/* -- Tags de critères actifs -- */
.tags-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tags-empty { font-size: 12.5px; color: #9a9a95; }
.tag { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(0, 0, 0, .1); background: #fff; font-size: 12px; color: #141414; cursor: pointer; font-family: inherit; }
.tag .tag-x { color: #9a9a95; font-size: 10px; }
.tag-clear { background: #141414; color: #fff; border-color: #141414; font-weight: 600; }

/* -- Cartes annonces -- */
.listing { display: grid; grid-template-columns: 190px 1fr; gap: 20px; background: #fff; border: 1px solid rgba(0, 0, 0, .07); border-radius: 16px; padding: 16px; margin-bottom: 16px; cursor: pointer; animation: listIn .4s cubic-bezier(.22, 1, .36, 1) both; animation-delay: calc(var(--i, 0) * .04s); }
@keyframes listIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.dist-pt { transform-box: fill-box; transform-origin: center; }
@keyframes ptPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }
@media (prefers-reduced-motion: no-preference) { .dist-pt { animation: ptPulse 1.9s ease-in-out infinite; } }
@media (prefers-reduced-motion: reduce) { .listing { animation: none !important; } }
.listing-photo { position: relative; border-radius: 12px; overflow: hidden; min-height: 132px; }
.deal-flag { position: absolute; top: 10px; left: 10px; background: #12b866; color: #fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.listing-body { display: flex; flex-direction: column; min-width: 0; }
.listing-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.listing-title { font-size: 16px; font-weight: 700; margin: 0; }
.listing-sub { font-size: 11.5px; color: #8f8f8a; margin-top: 3px; }
.listing-price { font-size: 18px; font-weight: 800; white-space: nowrap; }
.listing-desc { font-size: 12.5px; color: #6f6f6a; margin: 8px 0 10px; }
.listing-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; color: #5b6b62; margin-top: auto; }
.listing-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(0, 0, 0, .06); flex-wrap: wrap; }
.src-badges { display: flex; gap: 6px; }
.src-chip { font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.voir-wrap { display: flex; gap: 8px; }
.voir { padding: 9px 16px; border-radius: 999px; color: #fff; font-size: 12px; font-weight: 700; white-space: nowrap; }

/* -- Pagination -- */
.pg { min-width: 34px; height: 34px; padding: 0 10px; border-radius: 9px; border: 1px solid rgba(0, 0, 0, .12); background: #fff; font-size: 12.5px; cursor: pointer; font-family: inherit; color: #141414; }
.pg.on { background: #1f8b5f; color: #fff; border-color: #1f8b5f; font-weight: 700; }
.pg[disabled] { opacity: .4; cursor: default; }

@media (hover: hover) and (pointer: fine) {
  .fopt:hover { background: #f2f8f4; }
  .fhead:hover { color: #1f8b5f; }
  .tag:hover .tag-x { color: #141414; }
  .listing:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0, 0, 0, .08) !important; border-color: rgba(0, 0, 0, .12) !important; }
  .voir:hover { filter: brightness(1.08); }
  .pg:not([disabled]):not(.on):hover { border-color: #1f8b5f; color: #1f8b5f; }
}

@media (max-width: 768px) {
  .listing { grid-template-columns: 1fr; gap: 12px; }
  .listing-photo { min-height: 160px; }
}

/* ===========================================================================
   Module Estimer (assistant 5 étapes)
   =========================================================================== */
.stepper { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 26px; flex-wrap: wrap; }
.step-dot { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sd-num { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 12.5px; font-weight: 700; background: #ececec; color: #9a9a95; transition: all .3s ease; }
.sd-lab { font-size: 10.5px; color: #9a9a95; letter-spacing: .3px; }
.step-dot.active .sd-num { background: #1f8b5f; color: #fff; box-shadow: 0 6px 16px rgba(31, 139, 95, .35); }
.step-dot.active .sd-lab { color: #1f8b5f; font-weight: 700; }
.step-dot.done .sd-num { background: #b9e3c6; color: #1f7a52; }
.step-line { width: 46px; height: 2px; background: #ececec; margin: 0 2px 20px; }
.step-line.done { background: #b9e3c6; }

.est-card { background: #fff; border: 1px solid rgba(0, 0, 0, .07); border-radius: 20px; padding: 30px 30px 24px; box-shadow: 0 30px 70px -40px rgba(20, 90, 55, .3); }
.est-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.est-field { display: flex; flex-direction: column; gap: 6px; }
.est-label { font-size: 12px; font-weight: 600; color: #3f4a44; }
.est-input { border: 1px solid rgba(0, 0, 0, .12); border-radius: 10px; padding: 10px 12px; font-size: 13.5px; background: #fff; font-family: inherit; box-sizing: border-box; width: 100%; }
.est-input:focus { border-color: #1f8b5f; box-shadow: 0 0 0 3px rgba(31, 139, 95, .12); }
.est-hint { font-size: 11px; color: #9a9a95; }
.seg { display: inline-flex; border: 1px solid rgba(0, 0, 0, .12); border-radius: 10px; overflow: hidden; flex-wrap: wrap; }
.seg button { border: none; background: #fff; padding: 9px 14px; font-size: 12.5px; cursor: pointer; font-family: inherit; color: #3f4a44; border-right: 1px solid rgba(0, 0, 0, .08); }
.seg button:last-child { border-right: none; }
.seg button.on { background: #1f8b5f; color: #fff; font-weight: 600; }

.est-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(0, 0, 0, .06); }
.est-btn { padding: 13px 26px; border-radius: 999px; border: none; font-size: 13.5px; font-weight: 700; cursor: pointer; font-family: inherit; color: #141414; }
.est-btn.ghost { background: #fff; border: 1px solid rgba(0, 0, 0, .15); }
.est-btn.disabled { opacity: .4; cursor: not-allowed; }

.est-loading { text-align: center; padding: 50px 0; color: #6f6f6a; font-size: 14px; }
.spinner { width: 40px; height: 40px; margin: 0 auto 16px; border: 3px solid #e2f4ec; border-top-color: #1f8b5f; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Résultat */
.result-head { text-align: center; margin-bottom: 24px; }
.result-check { width: 48px; height: 48px; border-radius: 50%; background: #12b866; color: #fff; font-size: 24px; display: grid; place-items: center; margin: 0 auto 14px; }
.result-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pcard { border: 1px solid rgba(0, 0, 0, .08); border-radius: 16px; padding: 22px; text-align: center; }
.pcard-h { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.pcard-logo { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; font-size: 13px; font-weight: 800; }
.price-big { font-size: 40px; font-weight: 800; letter-spacing: -1.5px; background: linear-gradient(100deg, #1f8b5f, #5cc492); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.price-sub { font-size: 12px; color: #9a9a95; margin-top: 4px; }
.price-msg { font-size: 13px; color: #5b6b62; line-height: 1.6; }
.recap { margin-top: 22px; background: #f6f8f6; border-radius: 14px; padding: 20px; }
.recap-h { font-size: 11px; letter-spacing: 1.2px; font-weight: 700; color: #8a8a86; margin-bottom: 14px; }
.recap-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.recap-grid > div { display: flex; flex-direction: column; gap: 2px; }
.recap-grid span { font-size: 11px; color: #9a9a95; }
.recap-grid strong { font-size: 13px; color: #141414; }
.recap-note { font-size: 11px; color: #b3b3ae; margin-top: 14px; text-align: center; }

@media (hover: hover) and (pointer: fine) {
  .seg button:not(.on):hover { background: #f2f8f4; }
  .est-btn.ghost:hover { background: #f2f0ed; }
}
@media (max-width: 768px) {
  .est-grid { grid-template-columns: 1fr; }
  .result-cards { grid-template-columns: 1fr; }
  .recap-grid { grid-template-columns: 1fr 1fr; }
  .sd-lab { display: none; }
  .step-line { width: 24px; }
  .est-card { padding: 22px 18px; }
}

/* Animations continues du hero (désactivées si mouvement réduit) */
@keyframes heroHalo { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 50% { transform: translate(-50%, -50%) scale(1.06); opacity: .85; } }
@keyframes scrollBob { 0%, 100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(4px); opacity: 1; } }
@media (prefers-reduced-motion: no-preference) {
  .hero-halo { animation: heroHalo 7s ease-in-out infinite; }
  .scroll-hint svg { animation: scrollBob 1.6s ease-in-out infinite; }
}

/* ===========================================================================
   Responsive — tablette & mobile
   Les surcharges utilisent !important car la maquette d'origine porte tout
   en styles inline (plus prioritaires que les sélecteurs CSS classiques).
   =========================================================================== */

/* Catégories : 4 → 2 colonnes sur tablette */
@media (max-width: 900px) {
  .g4 { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 768px) {
  /* Marges horizontales réduites partout */
  .site > header,
  .site > section,
  .site > main,
  .site > footer {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  /* En-tête mobile : marque à gauche, burger à droite, nav en panneau déroulant */
  .hdr {
    display: flex !important; justify-content: space-between; align-items: center;
    padding-top: 14px !important; padding-bottom: 14px !important; gap: 12px;
  }
  .hdr .brand { order: -1; text-align: left !important; font-size: 13px !important; letter-spacing: 2px !important; }
  .hdr > div:not(.brand) { display: none; }      /* div de calage inutile en mobile */
  .nav-toggle { display: flex !important; }
  .hdr nav {
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0 !important;
    padding: 6px 18px 14px;
    background: rgba(255, 255, 255, .97);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 26px 40px -26px rgba(0, 0, 0, .3);
    opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
  }
  .hdr.nav-open nav { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .hdr nav a { font-size: 15px !important; padding: 14px 2px; border-bottom: 1px solid rgba(0, 0, 0, .05); }
  .hdr nav a:last-child { border-bottom: none; }
  .hdr nav a::after { display: none !important; }   /* pas de soulignement dans le panneau */
  .hdr nav a:hover { color: #1f8b5f !important; }    /* survol vert, pas noir */
  .hdr.nav-open nav a { animation: navLinkIn .32s ease both; }
  .hdr.nav-open nav a:nth-child(1) { animation-delay: .04s; }
  .hdr.nav-open nav a:nth-child(2) { animation-delay: .10s; }
  .hdr.nav-open nav a:nth-child(3) { animation-delay: .16s; }
  .hdr.nav-open nav a:nth-child(4) { animation-delay: .22s; }

  /* Hero (plein écran centré, pas de pin sur mobile) */
  .hero { min-height: 100svh !important; padding: 0 18px !important; }
  .hero h1 { font-size: 40px !important; letter-spacing: -1.5px !important; }
  .scroll-hint { display: none !important; }
  /* Recherche hero : icône + champ sur une ligne, bouton pleine largeur dessous */
  .hsearch { flex-wrap: wrap !important; row-gap: 10px !important; border-radius: 22px !important; padding: 8px 10px 8px 16px !important; }
  .hsearch input { flex: 1 1 auto !important; min-width: 0 !important; width: auto !important; padding: 8px 4px !important; }
  .hsearch button { flex: 1 1 100% !important; width: 100% !important; padding: 14px !important; }

  /* Grilles → 1 colonne */
  .g4, .g3, .g2, .mgrid, .drow, .drow2, .resgrid { grid-template-columns: 1fr !important; }
  .g2 { gap: 24px !important; }

  /* Marketplace : filtres empilés au-dessus des résultats */
  .mgrid { gap: 24px !important; }
  .mgrid aside { position: static !important; max-height: none !important; overflow: visible !important; }

  /* Footer empilé */
  .site > footer { flex-direction: column !important; align-items: flex-start !important; gap: 18px !important; text-align: left; }
  .site > footer nav { flex-wrap: wrap; gap: 14px 20px !important; }
}

/* Très petits écrans */
@media (max-width: 480px) {
  .hero h1 { font-size: 32px !important; }
  .hdr .brand { font-size: 12px !important; }
}

/* ===========================================================================
   Micro-interactions au survol — souris uniquement.
   Tout est sous @media (hover: hover) : rien ne s'active au tactile,
   le mobile reste donc totalement fluide.
   =========================================================================== */
@media (hover: hover) and (pointer: fine) {

  /* Liens de navigation : soulignement qui se déploie de gauche à droite */
  .hdr nav a { position: relative; }
  .hdr nav a::after {
    content: ""; position: absolute; left: 0; bottom: -5px;
    width: 100%; height: 2px; background: currentColor;
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
  }
  .hdr nav a:hover::after { transform: scaleX(1); }

  /* Logo : les lettres s'espacent doucement */
  .brand { transition: letter-spacing .4s cubic-bezier(.22, 1, .36, 1); }
  .brand:hover { letter-spacing: 7px; }

  /* Boutons ronds du header : rebond + remplissage noir */
  .hdr button {
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1),
                background .25s ease, border-color .25s ease;
  }
  .hdr button:not(.nav-toggle):hover {
    transform: translateY(-2px) scale(1.08);
    background: #141414 !important; border-color: #141414 !important;
  }
  .hdr button:not(.nav-toggle):hover svg { stroke: #fff; }
  /* Burger : survol discret (pas de remplissage noir) */
  .nav-toggle:hover { background: rgba(20, 20, 20, .06); }

  /* Liens du pied de page */
  footer nav a { display: inline-block; transition: transform .22s ease, color .22s ease; }
  footer nav a:hover { transform: translateY(-2px); color: #141414 !important; }

  /* Boutons d'action (CTA) : lévitation + effet de pression au clic */
  button[data-hover] {
    transition: transform .2s cubic-bezier(.34, 1.56, .64, 1),
                box-shadow .2s ease, background .2s ease, filter .2s ease !important;
  }
  button[data-hover]:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0, 0, 0, .18); }
  button[data-hover]:active { transform: translateY(0) scale(.96); }

  /* Home — cartes catégories : zoom de l'image + pastille ↗ qui pivote */
  .g4 a .img-slot, .g3 a .img-slot { transition: transform .5s cubic-bezier(.22, 1, .36, 1); }
  .g4 a:hover .img-slot, .g3 a:hover .img-slot { transform: scale(1.07); }
  .g4 a > div:last-child {
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), background .25s ease, color .25s ease;
  }
  .g4 a:hover > div:last-child { transform: rotate(45deg) scale(1.12); background: #141414 !important; color: #fff; }

  /* Home — cartes "promesses" : lévitation */
  .g3 > div:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .12) !important;
    border-color: rgba(0, 0, 0, .14) !important;
  }

  /* Home — chips de recherche rapide */
  .hero-chips a:hover { transform: translateY(-3px) scale(1.05); border-color: rgba(0, 0, 0, .2); }

  /* Marketplace — boutons de carburant */
  #fuel-list button {
    transition: transform .2s cubic-bezier(.34, 1.56, .64, 1),
                background .2s ease, color .2s ease, border-color .2s ease !important;
  }
  #fuel-list button:hover { transform: translateY(-2px); }

  /* Marketplace — lignes de marque : glissement + case qui s'assombrit */
  #brand-list [data-brand] { transition: transform .2s ease, color .2s ease; }
  #brand-list [data-brand]:hover { transform: translateX(3px); }
  #brand-list [data-brand]:hover > div { border-color: #141414 !important; }

  /* Dashboard — cartes : lévitation */
  .drow > div:hover, #fuel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .12) !important;
    border-color: rgba(0, 0, 0, .14) !important;
  }

}

/* ===========================================================================
   Couleur & animations supplémentaires
   =========================================================================== */

/* Chiffre clé en dégradé bleu → vert */
.grad-text {
  background: linear-gradient(100deg, #1f8b5f, #5cc492);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Boutons accent : dégradé vert/menthe (animé sur bureau) */
.accent-grad {
  background: linear-gradient(120deg, #b9e3c6, #9fe0d4, #cfe8bf, #b9e3c6) !important;
  background-size: 220% 100% !important;
}
@keyframes accentShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Halo pulsé sur le point mis en avant du nuage de points */
@keyframes chartPulse {
  0% { transform: scale(.6); opacity: .75; }
  70% { opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
.pulse-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: chartPulse 1.9s ease-out infinite;
}

/* Effets couleur réservés au bureau (souris) */
@media (hover: hover) and (pointer: fine) {
  .accent-grad { animation: accentShift 5s ease-in-out infinite; }
  #chart-dist rect:hover,
  #chart-scatter circle:hover,
  #chart-year circle:hover { filter: brightness(1.2) saturate(1.15); cursor: pointer; }
}

/* Pas d'animation continue si l'utilisateur préfère moins de mouvement */
@media (prefers-reduced-motion: reduce) {
  .pulse-ring, .accent-grad { animation: none !important; }
}

/* ===========================================================================
   Recherche — widgets & cartes façon maquette (données B2B)
   =========================================================================== */
/* Chips (carburant, catégories, régions, vendeur) */
.mchip { padding: 8px 13px; border-radius: 9px; font-size: 12.5px; cursor: pointer; border: 1px solid rgba(0, 0, 0, .12); background: #fff; color: #141414; font-family: inherit; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease; }
.mchip.on { background: #1f8b5f; color: #fff; border-color: #1f8b5f; }

/* Lignes marques / modèles (case + libellé) */
.brow { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 13.5px; color: #141414; }
.btick { width: 18px; height: 18px; flex: none; border-radius: 5px; display: grid; place-items: center; font-size: 11px; color: #fff; border: 1px solid rgba(0, 0, 0, .2); background: #fff; transition: background .2s ease, border-color .2s ease; }
.brow.on .btick { background: #1f8b5f; border-color: #1f8b5f; }

/* Fourchettes numériques */
.numbox { display: flex; align-items: center; gap: 4px; background: #fff; border: 1px solid rgba(0, 0, 0, .08); border-radius: 9px; padding: 8px 10px; flex: 1; min-width: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.numbox:focus-within { border-color: #1f8b5f; box-shadow: 0 0 0 3px rgba(31, 139, 95, .12); }
.numbox input { border: none; width: 100%; font-size: 12.5px; background: transparent; font-family: inherit; }
.numbox input:focus { outline: none; }
.numbox span { color: #9a9a95; font-size: 12px; }

/* Histogramme + double slider de prix */
.pbars { display: flex; align-items: flex-end; gap: 3px; height: 44px; margin-bottom: 12px; }
.prng { position: relative; height: 18px; }
.prng-track { position: absolute; top: 8px; left: 0; right: 0; height: 2px; background: #e2dfd9; border-radius: 1px; }
.prng-fill { position: absolute; top: 8px; height: 2px; background: #1f8b5f; }

/* Menu de tri */
.sortmenu { position: absolute; top: calc(100% + 8px); right: 0; z-index: 50; background: #fff; border: 1px solid rgba(0, 0, 0, .08); border-radius: 14px; padding: 6px; min-width: 200px; box-shadow: 0 18px 44px rgba(0, 0, 0, .14); animation: menuIn .22s cubic-bezier(.2, .9, .3, 1.1); }
.sortopt { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 9px 12px; border-radius: 9px; font-size: 12.5px; cursor: pointer; transition: background .15s ease; }
.sortopt:hover { background: #f2f8f4; }
.sortopt span { font-size: 11px; color: #1f8b5f; }

/* Badges */
.deal-chip { background: #12b866; color: #fff; font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }

/* Grilles de résultats */
.grid-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.list-wrap { display: flex; flex-direction: column; gap: 16px; }

/* Carte grille (façon maquette) */
.gcard { position: relative; height: 380px; border: 1px solid rgba(0, 0, 0, .05); border-radius: 18px; overflow: hidden; background: #f9f8f6; cursor: pointer; transition: box-shadow .3s ease, transform .3s ease; animation: cardFade .4s ease both; animation-delay: calc(var(--i, 0) * .04s); }
@keyframes cardFade { from { opacity: 0; } to { opacity: 1; } }
.gcard-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #b9e3c6 0%, #f4f2ee 88%); opacity: 0; transition: opacity .3s ease; }
.gcard:hover .gcard-bg { opacity: 1; }
.gcard-ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(20, 20, 20, .09); }
.gcard-wm {
  position: absolute; left: 0; right: 0; bottom: 12%; text-align: center;
  font-weight: 800; font-size: 128px; letter-spacing: 4px; line-height: 1;
  color: rgba(255, 255, 255, .5); pointer-events: none; white-space: nowrap; overflow: hidden;
  opacity: 0; transition: opacity .35s ease;
}
.gcard:hover .gcard-wm { opacity: 1; }
.gcard-top { position: absolute; top: 0; left: 0; right: 0; display: flex; justify-content: space-between; align-items: flex-start; padding: 20px 22px; }
.gcard-name { font-size: 16.5px; font-weight: 700; }
.gcard-sub { font-size: 11.5px; color: #8f8f8a; margin-top: 3px; }
.gcard-price { font-size: 15.5px; font-weight: 700; }
.gcard-arrow { pointer-events: auto; width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .1); background: rgba(255, 255, 255, .85); cursor: pointer; font-size: 14px; transition: background .2s ease, color .2s ease; }
.gcard:hover .gcard-arrow { background: #141414; color: #fff; }
.gcard-stats { position: absolute; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; pointer-events: none; }
.gcard-stats > div { padding: 16px 8px 20px; text-align: center; }
.gs-v { font-size: 13.5px; font-weight: 700; }
.gs-l { font-size: 10px; color: #9a9a95; margin-top: 2px; }

/* Carte liste (façon maquette) */
.lcard { display: grid; grid-template-columns: 210px 1fr auto auto; align-items: center; gap: 24px; background: #f9f8f6; border: 1px solid rgba(0, 0, 0, .05); border-radius: 16px; padding: 16px 22px; cursor: pointer; transition: box-shadow .25s ease, transform .25s ease; animation: cardFade .4s ease both; animation-delay: calc(var(--i, 0) * .04s); }
.lcard-ph { position: relative; width: 210px; height: 120px; border-radius: 8px; background: #e8e9ec; display: grid; place-items: center; color: #a8adb4; font-size: 12px; }
.lcard-mid { min-width: 0; }
.lcard-desc { font-size: 12px; color: #6f6f6a; margin: 6px 0 8px; }
.lcard-src { display: flex; gap: 6px; }
.lcard-stats { display: flex; gap: 22px; text-align: center; }
.lcard-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }

@media (hover: hover) and (pointer: fine) {
  .mchip:hover { border-color: #141414; transform: translateY(-1px); }
  .brow:hover .btick { border-color: #141414; }
  .gcard:hover { transform: rotate(-1.4deg) scale(1.02); box-shadow: 0 22px 45px rgba(0, 0, 0, .16); z-index: 5; }
  .lcard:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .08); }
}
@media (max-width: 900px) {
  .grid-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .lcard { grid-template-columns: 1fr; gap: 14px; }
  .lcard-ph { width: 100%; height: 170px; }
  .lcard-stats { justify-content: flex-start; }
  .lcard-right { align-items: flex-start; }
}

/* Sections de filtres repliables (recherche) */
.fsec-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 0 0 12px; background: none; border: none; cursor: pointer; font: inherit; font-size: 10.5px; letter-spacing: 1.2px; color: #9a9a95; font-weight: 600; text-transform: uppercase; text-align: left; transition: color .2s ease; }
.fsec-chev { flex: none; transition: transform .28s ease; }
.fsec.open .fsec-chev { transform: rotate(180deg); }
.fsec-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s cubic-bezier(.4, 0, .2, 1); }
.fsec.open .fsec-body { grid-template-rows: 1fr; }
.fsec-in { overflow: hidden; padding: 6px 3px 8px; }
@media (hover: hover) and (pointer: fine) {
  .fsec-head:hover { color: #1f8b5f; }
}

/* ===========================================================================
   Annonces : couleurs alignées sur la maquette CARZONE
   (états actifs en NOIR, accent menthe réservé aux cartes)
   =========================================================================== */
.mchip.on { background: #141414; border-color: #141414; }
.brow.on .btick { background: #141414; border-color: #141414; }
.prng-fill { background: #141414; }
.rng::-webkit-slider-thumb { background: #141414; }
.rng::-moz-range-thumb { background: #141414; }
.numbox:focus-within { border-color: #141414; box-shadow: 0 0 0 3px rgba(0, 0, 0, .07); }
.ftext:focus, .fsearch:focus, .frange input:focus { border-color: #141414; box-shadow: 0 0 0 3px rgba(0, 0, 0, .07); }
.seg[data-gearseg] button.on { background: #141414; }
.switch input:checked + .sw-track { background: #141414; }
.sortopt:hover { background: #f2f0ed; }
.sortopt span { color: #141414; }
.fsec-head:hover { color: #141414; }
@media (hover: hover) and (pointer: fine) {
  .mchip:hover { border-color: #141414; }
}
