/*
 Theme Name: Astra Child
 Theme URI:  https://tonsite.tld/
 Description: Child theme for Astra
 Author: Ton Nom
 Author URI: https://tonsite.tld/
 Template: astra
 Version: 1.0.0
 Text Domain: astra-child
*/
/* Overlay mobile menu (Astra) */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.90);
    z-index: 999999; /* plus haut que le contenu du site */
    pointer-events: none;
}

/* Quand le menu mobile est ouvert */
html.astra-mobile-menu-active .mobile-menu-overlay {
    display: block;
    pointer-events: auto;
}

/* S'assurer que le flyout menu reste au-dessus de l'overlay */
.ast-mobile-popup-drawer {
    z-index: 1000000 !important;
    position: relative;
}
.ast-header-break-point .mobile-menu-overlay {
    display: none;
}

.ast-header-break-point.astra-mobile-menu-active .mobile-menu-overlay {
    display: block;
}
