/**
 * Mobile Menu Scroll Fix
 */

.mobile-menu-container {
    overflow-y: auto !important;
}

.mobile-menu-section {
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Hide scrollbar but keep functionality */
.mobile-menu-section::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu-section::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-menu-section::-webkit-scrollbar-thumb {
    background: rgba(236, 228, 186, 0.2);
    border-radius: 4px;
}

.mobile-menu-section::-webkit-scrollbar-thumb:hover {
    background: rgba(236, 228, 186, 0.3);
}
