/* Estilos para productos sin precio (consulta por WhatsApp) */

/* Mensaje de consultar precio */
.consultar-precio {
    color: #25D366;
    font-weight: 600;
    font-style: italic;
}

/* Botón de WhatsApp básico */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 600;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp i {
    font-size: 1.2em;
}

/* Botón de WhatsApp destacado para productos sin precio */
.btn-whatsapp-destacado {
    font-size: 1.1em;
    padding: 12px 20px;
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: pulseWhatsApp 2s infinite;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-whatsapp {
        margin-top: 10px;
    }
}
