﻿.cart-card {
    max-width: 400px;
    width: 100%;
    margin: auto;
    padding: 16px;
    background-color: #f8f9fa;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.cart-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-details {
    flex: 1;
}

.cart-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity {
    font-size: 18px;
    font-weight: bold;
    padding: 0 10px;
}

.cart-summary {
    margin-top: 10px;
}

.total {
    font-size: 18px;
    font-weight: bold;
}
