/* DROPDOWN MENU FIX - FINAL CLEAN VERSION */
/* This is the ONLY CSS change needed to fix the dropdown issue */

/* Allow dropdowns to extend beyond the navigation container */
nav {
    overflow-y: visible !important;
}

/* Optional: Ensure proper z-index stacking (may already be correct) */
.dropdown-menu {
    z-index: 10001;
}

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

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

/* Ensure all parent containers allow overflow */
.header {
    overflow: visible !important;
}

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

.nav-menu {
    overflow: visible !important;
}
