.fclb_header_action {
    position: relative;

    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;

    color: var(--couleur-texte);
    text-decoration: none;

    font-size: .82rem;
    line-height: 1;
}

.fclb_header_action svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
}

.fclb_header_action:hover,
.fclb_header_action:focus {
    color: var(--couleur-accent);
    text-decoration: none;
}


/* =========================================================
   BADGE PANIER
   ========================================================= */

.fclb_cart_badge {
    position: absolute;
    top: -.35rem;
    right: .3rem;

    min-width: 1.05rem;
    height: 1.05rem;
    padding: 0 .2rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--couleur-accent);
    color: var(--couleur-texte-accent);

    border-radius: 999px;

    font-size: .68rem;
    font-weight: 700;
}

/* Modal connexion au compte */
.fclb_modal_compte {
    max-width: 800px;
}
/* Fond derrière les onglets pour éviter le liseré d'anti-aliasing */
.fclb_modal_compte .modal-content {
    background: linear-gradient(
            to right,
            var(--couleur-fond-bloc) 0 50%,
            var(--couleur-principale) 50% 100%
    );
}

/* Quand "Je n'ai pas de compte" est sélectionné */
.fclb_modal_compte .modal-content:has(#pascompte-tab.active) {
    background: linear-gradient(
            to right,
            var(--couleur-principale) 0 50%,
            var(--couleur-fond-bloc) 50% 100%
    );
}

/* Le contenu sous les onglets reste bien sur fond normal */
.fclb_modal_compte .fc-ident-content {
    background: var(--couleur-fond-bloc);
}
.fclb_modal_compte .modal-content {
    position: relative;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
    overflow: hidden;
}

.fclb_modal_close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
}