/* PANTY DRAWER FIX - MOBILE ONLY */
@media (max-width: 768px) {
    /* When open, panty drawer is ABSOLUTE top layer */
    .nav-overlay.open,
    #navOverlay.open {
        z-index: 2147483646 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        padding-bottom: 80px !important; /* Space for bottom links */
        box-sizing: border-box !important;
    }
    
    /* Hamburger button - stays on top of panty drawer */
    .menu-toggle,
    #menuToggle {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        left: auto !important;
        transform: none !important;
        z-index: 2147483647 !important;
        background: rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Remove hover transform that re-centers it */
    .menu-toggle:hover {
        transform: none !important;
    }
}