﻿/* BASKET-PAGE START */

.basket {
    margin-bottom: 60px;

}
.basket__wrapper {
    display: flex;
    gap:32px;
}
.basket__content {
    width: calc(67% - 16px);
}
.basket__products {
}
.basket__product-list {
    display: flex;
    flex-direction: column;
    gap:72px;
}
.basket__product-item {
    display: flex;
    gap:24px;
    padding: 24px;
    align-items: flex-start;
}
.basket__product-image {
    min-width: 176px;
    width: 176px;
    border-radius: 10px;
}
.basket__product-content {
    display: flex;
    gap:24px;
}
.basket__product-info {
    display: flex;
    flex-direction: column;
    gap:16px;
    max-width: 480px;
    margin-right: auto;
}
.basket__product-title {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}
.basket__product-title a {
    color:#292826;
    text-decoration: none;
}
.basket__product-text {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}
.green-text {
    color: #1D9A34;
}
.basket__product-article {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(41, 40, 38, 0.80);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}
.basket__product-article-link {
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.yellow-text {
    color: #FDD525;
}
.basket__product-article {

}
.basket__product-action {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap:64px;
}
.basket__product-sum {
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    white-space: nowrap;
}
.basket__product-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:0;
}
.basket__product-count-plus,
.basket__product-count-minus {
    width: 32px;
    min-width: 32px;
    height: 32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}
.basket__product-count-plus {
    background-image: url('../../img/yellow-plus_icon.svg');
}
.basket__product-count-sum {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    width: 80px;
}
.basket__product-count-minus {
    background-image: url('../../img/yellow-minus_icon.svg');
}
.basket__product-action-delete {
    min-width: 24px;
    width: 24px;
    height: 24px;
    background: url('../../img/trash_icon.svg') center / cover no-repeat;
    cursor: pointer;
}
.basket__sidebar {
    width: calc(33% - 16px);
}
.basket__result {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap:24px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 2px 69.5px 0px rgba(41, 40, 38, 0.20);
}
.basket__result-info {
    display: flex;
    align-items: center;
    gap:8px;
}
.basket__result-count,
.basket__result-massa {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}
.basket__result-dot {
    width: 6px;
    height: 6px;
    color: #292826;
    border-radius: 50%;
    background-color: rgba(41, 40, 38, 0.40);
}
.basket__result-massa {
}
.basket__result-title {
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.basket--empty {
    margin: 40px 0;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}
.basket__result-text {
}
.basket__result-sum {
}
.basket__result-action {
}
.btn {
}
.basket__result-btn {
    width: 100%;
}

/* BASKET-PAGE END */

