.cotizador-whatsapp-wrapper {
    margin-top: 15px;
    display: block;
    width: 100%;
}

#cotizar-whatsapp-btn {
    background-color: #25d366;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
}

/* Ocultar botón Añadir al Carrito de forma global */
.single_add_to_cart_button,
.woodmart-add-to-cart,
.wd-add-cart-btn,
.woocommerce-variation-add-to-cart .button:not(#cotizar-whatsapp-btn),
button.add_to_cart_button {
    display: none !important;
}

#cotizar-whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
    color: #fff;
}

#cotizar-whatsapp-btn.variation-selected {
    animation: whatsapp-pulse 0.5s ease-in-out;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}


#cotizar-whatsapp-btn .whatsapp-icon {
    width: 30px;
    height: 30px;
    margin-right: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24" fill="white"><path d="M12.031 6.172c-3.181 0-5.767 2.586-5.768 5.766-.001 1.298.38 2.27 1.025 3.128l-.904 3.313 3.393-.89c.81.444 1.706.674 2.62.674 3.18 0 5.768-2.585 5.768-5.766 0-3.18-2.589-5.765-5.769-5.765zm0 10.457c-.783 0-1.547-.208-2.214-.602l-.158-.094-1.99.522.531-1.944-.103-.163c-.432-.686-.661-1.482-.661-2.298 0-2.528 2.057-4.585 4.585-4.585s4.585 2.057 4.585 4.585c0 2.529-2.057 4.585-4.585 4.585zm2.505-3.414c-.137-.068-.812-.401-.938-.447-.126-.046-.217-.068-.309.068-.091.137-.354.447-.434.537-.08.092-.16.103-.297.034-.136-.068-.574-.212-1.095-.677-.406-.363-.679-.81-.759-.948-.08-.137-.008-.211.06-.279.062-.061.137-.16.205-.24.068-.08.092-.137.137-.228.046-.091.023-.171-.011-.24-.034-.068-.309-.744-.423-1.02-.112-.268-.225-.232-.309-.236l-.263-.005c-.091 0-.24.034-.366.171-.126.137-.48.469-.48 1.143s.491 1.325.56 1.417c.068.091.967 1.477 2.342 2.072.327.141.582.225.781.288.328.104.627.089.863.054.263-.039.812-.331.926-.651.114-.32.114-.594.08-.651-.034-.057-.126-.091-.263-.159z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}

/* Responsivo para Woodmart */
@media (max-width: 768px) {

    /* Ajustar botón de WhatsApp para móvil */
    #cotizar-whatsapp-btn {
        padding: 10px 15px;
        font-size: 15px;
        position: relative;
        bottom: 0;
        z-index: 999;
        margin-bottom: 20px;
    }

    /* Opcional: Si quieres que el botón sea un pie de página fijo en móvil */
    /*
    .cotizador-whatsapp-wrapper {
        position: fixed;
        bottom: 10px;
        left: 0;
        right: 0;
        padding: 0 15px;
        z-index: 9999;
    }
    */
}