/* Color e identidad del botón inicial */
.add-to-cart-btn {
    background-color: #FF914D;
    border-color: #FF914D;
    color: white;
    transition: all 0.2s ease-in-out;
}

.add-to-cart-btn:hover {
    background-color: #e67e39;
    border-color: #e67e39;
    color: white;
}

/* Estado Intermedio: Cargando */
.btn-loading {
    background-color: #d67436 !important;
    border-color: #d67436 !important;
    opacity: 0.8;
    cursor: not-allowed;
}

/* Estado de Éxito: Notificación Temporal */
.btn-added {
    background-color: #1E8F5A !important;
    border-color: #1E8F5A !important;
    color: white !important;
    cursor: not-allowed;
}