/* Estilos para el carrito y descuento */
.cart-summary {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 2px solid #10b981;
}

.cart-summary h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-items {
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #a7f3d0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1e293b;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #10b981;
}

.discount-input-group {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.discount-input-group input {
    flex: 1;
}

.btn-discount {
    background: #10b981;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-discount:hover {
    background: #0da271;
    transform: translateY(-2px);
}

.discount-message {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.discount-message.success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.discount-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.discount-item {
    color: #10b981;
    font-weight: 600;
}