.cart .cart-wrapper { }

.cart .product-card { background: white; border-radius: 12px; transition: transform 0.2s; }

    .cart .product-card:hover { transform: translateY(-2px); }

.cart .quantity-input { width: 60px; text-align: center; border: 1px solid #dee2e6; border-radius: 6px; }

.cart .product-image { }

.cart .summary-card { background: white; border-radius: 12px; position: sticky; top: 20px; }

.cart .checkout-btn { background: linear-gradient(135deg, #6366f1, #4f46e5); border: none; transition: transform 0.2s; }

    .cart .checkout-btn:hover { transform: translateY(-2px); background: linear-gradient(135deg, #4f46e5, #4338ca); }

.cart .btn-remove { color: rgb(220, 38, 38); cursor: pointer; transition: all 0.2s; position: absolute; top: 10px; right: 0; }

    .cart .btn-remove:hover { color: #991b1b; }

.cart .quantity-btn { width: 28px; height: 28px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; background: #f3f4f6; border: none; transition: all 0.2s; }

    .cart .quantity-btn:hover { background: #e5e7eb; }

.cart .discount-badge { background: #dcfce7; color: #166534; font-size: 0.875rem; padding: 4px 8px; border-radius: 6px; }

.cart .summary-card h5 { color: #000 !important; font-size: 18px !important; }

.cart .icon-cart { display: none; }

@media screen and (max-width: 768px) {
    .product-image { padding-top: 66.66% !important; }
}
