/* Navbar Dropdown Styles
   Loaded separately so it can be enabled per-template
   without affecting production navbar-new.css */

/* Override overflow:hidden from navbar-new.css to allow dropdowns to display */
.navbar-new {
    overflow: visible;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 12px 0 0 0;
    padding: 12px 0;
    min-width: 180px;
    z-index: 1000;
}

/* Invisible bridge to maintain hover across the gap */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.2s ease;
}

.dropdown-menu li a:hover {
    color: #666;
}
