.beekite-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.beekite-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.beekite-whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* Push up when admin bar is showing */
.admin-bar .beekite-whatsapp-float {
    bottom: 56px;
}

@media (max-width: 600px) {
    .beekite-whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .beekite-whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
