/* ========================================
   ESTILOS PARA BOTONES DE COTIZACIÓN WHATSAPP
   ======================================== */

/* Botón de WhatsApp en tarjetas de producto */
.btn-whatsapp-cotizacion {
    background-color: white !important;
    border: 2px solid #25D366 !important;
    color: #25D366 !important;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.8rem !important; /* Altura reducida */
    border-radius: 25px !important; /* Redondeado completo */
    text-decoration: none;
    font-size: 0.9rem; /* Tamaño de fuente un poco más pequeño */
}

.btn-whatsapp-cotizacion:hover {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-cotizacion:active {
    transform: translateY(0);
}

.btn-whatsapp-cotizacion i {
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* Botón de WhatsApp en modal de detalle - FONDO VERDE por defecto */
#modalWhatsAppButton {
    background-color: #28a745 !important;
    border: 2px solid #28a745 !important;
    color: white !important;
    font-weight: 600;
    font-size: 1rem; /* Reducido de 1.1rem */
    padding: 0.6rem 1.2rem; /* Reducido de 0.8rem 1.5rem */
    border-radius: 30px !important; /* Redondeado completo */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

#modalWhatsAppButton:hover {
    background-color: #4ADE80 !important; /* Verde más CLARO al hover */
    border-color: #4ADE80 !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

#modalWhatsAppButton:active {
    transform: translateY(-1px);
    background-color: #22C55E !important; /* Verde intermedio al hacer clic */
}

#modalWhatsAppButton i {
    font-size: 1.1rem; /* Reducido de 1.3rem */
    margin-right: 0.5rem;
    transition: color 0.3s ease;
}

/* Indicador de "Precio a consultar" en tarjetas */
.price-container .text-primary {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.price-container .text-primary i {
    color: #25D366;
}

/* Animación de pulso para botón WhatsApp (opcional) */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-cotizacion.pulse {
    animation: whatsapp-pulse 2s infinite;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    #modalWhatsAppButton {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    
    .btn-whatsapp-cotizacion {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Asegurar que botones de cotización no interfieran con otros elementos */
.button-wrapper[data-modalidad="cotizacion"] .quantity-controls-wrapper {
    display: none !important;
}

.button-wrapper[data-modalidad="cotizacion"] .add-button {
    display: none !important;
}