.wd-dropdown-menu.wd-dropdown {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(25px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-radius: 24px !important;
    padding: 15px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), inset 0 1px 0 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 0 rgba(0, 0, 0, 0.1) !important;
}

.wd-dropdown-menu.wd-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
    opacity: 0.7;
    z-index: 0;
}

.wd-dropdown-menu li>a {
    color: #1d1d1f !important;
    font-weight: 600 !important;
    padding: 10px 18px !important;
    border-radius: 16px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.wd-dropdown-menu li>a:hover {
    background: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    transform: scale(1.02);
    padding-right: 25px !important;
}

.wd-dropdown-menu .sub-sub-menu,
.wd-dropdown-menu ul.sub-menu {
    display: none;
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.1) !important;
    margin: 10px 0 10px 0 !important;
    border-radius: 16px !important;
    padding: 8px !important;
    width: 100% !important;
}

.wd-dropdown-menu .force-open {
    display: block !important;
    overflow: hidden !important;
    transform-origin: top;
    animation: accordionMaskDown 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
}

@keyframes accordionMaskDown {
    0% {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px) scaleY(0.9);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        max-height: 800px;
        transform: translateY(0) scaleY(1);
        filter: blur(0);
    }
}

.wd-dropdown-menu .sub-sub-menu li a,
.wd-dropdown-menu ul.sub-menu li a {
    font-size: 13px !important;
    color: #444 !important;
    padding: 8px 12px !important;
    border-radius: 10px !important;
    text-shadow: none !important;
}

.wd-dropdown-menu .sub-sub-menu li a:hover,
.wd-dropdown-menu ul.sub-menu li a:hover {
    color: #ff0037 !important;
    background: rgba(255, 255, 255, 0.7) !important;
    transform: none !important;
    padding-right: 12px !important;
}

.wd-dropdown-menu li.menu-item-has-children>a:after {
    content: "▼";
    font-size: 10px;
    font-family: Arial, sans-serif;
    color: #000 !important;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.5);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    margin-left: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wd-dropdown-menu li.menu-item-has-children>a:hover:after {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.wd-dropdown-menu li.menu-item-has-children>a.icon-rotate:after {
    transform: rotate(180deg);
    background: #ff0037;
    color: #fff !important;
}