/**
 * Styles configurateur "Find My Perfect Bike Rack"
 * Layout stable via CSS Grid overlay — aucun saut de hauteur au changement de panel.
 * Transition opacité 100ms seulement.
 *
 * @package MonTheme
 */

/* =============================================
   WRAPPER
   ============================================= */
.fmr-section {
    position: relative;
    width: 100%;
    padding: 5rem 0 4rem;
    background-size: cover;
    background-position: center 40%;
    overflow: hidden;
}

.fmr-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 0;
}

.fmr-inner {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =============================================
   EN-TÊTE
   ============================================= */
.fmr-header {
    text-align: center;
    margin-bottom: 3rem;
}

.fmr-title {
    font-family: var(--font-head, 'Barlow Condensed', sans-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
    letter-spacing: .02em;
    margin: 0 0 .75rem;
}

.fmr-title__accent { color: #C8A96B; }

.fmr-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,.7);
    margin: 0;
}

/* =============================================
   GRILLE 3 CARTES
   ============================================= */
.fmr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    align-items: stretch; /* cartes à même hauteur */
}

/* ── Carte ────────────────────────────────────── */
.fmr-card {
    background: rgba(20,20,20,.90);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 2rem 1.5rem 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    backdrop-filter: blur(6px);
}

.fmr-card__badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: #C8A96B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 2px 10px rgba(200,169,107,.5);
}

.fmr-card__title {
    font-family: var(--font-head, 'Barlow Condensed', sans-serif);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    line-height: 1.25;
    margin: 0;
    letter-spacing: .03em;
}

/* =============================================
   ÉTAPE 1 — Choix d'installation
   ============================================= */
.fmr-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    align-items: stretch; /* égalise la hauteur des deux boutons */
}

.fmr-choice {
    position: relative;
    background: rgba(255,255,255,.04);
    border: 2px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: 0 0 .85rem;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* occupe toute la hauteur de la cellule grid */
}

.fmr-choice:hover {
    border-color: rgba(200,169,107,.5);
    background: rgba(200,169,107,.06);
}

.fmr-choice.is-selected {
    border-color: #C8A96B;
    background: rgba(200,169,107,.08);
}

.fmr-choice__img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #1a1a1a;
    flex-shrink: 0;
}

.fmr-choice__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.fmr-choice:hover .fmr-choice__img img { transform: scale(1.05); }

.fmr-choice__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.25);
}

.fmr-choice__placeholder svg { width: 36px; height: 36px; }

.fmr-choice__check {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 24px;
    height: 24px;
    background: #C8A96B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.4);
    transition: opacity .12s, transform .12s;
}

.fmr-choice__check svg { width: 12px; height: 12px; color: #fff; }
.fmr-choice.is-selected .fmr-choice__check { opacity: 1; transform: scale(1); }

.fmr-choice__label {
    padding: .75rem .5rem 0;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    flex: 1; /* pousse le contenu pour égaliser les hauteurs */
}

.fmr-choice__label strong {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
}

.fmr-choice__label span { font-size: .72rem; color: rgba(255,255,255,.5); }

/* =============================================
   ÉTAPE 2 — CSS GRID OVERLAY (hauteur stable)

   Principe : les deux panneaux (RV et Vehicle)
   sont empilés dans la MÊME cellule de grille.
   Le conteneur prend la hauteur du plus grand.
   On bascule uniquement avec opacity/visibility,
   jamais avec display:none ou hidden.
   ============================================= */

/* Titres superposés */
.fmr-titles-wrapper {
    display: grid;
}

.fmr-titles-wrapper .fmr-card__title {
    grid-area: 1 / 1; /* même cellule */
    transition: opacity .1s ease, visibility .1s ease;
}

/* Panneaux superposés */
.fmr-panels-wrapper {
    display: grid;
    flex: 1;
}

.fmr-panels-wrapper .fmr-dropdowns {
    grid-area: 1 / 1; /* même cellule = hauteur = max des deux */
    display: flex;
    flex-direction: column;
    gap: .6rem;
    transition: opacity .1s ease, visibility .1s ease;
}

/* État caché — invisible mais garde son espace */
.fmr-panel[data-panel] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* État visible */
.fmr-panel[data-panel].is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ── Ligne dropdown ────────────────────────────── */
.fmr-dropdown-wrap {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: .7rem 1rem;
    transition: border-color .15s, background .15s;
}

.fmr-dropdown-wrap:hover {
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
}

/* Champ verrouillé */
.fmr-dropdown-wrap--locked {
    opacity: .75;
    cursor: default;
}

.fmr-dropdown-wrap--locked:hover {
    border-color: rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
}

/* Spacer invisible pour aligner hauteur panneau vehicle (3 rows) au RV (4 rows) */
.fmr-dropdown-spacer {
    height: 0; /* sera calculé en JS si nécessaire, ou le CSS Grid s'en charge */
}

.fmr-dropdown-icon {
    width: 25px;
    height: 25px;
    color: #C8A96B;
    flex-shrink: 0;
}

.fmr-dropdown-icon svg { width: 100%; height: 100%; }

.fmr-dropdown-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .1rem;
    min-width: 0;
}

.fmr-dropdown-text label,
.fmr-dropdown-label-text {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    margin: 0;
    cursor: pointer;
    display: block;
    text-transform: none;
    letter-spacing: 0;
}

.fmr-locked-value {
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.7);
}

.fmr-select {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    font-family: var(--font-body, sans-serif);
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
}

.fmr-select option { background: #1a1a1a; color: #fff; }

.fmr-dropdown-chevron {
    color: rgba(255,255,255,.4);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.fmr-dropdown-chevron svg { width: 100%; height: 100%; }

.fmr-lock-icon { color: rgba(255,255,255,.35); }

.fmr-info-note {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    margin: .25rem 0 0;
    line-height: 1.4;
}

.fmr-info-note svg { flex-shrink: 0; margin-top: 1px; color: rgba(255,255,255,.35); }

/* =============================================
   ÉTAPE 3 — Type de vélos
   ============================================= */
.fmr-bike-choices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    align-items: start;
}

.fmr-bike-choice {
    position: relative;
    background: rgba(255,255,255,.04);
    border: 2px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: 0 0 .85rem;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fmr-bike-choice:hover {
    border-color: rgba(200,169,107,.5);
    background: rgba(200,169,107,.06);
}

.fmr-bike-choice.is-selected {
    border-color: #C8A96B;
    background: rgba(200,169,107,.08);
}

.fmr-bike-choice__img {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    padding: .2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fmr-bike-choice__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .2s;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.fmr-bike-choice:hover .fmr-bike-choice__img img { transform: scale(1.03); }

.fmr-bike-choice__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
}

.fmr-bike-choice__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #C8A96B;
    margin: .65rem auto .25rem;
}

.fmr-bike-choice__icon svg { width: 100%; height: 100%; }

.fmr-bike-choice__check {
    position: absolute;
    top: .4rem;
    right: .4rem;
    width: 20px;
    height: 20px;
    background: #C8A96B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.4);
    transition: opacity .12s, transform .12s;
}

.fmr-bike-choice__check svg { width: 10px; height: 10px; color: #fff; }
.fmr-bike-choice.is-selected .fmr-bike-choice__check { opacity: 1; transform: scale(1); }

.fmr-bike-choice__label {
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}

/* =============================================
   CTA
   ============================================= */
.fmr-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .65rem;
    margin-bottom: 3rem;
}

.fmr-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: 1.25rem 4rem;
    background: linear-gradient(90deg, #C8A96B 0%, #b8965a 100%);
    color: #070707 !important;
    color: #fff !important;
    font-family: var(--font-body, sans-serif);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 15px;
    transition: transform .2s, box-shadow .2s, background .2s;
    box-shadow: 0 8px 40px rgba(200,169,107,.5);
    width: min(680px, 90%);
    justify-content: center;
    flex-direction: column;  /* empile les deux lignes verticalement */
    gap: .35rem;
}

.fmr-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 50px rgba(200,169,107,.7);
    background: linear-gradient(90deg, #d4b278 0%, #9e7d4a 100%);
    color: #fff !important;
}

/* .fmr-cta-note supprimée — contenu déplacé à l'intérieur du bouton */

/* =============================================
   FEATURES STRIP
   ============================================= */
.fmr-features {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding-top: 2rem;
}

.fmr-feature {
    display: flex;
    align-items: center;
    justify-content: center; /* centrage horizontal dans la colonne */
    gap: .85rem;
    padding: 0 1.5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    line-height: 1.4;
    position: relative;
}

/* Séparateurs verticaux entre les items via pseudo-élément */
.fmr-feature + .fmr-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #a6a5a5;
}

.fmr-feature__icon {
    width: 32px;
    height: 32px;
    color: #C8A96B;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.fmr-feature__icon svg { width: 100%; height: 100%; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .fmr-grid { grid-template-columns: 1fr 1fr; }
    #fmr-step-3 { grid-column: 1 / -1; }
    .fmr-bike-choices { max-width: 500px; margin: 0 auto; }

    /* Features : 2 colonnes */
    .fmr-features { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .fmr-feature {
        padding: 1rem .75rem;
        justify-content: center; /* centré dans chaque cellule */
        align-items: center;
    }
    .fmr-feature span { font-size: .8rem; }
    /* Retirer le séparateur sur les items en début de rangée (1er et 3e) */
    .fmr-feature:nth-child(odd)::before { display: none; }
    /* Séparateur horizontal entre les deux rangées */
    .fmr-feature:nth-child(3),
    .fmr-feature:nth-child(4) {
        padding-top: 1rem;
    }
}

@media (max-width: 700px) {
    .fmr-section { padding: 3rem 0 2.5rem; }
    .fmr-inner { padding: 0 1rem; }
    .fmr-header { margin-bottom: 2rem; }

    .fmr-grid { grid-template-columns: 1fr; gap: 2rem; }
    #fmr-step-3 { grid-column: 1; }

    /* Vélos : 3 colonnes compactes */
    .fmr-bike-choices {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: .5rem;
    }
    .fmr-bike-choice__img { aspect-ratio: 1/1; }

    /* CTA */
    .fmr-cta-wrap { margin-bottom: 2rem; }
    .fmr-cta-btn {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: .85rem;
        border-radius: 10px;
    }
    .fmr-cta-btn__main { font-size: .85rem; }
    .fmr-cta-btn__sub   { font-size: .75rem; }

    /* Features : rester en 2 colonnes mais plus compact */
    .fmr-features { 
        grid-template-columns: repeat(2, 1fr); 
        padding-top: 0;
    }
    .fmr-feature {
        padding: .85rem .65rem;
        gap: .6rem;
        align-items: center; /* icône centrée verticalement avec le texte */
    }
    .fmr-feature::before { display: none; }
    .fmr-feature__icon { width: 26px; height: 26px; flex-shrink: 0; }
    .fmr-feature span { font-size: .78rem; line-height: 1.35; }
}

@media (max-width: 480px) {
    /* Choix installation : rester en 2 colonnes mais images plus basses */
    .fmr-choices { grid-template-columns: 1fr 1fr; }
    .fmr-choice__img { aspect-ratio: 1/1; }
    .fmr-choice__label strong { font-size: .7rem; }
    .fmr-choice__label span   { font-size: .65rem; }

    /* Titres de cartes plus petits */
    .fmr-card__title { font-size: 1rem; }
    .fmr-card { padding: 1.75rem 1rem 1.25rem; }

    /* Dropdowns */
    .fmr-dropdown-wrap { padding: .6rem .75rem; gap: .5rem; }
    .fmr-dropdown-icon { width: 18px; height: 18px; }
}

/* =============================================
   TYPOGRAPHIE — BEBAS NEUE + INTER
   Specs exactes du design guide :

   H1  Bebas Neue Bold   72–88px  lh 0.95–1.05  ls +1–2px
   H2  Inter Medium 500  18–22px  lh 1.4–1.6    ls 0
   H3  Inter Bold 700    20–24px  lh 1.2         ls +0.5px
   H4  Inter SemiBold    16–18px  lh 1.2         ls 0
   H5  Inter Regular     13–14px  lh 1.4–1.6     ls 0
   H6  Inter Regular     12–13px  lh 1.4          ls 0
   BTN Inter Bold 700    18–20px  lh 1.2         ls +0.5px
   ============================================= */

/* ─────────────────────────────────────────────────
   H1 — TITRE PRINCIPAL : Bebas Neue Bold
   72–88px · lh 0.95–1.05 · ls +1–2px
───────────────────────────────────────────────── */
.fmr-title {
    font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    font-weight: 400;          /* Bebas Neue = un seul weight, Bold visuel natif */
    font-size: clamp(4.5rem, 8vw, 5.5rem);   /* ~72–88px */
    line-height: 1.0;
    letter-spacing: .01em;     /* ~+1–2px à grande taille */
    text-transform: uppercase;
}

/* ─────────────────────────────────────────────────
   H2 — SOUS-TITRE : Inter Medium
   18–22px · lh 1.4–1.6 · ls 0
───────────────────────────────────────────────── */
.fmr-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);  /* 18–22px */
    line-height: 1.5;
    letter-spacing: 0;
}

/* ─────────────────────────────────────────────────
   H3 — TITRES DE SECTION (cartes) : Inter Bold
   20–24px · lh 1.2 · ls +0.5px
───────────────────────────────────────────────── */
.fmr-card__title {
    font-weight: 700;
    font-size: clamp(1.25rem, 1.75vw, 1.5rem);  /* 20–24px */
    line-height: 1.2;
    letter-spacing: .03em;     /* ~+0.5px */
    text-transform: uppercase;
}

/* ─────────────────────────────────────────────────
   H4 — TITRES DE CARTE / OPTION : Inter SemiBold
   16–18px · lh 1.2 · ls 0
───────────────────────────────────────────────── */
.fmr-choice__label strong,
.fmr-bike-choice__label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.2vw, 1rem);   /* 16–18px */
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* Labels de dropdown (RV brand…) — aussi H4 */
.fmr-dropdown-text label,
.fmr-dropdown-label-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .875rem;         /* 14px — label visible dans le champ */
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255,255,255,.55);
    margin: 0;
    cursor: pointer;
    display: block;
}

/* ─────────────────────────────────────────────────
   H5 — TEXTE COURANT (body) : Inter Regular
   13–14px · lh 1.4–1.6 · ls 0
───────────────────────────────────────────────── */
.fmr-choice__label span,
.fmr-locked-value,
.fmr-cta-note,
.fmr-feature span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: .875rem;        /* 14px */
    line-height: 1.5;
    letter-spacing: 0;
}

/* Valeur des selects */
.fmr-select {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: .875rem;        /* 14px */
    line-height: 1.5;
    letter-spacing: 0;
}

/* ─────────────────────────────────────────────────
   H6 — TEXTE SECONDAIRE / PETIT (small) : Inter Regular
   12–13px · lh 1.4 · ls 0
───────────────────────────────────────────────── */
.fmr-info-note,
.fmr-choice__label span:last-child {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: .8125rem;       /* 13px */
    line-height: 1.4;
    letter-spacing: 0;
    color: rgba(255,255,255,.45);
}

/* ─────────────────────────────────────────────────
   BOUTON — Inter Bold
   18–20px · lh 1.2 · ls +0.5px
───────────────────────────────────────────────── */
.fmr-cta-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);  /* 18–20px */
    line-height: 1.2;
    letter-spacing: 0;     /* ~+0.5px */
    text-transform: uppercase;
}

.fmr-cta-note {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: .8125rem;       /* 13px */
    line-height: 1.4;
    letter-spacing: 0;
}

/* ── Intérieur du bouton CTA (deux lignes) ─── */
.fmr-cta-btn__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    width: 100%;
}

.fmr-cta-btn__main {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
}

.fmr-cta-btn__sub {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .03em;
    text-transform: none;
    color: rgba(255,255,255,.75);
    line-height: 1;
}

/* ── Select modèle désactivé (aucun modèle pour cette marque) ── */
.fmr-dropdown-wrap:has(#fmr-rv-model:disabled) {
    opacity: .5;
    cursor: not-allowed;
}

.fmr-dropdown-wrap:has(#fmr-rv-model:disabled) .fmr-select {
    cursor: not-allowed;
}

/* Transition douce lors du changement de marque */
#fmr-rv-model {
    transition: opacity .15s ease;
}


/* ── Dropdown wrap entièrement cliquable ──── */
.fmr-dropdown-wrap {
    cursor: pointer;
}

.fmr-select {
    cursor: pointer;
}

/* =============================================
   BOUTON CONTACT — Panel RV
   ============================================= */
.fmr-contact-btn {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: .9rem 1rem;
    text-decoration: none;
    transition: background .15s, border-color .15s;
    margin-top: .25rem;
}

.fmr-contact-btn:hover {
    background: rgba(200,169,107,.08);
    border-color: rgba(200,169,107,.4);
}

/* Icône casque */
.fmr-contact-btn__icon {
    width: 28px;
    height: 28px;
    color: #C8A96B;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.fmr-contact-btn__icon svg {
    width: 100%;
    height: 100%;
}

/* Texte */
.fmr-contact-btn__text {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    flex: 1;
    min-width: 0;
}

.fmr-contact-btn__text strong {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    color: #ffffff;
    line-height: 1.35;
}

.fmr-contact-btn__text span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    line-height: 1.3;
}

/* Flèche droite */
.fmr-contact-btn__arrow {
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,.35);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transform: rotate(-90deg); /* pointe vers la droite */
}

.fmr-contact-btn__arrow svg {
    width: 100%;
    height: 100%;
}

.fmr-contact-btn:hover .fmr-contact-btn__arrow {
    color: rgba(200,169,107,.7);
}
