.custom-menu-dropdown {
    position: relative;
    width: 100%;
}

.custom-menu-dropdown .menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.custom-menu-dropdown .menu-item {
    position: relative;
}

.custom-menu-dropdown .menu-item > .menu-link {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s ease;
}

.custom-menu-dropdown .has-dropdown::after {
    content: '▼';
    font-size: 0.8em;
    margin-left: 5px;
}

.custom-menu-dropdown .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px;
}

.custom-menu-dropdown .menu-item:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-menu-dropdown .dropdown-section {
    margin-bottom: 15px;
}

.custom-menu-dropdown .dropdown-section:last-child {
    margin-bottom: 0;
}

.custom-menu-dropdown .dropdown-label {
    font-weight: bold;
    padding: 5px 15px;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.custom-menu-dropdown .subitem-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-menu-dropdown .subitem {
    padding: 0;
    margin: 0;
}

.custom-menu-dropdown .subitem > a {
    text-decoration: none;
    padding: 8px 15px;
    display: block;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .custom-menu-dropdown .menu-items {
        flex-direction: column;
        gap: 0;
    }

    .custom-menu-dropdown .dropdown-content {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .custom-menu-dropdown .menu-item:hover .dropdown-content {
        display: block;
    }
} 