.header-bottom {
    background: #ffffff;
}

.header-bottom__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

/* Кнопка каталога */
.h-mega-menu {
    width: 300px;
    max-width: 300px;
    flex: 1 0 300px;
    position: relative;
    display: flex;

    background: linear-gradient(135deg,#cf82b3,#b890db);
    border-radius: 14px;

    box-shadow: 0 10px 24px rgba(186,124,167,.22);
    transition: .25s ease;
}

.h-mega-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(186,124,167,.30);
}

.h-mega-menu__title {
    display: flex;
    align-items: center;
    margin: auto;
    padding: 14px 22px;

    width: 100%;

    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .03em;
    text-transform: none;
}

.h-mega-menu__title svg {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

/* Корзина */
.header-bottom__cart {
    width: 17.3%;
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    background: #fff8fb;
    border: 1px solid #f1ddea;
    border-radius: 14px;

    box-shadow: 0 8px 20px rgba(181,116,154,.08);
    transition: .25s ease;
}

.header-bottom__cart:hover {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(181,116,154,.14);
}

/* Выпадающая корзина */
.minicart__dropdown-shadow {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 100;

    width: calc(100% + 1px);
    min-width: 340px;

    background: #ffffff;
    border: 1px solid #f1ddea;
    border-radius: 18px;

    opacity: 0;
    visibility: hidden;

    box-shadow: 0 18px 45px rgba(181,116,154,.18);
    overflow: hidden;
}

.minicart__dropdown-shadow.minicart__dropdown-shadow_active {
    opacity: 1;
    visibility: visible;
}

.a-cart__dropdown {
    max-height: 60vh;
    overflow-y: auto;
}

/* Товар в мини-корзине */
.minicart-item {
    display: flex;
    align-items: center;
    padding: 16px 18px;
    background: #ffffff;
    border-bottom: 1px solid #f7e6f0;
}

.minicart-item__image {
    width: 82px;
    height: 82px;
    min-width: 82px;

    margin-right: 12px;
    padding: 5px;

    border-radius: 14px;
    border: 1px solid #f1ddea;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .25s ease;
}

.minicart-item__image:hover {
    border-color: #cf82b3;
    box-shadow: 0 8px 18px rgba(181,116,154,.15);
}

.minicart-item__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.minicart-item__top {
    color: #6f5d69;
    font-size: 13px;
    line-height: 18px;
}

.minicart-item__bottom {
    color: #563c50;
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
}

.minicart-item__title {
    color: #6f5d69;
    text-decoration: none;
    transition: .25s ease;
}

.minicart-item__title:hover {
    color: #cf82b3;
}

/* Удаление товара */
.minicart-item__delete {
    display: block;
    width: 20px;
    height: 20px;
    margin: 5px;
    flex-shrink: 0;
}

.minicart-item__delete svg {
    fill: #9b7f91;
    transition: .25s ease;
}

.minicart-item__delete:hover svg {
    fill: #cf82b3;
}

/* Пустая корзина */
.alert-primary {
    display: none;
    padding: 16px 20px;
    color: #76586d;
    background: #fff8fb;
}

.alert-primary_active {
    display: block;
}

/* Итого */
.minicart__total {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;

    color: #563c50;
    font-weight: 700;
    background: #fff8fb;
}

/* Кнопки корзины */
.minicart__checkout-buttons {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background: #ffffff;
}

.btn-outline-secondary,
.btn-primary {
    padding: 12px 18px;

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;

    color: #ffffff;
    border-radius: 999px;
    border: none;

    text-decoration: none;
    transition: .25s ease;
}

.btn-primary {
    background: linear-gradient(135deg,#cf82b3,#b890db);
}

.btn-outline-secondary {
    background: #b05b91;
}

.btn-primary:hover,
.btn-outline-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(181,116,154,.24);
}

/* Адаптив */
@media (max-width: 991px) {
    .header-bottom {
        display: none;
    }

    .minicart__dropdown-shadow {
        width: auto;
        right: 10px;
        top: 100%;
    }
}
.header-bottom {
    position: relative;
    z-index: 50;
}

.header-bottom__wrapper {
    position: relative;
    z-index: 60;
}

.h-mega-menu {
    position: relative;
    z-index: 100;
}

.h-mega-menu:hover {
    z-index: 200;
}

/* выпадающее меню категорий */
.h-mega-menu__wrap,
.h-mega-menu__list,
.h-mega-menu__dropdown,
.h-mega-menu .submenu,
.h-mega-menu ul {
    z-index: 300 !important;
}