.cart-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 32px 20px 56px;
}

.cart-page__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.cart-page__subtitle {
    margin: 0 0 6px;
    color: #777;
    font-size: 14px;
}

.cart-page__title {
    margin: 0;
    font-size: 36px;
    line-height: 1.15;
}

.cart-page__clear,
.cart-item__remove {
    border: none;
    background: transparent;
    color: #b3261e;
    cursor: pointer;
    font-size: 14px;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) 250px;
    gap: 20px;
    padding: 18px;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.cart-item__image {
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 14px;
    overflow: hidden;
    background: #f6f6f6;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item__brand {
    margin: 0 0 6px;
    color: #777;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cart-item__title {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.3;
}

.cart-item__title a {
    color: inherit;
    text-decoration: none;
}

.cart-item__title a:hover {
    text-decoration: underline;
}

.cart-item__article {
    margin: 0 0 14px;
    color: #777;
    font-size: 14px;
}

.cart-item__price {
    font-size: 18px;
    font-weight: 700;
}

.cart-item__controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.cart-quantity {
    display: grid;
    grid-template-columns: 36px 58px 36px;
    gap: 6px;
    justify-content: end;
}

.cart-quantity__button,
.cart-quantity__value {
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    font-size: 15px;
}

.cart-quantity__button {
    cursor: pointer;
}

.cart-quantity__value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
}

.cart-item__total {
    font-size: 20px;
    font-weight: 800;
}

.cart-summary {
    position: sticky;
    top: 24px;
    padding: 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cart-summary__title {
    margin: 0 0 18px;
    font-size: 24px;
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.cart-summary__row--total {
    border-bottom: none;
    font-size: 20px;
}

.cart-summary__checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    padding: 14px 20px;
    border: none;
    border-radius: 14px;
    background: #111;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.cart-summary__note {
    margin: 12px 0 0;
    color: #777;
    font-size: 13px;
    line-height: 1.4;
}

.cart-empty {
    padding: 48px 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e8e8e8;
    text-align: center;
}

.cart-empty h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.cart-empty p {
    margin: 0 0 24px;
    color: #777;
}

.cart-empty__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 14px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.product-card__cart-form {
    position: relative;
    z-index: 2;
}

.product-detail__cart-form {
    margin-top: 18px;
}

@media (max-width: 900px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .cart-item {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .cart-item__controls {
        grid-column: 1 / -1;
        align-items: stretch;
    }

    .cart-quantity {
        justify-content: start;
    }
}

@media (max-width: 560px) {
    .cart-page__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item__image {
        width: 100%;
        height: 220px;
    }
}