/* ============================================
   MODAL MOBILE FIX
   ============================================ */

/* NOTE: 
   - Les styles de la modale auth ont été déplacés vers auth-modal-mobile.css
   - Les styles du drawer langue ont été déplacés vers lang-drawer-mobile.css
   - Les styles du drawer panier ont été déplacés vers cart-drawer-mobile.css
*/

/* ============================================
   FIX ICÔNE COMPTE - ÉTAT ACTIF
   ============================================ */

/* Icône compte normale */
#authBtn {
    transition: all 0.3s ease !important;
}

/* Icône compte active (modale ouverte) */
#authBtn.auth-active {
    background: rgba(184, 70, 31, 0.1) !important;
    color: #B8461F !important;
}

#authBtn.auth-active svg {
    stroke: #B8461F !important;
}

/* Icône compte normale (modale fermée) */
#authBtn:not(.auth-active) {
    background: transparent !important;
    color: inherit !important;
}

#authBtn:not(.auth-active) svg {
    stroke: currentColor !important;
}
