
.container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cos {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 20px;
}

.item-details {
    flex-grow: 1;
}

.item-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
}

.item-price {
    font-size: 0.9em;
}

.cart-old-price del {
    color: #999;
    margin-right: 5px;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 30px;
}

.item-quantity button {
    background-color: #eee;
    border: 1px solid #ccc;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 4px;
}

.item-total {
    font-weight: bold;
    width: 100px;
    text-align: right;
}

.remove-item-button {
    background: none;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    margin-left: 20px;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
}

/* Sumar Comandă */
.sumar-comanda {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
    max-width: 350px;
    margin-left: auto;
    background-color: #f9f9f9;
}

.sumar-comanda h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-top: 0;
}

.total {
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 2px solid #333;
}

.finalizare-comanda-button {
    width: 100%;
    background-color: #ffc107;
    color: #333;
    padding: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    margin-top: 20px;
}

.finalizare-comanda-button:hover {
    background-color: #e0a800;
}