.cart-item-image {
    transition: transform 0.2s ease;
}

.cart-item-image:hover {
    transform: scale(1.05);
}

.quantity-control .btn {
    border-radius: 0;
    min-width: 35px;
}

.quantity-control .btn:first-child {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.quantity-control .btn:last-child {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.quantity-control input {
    border-left: 0;
    border-right: 0;
}

.quantity-control input:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.empty-cart-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.card {
    border: none;
    border-radius: 0.5rem;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

.remove-item:hover {
    background-color: #dc3545;
    color: white;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loading state for quantity buttons */
.quantity-btn:disabled {
    position: relative;
}

.toast-container {
    z-index: 1050;
}