/* Desktop dropdown menu - positioned via portal pattern at body level */
.desktop-dropdown-menu {
    display: none;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 9999;
    position: fixed;
    pointer-events: auto;
}

.desktop-dropdown-menu.show {
    display: block;
}

/* Dropdown category sections */
.dropdown-category-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.dropdown-category-links.active {
    max-height: 500px;
}

.dropdown-category-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 8px 16px;
    font-size: 0.875rem;
    color: #EC4899;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.dropdown-category-button:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.dropdown-category-arrow {
    transition: transform 0.3s ease;
    width: 12px;
    height: 12px;
}

.dropdown-category-arrow.rotated {
    transform: rotate(180deg);
}

/* Mobile dropdown sections */
.rotate-arrow {
    transition: transform 0.3s ease;
}

.rotate-arrow.rotated {
    transform: rotate(180deg);
}

.mobile-dropdown-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

.mobile-dropdown-section.active {
    max-height: 800px;
    opacity: 1;
}
