/* =============================================================================
 * README — Widget Contact : styles scopés .sol-cw (full-screen, mobile-first, identité Solimut).
 *
 * Palette : vert #09953F (accents/CTA/sélection), navy #002E5E (titres/boutons),
 *           gris #E6EAEF (bordures/fonds), texte #7A7A7A.
 * Structure :
 *   .sol-cw           → overlay fixe plein écran (z-index 100 000)
 *   .sol-cw__overlay  → fond semi-transparent flou
 *   .sol-cw__panel    → panneau blanc (100 % mobile, ~640px centré desktop)
 *   .sol-cw__head     → header sticky (retour + progress + fermer)
 *   .sol-cw__body     → zone scrollable (écrans injectés par JS)
 *   .sol-cw__grid     → grille profils 2 col (1 col < 380 px)
 *   .sol-cw__card     → carte profil (hover/focus/sélection .is-sel)
 *   .sol-cw-fab       → pastille flottante bas-droite
 *
 * Classes du design system réutilisées (définies dans solimut-ui.css) :
 *   .sol-ui .sol-fp .sol-input .sol-select .sol-btn .sol-field
 *   .sol-label .sol-consent .sol-info — NE PAS redéfinir ici.
 * ========================================================================== */

/* ── Masquage natif ─────────────────────────────────────────────────────── */
.sol-cw[hidden] { display: none; }

/* ── Overlay full-screen ────────────────────────────────────────────────── */
.sol-cw {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.sol-cw__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 46, 94, .55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
  transition: opacity .2s ease;
}

/* ── Panel ──────────────────────────────────────────────────────────────── */
.sol-cw__panel {
  position: relative;
  width: 100%;
  max-width: none;        /* FULL-SCREEN sur tous les écrans (desktop inclus) */
  /* Image de fond de la page contact (double dégradé), plein cadre H+V. URL site-relative → portable dev/prod. */
  background: #fff url("/wp-content/uploads/2023/03/Double_degrade.svg") center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
}

/* ── Header sticky ──────────────────────────────────────────────────────── */
.sol-cw__head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  /* safe-area haut (encoche iOS) */
  padding-top: max(14px, env(safe-area-inset-top));
  background: #fff;
  border-bottom: 1px solid #E6EAEF;
  z-index: 2;
  flex-shrink: 0;
}

/* ── Barre de progression ───────────────────────────────────────────────── */
.sol-cw__progress {
  flex: 1;
  display: flex;
  gap: 6px;
}

.sol-cw__progress span {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #E6EAEF;
  transition: background .25s ease;
}

.sol-cw__progress span.is-done {
  background: #09953F;
}

/* ── Boutons de navigation (retour / fermer) ────────────────────────────── */
.sol-cw .sol-cw__back,
.sol-cw .sol-cw__close,
button.sol-cw__back,
button.sol-cw__close {
  /* tap-target ≥ 44 px */
  min-width: 44px;
  min-height: 44px;
  border: 0 !important;
  background: transparent !important;   /* bat les styles boutons du thème (vert) */
  font-size: 20px;
  line-height: 1;
  color: #002E5E !important;
  cursor: pointer;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
  flex-shrink: 0;
}

.sol-cw .sol-cw__back:hover,
.sol-cw .sol-cw__close:hover,
.sol-cw .sol-cw__back:focus-visible,
.sol-cw .sol-cw__close:focus-visible {
  background: #E6EAEF !important;
  outline: none;
}

.sol-cw__back:focus-visible,
.sol-cw__close:focus-visible {
  outline: 2px solid #09953F;
  outline-offset: 2px;
}

/* ── Corps scrollable ───────────────────────────────────────────────────── */
.sol-cw__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* contenu pleine largeur avec 8% de padding latéral (demande user) */
  padding: 28px 8%;
  /* safe-area bas (barre iOS home indicator) */
  padding-bottom: max(28px, env(safe-area-inset-bottom));
}
@media (max-width: 600px) { .sol-cw__body { padding: 22px 6%; } }
/* Animation « tourne-page » : avancer = entre par la droite ; revenir = entre par la gauche */
@keyframes sol-cw-turn-fwd { from { opacity: 0; transform: translateX(45px); } to { opacity: 1; transform: translateX(0); } }
@keyframes sol-cw-turn-back { from { opacity: 0; transform: translateX(-45px); } to { opacity: 1; transform: translateX(0); } }
.sol-cw__body.sol-cw--turn-fwd { animation: sol-cw-turn-fwd .3s cubic-bezier(.22, .61, .36, 1); }
.sol-cw__body.sol-cw--turn-back { animation: sol-cw-turn-back .3s cubic-bezier(.22, .61, .36, 1); }
@media (prefers-reduced-motion: reduce) { .sol-cw__body.sol-cw--turn-fwd, .sol-cw__body.sol-cw--turn-back { animation: none; } }

/* ── Typographie interne (scopée .sol-cw) ───────────────────────────────── */
.sol-cw h2 {
  color: #002E5E;
  font-size: 40px;          /* titre d'écran bien plus gros (≈ titre de page) */
  font-family: 'Neo', Arial, sans-serif;
  font-weight: 700;
  margin: 30px 0 34px;     /* +30px au-dessus du titre de section */
  line-height: 1.15;
}
@media (max-width: 600px) {
  .sol-cw h2 { font-size: 28px; margin: 0 0 24px; }
}

/* Resserre l'espacement vertical des champs dans la modale (CTA accessible sans scroll) */
.sol-cw .sol-fp .sol-field { margin-bottom: 14px !important; }
.sol-cw .sol-form { gap: 12px !important; }
/* textes juridiques (mentions RGPD) */
.sol-cw__legal { color: #7A7A7A; font-family: Arial, sans-serif; font-size: 12.5px; line-height: 1.5; margin: 4px 0 0; }
.sol-cw__legal b { color: #002E5E; }
.sol-cw__consent-intro { color: #002E5E; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.5; margin: 8px 0 4px; }
.sol-cw__form-error { color: #E0301E; font-family: Arial, sans-serif; font-size: 14px; font-weight: 700; margin: 12px 0 0; }

/* Texte saisi dans les champs = design étudiant : bleu navy + gras (placeholder léger normal).
   -webkit-text-fill-color : sinon certains navigateurs (et surtout l'autocomplétion) rendent le texte en noir. */
.sol-cw .sol-input, .sol-cw .sol-select, .sol-cw textarea.sol-input {
  color: #002E5E !important;
  -webkit-text-fill-color: #002E5E !important;
  font-weight: 700 !important;
}
.sol-cw .sol-input::placeholder, .sol-cw textarea.sol-input::placeholder {
  color: #9aa4b2 !important;
  -webkit-text-fill-color: #9aa4b2 !important;
  font-weight: 400 !important;
}
/* autocomplétion navigateur : garder le texte navy (sinon noir) */
.sol-cw .sol-input:-webkit-autofill, .sol-cw .sol-select:-webkit-autofill, .sol-cw textarea.sol-input:-webkit-autofill {
  -webkit-text-fill-color: #002E5E !important;
}

.sol-cw p {
  color: #7A7A7A;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
}

/* ── Grille de profils ──────────────────────────────────────────────────── */
.sol-cw__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;   /* ×2 entre les 2 cartes d'une rangée */
  row-gap: 36px;      /* ×3 entre les rangées */
}
.sol-cw__grid > * { min-width: 0; }   /* autorise les colonnes à rétrécir (anti-débordement) */

/* Mobile : cartes profil / adhérent EMPILÉES (1 colonne), compactes */
@media (max-width: 600px) {
  .sol-cw__grid { grid-template-columns: 1fr; row-gap: 12px; }
  .sol-cw .sol-cw__card, button.sol-cw__card {
    min-width: 0 !important;
    min-height: 56px !important;
    padding: 16px 16px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    overflow-wrap: break-word; word-break: break-word;
  }
  .sol-cw h2 { margin-top: 16px !important; }
}

/* ── Cartes profil ──────────────────────────────────────────────────────── */
/* Spécificité renforcée + !important sur fond/couleur/bordure pour battre les
   styles button/* du thème Elementor qui écrasaient l'état neutre. */
.sol-cw .sol-cw__card,
button.sol-cw__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 18px;
  border: 2px solid #E6EAEF !important;
  border-radius: 14px;
  background: #fff !important;
  cursor: pointer;
  text-align: center;
  color: #002E5E !important;
  font-family: 'Neo', Arial, sans-serif;
  font-weight: 700;
  font-size: 23px;          /* libellé de carte beaucoup plus gros */
  line-height: 1.25;
  min-height: 132px;
  /* tap-target ≥ 44 px garanti par min-height */
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease, transform .15s ease;
  /* Semantics : rendre cliquable au clavier */
  outline: none;
}

.sol-cw .sol-cw__card:hover,
button.sol-cw__card:hover {
  border-color: #09953F !important;
  transform: translateY(-6px);                       /* même effet que les cartes méthode */
  box-shadow: 0 22px 50px rgba(0, 46, 94, .16);
}

.sol-cw .sol-cw__card:focus-visible,
button.sol-cw__card:focus-visible {
  border-color: #09953F !important;
  outline: 2px solid #09953F;
  outline-offset: 2px;
}

.sol-cw .sol-cw__card.is-sel,
button.sol-cw__card.is-sel {
  border-color: #09953F !important;
  background: rgba(9, 149, 63, .06) !important;
  box-shadow: 0 4px 14px rgba(9, 149, 63, .20);
}

/* Icône dans la carte (emoji ou svg inline) */
.sol-cw__card__ico {
  font-size: 26px;
  line-height: 1;
  display: block;
}

/* Réduire le scale au clic (feedback tactile) */
.sol-cw .sol-cw__card:active,
button.sol-cw__card:active {
  transform: scale(.97);
}

/* ── Écran canal : cartes-méthode (icône + titre + description + CTA) ────── */
.sol-cw__methods { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }   /* ×2 entre les cartes */
@media (max-width: 720px) { .sol-cw__methods { grid-template-columns: 1fr; gap: 22px; } }
.sol-cw__method {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "ico title" "ico desc" "ico cta";
  column-gap: 20px; row-gap: 6px; align-items: start; align-content: start;
  background: #fff; border: 1px solid #E6EAEF; border-radius: 16px;
  padding: 24px 26px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sol-cw__method-ico { grid-area: ico; }
.sol-cw__method-title { grid-area: title; }
.sol-cw__method-desc { grid-area: desc; }
.sol-cw__method-cta { grid-area: cta; margin-top: 10px; }
/* rollover : reprise de l'effet des cards shortcode (.sol-fp__card) — légère ombre + lift */
.sol-cw__method:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0, 46, 94, .16); }
@media (prefers-reduced-motion: reduce) { .sol-cw__method, .sol-cw__method:hover { transition: none; transform: none; } }
.sol-cw__method-ico {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(9,149,63,.10); color: #09953F;
}
.sol-cw__method-ico svg { width: 28px; height: 28px; display: block; }
.sol-cw__method-title { color: #002E5E; font-family: 'Neo', Arial, sans-serif; font-weight: 700; font-size: 22px; margin: 0; align-self: center; }
.sol-cw__method-desc { color: #7A7A7A; font-family: Arial, sans-serif; font-size: 15px; line-height: 1.55; margin: 0; }
.sol-cw__method .sol-btn { width: auto !important; display: inline-block; margin: 0; }
.sol-cw__method-tel { font-size: 18px; }
.sol-cw__method-note { display: block; margin-top: 8px; color: #7A7A7A; font-size: 13px; }
/* mention « Retrouvez … sur votre carte mutualiste » : bleu Solimut gras, aligné sur titre/texte (col. 2) */
.sol-cw__mutu { grid-column: 2; color: #002E5E !important; font-family: 'Neo', Arial, sans-serif !important; font-size: 14px !important; font-weight: 700 !important; line-height: 24px !important; text-transform: uppercase !important; margin: 22px 0 0; }
@media (max-width: 600px) { .sol-cw__mutu { grid-column: 1 / -1; } }
.sol-cw__dispo-btn { margin-top: 8px !important; }
/* carte téléphone : mention (gauche) + CTA Disponibilité (droite) sur la même ligne */
.sol-cw__telfoot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: nowrap; }
.sol-cw__telfoot .sol-cw__mutu--inline { margin: 0 !important; flex: 1 1 auto; min-width: 0; }
.sol-cw__telfoot .sol-cw__dispo-btn { margin: 0 !important; flex: 0 0 auto; }
.sol-cw__telnum { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.sol-cw__telnum .sol-cw__method-note { margin: 0; }
.sol-cw__telfoot--num { align-items: flex-start; }   /* numéro + dispo : boutons alignés en haut (même hauteur) */
@media (max-width: 600px) { .sol-cw__telfoot { flex-wrap: wrap; } }
/* adresse postale (carte courrier IEG) : navy, gras, multi-lignes */
.sol-cw__addr { grid-column: 2; color: #002E5E !important; font-family: 'Neo', Arial, sans-serif !important; font-weight: 700 !important; font-size: 14px !important; line-height: 22px !important; margin: 10px 0 0; }
@media (max-width: 600px) { .sol-cw__addr { grid-column: 1 / -1; } }

/* Sous-modal « Disponibilité d'appel » (overlay centré dans la modale) */
.sol-cw__dispo-ov { position: absolute; inset: 0; z-index: 5; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(0, 46, 94, .45); }
.sol-cw__dispo-box { position: relative; background: #fff; border-radius: 16px; padding: 26px 24px 20px; max-width: 840px; width: 100%; max-height: 94%; overflow: auto; box-shadow: 0 24px 60px rgba(0, 46, 94, .32); }
.sol-cw__dispo-close { position: absolute; top: 10px; right: 10px; min-width: 40px; min-height: 40px; border: 0 !important; background: transparent !important; color: #002E5E !important; font-size: 18px; cursor: pointer; border-radius: 10px; }
.sol-cw__dispo-close:hover { background: #E6EAEF !important; }
.sol-cw__dispo-head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 14px; color: #002E5E; }
.sol-cw__dispo-head strong { font-family: 'Neo', Arial, sans-serif; font-size: 18px; }
.sol-cw__dispo-leg { font-size: 13px; color: #002E5E; display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.sol-cw__dispo-leg b { display: inline-flex; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 6px; color: #002E5E; align-items: center; justify-content: center; font-size: 12px; margin-right: 2px; }
.sol-cw__dispo-tbl { border-collapse: collapse; width: 100%; font-size: 12.5px; }
.sol-cw__dispo-tbl th, .sol-cw__dispo-tbl td { border: 0 !important; }   /* aucun filet gris */
.sol-cw__dispo-tbl thead th { color: #fff !important; background: #002E5E !important; font-weight: 700; padding: 10px 8px; text-align: center; font-family: 'Neo', Arial, sans-serif; }
.sol-cw__dispo-tbl tbody th { text-align: left; white-space: nowrap; font-weight: 700; color: #002E5E; padding: 5px 12px 5px 6px; font-family: 'Neo', Arial, sans-serif; font-size: 12px; }
.sol-cw__dispo-tbl td { text-align: center; padding: 5px 8px; color: #002E5E; font-weight: 700; }
/* fonds PASTEL + chiffre navy (comme l'original) ; blocs contigus */
.sol-cw__dispo-tbl td.lv1 { background: #c9ecd2; }   /* Fluide (vert clair) */
.sol-cw__dispo-tbl td.lv2 { background: #fdeeb3; }   /* Modérée (jaune clair) */
.sol-cw__dispo-tbl td.lv3 { background: #f7c4bf; }   /* Forte (rouge clair) */
.sol-cw__dispo-tbl td.lv0 { color: #b9c0cb; }
.sol-cw__dispo-leg b.lv1 { background: #c9ecd2; }
.sol-cw__dispo-leg b.lv2 { background: #fdeeb3; }
.sol-cw__dispo-leg b.lv3 { background: #f7c4bf; }
.sol-cw__dispo-d-abbr { display: none; }   /* jours abrégés (mobile uniquement) */
.sol-cw__telnum--mobile { display: none; }   /* n° + note rejetés en bas (mobile uniquement) */
@media (max-width: 600px) {
  /* modal dispo en plein écran */
  .sol-cw__dispo-ov { padding: 0; }
  .sol-cw__dispo-box { max-width: 100%; width: 100%; max-height: 100%; height: 100%; border-radius: 0; padding: 20px 14px; }
  .sol-cw__dispo-tbl thead th { padding: 8px 4px; }
  .sol-cw__dispo-tbl tbody th { font-size: 11px; padding-right: 6px; }
  /* jours en abrégé */
  .sol-cw__dispo-d-full { display: none; }
  .sol-cw__dispo-d-abbr { display: inline; }
  /* carte tél IEG : n° + note en bas de carte, plus que « Disponibilité d'appel » en haut */
  .sol-cw__telfoot--num .sol-cw__telnum { display: none; }
  .sol-cw__telnum--mobile { display: flex !important; flex-direction: column; gap: 4px; align-items: flex-start; grid-column: 1 / -1; margin-top: 10px; }
}
/* tous les CTA liens (agence, tél) : jamais de soulignement */
.sol-cw a.sol-btn, .sol-cw a.sol-btn:hover, .sol-cw a.sol-btn:focus { text-decoration: none !important; }
/* bouton fantôme (CTA secondaire : agence) */
.sol-cw .sol-btn--ghost, .sol-cw a.sol-btn--ghost {
  background: #fff !important; color: #09953F !important;
  border: 2px solid #09953F !important; text-decoration: none !important;
}
.sol-cw .sol-btn--ghost:hover, .sol-cw a.sol-btn--ghost:hover {
  background: #09953F !important; color: #fff !important;
}
@media (max-width: 600px) {
  /* à gauche : icône + titre EN DESSOUS ; à droite : le CTA ; description en dessous */
  .sol-cw__method {
    grid-template-columns: auto 1fr;
    grid-template-areas: "ico cta" "title cta" "desc desc";
    align-items: center; column-gap: 14px; row-gap: 8px; padding: 16px;
  }
  .sol-cw__method-ico { width: 44px; height: 44px; justify-self: start; }
  .sol-cw__method-ico svg { width: 22px; height: 22px; }
  .sol-cw__method-title { font-size: 17px; align-self: start; }
  .sol-cw__method-cta { align-self: center; justify-self: end; margin: 0; }
  .sol-cw__method-cta .sol-btn, .sol-cw__telnum--mobile .sol-btn { font-size: 13px !important; padding: 9px 12px !important; white-space: nowrap; }
  .sol-cw__method-desc { font-size: 13.5px; margin-top: 4px; }
  .sol-cw__method-note { font-size: 11.5px; margin-top: 4px; }
  /* carte téléphone : pas d'inline mobile → mention « Retrouvez le n°… » rejetée en bas de carte (comme courrier) */
  .sol-cw__telfoot .sol-cw__mutu--inline { display: none; }
  .sol-cw__mutu--mobile { display: block !important; grid-column: 1 / -1; margin-top: 10px; }
}
.sol-cw__mutu--mobile { display: none; }   /* desktop : mention déjà inline dans le footer */

/* ── Pastille flottante (FAB) ───────────────────────────────────────────── */
.sol-cw-fab {
  position: fixed;
  right: 22px;
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 99990;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 64px !important;
  height: 64px !important;
  padding: 0 !important;
  border: 2px solid #09953F !important;
  border-radius: 50% !important;          /* RONDE (bat le border-radius du thème) */
  background: #09953F !important;
  color: #fff !important;                 /* icône blanche garantie (bat focus/thème) */
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(9, 149, 63, .45);
  transition: background .15s ease, color .15s ease, box-shadow .15s ease, transform .15s ease;
}

/* Survol : inversion → fond blanc, icône verte */
.sol-cw-fab:hover {
  background: #fff !important;
  color: #09953F !important;             /* survol : icône verte sur fond blanc */
  border-color: #09953F !important;
  box-shadow: 0 14px 36px rgba(9, 149, 63, .35);
  transform: translateY(-2px);
}

.sol-cw-fab:focus-visible {
  outline: 2px solid #09953F;
  outline-offset: 3px;
}

.sol-cw-fab:active {
  transform: scale(.95) translateY(0);
}

/* Icône moderne de contact (SVG inline, blanche) */
.sol-cw-fab__ico {
  width: 28px;
  height: 28px;
  display: block;
}
.sol-cw-fab__txt { display: none; }   /* pastille = icône seule */

/* ── Stepper : ronds numérotés cliquables (remplace la barre + flèche) ───── */
.sol-cw__steps { display: flex; align-items: center; gap: 0; flex: 1; min-width: 0; margin-left: 14px; margin-right: 22px; }
/* filets entre les chiffres : poussent le 1 à l'extrême gauche et le dernier à l'extrême droite */
.sol-cw__filet { flex: 1 1 auto; min-width: 14px; height: 3px; margin: 0 10px; background: #E6EAEF; border-radius: 2px; }
.sol-cw__step {
  width: 32px !important; height: 32px !important; flex: 0 0 auto; padding: 0 !important;
  border: 0 !important; border-radius: 50% !important;     /* RONDS (bat le thème) */
  background: #09953F !important; color: #fff !important;
  font-family: 'Neo', Arial, sans-serif; font-weight: 700; font-size: 14px;
  display: inline-flex !important; align-items: center; justify-content: center;
  transition: background .15s ease, box-shadow .15s ease, transform .15s ease;
}
.sol-cw__step.is-done { cursor: pointer; }
.sol-cw__step.is-done:hover { background: #077a33; transform: scale(1.06); }
.sol-cw__step.is-current { box-shadow: 0 0 0 4px rgba(9, 149, 63, .22); }
/* étapes à venir : contour vert, chiffre vert, fond blanc */
.sol-cw__step--future { background: #fff !important; color: #09953F !important; border: 2px solid #09953F !important; cursor: default; }
.sol-cw__filet.is-done { background: #09953F; }   /* filet vert jusqu'à l'étape courante */
@media (max-width: 600px) {
  .sol-cw__step { width: 28px !important; height: 28px !important; font-size: 12.5px; }
  .sol-cw__filet { margin: 0 5px; min-width: 6px; }
  .sol-cw__steps { margin-left: 6px; margin-right: 14px; }
}

/* ── Fil d'Ariane cliquable (au-dessus du titre) ─────────────────────────── */
.sol-cw__bread { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 18px 8% 0; }
.sol-cw__crumb {
  border: 0 !important; background: transparent !important; padding: 0 !important;
  color: #002E5E !important; font-family: Arial, sans-serif !important; font-weight: 300 !important; font-size: 14px; cursor: pointer;
}
.sol-cw__crumb:disabled { font-weight: 300 !important; cursor: default; }                              /* étape courante : navy, léger */
.sol-cw__crumb:not(:disabled):hover { font-weight: 700 !important; text-decoration: none !important; } /* rollover : gras */
.sol-cw__bread-sep { color: #b9c0cb; }
@media (max-width: 600px) { .sol-cw__bread { padding: 14px 6% 0; } }

@media (max-width: 600px) {
  .sol-cw-fab { width: 58px; height: 58px; right: 16px; }
  .sol-cw-fab__ico { width: 26px; height: 26px; }
}

/* ── Réduction de mouvement (accessibilité) ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .sol-cw__overlay,
  .sol-cw__progress span,
  .sol-cw__back,
  .sol-cw__close,
  .sol-cw .sol-cw__card,
  button.sol-cw__card,
  .sol-cw-fab {
    transition: none;
  }
  .sol-cw .sol-cw__card:active,
  button.sol-cw__card:active,
  .sol-cw-fab:active,
  .sol-cw-fab:hover {
    transform: none;
  }
}
