/*
 * WhatsApp Floating Icon Styles
 * @package WhatsAppFloatingIcon
 */

/* الأيقونة - الافتراضي (Desktop) */
.wfi-floating-icon {
    position: fixed !important;
    right: 20px !important;
    bottom: 38px !important;
    width: 55px !important;
    height: 55px !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    text-decoration: none !important;
    border-radius: 50% !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.wfi-floating-icon img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    border: 0 !important;
}

/* تأثير عند المرور */
.wfi-floating-icon:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
}

/* تأثير عند الضغط */
.wfi-floating-icon:active {
    transform: scale(0.95) !important;
}

/* نبضة خفيفة لجذب الانتباه */
@keyframes wfi-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

.wfi-floating-icon {
    animation: wfi-pulse 2.5s infinite !important;
}

/* إخفاء على الموبايل لو الإعداد معطل */
body.wfi-hide-mobile .wfi-floating-icon {
    display: none !important;
}

/* إخفاء على الديسكتوب لو الإعداد معطل */
body.wfi-hide-desktop .wfi-floating-icon {
    display: none !important;
}

/* استجابة الموبايل */
@media (max-width: 768px) {
    .wfi-floating-icon {
        width: 48px !important;
        height: 48px !important;
        bottom: 16px !important;
        right: 16px !important;
    }

    .wfi-floating-icon img {
        width: 100% !important;
        height: 100% !important;
    }

    /* إلغاء البالض على الموبايل */
    .wfi-floating-icon {
        animation: none !important;
    }
}

/* تحسينات للـ RTL - على الرغم من أن right هو ما نستخدمه */
html[dir="rtl"] .wfi-floating-icon {
    /* مفيش تغيير مطلوب لأن right بالفعل على اليمين */
}

/* ضمان عدم تأثر الأيقونة بزوم المتصفح أو الإضافات الأخرى */
.wfi-floating-icon * {
    pointer-events: none !important;
}