/* Cart Styles */
.empty-cart {
    min-height: calc(100vh - 450px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.empty-cart-icon {
    opacity: 0.6;
}

.cart-item {
    transition: all 0.3s ease;
}

.cart-item:hover {
    background-color: #f8f9fa;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.product-title:hover {
    color: #007bff;
    text-decoration: none;
}

.product-meta {
    color: #6c757d;
    font-size: 0.9rem;
}

.remove-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cart-totals {
    font-size: 1rem;
}

@media (max-width: 576px) {
    .cart-item {
        flex-wrap: wrap;
    }

    .cart-item-actions {
        width: 100%;
        margin-top: 10px;
        text-align: right;
    }

    .card-footer .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .card-footer .d-flex {
        flex-direction: column;
    }
}
