/**
 * Rustic Mango Store — stacking fixes on top of bundled storefront CSS.
 *
 * Fixed offer / announcement strips often use very large z-index values.
 * Header was z-index:1000 in modern-theme.css, so strips painted over the nav.
 */

.rustic-site-header {
    isolation: isolate;
}

/*
 * Guests: keep sticky header + mega-menu above typical promo bars.
 * Logged-in + admin bar: stay below #wpadminbar (z-index 99999).
 */
body:not(.admin-bar) .rustic-site-header {
    z-index: 100000000;
}

body.admin-bar .rustic-site-header {
    z-index: 99990;
}

@media (max-width: 1024px) {
    body:not(.admin-bar) .rustic-site-header .nav-menu {
        z-index: 100000001;
    }

    body.admin-bar .rustic-site-header .nav-menu {
        z-index: 99995;
    }
}
