.cart-header__body {
    background: white;
    border: 1px solid #8cbbd1;
    font-family: mainFont;
    position: absolute;
    top: 80px;
    right: 50px;
    padding: 15px;
    width: 350px;      
    z-index: 5;
    visibility: hidden;
    transform: translate(0px, 20px);
    border-radius: 10px;
    max-height: 700px;
    overflow-y: auto;

}

._active {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
}

.header-link__cart {
    position: relative;
}

.header-link__cart span {
    position: absolute;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -10px;
    right: -10px;
    border-radius: 50%;
    background-color: #51879e;
    color: #fff;
    font-size: 12px;
}

/* Стили для элемента корзины (горизонтальное расположение) */
.cart-header__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #8cbbd188;
    font-family: mainFont;
}


/* у последнего нет линии разделения внизу*/
.cart-header__item:last-of-type {
    border-bottom: none;
}

/* Информация о товаре (название + цена) */
.cart-header__info {
    flex: 1;
}

.cart-header__title {
    color: #51879e;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.cart-header__price {
    margin: 4px 0 0;
    font-size: 12px;
    color: #51879e;
    font-weight: bold;
}

/* количество + кнопка удаления */
.cart-header__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-header__counter {
    color: #51879e;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

/* квадратная кнопка крестиком */
.cart-header__btn_delete {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid #8cbbd188;
    color: #51879e;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 16px;
}



/* Итоговая строка */
.cart-header__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-top: 5px;
    font-weight: bold;
    border-top: 2px solid #8cbbd1;
    color: #2c3e50;
    font-size: 16px;
}

/* Кнопка оформления заказа */
.cart-header__checkout {
    background-color: #8cbbd1;
    color: #fff;
    border: none;
    padding: 12px 22px;
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
}

.cart-header__checkout:hover {
    background: #51879e;
}