.cart-page {
    padding: 50px 0 70px;
    background: #fff;
}

.cart-page .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.cart__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 32px;
}

.cart__title {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: .03em;
    color: #111;
}

.cart__count {
    font-size: 14px;
    color: #666;
}

.cart__message {
    margin-bottom: 20px;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #ddd;
    background: #f8f8f8;
}

.cart__message--success {
    color: #2e7d32;
    border-color: #2e7d32;
    background: #f4fff6;
}

.cart__message--error {
    color: #c62828;
    border-color: #c62828;
    background: #fff5f5;
}

.cart__empty {
    text-align: center;
    padding: 80px 20px;
    border: 1px solid #e8e8e8;
    background: #fff;
}

.cart__empty-title {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 500;
    color: #111;
}

.cart__empty-text {
    margin: 0 0 24px;
    font-size: 15px;
    color: #666;
}

.cart__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    align-items: start;
}

.cart__items {
    border-top: 1px solid #e5e5e5;
}

.product-line-item--cart {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) 120px;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
}

.product-line-item__image-wrapper {
    width: 130px;
}

.product-line-item__image-link {
    display: block;
    text-decoration: none;
}

.product-line-item__image {
    display: block;
    width: 130px;
    height: 170px;
    object-fit: cover;
    background: #f4f4f4;
}

.product-line-item__main {
    min-width: 0;
}

.product-line-item__details {
    margin-bottom: 18px;
}

.product-line-item__header {
    margin-bottom: 8px;
}

.product-line-item__name {
    display: inline-block;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}

.product-line-item__name:hover {
    text-decoration: underline;
}

.product-line-item__attribute {
    display: flex;
    gap: 6px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}

.product-line-item__attribute-label {
    color: #777;
}

.product-line-item__attribute-value {
    color: #333;
}

.product-line-item__pricing {
    margin: 12px 0 8px;
}

.pricing__sale-price {
    display: inline-block;
    margin-right: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.pricing__regular-price {
    display: inline-block;
    font-size: 14px;
    color: #777;
    text-decoration: line-through;
}

.product-line-item__stock {
    font-size: 14px;
}

.product-line-item__stock-status--in {
    color: #2e7d32;
}

.product-line-item__stock-status--out {
    color: #c62828;
}

.product-line-item__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.product-line-item__qty-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-line-item__qty-label {
    font-size: 14px;
    color: #333;
}

.product-line-item__qty-input {
    min-width: 64px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid #ccc;
    background: #fff;
    color: #111;
}

.product-line-item__remove,
.product-line-item__wishlist {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 14px;
    color: #222;
    text-decoration: underline;
    cursor: pointer;
}

.product-line-item__remove:hover,
.product-line-item__wishlist:hover {
    color: #000;
}

.product-line-item__total {
    text-align: right;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.cart__summary {
    position: sticky;
    top: 100px;
}

.cart__summary-box {
    border: 1px solid #e5e5e5;
    padding: 24px;
    background: #fff;
}

.cart__summary-title {
    margin: 0 0 22px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
}

.cart__summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #333;
}

.cart__summary-label {
    color: #666;
}

.cart__summary-value {
    text-align: right;
    font-weight: 500;
    color: #111;
}

.cart__summary-row--shipping .cart__summary-value {
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

.cart__coupon {
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.cart__coupon-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.cart__coupon-input-wrap {
    display: flex;
    gap: 8px;
}

.coupon-code-field {
    min-width: 0;
    flex: 1;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 14px;
}

.promo-apply-button {
    height: 42px;
    padding: 0 18px;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    font-size: 14px;
    cursor: pointer;
}

.promo-apply-button:hover {
    background: #111;
    color: #fff;
}

.cart__checkout-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-bottom: 16px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: .03em;
    text-align: center;
}

.cart__checkout-action:hover {
    background: #000;
    color: #fff;
}

.cart__continue-shopping {
    display: inline-block;
    color: #111;
    font-size: 14px;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .cart__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cart__summary {
        position: static;
    }
}

@media (max-width: 575px) {
    .cart-page {
        padding: 32px 0 50px;
    }

    .cart__header {
        display: block;
        margin-bottom: 24px;
    }

    .cart__title {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .product-line-item--cart {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 16px;
    }

    .product-line-item__image-wrapper,
    .product-line-item__image {
        width: 96px;
    }

    .product-line-item__image {
        height: 128px;
    }

    .product-line-item__total {
        grid-column: 2;
        text-align: left;
    }

    .product-line-item__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cart__coupon-input-wrap {
        flex-direction: column;
    }

    .promo-apply-button {
        width: 100%;
    }
}