.wa-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    z-index: 999999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wa-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
    border: none;
    margin: 0;
    padding: 0;
    display: block;
    box-shadow: none;
    background: none;
}
.wa-floating-btn:hover {
    background-color: #128c7e;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    color: #fff;
}
@media (max-width: 768px) {
    .wa-floating-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        border-radius: 50%;
    }
    .wa-text {
        display: none;
    }
}
/* Style for the button inside product page */
.wa-product-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: #fff;
    padding: 15px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    gap: 10px;
    transition: background 0.2s;
}
.wa-product-btn:hover {
    background-color: #128c7e;
    color: #fff;
}
