.whatsapp-floating{
display:none;
}

#whatsapp-float {
    position: fixed;
    top: 80%;                /* vertical center */
    left: 15px;              /* small gap from left */
    transform: translateY(-50%);
    z-index: 2147483647;     /* always on top */
    display: block;
}

#whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    padding: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    transition: transform 0.2s ease;
}

#whatsapp-float img:hover {
    transform: scale(1.1);
}