/* SMC Muslim-Friendly silo — CSS extrait des mockups V4 + préfixe .smc-mf-* */
/* Version : 1.0.0 — 2026-05-24 (V0) */


/* ============================================================
   1. RESET & VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream:        #f5f1e8;
    --cream-soft:   #fbf7ee;
    --cream-deep:   #ebe3d2;
    --bleu:         #2c4a5e;
    --bleu-deep:    #1c3344;
    --bleu-soft:    #4a6478;
    --olive:        #6b7f3f;
    --olive-deep:   #4d5e2b;
    --olive-light:  #8fa34f;
    --or:           #c8a050;
    --or-light:     #dcbb7a;
    --or-deep:      #a18039;
    --white:        #ffffff;
    --border-soft:  rgba(200, 160, 80, 0.25);
    --border-mid:   rgba(200, 160, 80, 0.45);

    --font-title:  'Fraunces', Georgia, serif;
    --font-body:   'Figtree', -apple-system, system-ui, sans-serif;
    --font-arabic: 'Amiri', serif;

    --container-max: 1200px;
    --section-pad-y: 80px;
    --section-pad-y-sm: 48px;

    --shadow-soft: 0 4px 12px rgba(20, 34, 58, 0.06);
    --shadow-card: 0 8px 24px rgba(20, 34, 58, 0.1);
    --shadow-card-hover: 0 16px 40px rgba(20, 34, 58, 0.16);

    --radius-sm: 8px;
    --radius:    12px;
    --radius-lg: 18px;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--bleu);
    background: var(--cream);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   FONDATIONS V0.1 — classes utilitaires globales silo MF
   (Fix migration : mockup utilisait .smc-voyage-section, .container,
    .smc-btn ; le HTML rendu utilise .smc-mf-section, .smc-mf-container,
    .smc-mf-btn — ces 11 classes étaient absentes du CSS extrait.)
   Variables prod : --cream, --cream-soft, --cream-deep, --bleu,
   --bleu-deep, --or, --or-deep, --olive, --container-max, --section-pad-y.
   ============================================================ */

/* Page wrapper */
.smc-mf-page {
    color: var(--bleu);
    font-family: var(--font-body);
    line-height: 1.55;
}

/* Container max-width — utilisé dans tous les partials et le hero */
.smc-mf-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    padding: 0 24px;
}

/* Sections — alternance cream / cream-soft / cream-deep partners */
.smc-mf-section {
    padding: var(--section-pad-y, 80px) 0;
    background: var(--cream);
}
.smc-mf-section--alt {
    background: var(--cream-soft);
}
.smc-mf-section--partners {
    background: var(--cream-deep);
}
.smc-mf-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 18px;
    color: var(--bleu-deep);
    font-family: var(--font-title);
    font-weight: 500;
    line-height: 1.2;
    text-wrap: pretty;
}
.smc-mf-section h2 em {
    font-style: italic;
    color: var(--or-deep);
}
.smc-mf-section h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    margin: 28px 0 12px;
    color: var(--bleu-deep);
    font-family: var(--font-title);
    font-weight: 500;
}
.smc-mf-section h3 em {
    font-style: italic;
    color: var(--or-deep);
}
.smc-mf-section h4 {
    font-size: 18px;
    margin: 18px 0 8px;
    color: var(--bleu-deep);
    font-family: var(--font-title);
    font-weight: 500;
}
.smc-mf-section p {
    color: var(--bleu);
    line-height: 1.75;
    margin-bottom: 14px;
    max-width: 800px;
}
.smc-mf-section p strong {
    color: var(--bleu-deep);
    font-weight: 600;
}
.smc-mf-section .lead {
    font-size: 17px;
    color: var(--bleu-soft);
    margin-bottom: 24px;
    max-width: 800px;
}
.smc-mf-section ul,
.smc-mf-section ol {
    margin: 14px 0 18px 24px;
    max-width: 800px;
}
.smc-mf-section li {
    color: var(--bleu);
    margin-bottom: 6px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .smc-mf-section { padding: 48px 0; }
}

/* Eyebrow caps gold */
.smc-mf-eyebrow {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--or-deep);
    margin-bottom: 18px;
    display: inline-block;
}

/* Buttons — primaire (or), bleu (anti ton-sur-ton), ghost, cream */
.smc-mf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    line-height: 1;
    white-space: normal;
}
.smc-mf-btn--primary {
    background: var(--or);
    color: var(--cream);
    box-shadow: 0 8px 20px rgba(200, 160, 80, 0.35);
}
.smc-mf-btn--primary:hover {
    background: var(--or-deep);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(200, 160, 80, 0.5);
}
.smc-mf-btn--ghost {
    background: transparent;
    color: var(--or-light, #dcbb7a);
    border-color: var(--or-light, #dcbb7a);
}
.smc-mf-btn--ghost:hover {
    background: var(--or-light, #dcbb7a);
    color: var(--bleu-deep);
    transform: translateY(-2px);
}
.smc-mf-btn--bleu {
    background: var(--bleu-deep);
    color: var(--cream);
    border-color: var(--bleu-deep);
}
.smc-mf-btn--bleu:hover {
    background: #1f3848;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(44, 74, 94, 0.35);
}
.smc-mf-btn--cream {
    background: var(--cream);
    color: var(--bleu-deep);
}
.smc-mf-btn--cream:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(20, 34, 58, 0.16);
}
.smc-mf-btn--full {
    width: 100%;
}
.smc-mf-btn--small {
    padding: 8px 14px;
    font-size: 13px;
}

/* ============================================================
   HERO V0.1 — gradient durci pour lisibilité + text-shadow
   ============================================================ */
.smc-mf-vhero {
    position: relative;
    color: var(--cream);
    padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 120px);
    background-size: cover;
    background-position: center;
    isolation: isolate;
    overflow: hidden;
}
.smc-mf-vhero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 22, 40, 0.45) 0%,
        rgba(12, 22, 40, 0.60) 50%,
        rgba(12, 22, 40, 0.80) 100%
    );
    z-index: 1;
    pointer-events: none;
}
.smc-mf-vhero .smc-mf-container {
    position: relative;
    z-index: 2;
}
.smc-mf-vhero__eyebrow {
    display: inline-block;
    font-size: 11.5px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--or-light, #dcbb7a);
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.smc-mf-vhero__title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 18px;
    max-width: 820px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.smc-mf-vhero__title em {
    font-style: italic;
    color: var(--or-light, #dcbb7a);
}
.smc-mf-vhero__subtitle {
    font-family: var(--font-title);
    font-style: italic;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--or-light, #dcbb7a);
    margin-bottom: 24px;
    max-width: 720px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.smc-mf-vhero__lede {
    font-size: 16px;
    color: rgba(245, 241, 232, 0.92);
    line-height: 1.75;
    max-width: 720px;
    margin-bottom: 36px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.smc-mf-vhero__lede p { margin-bottom: 14px; }
.smc-mf-vhero__lede strong { color: var(--cream); font-weight: 600; }
.smc-mf-vhero__lede a {
    color: var(--or-light, #dcbb7a) !important;
    text-decoration: underline;
    text-decoration-color: rgba(220, 187, 122, 0.5);
    text-underline-offset: 3px;
}
.smc-mf-vhero__cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
/* Sur fond sombre du hero, le ghost devient inversé pour lisibilité */
.smc-mf-vhero__cta-row .smc-mf-btn--ghost {
    background: rgba(255, 255, 255, 0.92);
    color: var(--bleu-deep);
    border-color: var(--cream);
}
.smc-mf-vhero__cta-row .smc-mf-btn--ghost:hover {
    background: var(--cream);
    color: var(--bleu-deep);
}

img { max-width: 100%; display: block; }
a { color: var(--or); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--or-deep); }

h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 500; color: var(--bleu-deep); line-height: 1.2; }
h2 em, h3 em { font-style: italic; color: var(--or-deep); font-weight: 500; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   2. HEADER
   ============================================================ */
.smc-mf-header {
    background: var(--white);
    border-bottom: 1px solid var(--cream-deep);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.smc-mf-header .container { display: flex; align-items: center; justify-content: space-between; }
.smc-mf-logo { font-family: var(--font-title); font-size: 22px; font-weight: 600; color: var(--bleu-deep); letter-spacing: -0.2px; }
.smc-mf-logo span { color: var(--or); }
.smc-mf-nav { display: flex; gap: 32px; }
.smc-mf-nav a { color: var(--bleu); font-size: 14.5px; font-weight: 500; }
.smc-mf-nav a:hover { color: var(--or); }
@media (max-width: 768px) { .smc-mf-nav { display: none; } }

/* ============================================================
   3. BREADCRUMB
   ============================================================ */
.smc-mf-breadcrumb {
    background: var(--cream-soft);
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-deep);
}
.smc-mf-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; font-size: 13.5px; color: var(--bleu-soft); }
.smc-mf-breadcrumb li::after { content: '›'; margin-left: 8px; color: var(--or); }
.smc-mf-breadcrumb li:last-child::after { content: ''; }
.smc-mf-breadcrumb a { color: var(--bleu-soft); }
.smc-mf-breadcrumb a:hover { color: var(--or); }
.smc-mf-breadcrumb [aria-current="page"] { color: var(--bleu-deep); font-weight: 500; }

/* ============================================================
   4. HERO
   ============================================================ */
.smc-mf-vhero {
    position: relative;
    min-height: 500px;
    background: url('/wp-content/uploads/hotels-mf/heros/paris-hero-tour-eiffel.webp') center/cover no-repeat;
    color: var(--cream);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.smc-mf-vhero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 51, 68, 0.45) 0%, rgba(28, 51, 68, 0.82) 100%);
    z-index: 1;
}
.smc-mf-vhero .container { position: relative; z-index: 2; padding: 80px 24px; }
.smc-mf-vhero__eyebrow {
    display: inline-block;
    font-size: 11.5px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--or-light);
    font-weight: 700;
    margin-bottom: 18px;
}
.smc-mf-vhero__title {
    font-family: var(--font-title);
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 18px;
    max-width: 820px;
    font-weight: 500;
}
.smc-mf-vhero__title em { font-style: italic; color: var(--or-light); font-weight: 500; }
.smc-mf-vhero__subtitle {
    font-family: var(--font-title);
    font-style: italic;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--or-light);
    margin-bottom: 32px;
    max-width: 720px;
    line-height: 1.4;
}
.smc-mf-vhero__cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.smc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    line-height: 1;
}
.smc-btn--primary {
    background: var(--or);
    color: var(--cream);
    box-shadow: 0 8px 20px rgba(200, 160, 80, 0.35);
}
.smc-btn--primary:hover {
    background: var(--or-deep);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(200, 160, 80, 0.5);
}
.smc-btn--ghost {
    background: transparent;
    color: var(--or-light);
    border-color: var(--or-light);
}
.smc-btn--ghost:hover {
    background: var(--or-light);
    color: var(--bleu-deep);
    transform: translateY(-2px);
}
.smc-btn--cream {
    background: var(--cream);
    color: var(--bleu-deep);
}
.smc-btn--cream:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}
.smc-btn--bleu {
    background: var(--bleu-deep);
    color: var(--cream);
    border-color: var(--bleu-deep);
}
.smc-btn--bleu:hover {
    background: #1f3848;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(44, 74, 94, 0.35);
}
.smc-btn--full { width: 100%; }
.smc-btn--small { padding: 8px 14px; font-size: 13px; }

/* ============================================================
   6. SECTIONS
   ============================================================ */
.smc-mf-voyage-section { padding: var(--section-pad-y) 0; background: var(--cream); }
.smc-mf-voyage-section--alt { background: var(--cream-soft); }
.smc-mf-voyage-section--partners { background: var(--cream-deep); }
.smc-mf-voyage-section__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.smc-mf-voyage-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 18px;
    color: var(--bleu-deep);
    line-height: 1.2;
}
.smc-mf-voyage-section h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    margin: 28px 0 12px;
    color: var(--bleu-deep);
}
.smc-mf-voyage-section h4 { font-size: 18px; margin: 18px 0 8px; color: var(--bleu-deep); }
.smc-mf-voyage-section p { color: var(--bleu); line-height: 1.75; margin-bottom: 14px; max-width: 800px; }
.smc-mf-voyage-section p strong { color: var(--bleu-deep); font-weight: 600; }
.smc-mf-voyage-section .lead { font-size: 17px; color: var(--bleu-soft); margin-bottom: 24px; }
.smc-mf-voyage-section ul, .smc-mf-voyage-section ol { margin: 14px 0 18px 24px; }
.smc-mf-voyage-section li { color: var(--bleu); margin-bottom: 6px; line-height: 1.7; }

@media (max-width: 768px) { .smc-mf-voyage-section { padding: var(--section-pad-y-sm) 0; } }

/* ============================================================
   7. BUDGET TIER BLOCK
   ============================================================ */
.smc-mf-budget-tier { margin-top: 36px; }
.smc-mf-budget-tier__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-soft);
}
.smc-mf-budget-tier__title {
    font-family: var(--font-title);
    font-size: clamp(1.3rem, 2.4vw, 1.65rem);
    color: var(--bleu-deep);
    font-weight: 500;
}
.smc-mf-budget-tier__title .emoji { margin-right: 8px; }
.smc-mf-budget-tier__range {
    font-size: 14px;
    color: var(--or-deep);
    font-weight: 600;
    background: var(--cream);
    padding: 4px 12px;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
}
.smc-mf-budget-tier__intro { color: var(--bleu-soft); font-size: 14.5px; margin-bottom: 24px; max-width: 780px; }

.smc-mf-hotel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 768px) { .smc-mf-hotel-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ============================================================
   8. HOTEL CARD PREMIUM
   ============================================================ */
.smc-mf-hotel-card {
    background: var(--white);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}
.smc-mf-hotel-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--or);
}
.smc-mf-hotel-card__photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: var(--cream-deep);
}
.smc-mf-hotel-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.smc-mf-hotel-card__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: var(--or-deep);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.smc-mf-hotel-card__stars { color: var(--or); letter-spacing: 0; font-size: 13.5px; }
.smc-mf-hotel-card__name {
    font-family: var(--font-title);
    font-size: 22px;
    color: var(--bleu-deep);
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 1.2;
}
.smc-mf-hotel-card__meta {
    font-size: 13.5px;
    color: var(--bleu-soft);
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
}
.smc-mf-hotel-card__meta strong { color: var(--or-deep); font-weight: 700; }
.smc-mf-hotel-card__atouts { list-style: none; margin: 0 0 16px; padding: 0; }
.smc-mf-hotel-card__atouts li {
    font-size: 13.5px;
    color: var(--bleu);
    padding: 4px 0 4px 22px;
    position: relative;
    line-height: 1.55;
}
.smc-mf-hotel-card__atouts li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--or);
    font-weight: 700;
}
.smc-mf-hotel-card__edito {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.55;
    color: var(--bleu-soft, #4a6478);
    margin: 12px 0 14px;
}
.smc-mf-hotel-card__quote {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 13.5px;
    color: var(--olive-deep);
    line-height: 1.5;
    padding: 10px 14px;
    background: var(--cream);
    border-left: 3px solid var(--or-light);
    border-radius: 6px;
    margin-bottom: 18px;
}
.smc-mf-hotel-card__cta { margin-top: auto; }
.smc-mf-hotel-card__cta .smc-btn { width: 100%; }

/* ============================================================
   9. CTA BANDEAU GLOBAL
   ============================================================ */
.smc-mf-cta-bandeau {
    background: var(--cream);
    border: 1.5px solid var(--border-mid);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    box-shadow: var(--shadow-soft);
}
@media (max-width: 700px) { .smc-mf-cta-bandeau { grid-template-columns: 1fr; padding: 22px; } }
.smc-mf-cta-bandeau__title {
    grid-column: 1 / -1;
    text-align: center;
    font-family: var(--font-title);
    font-size: 20px;
    color: var(--bleu-deep);
    margin-bottom: 8px;
    font-weight: 500;
}

/* ============================================================
   10. QUARTIERS BLOCK
   ============================================================ */
.smc-mf-quartiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}
@media (max-width: 900px) { .smc-mf-quartiers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .smc-mf-quartiers-grid { grid-template-columns: 1fr; } }
.smc-mf-quartier-card {
    background: var(--white);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.smc-mf-quartier-card:hover { transform: translateY(-3px); border-color: var(--or); box-shadow: var(--shadow-card); }
.smc-mf-quartier-card__photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    display: block;
}
.smc-mf-quartier-card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.smc-mf-quartier-card__name {
    font-family: var(--font-title);
    font-size: 19px;
    color: var(--bleu-deep);
    font-weight: 500;
    margin-bottom: 4px;
}
.smc-mf-quartier-card__arrond {
    font-size: 12px;
    color: var(--or-deep);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.smc-mf-quartier-card__pitch { font-size: 14px; color: var(--bleu-soft); line-height: 1.55; flex: 1; margin-bottom: 14px; }
.smc-mf-quartier-card .smc-btn { width: 100%; }

/* ============================================================
   11. RECAP TABLE
   ============================================================ */
.smc-mf-recap-wrap { overflow-x: auto; margin-top: 28px; }
.smc-mf-recap-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 14px;
    box-shadow: var(--shadow-card);
    min-width: 850px;
}
.smc-mf-recap-table thead { background: var(--bleu-deep); color: var(--cream); }
.smc-mf-recap-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.smc-mf-recap-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--cream-deep);
    color: var(--bleu);
}
.smc-mf-recap-table tr:nth-child(even) { background: var(--cream-soft); }
.smc-mf-recap-table tr:hover { background: var(--cream); }
.smc-mf-recap-table .tier-luxe { color: var(--or-deep); font-weight: 700; }
.smc-mf-recap-table .tier-standard { color: var(--olive-deep); font-weight: 600; }
.smc-mf-recap-table .tier-eco { color: var(--bleu-soft); font-weight: 600; }
.smc-mf-recap-table .stars { color: var(--or); letter-spacing: 0; }
.smc-mf-recap-table .price { font-weight: 700; color: var(--or-deep); white-space: nowrap; }
.smc-mf-recap-table .smc-btn { padding: 7px 14px; font-size: 12.5px; }

/* ============================================================
   12. MAILLAGE VILLES PAYS
   ============================================================ */
.smc-mf-villes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 28px;
}
@media (max-width: 900px) { .smc-mf-villes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .smc-mf-villes-grid { grid-template-columns: 1fr; } }

.smc-mf-ville-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.smc-mf-ville-card:hover { transform: translateY(-3px); border-color: var(--or); box-shadow: var(--shadow-card); color: inherit; }
.smc-mf-ville-card__photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    display: block;
}
.smc-mf-ville-card__body { padding: 16px; text-align: center; }
.smc-mf-ville-card__name {
    font-family: var(--font-title);
    font-size: 18px;
    color: var(--bleu-deep);
    font-weight: 500;
    margin-bottom: 4px;
}
.smc-mf-ville-card__pitch { font-size: 13px; color: var(--bleu-soft); margin-bottom: 10px; }
.smc-mf-ville-card__cta { font-size: 13px; color: var(--or); font-weight: 600; }

/* ============================================================
   13. AFFILIATE SLOT
   ============================================================ */
.smc-mf-aff-slot {
    background: var(--white);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 28px 0;
    flex-wrap: wrap;
    box-shadow: var(--shadow-soft);
}
.smc-mf-aff-slot__icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
}
.smc-mf-aff-slot__body { flex: 1; min-width: 220px; }
.smc-mf-aff-slot__title { font-family: var(--font-title); font-size: 19px; color: var(--bleu-deep); margin-bottom: 4px; font-weight: 500; }
.smc-mf-aff-slot__desc { font-size: 14px; color: var(--bleu-soft); }

/* ============================================================
   14. MOSQUÉES + LIEUX
   ============================================================ */
.smc-mf-mosquees-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}
@media (max-width: 768px) { .smc-mf-mosquees-list { grid-template-columns: 1fr; } }
.smc-mf-mosquee-item {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    gap: 14px;
    transition: all 0.25s ease;
}
.smc-mf-mosquee-item:hover { border-color: var(--or); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.smc-mf-mosquee-item__photo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: var(--cream-deep);
    flex-shrink: 0;
}
.smc-mf-mosquee-item__body { flex: 1; }
.smc-mf-mosquee-item__name {
    font-family: var(--font-title);
    font-size: 15.5px;
    color: var(--bleu-deep);
    margin-bottom: 4px;
    font-weight: 500;
    line-height: 1.3;
}
.smc-mf-mosquee-item__addr { font-size: 12.5px; color: var(--bleu-soft); margin-bottom: 4px; line-height: 1.3; }
.smc-mf-mosquee-item__meta { font-size: 12px; color: var(--olive-deep); font-style: italic; }

.smc-mf-lieu-block { margin-top: 24px; padding: 20px; background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius); margin-bottom: 14px; }
.smc-mf-lieu-block h4 {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 6px;
    font-size: 18px;
    color: var(--bleu-deep);
}
.smc-mf-lieu-block h4 .emoji { font-size: 22px; }
.smc-mf-lieu-block .smc-mf-lieu-tag {
    display: inline-block;
    margin-left: auto;
    padding: 3px 10px;
    background: var(--olive);
    color: var(--cream);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 12px;
    text-transform: uppercase;
}
.smc-mf-lieu-block p { font-size: 14px; color: var(--bleu); margin-bottom: 6px; }
.smc-mf-lieu-block .mosquee-proche { font-size: 12.5px; color: var(--or-deep); font-weight: 600; }

/* ============================================================
   15. PRÉPARER VOYAGE
   ============================================================ */
.smc-mf-prepare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
}
@media (max-width: 900px) { .smc-mf-prepare-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .smc-mf-prepare-grid { grid-template-columns: 1fr; } }
.smc-mf-prepare-card {
    background: var(--white);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 22px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
}
.smc-mf-prepare-card:hover {
    transform: translateY(-3px);
    border-color: var(--or);
    box-shadow: var(--shadow-card-hover);
}
.smc-mf-prepare-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    border: 1.5px solid var(--border-soft);
}
.smc-mf-prepare-card__title { font-family: var(--font-title); font-size: 18px; color: var(--bleu-deep); font-weight: 500; margin-bottom: 6px; }
.smc-mf-prepare-card__desc { font-size: 14px; color: var(--bleu-soft); line-height: 1.55; margin-bottom: 16px; flex: 1; }
.smc-mf-prepare-card__cta { font-size: 13.5px; font-weight: 600; color: var(--or); display: inline-flex; align-items: center; gap: 4px; margin-top: auto; }
.smc-mf-prepare-card:hover .smc-mf-prepare-card__cta { color: var(--or-deep); }

/* ============================================================
   16. FAQ
   ============================================================ */
.smc-mf-faq { margin-top: 28px; max-width: 880px; }
.smc-mf-faq__item {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.smc-mf-faq__item[open] { border-color: var(--or); }
.smc-mf-faq__trigger {
    padding: 18px 24px;
    cursor: pointer;
    font-family: var(--font-title);
    font-size: 17px;
    font-weight: 500;
    color: var(--bleu-deep);
    list-style: none;
    position: relative;
    padding-right: 56px;
    transition: background 0.2s ease;
}
.smc-mf-faq__trigger::-webkit-details-marker { display: none; }
.smc-mf-faq__trigger::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    color: var(--or);
    font-weight: 300;
    transition: transform 0.2s ease;
}
.smc-mf-faq__item[open] .smc-mf-faq__trigger::after { content: '−'; }
.smc-mf-faq__trigger:hover { background: var(--cream-soft); }
.smc-mf-faq__panel { padding: 4px 24px 22px; color: var(--bleu); font-size: 15px; line-height: 1.65; }
.smc-mf-faq__panel p { margin-bottom: 8px; }

/* ============================================================
   17. CTA FINAL
   ============================================================ */
.smc-mf-cta-final {
    background: linear-gradient(135deg, var(--or-deep) 0%, var(--or) 50%, var(--olive) 100%);
    color: var(--cream);
    padding: 80px 32px;
    text-align: center;
}
.smc-mf-cta-final__title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--cream);
    margin-bottom: 14px;
    font-weight: 500;
    line-height: 1.2;
}
.smc-mf-cta-final__subtitle {
    font-family: var(--font-title);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(245, 241, 232, 0.9);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.smc-mf-footer { background: var(--bleu-deep); color: rgba(245, 241, 232, 0.7); padding: 48px 0 24px; text-align: center; font-size: 13.5px; }
.smc-mf-footer__col { margin-bottom: 18px; font-family: var(--font-title); color: var(--or-light); font-size: 15px; }
.smc-mf-footer__copy { font-size: 12.5px; color: rgba(245, 241, 232, 0.5); margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(245, 241, 232, 0.1); }

/* ============================================================
   19. UTILS
   ============================================================ */
.text-arabic { font-family: var(--font-arabic); font-size: 1.15em; color: var(--olive-deep); }
.section-anchor { scroll-margin-top: 80px; }

/* ============================================================
   V0.2 — Composants enrichis content-blocks
   ============================================================ */

/* Reasons grid (section "Pourquoi voyager...") */
.smc-mf-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin: 32px 0 18px;
}
.smc-mf-reason-card {
    background: var(--white, #fff);
    border: 1.5px solid var(--border-soft, rgba(200,160,80,0.25));
    border-radius: 12px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.smc-mf-reason-card:hover {
    transform: translateY(-3px);
    border-color: var(--or);
    box-shadow: var(--shadow-card);
}
.smc-mf-reason-card__emoji {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 10px;
}
.smc-mf-reason-card__title {
    font-family: var(--font-title);
    font-size: 18px;
    color: var(--bleu-deep);
    margin: 0 0 8px;
    font-weight: 500;
}
.smc-mf-reason-card__desc {
    font-size: 14.5px;
    color: var(--bleu);
    line-height: 1.55;
    margin: 0;
}

/* Cards grid générique (autres destinations, pour aller plus loin, transport modes, etc.) */
.smc-mf-cards-grid {
    display: grid;
    gap: 18px;
    margin: 28px 0 12px;
}
.smc-mf-cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.smc-mf-cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.smc-mf-cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
    .smc-mf-cards-grid--3,
    .smc-mf-cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .smc-mf-cards-grid--3,
    .smc-mf-cards-grid--4,
    .smc-mf-cards-grid--2 { grid-template-columns: 1fr; }
}
.smc-mf-card-block {
    background: var(--white, #fff);
    border: 1px solid var(--border-soft, rgba(200,160,80,0.25));
    border-radius: 12px;
    padding: 22px 18px;
    transition: all .25s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.smc-mf-card-block:hover {
    transform: translateY(-3px);
    border-color: var(--or);
    box-shadow: var(--shadow-card);
}
.smc-mf-card-block__badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--olive);
    color: var(--cream);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
    align-self: flex-start;
}
.smc-mf-card-block__icon {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 12px;
}
.smc-mf-card-block__title {
    font-family: var(--font-title);
    font-size: 17px;
    color: var(--bleu-deep);
    margin: 0 0 6px;
    font-weight: 500;
    line-height: 1.3;
}
.smc-mf-card-block__subtitle {
    font-size: 12px;
    color: var(--or-deep);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.smc-mf-card-block__desc {
    font-size: 14px;
    color: var(--bleu-soft, #4a6478);
    line-height: 1.55;
    margin: 0 0 12px;
    flex: 1;
}
.smc-mf-card-block__ul {
    margin: 8px 0 12px 16px;
    padding: 0;
}
.smc-mf-card-block__ul li {
    font-size: 13.5px;
    color: var(--bleu);
    margin-bottom: 4px;
}
.smc-mf-card-block__footer {
    font-size: 12.5px;
    color: var(--olive-deep);
    font-style: italic;
    margin-top: auto;
    padding-top: 8px;
}

/* Numbered list (étapes, processus) */
.smc-mf-numbered-list {
    margin: 28px 0 8px;
}
.smc-mf-numbered-list__item {
    background: var(--white, #fff);
    border-left: 4px solid var(--or);
    padding: 18px 22px;
    margin-bottom: 14px;
    border-radius: 0 8px 8px 0;
    box-shadow: var(--shadow-soft);
}
.smc-mf-numbered-list__title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 8px;
    font-family: var(--font-title);
    font-size: 18px;
    color: var(--bleu-deep);
    font-weight: 500;
}
.smc-mf-numbered-list__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: var(--or);
    color: var(--cream);
    border-radius: 50%;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.smc-mf-numbered-list__item p {
    margin: 0 0 6px;
    color: var(--bleu);
    font-size: 14.5px;
}

/* ul_icons */
.smc-mf-list-icons {
    list-style: none;
    margin: 14px 0 18px 0 !important;
    padding: 0;
}
.smc-mf-list-icons li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 8px !important;
}
.smc-mf-list-icons__emoji {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.4;
}

/* aff_slot featured (gradient bleu nuit) */
.smc-mf-aff-slot {
    background: var(--white, #fff);
    border: 1.5px solid var(--border-soft, rgba(200,160,80,0.25));
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 24px 0;
    flex-wrap: wrap;
    box-shadow: var(--shadow-soft);
}
.smc-mf-aff-slot--featured {
    background: linear-gradient(135deg, var(--bleu-deep) 0%, var(--bleu) 100%);
    color: var(--cream);
    border-color: var(--or);
}
.smc-mf-aff-slot__icon {
    font-size: 34px;
    flex-shrink: 0;
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
}
.smc-mf-aff-slot--featured .smc-mf-aff-slot__icon { background: rgba(220,187,122,0.18); }
.smc-mf-aff-slot__body { flex: 1; min-width: 200px; }
.smc-mf-aff-slot__title {
    font-family: var(--font-title);
    font-size: 18px;
    color: var(--bleu-deep);
    margin-bottom: 4px;
    font-weight: 500;
}
.smc-mf-aff-slot--featured .smc-mf-aff-slot__title { color: var(--cream); }
.smc-mf-aff-slot__desc {
    font-size: 14px;
    color: var(--bleu-soft, #4a6478);
}
.smc-mf-aff-slot--featured .smc-mf-aff-slot__desc { color: rgba(245,241,232,0.85); }

/* tip-box */
.smc-mf-tip-box {
    background: var(--cream-soft);
    border: 1px solid var(--border-soft, rgba(200,160,80,0.25));
    border-left: 5px solid var(--or);
    padding: 18px 22px;
    border-radius: 8px;
    margin: 22px 0;
    box-shadow: var(--shadow-soft);
}
.smc-mf-tip-box__title {
    font-family: var(--font-title);
    font-size: 17px;
    color: var(--bleu-deep);
    font-weight: 500;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.smc-mf-tip-box__title .icon { font-size: 22px; }
.smc-mf-tip-box p { margin: 0 !important; font-size: 14.5px; color: var(--bleu); }

/* Quote-block */
.smc-mf-quote {
    border-left: 4px solid var(--or);
    padding: 16px 22px;
    background: var(--cream);
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
}
.smc-mf-quote p {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 17px;
    color: var(--bleu-deep);
    line-height: 1.5;
    margin: 0 !important;
}
.smc-mf-quote cite {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--olive-deep);
    font-style: normal;
    font-family: var(--font-body);
}

/* Recap table (V0.1 avait déjà, on assure le style) */
.smc-mf-recap-wrap { overflow-x: auto; margin: 24px 0; }
.smc-mf-recap-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white, #fff);
    border-radius: 10px;
    overflow: hidden;
    font-size: 14.5px;
    box-shadow: var(--shadow-card);
    min-width: 720px;
}
.smc-mf-recap-table thead { background: var(--bleu-deep); color: var(--cream); }
.smc-mf-recap-table th {
    padding: 13px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.smc-mf-recap-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--cream-deep);
    color: var(--bleu);
}
.smc-mf-recap-table tr:nth-child(even) { background: var(--cream-soft); }
.smc-mf-recap-table tr:hover { background: var(--cream); }

/* Section bottom CTA */
.smc-mf-section__bottom-cta {
    margin-top: 28px;
    text-align: center;
}

/* ============================================================
   V0.3 — City grid (Hub Pays "Les 5 villes muslim-friendly")
   Migration mockup V4 smc-city-grid → smc-mf-city-grid
   ============================================================ */
.smc-mf-city-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    margin-top: 32px;
}
@media (max-width: 900px) {
    .smc-mf-city-grid { grid-template-columns: 1fr; }
}
.smc-mf-city-grid__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 600px) {
    .smc-mf-city-grid__right { grid-template-columns: 1fr; }
}

.smc-mf-city-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 4 / 3;
    background: var(--cream-soft, #fbf7ee);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    isolation: isolate;
    box-shadow: var(--shadow-soft);
}
.smc-mf-city-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px -18px rgba(12, 22, 40, 0.28),
                0 4px 10px rgba(12, 22, 40, 0.08);
}
.smc-mf-city-card--large {
    aspect-ratio: auto;
    min-height: 100%;
}
.smc-mf-city-card__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.42s ease;
    z-index: 0;
}
.smc-mf-city-card:hover .smc-mf-city-card__img {
    transform: scale(1.05);
}
.smc-mf-city-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 22, 40, 0.10) 0%,
        rgba(12, 22, 40, 0.30) 50%,
        rgba(12, 22, 40, 0.78) 100%
    );
    z-index: 1;
    pointer-events: none;
}
.smc-mf-city-card__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 24px;
    color: var(--cream);
    pointer-events: none;
}
.smc-mf-city-card--large .smc-mf-city-card__content {
    padding: 32px 36px;
}
.smc-mf-city-card__eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--or-light, #dcbb7a);
    margin-bottom: 8px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.smc-mf-city-card__name {
    font-family: var(--font-title);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 8px;
    color: var(--cream);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.smc-mf-city-card--large .smc-mf-city-card__name {
    font-size: clamp(2rem, 4vw, 3rem);
}
.smc-mf-city-card__pitch {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 12px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.smc-mf-city-card__cta {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--or-light, #dcbb7a);
    letter-spacing: 0.02em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
/* Lien overlay couvrant toute la card (a11y) */
.smc-mf-city-card a[aria-label] {
    position: absolute;
    inset: 0;
    z-index: 3;
    text-indent: -9999px;
    color: transparent;
    pointer-events: auto;
}

/* ============================================================
   V0.3 — Img générique (helper smc_mf_render_image)
   ============================================================ */
.smc-mf-img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ============================================================
   V0.3 — Page wrapper variants (sémantique uniquement)
   ============================================================ */
.smc-mf-page--hub,
.smc-mf-page--ville {
    /* hérite de .smc-mf-page */
}

/* ============================================================
   V0.3 — ToC supprimée du template hub-pays.php
   Anciennes règles conservées au cas où retour futur :
   ============================================================ */
.smc-mf-toc {
    background: var(--cream-soft);
    border-top: 1px solid var(--cream-deep);
    border-bottom: 1px solid var(--cream-deep);
    padding: 18px 0;
}
.smc-mf-toc__title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--or-deep);
    font-weight: 700;
    margin-bottom: 10px;
}
.smc-mf-toc ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    list-style: none;
    margin: 0 !important;
    padding: 0;
}
.smc-mf-toc a {
    font-size: 13px;
    color: var(--bleu);
    padding: 4px 10px;
    border-radius: 14px;
    background: var(--cream-deep);
    text-decoration: none;
    transition: all 0.2s ease;
}
.smc-mf-toc a:hover { background: var(--or); color: var(--cream); }

/* =====================================================================
 * V0bis — Hub Racine /voyage/muslim-friendly/
 * Grille 7 destinations (cards live + bientôt)
 * ===================================================================== */
.smc-mf-page--racine .smc-mf-section { padding: var(--section-pad-y, 80px) 0; }

.smc-mf-dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 36px;
}
@media (min-width: 1024px) {
    .smc-mf-dest-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .smc-mf-dest-grid { grid-template-columns: repeat(2, 1fr); }
}

.smc-mf-dest-card {
    position: relative;
    background: var(--white, #fff);
    border-radius: var(--radius, 12px);
    overflow: hidden;
    box-shadow: var(--shadow-card, 0 8px 24px rgba(20,34,58,0.10));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.smc-mf-dest-card--live { cursor: pointer; }
.smc-mf-dest-card--live:hover,
.smc-mf-dest-card--live:focus-visible {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover, 0 16px 40px rgba(20,34,58,0.18));
    color: inherit;
    text-decoration: none;
}
.smc-mf-dest-card--live:hover .smc-mf-dest-card__img {
    transform: scale(1.03);
}
.smc-mf-dest-card--bientot {
    opacity: 0.85;
    cursor: default;
}
.smc-mf-dest-card--bientot .smc-mf-dest-card__img {
    filter: grayscale(45%);
}

.smc-mf-dest-card__img {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-color: var(--cream-deep, #ebe3d2);
    width: 100%;
    transition: transform 0.45s ease, filter 0.3s ease;
}
.smc-mf-dest-card__body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.smc-mf-dest-card__flag {
    font-size: 1.65rem;
    line-height: 1;
}
.smc-mf-dest-card__name {
    font-family: var(--font-title, 'Fraunces', Georgia, serif);
    font-size: 1.35rem;
    color: var(--bleu, #2c4a5e);
    margin: 8px 0 10px;
    font-weight: 600;
    line-height: 1.25;
}
.smc-mf-dest-card__pitch {
    font-size: 0.9rem;
    color: var(--bleu-deep, #1c3344);
    line-height: 1.55;
    margin: 0 0 12px;
    flex: 1;
}
.smc-mf-dest-card__villes {
    font-size: 0.78rem;
    color: var(--bleu-soft, #4a6478);
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    border-top: 1px solid var(--border-soft, rgba(200,160,80,0.25));
    padding-top: 12px;
}
.smc-mf-dest-card__cta {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--or, #c8a050);
    letter-spacing: 0.01em;
}
.smc-mf-dest-card--bientot .smc-mf-dest-card__cta {
    color: var(--bleu-soft, #4a6478);
    font-style: italic;
}

.smc-mf-badge-bientot {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--bleu-deep, #1c3344);
    color: var(--cream, #f5f1e8);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(20,34,58,0.18);
}

/* Section eyebrow (utilisé sur destinations) */
.smc-mf-section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--or, #c8a050);
    margin-bottom: 12px;
}

/* =====================================================================
 * V0bis.5 — Colonne de lecture 820px centrée, texte aligné à GAUCHE
 * Pattern Salam Muslim officiel (cf. .smc-voyage-section__inner du site)
 * Appliqué à TOUS les templates du silo MF : --racine, --hub, --ville.
 *
 * Tout le contenu éditorial (titres, paragraphes, listes, encadrés, citations,
 * bannières partenaires, FAQ, CTA bottom) suit la colonne 820px.
 *
 * SEULS les grids/tables/bandeaux gardent la pleine largeur container (1200px) :
 *   - .smc-mf-reasons-grid / .smc-mf-cards-grid / .smc-mf-dest-grid
 *   - .smc-mf-city-grid / .smc-mf-hotels-* / .smc-mf-mosquees-grid
 *   - .smc-mf-quartiers-grid / .smc-mf-prepare-grid / .smc-mf-maillage-grid
 *   - .smc-mf-recap-wrap (tables) / .smc-mf-cta-bandeau (bandeaux)
 *
 * NE PAS modifier sans validation explicite Maxence
 * cf. memory feedback_pattern_colonne_820.md
 * ===================================================================== */
.smc-mf-page .smc-mf-section > .smc-mf-container > h2,
.smc-mf-page .smc-mf-section > .smc-mf-container > h3,
.smc-mf-page .smc-mf-section > .smc-mf-container > h4,
.smc-mf-page .smc-mf-section > .smc-mf-container > p,
.smc-mf-page .smc-mf-section > .smc-mf-container > p.lead,
.smc-mf-page .smc-mf-section > .smc-mf-container > ul,
.smc-mf-page .smc-mf-section > .smc-mf-container > ol,
.smc-mf-page .smc-mf-section > .smc-mf-container > .smc-mf-section__eyebrow,
.smc-mf-page .smc-mf-section > .smc-mf-container > .smc-mf-list-icons,
.smc-mf-page .smc-mf-section > .smc-mf-container > .smc-mf-tip-box,
.smc-mf-page .smc-mf-section > .smc-mf-container > .smc-mf-quote,
.smc-mf-page .smc-mf-section > .smc-mf-container > .smc-mf-aff-slot,
.smc-mf-page .smc-mf-section > .smc-mf-container > .smc-mf-numbered-list,
.smc-mf-page .smc-mf-section > .smc-mf-container > .smc-mf-faq {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.smc-mf-page .smc-mf-section > .smc-mf-container > .smc-mf-section__eyebrow {
    display: block;
}
.smc-mf-page .smc-mf-section > .smc-mf-container > h3 {
    margin-top: 36px;
}
/* Bottom CTA (sous content-blocks) : dans la colonne 820px aussi (left) */
.smc-mf-page .smc-mf-section__bottom-cta {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 28px;
    text-align: left;
}
/* V0bis.7 — Hotels grid : head (H3 + badge prix) et intro tier dans colonne 820
 * (le wrapper .smc-mf-budget-tier reste en pleine largeur pour les cards en dessous) */
.smc-mf-page .smc-mf-budget-tier__head,
.smc-mf-page .smc-mf-budget-tier__intro {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

