/* Ania Flower Boutique - global floating WhatsApp button */
.ania-whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:120;
    display:grid;
    place-items:center;
    width:54px;
    height:54px;
    padding:0;
    border:1px solid rgba(46,78,64,.14);
    border-radius:50%;
    background:#fff;
    color:#20bf61;
    box-shadow:0 10px 28px rgba(34,52,43,.18);
    text-decoration:none;
    transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.ania-whatsapp-float svg{
    width:29px;
    height:29px;
    display:block;
    fill:#20bf61;
}
.ania-whatsapp-float svg path:nth-child(2){fill:#fff}
.ania-whatsapp-float:hover,
.ania-whatsapp-float:focus-visible{
    transform:translateY(-3px);
    background:#f9fffb;
    box-shadow:0 14px 34px rgba(34,52,43,.24);
    outline:none;
}
.ania-whatsapp-float:focus-visible{box-shadow:0 0 0 4px rgba(32,191,97,.18),0 14px 34px rgba(34,52,43,.24)}
@media(max-width:768px){
    .ania-whatsapp-float{
        right:16px;
        bottom:18px;
        width:52px;
        height:52px;
    }
    .ania-whatsapp-float svg{width:28px;height:28px}
}
@media(max-width:420px){
    .ania-whatsapp-float{right:14px;bottom:16px;width:50px;height:50px}
}
@media(prefers-reduced-motion:reduce){.ania-whatsapp-float{transition:none}}
@media print{.ania-whatsapp-float{display:none!important}}