/* ==========================================================================
   Header - Espace client / Mon compte Astra
   ========================================================================== */

.ast-header-account-wrap .ast-header-account-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Cache l’icône SVG par défaut Astra */
.ast-header-account-wrap .ast-header-account-link .ahfb-svg-iconset,
.ast-header-account-wrap .ast-header-account-link svg {
    display: none;
}

/* Remplace l’icône par l’image "Espace client"
   Interpolation linéaire calée sur les icônes frères :
   77×58px à 1280px → 41×31px à 1024px */
.ast-header-account-wrap .ast-header-account-link::before {
    content: "";
    display: block;
    width: clamp(41px, calc(15.2vw - 115px), 80px);
    height: clamp(31px, calc(19.1vw - 165px), 80px);
    background-image: url("../img/Logo-esp-client-90.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
