/* Navigation Dropdown Scrolling Fix */
/* Higher specificity rules to ensure max-height is applied */

#desktop-products-dropdown {
    max-height: 75vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain;
    scroll-behavior: smooth;
}

#mobile-products-menu {
    max-height: 60vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain;
    scroll-behavior: smooth;
}

/* Ensure scrollbar is visible */
#desktop-products-dropdown::-webkit-scrollbar {
    width: 6px;
}

#desktop-products-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#desktop-products-dropdown::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

#desktop-products-dropdown::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#mobile-products-menu::-webkit-scrollbar {
    width: 4px;
}

#mobile-products-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#mobile-products-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}
