/**
 * WhatsApp Button Styles
 *
 * Styling for WhatsApp button on WooCommerce product pages
 *
 * @package LRM_Customization
 * @subpackage Assets
 */

.custom-wa-button {
    display: inline-block;
    margin-top: 10px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.custom-wa-button.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.custom-wa-button .whatsapp-button-img {
    max-width: 150px;
    height: auto;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.custom-wa-button:hover .whatsapp-button-img {
    transform: scale(1.05);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .custom-wa-button {
        display: block !important;
        margin: 10px 0 !important;
        text-align: center;
    }

    .custom-wa-button .whatsapp-button-img {
        margin: 0 auto !important;
        margin-top: -70px !important;
        display: block;
    }

    .whatsapp-button-container {
        text-align: center;
    }
}
