/* Extracted from AGB page - Global Mobile Menu Styles */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 26, 36, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2147483646 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Ensure Header is always above overlay */
#main-header {
    z-index: 2147483647 !important;
}

.mobile-nav-link {
    font-size: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #d4af37;
}

/* Close Button (X) Styling if distinct, usually handled by SVG classes but ensuring Z-Index */
.mobile-nav-overlay button {
    cursor: pointer;
    z-index: 2147483648;
}