/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 17 2026 | 18:22:44 */
/* إجبار صورة خلفية السلايد الأول فقط على الظهور الفوري دون التأثير على النصوص */
#slide-151 .wd-slide-bg img {
    opacity: 1 !important;
    visibility: visible !important;
}


/* 1. تحسين ألوان كارت المنتجات (تباين عالي مع الحفاظ على الـ Hover) */
.product-element-bottom a[rel="tag"] {
    color: #444444 !important;
}
.product-element-bottom a[rel="tag"]:hover {
    color: #fb3640 !important; /* أو لون البراند الأساسي بتاعك */
}
.product-element-bottom bdi,
.product-element-bottom .woocommerce-Price-currencySymbol {
    color: #111111 !important; /* الأسعار واضحة وصريحة */
    font-weight: 700;
}
.product-element-bottom .wd-action-text {
    color: #333333 !important;
}

/* 2. تحسين روابط الفوتر وحل مشكلة تمييز الألوان الذكي */
footer a, 
.min-footer a {
    color: #222222 !important;
    text-decoration: none !important; /* مظهر نظيف في البداية */
    transition: all 0.2s ease-in-out;
}

/* الخط واللون يتغيروا بشكل تفاعلي أول ما العميل يقف بالماوس */
footer a:hover, 
.min-footer a:hover {
    color: #000000 !important;
    text-decoration: underline !important; 
}

/* 3. استثناء لوجو الموقع تماماً من أي خطوط تحتانية مشوهة */
a.wd-logo, 
.site-logo a,
a[href="https://aldawlifurniture.com/"] {
    text-decoration: none !important;
    border-bottom: none !important;
}