/* Mobile Menu Button Z-Index Fix */
/* Ensure the mobile menu button is always clickable and on top */

@media (max-width: 1024px) {
    .mobile-menu-btn {
        z-index: 9999 !important;
        /* Ensure it's always on top */
        pointer-events: auto !important;
        /* Ensure it's clickable */
    }
}