﻿/* Fix mega menu clipping on mobile */
@media (max-width: 991px) {
    /* Allow dropdown to overflow and scroll */
    .navbar-collapse,
    .dropdown-menu,
    .dropdown-mega,
    .mega-content {
        /*overflow: visible !important;*/
    }

        /* Make mega menu scrollable */
        .dropdown-mega .mega-content {
            max-height: 70vh; /* adjust as needed */
            overflow-y: auto;
            padding: 1rem !important;
        }

    /* Ensure body scroll works when menu open */
    body {
        overflow: auto !important;
    }
}
