/* WhatsApp Floating Button */
.uag-whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 18px rgba(0,0,0,0.25);
    z-index:999999;
    transition:all 0.3s ease;
    text-decoration:none;
}

/* Icon */
.uag-whatsapp-icon{
    width:32px;
    height:32px;
    object-fit:contain;
}

/* Hover effect */
.uag-whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 10px 25px rgba(0,0,0,0.35);
}

/* Mobile adjustment */
@media (max-width:768px){
    .uag-whatsapp-float{
        width:55px;
        height:55px;
        bottom:20px;
        right:20px;
    }

    .uag-whatsapp-icon{
        width:28px;
        height:28px;
    }
}