* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f6f1e8;
    color: #1f1a17;
    font-family: Arial, sans-serif;
}

.cart-page {
    width: min(1200px, calc(100% - 32px));
    margin: 32px auto 48px;
}

.user-cart {
    background: #fffdf9;
    border: 1px solid #d8cfc1;
    padding: 24px;
}

.eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a6a58;
}

.user-cart h1 {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
}

.cart-status {
    margin: 0 0 20px;
    padding: 16px;
    background: #f8f3ec;
    border: 1px solid #ded4c7;
}

.cart-status p {
    margin: 0;
}

.cart-table-wrap {
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.cart-table th,
.cart-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #e7dfd4;
    vertical-align: middle;
}

.cart-table th {
    background: #f3ece2;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5d4f44;
    white-space: nowrap;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.cart-product-image {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    overflow: hidden;
    background: #efe7db;
    border: 1px solid #ddd1c0;
}

.cart-product-image img,
.cart-product-placeholder {
    width: 100%;
    height: 100%;
    display: block;
}

.cart-product-image img {
    object-fit: cover;
}

.cart-product-name {
    font-weight: 600;
    white-space: normal;
}

.cart-total-row td {
    font-weight: 700;
    background: #fbf7f1;
}

.cart-total-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cart-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-back-link,
.cart-checkout-link {
    display: inline-block;
    padding: 10px 14px;
    text-decoration: none;
    color: #1f1a17;
    border: 1px solid #cdbda8;
    background: #f3ece2;
}

.cart-back-link:hover,
.cart-checkout-link:hover {
    background: #ebe1d3;
}

.cart-checkout-link {
    background: #1f1a17;
    color: #fffdf9;
    border-color: #1f1a17;
}

.cart-checkout-link:hover {
    background: #3a2f29;
    border-color: #3a2f29;
}

@media (max-width: 768px) {
    .cart-page {
        width: min(100% - 20px, 100%);
        margin: 20px auto 32px;
    }

    .user-cart {
        padding: 16px;
    }

    .user-cart h1 {
        font-size: 26px;
    }

    .cart-table th,
    .cart-table td {
        padding: 10px 12px;
    }

    .cart-product {
        min-width: 180px;
    }
}