/* ─────────────────────────────────────────────────────────────────
   components.css — Composants UI réutilisables
   Lot3 — 2026-05-02
   À charger APRÈS main.css et home.css
   ───────────────────────────────────────────────────────────── */

/* ===== CITY CARD — couverture zone par zone ===== */
.city-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 8px 0;
  transition: border-color 0.2s, transform 0.2s;
}
.city-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-2px);
}
.city-card-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 10px; margin-bottom: 6px; flex-wrap: wrap;
}
.city-card-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500; color: var(--ivory);
  flex: 1; min-width: 140px;
}
.city-card p {
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 13px;
}
.city-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.cb {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.cb-5g { background: rgba(16,185,129,0.12); color: #10B981; border: 1px solid rgba(16,185,129,0.3); }
.cb-warn { background: rgba(243,106,42,0.10); color: #F36A2A; border: 1px solid rgba(243,106,42,0.3); }
.cb-info { background: rgba(99,102,241,0.12); color: #818cf8; border: 1px solid rgba(99,102,241,0.3); }

.city-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--border);
}
@media(max-width: 560px) { .city-stats { grid-template-columns: 1fr; gap: 6px; } }
.city-stat {
  background: var(--bg2); border-radius: 10px;
  padding: 10px 12px; text-align: center;
}
.city-stat-val {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600; color: var(--gold);
  line-height: 1.2;
}
.city-stat-label {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ===== SPEED GRID — combien de Go par profil ===== */
.speed-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin: 20px 0;
}
@media(max-width: 640px) { .speed-grid { grid-template-columns: 1fr; } }
.speed-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 22px;
  transition: border-color 0.2s;
}
.speed-card:hover { border-color: rgba(212,175,55,0.4); }
.speed-card h4 {
  font-size: 13px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.6px;
  margin: 0 0 10px;
}
.speed-val {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600; color: var(--ivory);
  margin-bottom: 8px;
}
.speed-card p {
  margin: 0; color: var(--muted);
  font-size: 14px; line-height: 1.6;
}

/* ===== COMPARE TABLE — tableaux opérateurs / comparatifs ===== */
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 20px 0; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
}
.compare-table thead { background: var(--bg2); }
.compare-table th {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.6px;
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 14px 16px; font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(212,175,55,0.04); }
.compare-table td.ok { color: #10B981; font-weight: 600; }
.compare-table td.mid { color: #F4B942; font-weight: 600; }
.compare-table td.ko { color: #F36A2A; font-weight: 600; }
.compare-table td strong { color: var(--ivory); }
@media(max-width: 640px) {
  .compare-table { font-size: 13px; display: block; overflow-x: auto; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

/* ===== APP GRID — applications indispensables (cards) ===== */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px; margin: 18px 0;
}
.app-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.app-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-2px);
}
.app-card-name {
  font-weight: 700; color: var(--gold);
  font-size: 14px; margin-bottom: 6px;
}
.app-card-desc {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.55;
}

/* ===== WARNING BOX (au cas où — pas redéfini si déjà présent) ===== */
.warning-box {
  background: rgba(243,106,42,0.08);
  border: 1px solid rgba(243,106,42,0.3);
  border-radius: 14px;
  padding: 16px 20px; margin: 20px 0;
  font-size: 14.5px; color: var(--muted); line-height: 1.7;
}
.warning-box strong { color: #F36A2A; }

/* ─────────────────────────────────────────────────────────────────
   Lot4 — ALIASES & EXTENSIONS
   ───────────────────────────────────────────────────────────── */

/* Alias zone-card / zone-grid (Hanoï, Tokyo, etc.) → même style que city-card */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px; margin: 18px 0;
}
.zone-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.zone-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-2px);
}
.zone-card-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 10px; flex-wrap: wrap;
}
.zone-card-name {
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 600; color: var(--ivory);
  flex: 1; min-width: 160px; line-height: 1.3;
}
.zone-card p {
  margin: 0; color: var(--muted);
  line-height: 1.6; font-size: 13.5px;
}
.zb {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.zb-5g { background: rgba(16,185,129,0.15); color: #10B981; border: 1px solid rgba(16,185,129,0.3); }
.zb-4g { background: rgba(212,175,55,0.15); color: var(--gold); border: 1px solid rgba(212,175,55,0.3); }
.zb-warn { background: rgba(243,106,42,0.10); color: #F36A2A; border: 1px solid rgba(243,106,42,0.3); }

/* Alias data-usage-table, app-table → compare-table */
.data-usage-table,
.app-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 20px 0; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
}
.data-usage-table thead, .app-table thead { background: var(--bg2); }
.data-usage-table th, .app-table th {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.6px;
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-usage-table td, .app-table td {
  padding: 14px 16px; font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.data-usage-table tr:last-child td,
.app-table tr:last-child td { border-bottom: none; }
.data-usage-table tr:hover td,
.app-table tr:hover td { background: rgba(212,175,55,0.04); }
.data-usage-table td strong,
.app-table td strong { color: var(--ivory); }
@media(max-width: 640px) {
  .data-usage-table, .app-table { font-size: 13px; display: block; overflow-x: auto; }
  .data-usage-table th, .data-usage-table td,
  .app-table th, .app-table td { padding: 10px 12px; }
}

/* Pricing list — listes de prix stylées (itinerance, comparatifs) */
.pricing-list {
  list-style: none; padding: 0; margin: 0;
}
.pricing-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  gap: 12px;
}
.pricing-list li:last-child { border-bottom: none; }
.price-bad { color: #F36A2A; font-weight: 600; font-size: 13.5px; flex-shrink: 0; }
.price-good { color: #10B981; font-weight: 600; font-size: 13.5px; flex-shrink: 0; }

/* Terrain images (test-terrain Thaïlande) */
.terrain-img {
  display: block; max-width: 100%;
  height: auto !important; /* override les width/height attributes natifs */
  border-radius: 12px;
  margin: 12px auto;
  border: 1px solid var(--border);
}
.terrain-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.terrain-img-grid .terrain-img { margin: 0; max-height: 380px; object-fit: cover; }

/* Generic table fix mobile (toutes tables sans classe overflow) */
@media(max-width: 640px) {
  .article-body table:not(.compare-table):not(.app-table):not(.data-usage-table):not(.forfait-table) {
    display: block; overflow-x: auto; max-width: 100%;
  }
}

/* ===== STATS BAR — chiffres clés en hero (Corée, US, etc.) ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(212,175,55,0.02));
  border: 1px solid var(--border);
  border-radius: 16px;
}
.stat-item {
  text-align: center;
  padding: 4px 8px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.35;
}

/* compare-table-wrap : wrapper pour scroll mobile (Corée) */
.compare-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  -webkit-overflow-scrolling: touch;
}
.compare-table-wrap .compare-table { margin: 0; min-width: 480px; }

/* ============================================================
   EXTENSION compare-table — fix 2 mai
   - Variantes : compat-table, error-table, forfait-table (mêmes styles de base)
   - Cellules sémantiques manquantes : .warn .best .conso-* .badge-*
   ============================================================ */

.compat-table, .error-table, .forfait-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 20px 0; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
}
.compat-table thead, .error-table thead, .forfait-table thead { background: var(--bg2); }
.compat-table th, .error-table th, .forfait-table th {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.6px;
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.compat-table td, .error-table td, .forfait-table td {
  padding: 14px 16px; font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.compat-table tr:last-child td,
.error-table tr:last-child td,
.forfait-table tr:last-child td { border-bottom: none; }
.compat-table tr:hover td,
.error-table tr:hover td,
.forfait-table tr:hover td { background: rgba(212,175,55,0.04); }
.compat-table td strong,
.error-table td strong,
.forfait-table td strong { color: var(--ivory); }

/* Cellules sémantiques — compare-table ET variantes */
.compare-table td.warn,
.compat-table td.warn,
.error-table td.warn,
.forfait-table td.warn { color: #F4B942; font-weight: 600; }

.compare-table td.best,
.compat-table td.best,
.forfait-table td.best { color: var(--gold); font-weight: 700; }

.compare-table td.conso-low,
.compat-table td.conso-low { color: #10B981; font-weight: 600; }

.compare-table td.conso-mid,
.compat-table td.conso-mid { color: #F4B942; font-weight: 600; }

.compare-table td.conso-high,
.compat-table td.conso-high { color: #F36A2A; font-weight: 600; }

.compare-table td.badge-ok,
.compat-table td.badge-ok { color: #10B981; font-weight: 700; }

.compare-table td.badge-no,
.compat-table td.badge-no { color: #F36A2A; font-weight: 700; }

/* Mobile : scroll horizontal pour les variantes */
@media(max-width: 640px) {
  .compat-table, .error-table, .forfait-table {
    font-size: 13px; display: block; overflow-x: auto;
  }
  .compat-table th, .compat-table td,
  .error-table th, .error-table td,
  .forfait-table th, .forfait-table td { padding: 10px 12px; }
}

/* ===== INFO / SUCCESS BOX — fix 2 mai (warning-box déjà défini plus haut) ===== */
.info-box {
  background: rgba(30, 144, 255, 0.06);
  border: 1px solid rgba(30, 144, 255, 0.25);
  border-left: 4px solid #1E90FF;
  border-radius: 0 14px 14px 0;
  padding: 16px 22px; margin: 24px 0;
  font-size: 14px; line-height: 1.7; color: var(--text);
}
.info-box strong { color: #1E90FF; }

.success-box {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-left: 4px solid #10B981;
  border-radius: 0 14px 14px 0;
  padding: 16px 22px; margin: 24px 0;
  font-size: 14px; line-height: 1.7; color: var(--text);
}
.success-box strong { color: #10B981; }

/* ===== FIX SCROLL HORIZONTAL MOBILE — guide-card / guide-grid (2 mai) ===== */
.guide-card { min-width: 0; overflow: hidden; }
.guide-grid { min-width: 0; }
.guide-card .compare-table,
.guide-card .app-table,
.guide-card .data-usage-table,
.guide-card .forfait-table {
  max-width: 100%;
}


/* === Hero trust line === */
.hero-trust {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 13px;
  color: var(--muted, #6b6b6b);
  font-weight: 500;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.ht-check {
  color: var(--gold, #e8804a);
  font-weight: 700;
  font-size: 12px;
}
.hero-trust-sep {
  color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 540px) {
  .hero-trust { font-size: 12px; gap: 4px 8px; }
  .hero-trust-sep { display: none; }
}

/* === FAQ accordéon (piliers blog) === */
.faq-section { margin: 48px 0; }
.faq-list { margin-top: 16px; border-top: 1px solid var(--border, #e5e5e5); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05em;
  list-style: none;
  padding: 18px 36px 18px 0;
  position: relative;
  color: var(--text, #1a1a1a);
  transition: color .15s;
}
.faq-item summary:hover { color: var(--gold, #c9a96a); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6em;
  font-weight: 300;
  line-height: 1;
  color: var(--gold, #c9a96a);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer {
  padding: 0 0 18px;
  color: var(--text-muted, #555);
  line-height: 1.65;
}
.faq-item .faq-answer p:first-child { margin-top: 0; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }


/* ═══════════════════════════════════════════════════════════════
   COMPARATIF-HERO STACK + AEO — Phase 3 final layout
   ─────────────────────────────────────────────────────────────── */

/* Hero stack vertical : texte au-dessus, image en-dessous */
.comparatif-hero-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 60px 32px 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.comparatif-hero-stack .hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}
.comparatif-hero-stack .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.comparatif-hero-stack .hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.comparatif-hero-stack h1.display-lg {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--ivory);
  margin: 0;
}
.comparatif-hero-stack .hero-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 680px;
  margin: 0;
}
.comparatif-hero-stack .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.comparatif-hero-stack .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}
.comparatif-hero-stack .hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.comparatif-hero-stack .hero-trust-item .ht-check {
  color: var(--gold);
  font-weight: 700;
}
.comparatif-hero-stack .hero-trust-sep {
  color: var(--dim);
}

/* Image bandeau pleine largeur sous le texte */
.comparatif-hero-stack .hero-image-block {
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg3);
}
.comparatif-hero-stack .hero-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .comparatif-hero-stack {
    padding: 40px 20px 28px;
    gap: 28px;
  }
  .comparatif-hero-stack .hero-image-block {
    aspect-ratio: 16 / 10;
    max-height: 240px;
    border-radius: 16px;
  }
}
@media (max-width: 640px) {
  .comparatif-hero-stack {
    padding: 28px 16px 20px;
    gap: 22px;
  }
  .comparatif-hero-stack h1.display-lg {
    font-size: clamp(28px, 8vw, 38px);
  }
  .comparatif-hero-stack .hero-image-block {
    aspect-ratio: 16 / 11;
    max-height: 200px;
    border-radius: 14px;
  }
  .comparatif-hero-stack .hero-trust-sep {
    display: none;
  }
}

/* AEO Réponse directe — bloc gold pour featured snippets */
.aeo-answer {
  margin: 24px auto 60px;
  max-width: 1100px;
  padding: 0 32px;
}
.aeo-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(135deg, var(--gold-glow), var(--gold-dim) 80%);
  border: 1px solid var(--gold-dim);
  border-radius: 18px;
  padding: 24px 28px;
}
.aeo-icon {
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.aeo-body {
  flex: 1;
}
.aeo-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.aeo-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}
.aeo-text strong {
  color: var(--ivory);
  font-weight: 600;
}

@media (max-width: 640px) {
  .aeo-answer { padding: 0 16px; margin: 16px auto 40px; }
  .aeo-card { padding: 20px 18px; gap: 12px; flex-direction: column; }
  .aeo-icon { font-size: 22px; margin-top: 0; }
  .aeo-text { font-size: 14px; }
}

/* ═══ FIN PATCH PHASE 3 FINAL ═══ */

/* ═══════════════════════════════════════════════════════════════
   COMPARATIF-PAYS — RESTORATION CSS (Phase 3 fix mai 2026)
   ─────────────────────────────────────────────────────────────── */

.comparatif-intro { margin: 60px auto; max-width: 880px; padding: 0 32px; }
.intro-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 36px;
}
.intro-card .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.intro-card h2 { margin: 4px 0 12px; }
.intro-card .lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.comparatif-table {
  margin: 60px auto;
  max-width: 1100px;
  padding: 0 32px;
}
.section-lead {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 760px;
}
.table-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  font-style: italic;
}

.verdict-section { margin: 80px auto; max-width: 1100px; padding: 0 32px; }
.verdict-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.verdict-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  transition: var(--transition);
}
.verdict-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.verdict-card.us {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.verdict-card .vc-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--bg2);
  color: var(--ivory-dim);
  margin-bottom: 12px;
}
.verdict-card.us .vc-tag {
  background: var(--gold-dim);
  color: var(--gold);
}
.verdict-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 4px;
}
.verdict-card .vc-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.verdict-card .vc-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 16px 0 8px;
}
.verdict-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.verdict-card ul li {
  padding: 4px 0 4px 22px;
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}
.verdict-card ul.pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--green);
  font-weight: 700;
}
.verdict-card ul.cons li::before {
  content: '−';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--red);
  font-weight: 700;
}
.verdict-card .vc-conclusion {
  background: var(--bg2);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  border-radius: 0 8px 8px 0;
}

.profiles-section { margin: 80px auto; max-width: 1100px; padding: 0 32px; }
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: var(--transition);
}
.profile-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.profile-card.highlight {
  background: var(--surface2);
  border-color: var(--gold-dim);
}
.profile-card .pc-icon {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1;
}
.profile-card .pc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 8px;
  line-height: 1.3;
}
.profile-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.profile-card .pc-pick {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.faq-section { margin: 80px auto; max-width: 880px; padding: 0 32px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.final-cta { margin: 80px auto; max-width: 880px; padding: 0 32px; }
.final-cta-card {
  background: linear-gradient(135deg, var(--gold-glow), var(--gold-dim));
  border: 1px solid var(--gold-dim);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
}
.final-cta-card h2 { margin: 0 0 12px; }
.final-cta-card p {
  font-size: 16px;
  color: var(--text);
  margin: 0 auto 28px;
  max-width: 560px;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.go-further {
  margin: 80px auto 60px;
  max-width: 1100px;
  padding: 36px 32px;
  background: var(--bg2);
  border-radius: 18px;
}
.go-further-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 4px;
}
.go-further-lead {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 24px;
}
.go-further-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gf-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  transition: var(--transition);
  display: block;
  text-decoration: none;
}
.gf-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.gf-icon { font-size: 24px; margin-bottom: 8px; line-height: 1; }
.gf-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.gf-title {
  font-size: 14px;
  color: var(--ivory);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .comparatif-intro,
  .comparatif-table,
  .verdict-section,
  .profiles-section,
  .faq-section,
  .final-cta { padding: 0 16px; margin: 50px auto; }
  .verdict-grid,
  .profiles-grid,
  .go-further-grid { grid-template-columns: 1fr; }
  .final-cta-card { padding: 32px 24px; }
  .intro-card { padding: 24px 20px; }
  .go-further { padding: 24px 20px; margin: 50px auto 40px; }
  .verdict-card { padding: 22px 20px; }
}

/* ═══ FIN RESTORATION CSS ═══ */

/* ═══════════════════════════════════════════════════════════════
   COMPARATIF-HERO-IMAGE — bandeau image après AEO (Phase 3 v2)
   ─────────────────────────────────────────────────────────────── */
.comparatif-hero-image {
  margin: 0 auto 60px;
  max-width: 1100px;
  padding: 0 32px;
}
.comparatif-hero-image .hero-image-block {
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg3);
}
.comparatif-hero-image .hero-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero stack : ajuster padding bottom pour transition douce vers AEO */
.comparatif-hero-stack {
  padding-bottom: 24px !important;
}

@media (max-width: 900px) {
  .comparatif-hero-image {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .comparatif-hero-image .hero-image-block {
    aspect-ratio: 16 / 10;
    max-height: 240px;
    border-radius: 16px;
  }
}
@media (max-width: 640px) {
  .comparatif-hero-image {
    padding: 0 16px;
    margin-bottom: 32px;
  }
  .comparatif-hero-image .hero-image-block {
    aspect-ratio: 16 / 11;
    max-height: 200px;
    border-radius: 14px;
  }
}
/* ═══ FIN HERO IMAGE ═══ */

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDÉON — <details><summary> natif (Phase 3 fix)
   ─────────────────────────────────────────────────────────────── */
details.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}
details.faq-item[open] {
  border-color: var(--gold-dim);
  box-shadow: var(--shadow);
}
details.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  transition: background var(--transition);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::marker { display: none; content: ''; }
details.faq-item summary { list-style: none !important; list-style-type: none !important; }
details.faq-item summary > * { list-style: none; }
details.faq-item summary:hover { background: var(--bg2); }
details.faq-item summary h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ivory);
  margin: 0;
  line-height: 1.3;
  flex: 1;
}
details.faq-item .faq-chevron {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
  transform-origin: center;
}
details.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
}
details.faq-item .faq-answer {
  padding: 0 22px 20px;
  border-top: 1px solid var(--border);
  margin-top: -1px;
  padding-top: 16px;
}
details.faq-item .faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
@media (max-width: 640px) {
  details.faq-item summary { padding: 16px 18px; }
  details.faq-item summary h3 { font-size: 15px; }
  details.faq-item .faq-answer { padding: 14px 18px 18px; }
}
/* ═══ FIN FAQ ACCORDÉON ═══ */

/* ═══════════════════════════════════════════════════════════════
   CALCULATEUR — Section destinations (top 10 + liste complète)
   ─────────────────────────────────────────────────────────────── */
.calc-destinations {
  margin: 80px auto;
  padding: 0 32px;
}
.calc-destinations .cd-header {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.calc-destinations .cd-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 10px;
}
.calc-destinations .cd-header p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.cd-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 14px;
}
.cd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.cd-grid-featured {
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 10px;
  margin-bottom: 36px;
}
.cd-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  transition: var(--transition);
}
.cd-card:hover {
  border-color: var(--gold);
  background: var(--surface2);
  transform: translateX(2px);
}
.cd-card.cd-featured {
  background: var(--surface2);
  border-color: var(--gold-dim);
  padding: 13px 16px;
  font-weight: 500;
}
.cd-card img {
  border-radius: 2px;
  flex-shrink: 0;
  object-fit: cover;
}
.cd-card .cd-emoji {
  font-size: 18px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.cd-card .cd-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Accordéon liste complète */
details.cd-all-toggle {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg2);
  overflow: hidden;
}
details.cd-all-toggle[open] {
  border-color: var(--gold-dim);
}
details.cd-all-toggle summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  color: var(--ivory);
  user-select: none;
  transition: background var(--transition);
}
details.cd-all-toggle summary::-webkit-details-marker { display: none; }
details.cd-all-toggle summary::marker { display: none; content: ''; }
details.cd-all-toggle summary:hover { background: var(--surface); }
details.cd-all-toggle summary strong {
  color: var(--gold);
  font-weight: 600;
}
details.cd-all-toggle .cd-chevron {
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
}
details.cd-all-toggle[open] .cd-chevron {
  transform: rotate(45deg);
}
.cd-all-content {
  padding: 8px 24px 28px;
}
.cd-continent {
  margin-top: 28px;
}
.cd-continent:first-child { margin-top: 16px; }
.cd-continent h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cd-continent .cd-count {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 3px 8px;
  border-radius: 12px;
}

@media (max-width: 700px) {
  .calc-destinations { padding: 0 16px; margin: 60px auto; }
  .calc-destinations .cd-header h2 { font-size: 28px; }
  .cd-grid, .cd-grid-featured {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 6px;
  }
  .cd-card { padding: 10px 12px; font-size: 13px; }
  details.cd-all-toggle summary { padding: 16px 18px; font-size: 14px; }
  .cd-all-content { padding: 8px 18px 22px; }
}
/* ═══ FIN CALC DESTINATIONS ═══ */
/* ============================================================
   ANSWER-BOX — featured snippet candidate (post-H1, pre-content)
   Ajouté le 2026-05-05 — voir inject-answer-box.js
   ============================================================ */

.answer-box {
  /* Encadré or-dim cohérent avec lien-comparatif et CTA card */
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.5rem;
  max-width: 720px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-left: 4px solid var(--gold-dim, #b8941f);
  border-radius: 8px;
  font-size: 1.02rem;
  line-height: 1.6;
}

.answer-box-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dim, #b8941f);
  margin-bottom: 0.5rem;
}

.answer-box-text {
  margin: 0;
  color: var(--text-primary, #1a1a1a);
  font-weight: 400;
}

/* Mobile : padding réduit */
@media (max-width: 640px) {
  .answer-box {
    margin: 1.25rem 0 1.5rem;
    padding: 1rem 1.15rem;
    font-size: 0.98rem;
  }
}

/* Print : invisible (n'apporte rien sur impression, prend de la place) */
@media print {
  .answer-box { display: none; }
}
/* ===== ANSWER-BOX ===== */
/* Featured snippet candidate — bloc post-H1, pre-content
   Aligné sur le style tech-compatibilite-smartphones.html
   v2 — 2026-05-05 — voir inject-answer-box.js v3
   ===================================================== */

.answer-box {
  background: var(--surface);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px;
  margin: 0 0 28px 0;
  max-width: 860px;
}

.answer-box .answer-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}

.answer-box p {
  font-size: 15px;
  color: var(--ivory);
  line-height: 1.7;
  margin: 0;
}

.answer-box strong {
  color: var(--ivory);
  font-weight: 600;
}

/* Mobile : padding réduit, font légèrement plus petit */
@media (max-width: 640px) {
  .answer-box {
    padding: 16px 18px;
    margin-bottom: 22px;
  }
  .answer-box p {
    font-size: 14.5px;
  }
}

/* Print : invisible (pas pertinent en impression) */
@media print {
  .answer-box { display: none; }
}
/* ===== END ANSWER-BOX ===== */


/* ── TOC Comparatif (auto-injected) ───────────────────────────── */
.toc-comparatif-section { padding: 32px 0 8px; }
.toc-comparatif {
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e4ddd2);
  border-radius: 14px;
  padding: 22px 26px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow, 0 2px 16px rgba(28,23,20,0.07));
}
.toc-comparatif-title {
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: 12px; font-weight: 600;
  color: var(--ivory, #1c1714);
  text-transform: uppercase; letter-spacing: 1.4px;
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0.7;
}
.toc-comparatif-title::before {
  content: ""; width: 24px; height: 1px;
  background: var(--gold, #e07830);
  display: inline-block;
}
.toc-comparatif ol {
  margin: 0; padding: 0 0 0 22px;
  display: flex; flex-direction: column; gap: 9px;
}
.toc-comparatif li { font-size: 14px; line-height: 1.5; color: var(--muted, #7a7068); }
.toc-comparatif a {
  color: var(--ivory-dim, #4a3f38);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.toc-comparatif a:hover {
  color: var(--gold, #e07830);
  border-bottom-color: var(--gold, #e07830);
}
@media (max-width: 640px) {
  .toc-comparatif { padding: 18px 20px; }
  .toc-comparatif li { font-size: 13px; }
}



/* ── Hero Picker (auto-injected) ──────────────────────────────── */
.hero-picker {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  max-width: 480px;
  opacity: 0;
  animation: heroIn 0.8s 0.65s ease forwards;
}
.hero-picker-label {
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold, #e07830);
  margin-bottom: -4px;
}
.hero-picker-select {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 16px;
  padding: 14px 48px 14px 18px;
  border: 1.5px solid var(--border2, #d4cbbe);
  border-radius: 12px;
  background-color: var(--surface, #fff);
  color: var(--ivory, #1c1714);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e07830' stroke-width='2.5'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  width: 100%;
  box-sizing: border-box;
}
.hero-picker-select:hover { border-color: var(--gold, #e07830); }
.hero-picker-select:focus {
  outline: none;
  border-color: var(--gold, #e07830);
  box-shadow: 0 0 0 4px var(--gold-glow, rgba(224,120,48,0.15));
}
.hero-picker-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: heroPickerIn 0.35s ease;
}
.hero-picker-buttons[hidden] { display: none; }
@keyframes heroPickerIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-picker-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.hero-picker-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  padding-left: 4px;
}
.hero-picker-secondary a {
  color: var(--ivory-dim, #4a3f38);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  font-family: var(--font-body, "DM Sans", sans-serif);
}
.hero-picker-secondary a:hover {
  color: var(--gold, #e07830);
  border-bottom-color: var(--gold, #e07830);
}
.hero-picker-secondary a[hidden] { display: none; }
@media (max-width: 768px) {
  .hero-picker { max-width: 100%; }
  .hero-picker-secondary { font-size: 13px; gap: 14px; }
  .hero-picker-cta { width: 100%; justify-content: center; }
}



/* ── Hero Picker autocomplete (auto-injected) ─────────────────── */
.hero-picker {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  max-width: 520px;
  opacity: 0;
  animation: heroIn 0.8s 0.65s ease forwards;
}
.hero-picker-label {
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold, #e07830);
  margin-bottom: -4px;
}
.hero-picker-combo {
  position: relative;
}
.hero-picker-input {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 16px;
  padding: 16px 18px 16px 48px;
  border: 2px solid var(--gold, #e07830);
  border-radius: 12px;
  background-color: var(--surface, #fff);
  color: var(--ivory, #1c1714);
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 16px rgba(224,120,48,0.12);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-picker-input::placeholder {
  color: var(--muted, #9c9088);
  font-style: italic;
}
.hero-picker-input:hover { border-color: var(--gold, #e07830); }
.hero-picker-input:focus {
  outline: none;
  border-color: var(--gold, #e07830);
  box-shadow: 0 0 0 4px var(--gold-glow, rgba(224,120,48,0.18)), 0 6px 22px rgba(224,120,48,0.18);
  transform: translateY(-1px);
}
.hero-picker-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold, #e07830);
  pointer-events: none;
  opacity: 0.7;
}
.hero-picker-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e4ddd2);
  border-radius: 12px;
  box-shadow: var(--shadow-lg, 0 8px 40px rgba(28,23,20,0.11));
  z-index: 50;
  max-height: 320px;
  overflow-y: auto;
}
.hero-picker-suggestions[hidden] { display: none; }
.hero-picker-sug-item {
  padding: 10px 18px;
  cursor: pointer;
  font-size: 15px;
  color: var(--ivory, #1c1714);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.1s;
}
.hero-picker-sug-item:hover,
.hero-picker-sug-item.active {
  background: var(--gold-glow, rgba(224,120,48,0.08));
  color: var(--gold, #e07830);
}
.hero-picker-sug-name { flex: 1; }
.hero-picker-sug-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold, #e07830);
  background: var(--gold-glow, rgba(224,120,48,0.12));
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.hero-picker-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: heroPickerIn 0.35s ease;
}
.hero-picker-buttons[hidden] { display: none; }
@keyframes heroPickerIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-picker-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.hero-picker-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  padding-left: 4px;
}
.hero-picker-secondary a {
  color: var(--ivory-dim, #4a3f38);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  font-family: var(--font-body, "DM Sans", sans-serif);
}
.hero-picker-secondary a:hover {
  color: var(--gold, #e07830);
  border-bottom-color: var(--gold, #e07830);
}
.hero-picker-secondary a[hidden] { display: none; }
@media (max-width: 768px) {
  .hero-picker { max-width: 100%; }
  .hero-picker-secondary { font-size: 13px; gap: 14px; }
  .hero-picker-cta { width: 100%; justify-content: center; }
  .hero-picker-suggestions { max-height: 280px; }
}


/* ── hero-picker-stacking-fix ─────────────────────────────────── */
.hero-picker {
  position: relative;
  z-index: 50;
}
.hero-picker-combo {
  isolation: isolate;
}
.hero-picker-suggestions {
  z-index: 9999 !important;
  background-color: #ffffff !important;
  box-shadow: 0 12px 48px rgba(28, 23, 20, 0.18) !important;
}
/* ============================================================
 * mobile-safety.css
 * Filet de sécurité global contre le scroll horizontal mobile.
 * À injecter sur toutes les pages (idéalement à la fin de
 * components.css ou via un <link> dans le header unifié).
 * ============================================================ */

/* 1) Pas de débordement horizontal — filet ultime */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* 2) Médias toujours responsive */
img, video, iframe, picture, svg, embed, object {
  max-width: 100%;
  height: auto;
}

/* 3) Tables : scroll horizontal interne (pas global)
 *    Cible mobile uniquement pour ne pas casser les tables desktop. */
@media (max-width: 768px) {
  table {
    display: block;
    max-width: 100%;
    width: max-content;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* Indicateur visuel discret pour signaler qu'on peut scroller */
  table::-webkit-scrollbar { height: 4px; }
  table::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 2px; }
}

/* 4) Pre / code : wrap au lieu de déborder */
pre, code, kbd, samp {
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* 5) Mots/URLs longs en mobile — coupe propre */
@media (max-width: 600px) {
  p, li, td, th, span, a, h1, h2, h3, h4, h5, h6, blockquote, figcaption {
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }
}

/* 6) Conteneurs hardcodés en px qui débordent : limiter au viewport */
@media (max-width: 600px) {
  .container, .content, .wrapper, main, article, section {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* ── FAQ blog : .open class match (JS toggles class, pas attribut) ── */
.faq-item.open .faq-answer { display: block; color: var(--text); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }

/* ── FAQ blog : animation smooth (style Vietnam/pays) ── */
.faq-list .faq-answer {
  max-height: 0;
  overflow: hidden;
  display: block !important;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}
.faq-list .faq-item.open .faq-answer {
  max-height: 1500px;
  padding: 0 20px 18px;
}

/* ── FAQ pilier : <details>/<summary> avec attribut [open] ── */
.faq-list .faq-item[open] .faq-answer {
  max-height: 1500px;
  padding: 0 20px 18px;
}
details.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ivory);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: "+";
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details.faq-item[open] > summary::after { transform: rotate(45deg); }

/* ── FAQ <details>/<summary> hors faq-list (pilier blog) ── */
details.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  display: block;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}
details.faq-item[open] .faq-answer {
  max-height: 1500px;
  padding: 12px 20px 18px;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ FINAL OVERRIDE — bat les conflits, fonctionne avec inline JS
   ═══════════════════════════════════════════════════════════════ */
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 4px;
  transition: max-height 0.35s ease, padding 0.35s ease;
  display: block !important;
}
.faq-item.open .faq-answer,
.faq-item[open] .faq-answer {
  max-height: 2000px;
  padding: 12px 4px;
}
.faq-item .faq-question { cursor: pointer; user-select: none; }

/* ── Cacher ::after quand .faq-toggle est présent ── */
.faq-question:has(.faq-toggle)::after,
.faq-question:has(.faq-toggle)::before {
  display: none !important;
  content: none !important;
}

/* ── Fix word-wrap tableaux (couverture, data, comparatifs) ─ */
.compare-table,
.coverage-table,
.speed-grid,
.timing-grid,
.pricing-table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table td, .compare-table th,
.coverage-table td, .coverage-table th,
.speed-grid td, .speed-grid th,
.timing-grid td, .timing-grid th,
.pricing-table td, .pricing-table th {
  white-space: nowrap;
}

/* === Cities grid wrapper for blog pillar destinations sections === */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.6rem;
  margin: 1rem 0;
}
.cities-grid .city-card h3 {
  margin-top: 0;
}

/* === QUARTIER CARDS (couverture quartier par quartier — satellites blog) === */
.quartier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 16px 0;
  transition: border-color .2s;
}
.quartier-card:hover { border-color: var(--gold); }
.quartier-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.quartier-name {
  font-weight: 600;
  font-size: 1.1em;
  color: var(--ivory);
  line-height: 1.3;
  margin-bottom: 4px;
}
.speed-badge {
  display: inline-block;
  font-size: .85em;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .2px;
}
.signal-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: .78em;
  font-weight: 600;
  background: rgba(46, 160, 67, .15);
  color: #5ad26b;
  border: 1px solid rgba(46, 160, 67, .3);
  white-space: nowrap;
  flex-shrink: 0;
}
.signal-badge.medium {
  background: rgba(220, 150, 30, .15);
  color: #f0b95e;
  border-color: rgba(220, 150, 30, .3);
}
.signal-badge.bad {
  background: rgba(200, 50, 50, .15);
  color: #e87b7b;
  border-color: rgba(200, 50, 50, .3);
}
.quartier-desc {
  font-size: .95em;
  line-height: 1.55;
  color: var(--text, var(--ivory));
  margin: 0;
}
@media (max-width: 600px) {
  .quartier-header { flex-direction: column; gap: 8px; }
  .signal-badge { align-self: flex-start; }
}
/* === FIN QUARTIER CARDS === */



/* ═════════════════════════════════════════════════════════════ */
/* === GENERIC CONTENT CSS — FALLBACK pour classes orphelines === */
/* === Patché auto le 2026-05-15 === */
/* ═════════════════════════════════════════════════════════════ */

/* --- CARDS génériques (toute classe finissant en -card) --- */
/* Spécificité basse : un .compare-table existant override toujours */
[class$="-card"],
.airport-card, .app-status-card, .check-card, .cost-card, .action-card,
.food-card, .nomad-card, .route-card, .line-card, .config-block,
.island-panel, .city-panel, .device-panel {
  background: var(--surface, #1a1a1a);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 14px 0;
  transition: border-color .2s, transform .2s;
}
[class$="-card"]:hover {
  border-color: var(--gold, #d4a44a);
}

/* --- GRIDS génériques --- */
[class$="-grid"]:not(.timing-grid):not(.cities-grid):not(.compare-grid):not(.region-grid):not(.usecase-grid):not(.family-grid) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 20px 0 28px;
}

/* --- HEADERS de cards --- */
[class$="-card-header"], [class$="-block-header"], .brand-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

/* --- NAMES / TITRES de cards --- */
[class$="-card-name"], [class$="-card-title"], [class$="-block-title"],
.app-name, .site-name, .package-name, .quartier-name, .uc-title {
  font-weight: 600;
  font-size: 1.05em;
  color: var(--ivory, #ece8de);
  line-height: 1.3;
}

/* --- DESCRIPTIONS / SUB-TEXT --- */
[class$="-card-desc"], [class$="-block-sub"], .app-info, .site-coverage,
.package-desc, .uc-desc, .config-block-sub {
  font-size: .9em;
  color: var(--muted, #999);
  line-height: 1.55;
  margin: 0;
}

/* --- ICONES de cards --- */
[class$="-card-icon"], [class$="-block-icon"], .uc-icon, .app-icon,
.app-icon-big, .brand-icon, .member-icon, .quartier-icon {
  font-size: 2em;
  margin-bottom: 8px;
  display: block;
}
.app-icon-big { font-size: 2.5em; }

/* --- BADGES génériques (couleur par défaut : neutre) --- */
[class*="-badge"], .badge, .sig-badge, .ibadge, .astat, .line-badge,
.cb-4g, .cb-5g, .cb-cost, .cb-nomad, .sb-4g, .sb-5g, .sb-tip,
.lb-4g, .lb-5g, .lb-3g, .lb-new, .ib-4g, .city-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: .78em;
  font-weight: 600;
  background: rgba(220, 180, 80, .12);
  color: var(--gold, #d4a44a);
  border: 1px solid rgba(220, 180, 80, .25);
  white-space: nowrap;
  margin: 2px 4px 2px 0;
}
/* Variants couleur */
.badge-ok, .signal-badge, .cb-4g, .cb-5g, .sb-5g, .lb-5g, .coverage-ok {
  background: rgba(46, 160, 67, .15);
  color: #5ad26b;
  border-color: rgba(46, 160, 67, .3);
}
.badge-mid, .signal-badge.medium, .lb-4g, .ib-4g, .sb-4g {
  background: rgba(220, 150, 30, .15);
  color: #f0b95e;
  border-color: rgba(220, 150, 30, .3);
}
.badge-ko, .signal-badge.bad, .lb-3g {
  background: rgba(200, 50, 50, .15);
  color: #e87b7b;
  border-color: rgba(200, 50, 50, .3);
}
.badge-prio, .lb-new {
  background: rgba(120, 180, 220, .15);
  color: #6cb4f0;
  border-color: rgba(120, 180, 220, .3);
}
[class$="-badges"], .line-badges, .city-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 4px 0;
}

/* --- STATS (chiffres clés) --- */
[class$="-stat"], .airport-stat {
  text-align: center;
  padding: 12px;
  background: var(--surface, #1a1a1a);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 8px;
}

/* --- VALUES & LABELS --- */
[class$="-value"], .package-price {
  font-size: 1.4em;
  font-weight: 700;
  color: var(--gold, #d4a44a);
  display: block;
}
[class$="-label"], .config-label {
  font-size: .85em;
  color: var(--muted, #999);
  margin-top: 4px;
}

/* --- PANELS split (île, ville comparatif) --- */
[class$="-split"], .island-split, .city-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
@media (max-width: 600px) {
  [class$="-split"], .island-split, .city-split { grid-template-columns: 1fr; }
}

/* --- TAGS --- */
[class$="-tag"], .uc-tag, .action-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(220, 180, 80, .12);
  color: var(--gold, #d4a44a);
  border-radius: 6px;
  font-size: .75em;
  font-weight: 500;
  margin: 2px 4px 2px 0;
}

/* --- BUTTONS --- */
.btn-secondary {
  display: inline-block;
  padding: 10px 18px;
  background: transparent;
  color: var(--ivory, #ece8de);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
}
.btn-secondary:hover {
  border-color: var(--gold, #d4a44a);
  color: var(--gold, #d4a44a);
}

/* --- CTA blocks --- */
.cta-block {
  background: linear-gradient(135deg, rgba(220, 180, 80, .08), rgba(220, 180, 80, .02));
  border: 1px solid rgba(220, 180, 80, .25);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 28px 0;
}
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

/* --- BOX variants --- */
.offline-box {
  background: rgba(120, 100, 200, .08);
  border-left: 3px solid #9b8eff;
  border-radius: 8px;
  padding: 14px 16px;
  margin: 16px 0;
}

/* --- TABLES profil --- */
.profil-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: .95em;
}
.profil-table th, .profil-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border, #2a2a2a);
  text-align: left;
}
.profil-table th {
  background: var(--surface, #1a1a1a);
  color: var(--gold, #d4a44a);
  font-weight: 600;
}

/* --- LEGEND --- */
.coverage-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface, #1a1a1a);
  border-radius: 8px;
  margin: 12px 0;
  font-size: .85em;
}

/* --- HERO comparatif --- */
.comparatif-hero {
  text-align: center;
  padding: 24px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(220, 180, 80, .05), transparent);
  border-radius: 14px;
}

/* --- ROUTES / METHODS --- */
.check-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0;
}

/* --- DEVICE content --- */
.device-content { padding: 12px 0; }

/* --- CONFIG specific --- */
.config-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border, #2a2a2a);
}
.config-row:last-child { border-bottom: none; }
.config-value { color: var(--gold, #d4a44a); font-weight: 600; }

/* --- Brand mentions (Airalo, Holafly etc) --- */
.airalo, .holafly { font-weight: 600; color: var(--gold, #d4a44a); }

/* === FIN GENERIC CONTENT CSS === */



/* === DERNIÈRES ORPHELINES — patch fin 2026-05-15 === */

/* Sub-classes de cards : icons, headers, names spécifiques */
[class$="-card-icon"], .action-card-icon, .check-card-icon, .usage-card-icon, .config-block-icon {
  font-size: 1.8em;
  margin-bottom: 6px;
  display: block;
}
[class$="-card-header"], .line-card-header, .route-card-header, .site-card-header, .config-block-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
[class$="-card-name"], .line-card-name, .route-card-name, .site-card-name, .config-block-title {
  font-weight: 600;
  color: var(--ivory, #ece8de);
  font-size: 1.05em;
}
[class$="-card-label"], .cost-card-label, .speed-label {
  font-size: .82em;
  color: var(--muted, #999);
  margin-top: 4px;
}

/* Grids spécifiques (variants) */
.action-grid, .airport-grid, .app-status-grid, .food-grid, .nomad-grid, .cost-grid, .usage-grid, .use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 20px 0 28px;
}

/* Variante orthographique use-case → usecase */
.use-case-card, .usage-card {
  display: block;
  background: var(--surface, #1a1a1a);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 12px;
  padding: 20px;
  margin: 12px 0;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s;
}
.use-case-card:hover, .usage-card:hover { border-color: var(--gold, #d4a44a); }

/* Status badges */
.status-ok, .app-status.ok {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  background: rgba(46, 160, 67, .15);
  color: #5ad26b;
  border: 1px solid rgba(46, 160, 67, .3);
  font-size: .78em;
  font-weight: 600;
}
.status-warn, .app-status.warn {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  background: rgba(220, 150, 30, .15);
  color: #f0b95e;
  border: 1px solid rgba(220, 150, 30, .3);
  font-size: .78em;
  font-weight: 600;
}
.status-ko, .app-status.ko, .err {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  background: rgba(200, 50, 50, .15);
  color: #e87b7b;
  border: 1px solid rgba(200, 50, 50, .3);
  font-size: .78em;
  font-weight: 600;
}

/* Action buttons / labels */
.activate, .go, .fix {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(46, 160, 67, .15);
  color: #5ad26b;
  border: 1px solid rgba(46, 160, 67, .3);
  border-radius: 6px;
  font-weight: 600;
  font-size: .85em;
  text-decoration: none;
}
.delete {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(200, 50, 50, .15);
  color: #e87b7b;
  border: 1px solid rgba(200, 50, 50, .3);
  border-radius: 6px;
  font-weight: 600;
  font-size: .85em;
}

/* Flow diagrams */
.flow-diagram {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.flow-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.flow-node {
  flex: 1;
  background: var(--surface, #1a1a1a);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
}
.flow-arrow {
  font-size: 1.5em;
  color: var(--gold, #d4a44a);
}
.flow-label {
  font-size: .85em;
  color: var(--muted, #999);
  text-align: center;
}

/* Dual SIM visual */
.dual-sim-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.dsv-side {
  background: var(--surface, #1a1a1a);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 12px;
  padding: 18px;
}
.dsv-title { font-weight: 600; color: var(--ivory); margin-bottom: 10px; }
.dsv-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.dsv-item-icon { font-size: 1.2em; }
.dsv-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(220, 180, 80, .12);
  color: var(--gold, #d4a44a);
  border-radius: 6px;
  font-size: .75em;
}
@media (max-width: 600px) { .dual-sim-visual { grid-template-columns: 1fr; } }

/* Verdict / winner box (comparatifs) */
.verdict-box {
  background: linear-gradient(135deg, rgba(46, 160, 67, .08), rgba(46, 160, 67, .02));
  border: 1px solid rgba(46, 160, 67, .25);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 20px 0;
}
.winner, .win-esim, .win-wifi {
  font-weight: 700;
  color: #5ad26b;
}

/* Device tabs */
.device-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--border, #2a2a2a);
  margin: 16px 0;
}
.device-tab {
  padding: 10px 16px;
  background: transparent;
  color: var(--muted, #999);
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.device-tab.active {
  color: var(--gold, #d4a44a);
  border-bottom-color: var(--gold, #d4a44a);
}

/* Speed details */
.speed-sub {
  font-size: .82em;
  color: var(--muted, #999);
  display: block;
  margin-top: 2px;
}

/* Specific quartier classes */
.sig-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

/* eSIM vs SIM locale comparison */
.esim-local {
  background: var(--surface, #1a1a1a);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 10px;
  padding: 16px;
}

/* === FIN === */



/* === DERNIÈRES UTILS 2026-05-15 === */

/* Signal badges (3G/4G/5G + zones) */
.s3g, .s4g, .s5g, .zb-3g, .zb-off, .lb-lb-3g {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: .75em;
  font-weight: 600;
  border: 1px solid transparent;
  white-space: nowrap;
}
.s5g { background: rgba(46,160,67,.15); color: #5ad26b; border-color: rgba(46,160,67,.3); }
.s4g { background: rgba(220,150,30,.15); color: #f0b95e; border-color: rgba(220,150,30,.3); }
.s3g, .zb-3g, .lb-lb-3g { background: rgba(200,50,50,.15); color: #e87b7b; border-color: rgba(200,50,50,.3); }
.zb-off { background: rgba(150,150,150,.1); color: var(--muted, #999); border-color: rgba(150,150,150,.2); }

/* État / verdict utility classes */
.recommended, .good, .gold {
  display: inline-block; padding: 2px 8px; border-radius: 6px;
  background: rgba(220,180,80,.15); color: var(--gold, #d4a44a);
  font-size: .8em; font-weight: 600;
}
.free {
  display: inline-block; padding: 2px 8px; border-radius: 6px;
  background: rgba(46,160,67,.15); color: #5ad26b;
  font-size: .8em; font-weight: 600;
}
.local, .pause, .red {
  display: inline-block; padding: 2px 8px; border-radius: 6px;
  background: rgba(200,50,50,.15); color: #e87b7b;
  font-size: .8em; font-weight: 600;
}
.no { color: #e87b7b; font-weight: 600; }
.fr { color: var(--gold, #d4a44a); font-weight: 600; }

/* Timing row variants */
.timing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px dashed var(--border, #2a2a2a);
}
.timing-row:last-child { border-bottom: none; }
.timing-val { color: var(--gold, #d4a44a); font-weight: 600; font-family: ui-monospace, monospace; }

/* Legend dot */
.legend-dot {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; background: var(--gold, #d4a44a);
  margin-right: 6px; vertical-align: middle;
}

/* Offline list */
.offline-list { list-style: none; padding: 0; margin: 12px 0; }
.offline-list li {
  padding: 6px 0 6px 24px; position: relative;
  font-size: .95em; line-height: 1.5;
}
.offline-list li::before {
  content: "✓"; position: absolute; left: 0;
  color: #5ad26b; font-weight: bold;
}

/* Saving tips */
.saving-tips {
  background: rgba(220,180,80,.06);
  border-left: 3px solid var(--gold, #d4a44a);
  padding: 12px 16px; border-radius: 8px;
  margin: 16px 0; font-size: .95em; line-height: 1.55;
}

/* Profile cards grid */
.profile-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px; margin: 20px 0;
}
.profile-label { font-size: .82em; color: var(--muted, #999); margin-bottom: 4px; }
.profile-go {
  display: inline-block; padding: 6px 14px;
  background: var(--gold, #d4a44a); color: #0a0a0a;
  border-radius: 6px; font-weight: 600; font-size: .85em;
  text-decoration: none;
}
.profile-go:hover { opacity: .9; }
.profile-detail { font-size: .9em; color: var(--muted, #999); margin: 4px 0; }

/* === FIN === */


/* === ALT-SITE-LINK-V1 (lien réciproque FR↔MX en footer) === */
.alt-site-link-wrap {
  margin-top: 1rem;
  text-align: center;
}
.alt-site-link {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-size: .9em;
  opacity: .8;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px dotted currentColor;
  transition: opacity .2s;
}
.alt-site-link:hover { opacity: 1; }
/* === /ALT-SITE-LINK-V1 === */

/* === ALT-SITE-LINK-V1-EMOJI-FIX (force emoji système sur drapeau) === */
.alt-site-link [aria-hidden="true"] {
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'EmojiOne Color', emoji, sans-serif !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  font-feature-settings: normal !important;
  line-height: 1;
}
/* === /ALT-SITE-LINK-V1-EMOJI-FIX === */

/* === ALT-SITE-FLAG-V1 (drapeau SVG inline) === */
.alt-site-flag {
  display: inline-block;
  vertical-align: middle;
  margin-right: .4em;
  margin-top: -.12em;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
/* === /ALT-SITE-FLAG-V1 === */
