﻿.cart-item {
    background: #fff;
    border-left: 5px solid #ffc107;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .cart-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .cart-item img {
        object-fit: cover;
    }

.item-controls button {
    width: 35px;
    height: 35px;
    font-weight: bold;
}

.item-controls span.total {
    font-weight: bold;
    color: #007bff;
    min-width: 90px;
    text-align: center;
}

.cart-summary {
    background: #f8f9fa;
    border-top: 3px solid #28a745;
}

.cart-actions button {
    min-width: 120px;
}
