.header-top {
    background: linear-gradient(135deg,#fdf4f8,#f8f0ff);
    border-bottom: 1px solid #f1ddea;
}

.header-top__wrapper {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-menu__items {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: nowrap;
}

.main-menu__item {
    margin: 0 !important;
    padding: 0 !important;
}

.main-menu__item-container {
    display: flex;
    align-items: center;
}

.main-menu__text {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 9px 12px !important;
    border-radius: 11px;
    color: #76586d !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    white-space: nowrap;
    text-decoration: none !important;
    transition: .22s ease;
}

.main-menu__text:hover,
.main-menu__text_active {
    color: #fff !important;
    background: linear-gradient(135deg,#cf82b3,#b890db);
    box-shadow: 0 8px 18px rgba(186,124,167,.22);
    transform: translateY(-1px);
}

.main-menu__button-dropdown {
    width: 28px;
    height: 28px;
    margin-left: 2px;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    color: #b05b91 !important;
}

.main-menu__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 30;
    min-width: 230px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid #f1ddea;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(181,116,154,.16);
}

.js-main-menu-dropdown:hover > .main-menu__dropdown {
    display: block;
}

.main-menu__dropdown-link {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    color: #76586d !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap;
    transition: .2s ease;
}

.main-menu__dropdown-link:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg,#cf82b3,#b890db);
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .header-top {
        display: block !important;
        background-color: var(--main-background-color);
        width: 100%;
        box-shadow: 0 0 5px -1px rgba(0,0,0,.1);
    }

    .header-top__wrapper {
        display: none !important;
    }

    .header-top__mobile {
        display: block !important;
        width: 100%;
    }
}