 .swf-wa-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.swf-wa-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

.swf-wa-button svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .swf-wa-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .swf-wa-button svg {
        width: 28px;
        height: 28px;
    }
}
