.cart-section {
    background-color: #ffffff;
    padding-top: 120px;
    min-height: calc(100vh - 90px);
}

.cart-section h1, .cart-section h2 {
    font-family: 'Playfair Display', serif;
    color: #7B9C7B;
}

.cart-items, .cart-summary {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Layout a griglia per gli articoli */


/* Aggiorna il grid per mantenere l'allineamento */
.cart-item {
    display: grid;
    grid-template-columns: 80px minmax(200px, 1fr) auto auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}


.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Immagine regalo */
.gift-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

/* Dettagli regalo */
.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-title {
    font-family: 'Playfair Display', serif;
    color: #7B9C7B;
    font-size: 1.2rem;
    margin: 0;
}

.recipient-info, .sender-info {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.recipient-info strong, .sender-info strong {
    color: #333;
}

/* Prezzo */
.cart-item-price {
    font-weight: bold;
    color: #7B9C7B;
    font-size: 1.2rem;
    text-align: right;
}

/* Azioni */
.cart-item-actions {
    display: flex;
    gap: 10px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-message {
    background-color: #7B9C7B;
    color: white;
}

.btn-message:hover {
    background-color: #6a8a6a;
}

.btn-remove {
    background-color: #fff;
    color: #818181;
    border: 1px solid #818181;
}

.btn-remove:hover {
    background-color: #ff4444;
    color: #fff;
}

/* Messaggio regalo */
.item-description {
    display: none;
    grid-column: 1 / -1;
    margin-top: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-style: italic;
    color: #666;
    border-left: 3px solid #7B9C7B;
}

/* Riepilogo carrello */
.cart-summary {
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.summary-row:last-child {
    border-bottom: none;
}

#checkoutBtn {
    width: 100%;
    padding: 15px;
    background-color: #FAB4A7;
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

#checkoutBtn:not(:disabled):hover {
    background-color: #7B9C7B;
}

#checkoutBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Carrello vuoto */
.empty-cart {
    text-align: center;
    padding: 40px 20px;
}

.empty-cart-icon {
    color: #7B9C7B;
    font-size: 48px;
    opacity: 0.5;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: auto 1fr;
        justify-items: start;
    }

    .cart-item-price {
        grid-column: 1 / -1;
        text-align: center;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        justify-content: center;
        width: 100%;
    }
}