/* ============================================
   floating-wa.css — Floating WhatsApp Button
   ============================================ */

.floating-wa-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #10B981;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease,
                background-color 0.2s ease, box-shadow 0.2s ease;
}

.floating-wa-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-wa-btn:hover {
    background-color: #059669;
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.55), 0 3px 10px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

.floating-wa-btn.show:hover {
    transform: translateY(-2px);
}

/* RTL: mirror to the left side */
[dir="rtl"] .floating-wa-btn {
    right: auto;
    left: 24px;
}
