/* Hide evaluation banner */
div[dir="ltr"].p-2.justify-center.flex.items-center {
    display: none !important;
}

/* WhatsApp floating button */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,.3);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 16px rgba(0,0,0,.4);
}
.wa-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}
