.wa-f-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: var(--rd-full, 9999px);
    border: 1px solid rgba(0,0,0,0.1);
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.wa-f-container:hover {
    transform: translateY(-4px) scale(1.05);
    background-color: #20b858;
}

.wa-f-icon {
    width: 32px;
    height: 32px;
}

@media (max-width: 1199px) {
    .wa-f-container {
        display: none !important;
    }
}

