/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Child theme for Hello Elementor
Author: Technowave
Author URI: https://technowavegroup.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* WhatsApp Button Below Product Short Description */
.tw-whatsapp-product-btn {
    margin-top: 18px;
    margin-bottom: 18px;
}

.tw-whatsapp-product-btn a {
    display: inline-block;
    background: #25D366;
    color: #ffffff !important;
    padding: 13px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background 0.2s ease;
}

.tw-whatsapp-product-btn a:hover {
    background: #1ebe5d;
    color: #ffffff !important;
}



/* Sticky WhatsApp Contact Button - All Pages */
.tw-sticky-whatsapp-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 9px;
    background: #25D366;
    color: #ffffff !important;
    padding: 13px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.tw-sticky-whatsapp-btn:hover {
    background: #1ebe5d;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.tw-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.tw-whatsapp-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.tw-whatsapp-text {
    display: inline-block;
    white-space: nowrap;
}

/* Mobile Version */
@media (max-width: 767px) {
    .tw-sticky-whatsapp-btn {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .tw-whatsapp-text {
        display: none;
    }

    .tw-whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }
}