body {
    background: #eaeaea;
    font-family: Arial, Helvetica, sans-serif;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    max-width: 1250px;
    margin: 32px auto;
    padding: 0 20px 40px;
}

.cart-left,
.cart-right {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    padding: 24px;
}

.cart-right {
    position: sticky;
    top: 24px;
    align-self: start;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f7f7;
    border: 1px solid #d0d7de;
    border-radius: 12px;
    padding: 14px 16px;
    color: #111;
    font-size: 14px;
}

.summary-note strong {
    color: #111;
}

.cart-left h2 {
    margin-bottom: 18px;
    font-size: 24px;
}

.cart-item {
    display: flex;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #ececec;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image img {
    border-radius: 10px;
}

.cart-item-details h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #111;
}

.cart-item-details p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.quantity-controls button {
    width: 28px;
    height: 28px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
}

.quantity-controls span {
    min-width: 24px;
    text-align: center;
    display: inline-block;
}

.remove-btn {
    background: none;
    border: none;
    color: #007185;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
}

.cart-summary h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.cart-summary h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.savings-text,
.shipping-estimate {
    color: #565959;
    font-size: 13px;
    margin-bottom: 0;
}

.proceed-btn {
    width: 100%;
    padding: 14px;
    border: none;
    background: #ffd814;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 16px;
}

.go-cart-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #111;
    border-radius: 24px;
    background: transparent;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.checkout-info p {
    font-size: 13px;
    color: #111;
    margin-bottom: 8px;
}

.checkout-info p {
    font-size: 13px;
    color: #111;
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
}
