/* DROPDOWN MENU FIX - Add this CSS to fix the dropdown visibility issue */

/* PRIMARY FIX: Allow dropdowns to overflow the nav container */
nav {
    overflow-y: visible !important;
}

/* SECONDARY FIX: Ensure proper z-index stacking */
.dropdown-menu {
    z-index: 10001 !important;
}

.nav-menu > li.has-dropdown {
    z-index: 100 !important;
}

.nav-menu > li.has-dropdown.dropdown-open {
    z-index: 10002 !important;
}

/* Ensure the nav menu itself doesn't clip content */
.nav-menu {
    overflow: visible !important;
}

/* Make sure the header doesn't clip dropdowns */
.header {
    overflow: visible !important;
}

.header-main {
    overflow: visible !important;
}
