/* زر واتساب العائم - تحديث */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px; /* المسافة من الأسفل */
    right: 25px;  /* المسافة من اليمين */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.2);
    z-index: 2147483647; /* رقم عالٍ جداً لضمان الظهور فوق كل شيء */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
    direction: ltr; /* مهم جداً لمنع قلب الأيقونة */
}

.wa-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.wa-icon {
    width: 32px; /* حجم مناسب للأيقونة داخل الدائرة */
    height: 32px;
    fill: white; /* لون الأيقونة أبيض */
}

/* تحسين للموبايل لرفع الزر فوق شريط سلة السفلي */
@media screen and (max-width: 767px) {
    .wa-float {
        width: 55px;
        height: 55px;
        bottom: 90px; 
        right: 20px;
    }
    .wa-icon {
        width: 30px;
        height: 30px;
    }
}