/* 1. ضربة القاضية على تأثير "التيشيرت" الرمادي في كل الأصناف والمنتجات */
.s-block--category-item, 
.product-card, 
.s-product-card-entry, 
[class*="product-item"], 
[class*="category-item"] {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important; /* إلغاء التوهج الداخلي تماماً */
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; /* حركة مطاطية احترافية */
}

/* 2. الحركة (Hover) الجديدة: "توهج ملكي" لكل المنتجات والأصناف */
.s-block--category-item:hover, 
.product-card:hover, 
.s-product-card-entry:hover, 
[class*="product-item"]:hover, 
[class*="category-item"]:hover {
    transform: translateY(-15px) scale(1.03) !important; /* تكبير ورفع واضحين */
    background-color: #FFFFFF !important; /* خلفية بيضاء تبرز التوهج */
    border-radius: 25px !important;
    
    /* مزيج التوهج: خط خارجي برتقالي صريح مع هالة ذهبية ناعمة */
    box-shadow: 
        0 0 0 2px #CC5500, /* إطار برتقالي رفيع */
        0 20px 40px rgba(212, 175, 55, 0.4) !important; /* هالة ذهبية ناعمة تحت الكارت */
    
    z-index: 10; /* ضمان ظهور الكارت فوق المنتجات الأخرى */
}

/* 3. الهيدر والفوتر: (الأسود والبرتقالي ناطق) */
.header-components, .footer-is-light .store-footer {
    background: #1E293B !important;
    border: none !important;
}

.header-components {
    border-bottom: 5px solid #CC5500 !important;
}

.footer-is-light .store-footer {
    border-top: 5px solid #CC5500 !important;
}

/* 4. منطقة الماوس (الشريط الفرعي): تم إصلاح استجابة الروابط */
.s-header__bottom, 
.s-nav-container, 
#s-nav-container,
.nav-wrapper {
    background: linear-gradient(90deg, #CC5500 0%, #D4AF37 50%, #CC5500 100%) !important;
    position: relative !important;
    z-index: 1 !important;
}

.s-nav-container a, .nav-wrapper a, .header-bottom a {
    color: #FFFFFF !important;
    font-weight: 900 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    /* الإضافات التقنية للإصلاح */
    position: relative !important;
    z-index: 100 !important; /* لرفع الكلمة فوق أي تدرج لوني */
    pointer-events: auto !important; /* التأكيد على أن العنصر قابل للضغط */
    display: inline-block !important; 
}

/* 5. العناوين والوصف (الهوية الملكية لكل المنتجات) */
.product-card__title, .s-product-card-content h3 {
    color: #1E293B !important; /* أسود */
}

.product-card__description, .s-product-card-description, p {
    color: #B8860B !important; /* وصف ذهبي معتق */
}

.product-price, .s-product-card-price {
    color: #CC5500 !important; /* سعر برتقالي */
    font-weight: 900 !important;
}

.product-price-tax {
    color: #D4AF37 !important; /* ضريبة ذهبية */
}

/* 6. الأزرار */
.btn-add-to-cart, .s-button-primary {
    background: linear-gradient(90deg, #CC5500, #D4AF37) !important;
    color: #FFFFFF !important;
    font-weight: bold !important;
}