@keyframes fix-gif {
    0% { opacity: 1; }
    99% { opacity: 100; }
    100% { opacity: 0.99; } /* يجعل المتصفح يعيد تشغيل الصورة بسلاسة */
}

.sicon-fire::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url("https://i.imgur.com/HYSQ9WR.gif");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 8px;
    animation: fix-gif 5s infinite;
}

.sicon-fire + span {
    color: #A020F0 !important;
    font-size: 16px;
}







/* ✅ الخلفية السوداء */
.exit-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* زيادة التعتيم */
    z-index: 9998;
}

/* ✅ النافذة المنبثقة */
.exit-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #19102a;
    padding: 30px; /* زيادة التباعد الداخلي */
    width: 450px; /* زيادة عرض النافذة */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.4); /* تحسين الظل */
    z-index: 9999;
    border-radius: 25px;
    text-align: center;
    color: white;
    font-family: 'Tajawal', sans-serif;
}

/* ✅ تكبير العنوان */
.exit-popup h2 {
    font-size: 22px; /* زيادة حجم العنوان */
    font-weight: bold;
    margin-bottom: 15px;
}

/* ✅ تكبير النص */
.exit-popup p {
    font-size: 18px; /* زيادة حجم النص */
    margin-bottom: 20px;
}

/* ✅ زر التخطي (أو النص الجديد) */
.exit-popup button {
    background: #a658ff;
    color: white;
    border: none;
    padding: 15px 30px; /* زيادة حجم الزر */
    font-size: 18px; /* تكبير النص داخل الزر */
    font-weight: bold;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}

/* ✅ عند تمرير الماوس على الزر */
.exit-popup button:hover {
    background: #873dff;
    transform: scale(1.05); /* إضافة تأثير عند التمرير */
}


.exit-popup button:hover {
    background: #873dff;
}

/* ✅ تأثير الإضاءة الموف على زر "أضف إلى السلة" فقط */
.s-button-element.s-button-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    z-index: 100;
}

/* ✅ عند تمرير الماوس، يكبر الزر مع إضافة ظل موف */
.s-button-element.s-button-btn:hover {
    transform: scale(1.08);
    box-shadow: 0px 10px 20px rgba(166, 88, 255, 0.5);
}