/* Add custom CSS styles below */ 
/* كود وهج الزعيم - النسخة الملكية النهائية 2026 */
.zaiem-glow img {
    will-change: filter; /* تحسين أداء المعالج */
    /* توهج يعتمد على اللون الأساسي #E0C25A */
    filter: drop-shadow(0 0 10px rgba(224, 194, 90, 0.45));
    transition: filter 0.5s ease, transform 0.5s ease;
    animation: zaiem-pulse 4s infinite alternate;
}

.zaiem-glow img:hover {
    /* لمعة قوية باللون الفاتح #f6e6a2 عند التفاعل */
    filter: drop-shadow(0 0 22px rgba(246, 230, 162, 0.85));
    transform: scale(1.08) translateY(-5px);
}

@keyframes zaiem-pulse {
    from { filter: drop-shadow(0 0 8px rgba(224, 194, 90, 0.35)); }
    to { filter: drop-shadow(0 0 18px rgba(224, 194, 90, 0.75)); }
}



/* --- الكود النهائي: فصل ألوان العملة (ريال) بدقة --- */

/* =========================================
   أولاً: السعر القديم (original_price)
   الهدف: الرقم + العملة = رمادي ومشطوب
   ========================================= */

/* 1. الرقم نفسه */
#original_price {
    color: #888888 !important;
    text-decoration: line-through !important;
}

/* 2. أيقونة الريال (فقط التي تسكن داخل السعر القديم) */
#original_price .sicon-sar,
#original_price .sicon-sar:before {
    color: #888888 !important; /* لون رمادي للأيقونة */
    text-decoration: line-through !important; /* شطب الأيقونة أيضاً */
}




/* --- 1. الكود الأساسي (الذي يعمل جيداً للمنتجات) --- */
.total-price,
p.total-price {
    color: #E0C25A !important;
}

.product-card__discount span,
.product-card__discount .text-red-600 {
    color: #E0C25A !important;
    border-color: #E0C25A !important;
}

.product-card__content .text-red-600 {
    color: #E0C25A !important;
}

/* --- 2. إصلاح السلة (فصل الألوان بناءً على ID) --- */

/* السعر الجديد (الذي يدفعه العميل) -> ذهبي */
#has_discount {
    color: #E0C25A !important;
}

/* السعر القديم (قبل الخصم) -> رمادي ومشطوب */
#original_price {
    color: #888888 !important; /* لون رمادي */
    text-decoration: line-through !important; /* خط الشطب */
}

/* زر الحذف في السلة -> ذهبي */
.cart-item__remove,
.cart-item .btn--delete {
    color: #E0C25A !important;
}

salla-installment > .mb-5 {
	background: #fff;
	border-radius: 6px;
}