.desktop-dropdown--nav .destination-mega-menu {
    width: min(760px, calc(100vw - 32px));
    max-height: none;
    overflow: visible;
    padding: 18px;
}

.destination-mega-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.destination-mega-menu__head .desktop-dropdown__title {
    margin: 0;
}

.destination-mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.destination-mega-menu__item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    min-height: 74px;
    padding: 12px;
    border: 1px solid rgba(15, 118, 110, .14);
    border-radius: 8px;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.destination-mega-menu__item:hover,
.destination-mega-menu__item:focus-visible,
.destination-mega-menu__item[aria-current="page"] {
    border-color: rgba(15, 118, 110, .45);
    box-shadow: 0 12px 28px rgba(15, 118, 110, .12);
    transform: translateY(-1px);
}

.destination-mega-menu__item:focus-visible {
    outline: 3px solid rgba(20, 184, 166, .28);
    outline-offset: 2px;
}

.destination-mega-menu__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #e7f6f1;
    color: #0f766e;
}

.destination-mega-menu__item strong,
.destination-mega-menu__item small {
    display: block;
    min-width: 0;
}

.destination-mega-menu__item strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .95rem;
}

.destination-mega-menu__item small {
    margin-top: 3px;
    color: #526173;
    font-size: .8rem;
    font-weight: 800;
}

.destination-mega-menu__chevron {
    color: #94a3b8;
    font-size: .78rem;
}

.site-mobile-dropdown__item {
    gap: 8px;
}

.site-mobile-dropdown__item small {
    margin-left: auto;
    color: #526173;
    font-size: .78rem;
    font-weight: 800;
}

html[dir="rtl"] .destination-mega-menu__chevron {
    transform: rotate(180deg);
}

html[dir="rtl"] .site-mobile-dropdown__item small {
    margin-right: auto;
    margin-left: 0;
}

@media (max-width: 860px) {
    .desktop-dropdown--nav .destination-mega-menu {
        width: min(620px, calc(100vw - 24px));
    }
}

@media (max-width: 640px) {
    .destination-mega-menu__grid {
        grid-template-columns: 1fr;
    }

    .site-mobile-dropdown__item {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .site-mobile-dropdown__item small {
        margin-left: 0;
    }
}
