.whatsapp-float-widget {
    position: fixed;
    bottom: var(--wa-desktop-bottom, 25px);
    left: var(--wa-desktop-left, auto);
    right: var(--wa-desktop-right, 25px);
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.whatsapp-float-widget:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-widget i {
    margin-top: 2px;
}

@media (max-width: 768px) {
    .whatsapp-float-widget {
        bottom: var(--wa-mobile-bottom, 20px);
        left: var(--wa-mobile-left, auto);
        right: var(--wa-mobile-right, 20px);
        width: 55px;
        height: 55px;
        font-size: 32px;
    }
}
