.omwb-whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    transition: transform 0.3s ease;
}

/* Move button up on contact page */
body.page-slug-contact-us .omwb-whatsapp-button,
body.page-id-12 .omwb-whatsapp-button,
body.contact .omwb-whatsapp-button,
body.page-template-template-contact .omwb-whatsapp-button,
body[class*="contact"] .omwb-whatsapp-button {
    bottom: 90px !important;
}

.omwb-whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #32be1d;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.omwb-whatsapp-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.omwb-whatsapp-button a::before {
    content: "Have a Question? WhatsApp us!";
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.omwb-whatsapp-button a::after {
    content: "";
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.omwb-whatsapp-button a:hover::before,
.omwb-whatsapp-button a:hover::after {
    opacity: 1;
    visibility: visible;
}

.omwb-whatsapp-button a:hover::before {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.omwb-whatsapp-button svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.omwb-whatsapp-button a:hover svg {
    transform: scale(1.1);
} 