.mm-drop {
    position: fixed;
    z-index: 9999;
    background: #ffffff;
    border-top: 3px solid #2e86c1;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
    pointer-events: none;
    display: none;
}
.mm-drop.mm-drop--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
    pointer-events: auto;
    display: block;
}
.mm-drop-inner {
    padding: 16px 20px 20px;
    display: flex;
    gap: 0;
    align-items: flex-start;
    max-height: 75vh;
    overflow-y: auto;
}
.mm-col {
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 0;
    flex: 1;
}
.mm-col--left {
    flex: 0 0 280px;
    width: 280px;
    overflow: hidden;
}
.mm-col--right {
    border-left: 1px solid #e8f0f7;
    padding-left: 16px;
    margin-left: 8px;
}
.mm-col--hidden {
    display: none;
}
.mm-sublink {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    color: #1a2c3d;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 5px;
    border-left: 3px solid transparent;
    transition: background 0.13s, padding-left 0.13s, border-color 0.13s, color 0.13s;
}
.mm-sublink:hover,
.mm-subitem--hover > .mm-sublink {
    background: #eaf4fb;
    color: #1a5276;
    padding-left: 17px;
    border-left-color: #2e86c1;
    text-decoration: none;
}
.mm-subitem--active > .mm-sublink {
    color: #1a5276;
    font-weight: 600;
    border-left-color: #1a5276;
}
.mm-subitem--has-child2 > .mm-sublink {
    color: #1a5276;
}
.mm-sub-arrow {
    margin-left: auto;
    flex-shrink: 0;
    display: inline-block;
    font-size: 11px;
    background: #f5eed6;
    color: #7a6020;
    border-radius: 20px;
    padding: 3px 10px;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid #d4b86a;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.mm-subitem--has-child2 > .mm-sublink:hover .mm-sub-arrow,
.mm-subitem--hover > .mm-sublink .mm-sub-arrow {
    background: #c9a84c;
    color: #fff;
    border-color: #8a6820;
}
@media (min-width: 993px) {
    nav.main-menu li.lvl1 > ul.child {
        display: none !important;
    }
}
.mm-col--right.mm-col--wide,
.mm-col--left.mm-col--wide {
    columns: 2;
    column-gap: 8px;
    min-width: 440px;
    flex: 0 0 auto;
    width: 100%;
}
.mm-col--right.mm-col--wide .mm-subitem,
.mm-col--left.mm-col--wide .mm-subitem {
    break-inside: avoid;
    display: block;
}
.mm-sublink-icon {
    font-size: 15px;
    color: #2e86c1;
    opacity: 0.75;
    flex-shrink: 0;
    transition: opacity 0.13s;
}
.mm-sublink:hover .mm-sublink-icon,
.mm-subitem--hover .mm-sublink-icon {
    opacity: 1;
}
.mm-toplink-icon {
    font-size: 14px;
    margin-right: 6px;
    opacity: 0.85;
    vertical-align: middle;
}