.pkp_brand_footer {
		display: none;
}
.pkp_navigation_search_wrapper{
display: none;
}
.pkp_structure_footer {
    /* تغيير لون الخلفية للون المطلوب */
    background-color: #2a2a2a !important;
    
    /* إضافة البوردر السفلي الأزرق بسمك 20 بكسل */
    border-bottom: 20px solid #0056b3 !important; /* يمكنك تغيير درجة الأزرق هنا */
    
    /* تنسيقات إضافية لضمان وضوح النصوص */
    color: #ffffff !important;
    padding: 40px 0 20px 0 !important;
    margin-top: 50px !important;
    width: 100% !important;
    max-width: 100% !important;
}
/* توحيد خط الفوتر ليكون Cairo */
.pkp_structure_footer a, 
.pkp_structure_footer p, 
.pkp_structure_footer span {
    color: #cccccc !important;
    font-family: 'Cairo', sans-serif !important;
    text-decoration: none !important;
}

/* تغيير لون الروابط عند تمرير الماوس في الفوتر */
.pkp_structure_footer a:hover {
    color: #ffffff !important;
}
/* =================================================
   1. الإعدادات العامة والخط (Cairo)
=================================================*/
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

html, body, p, a, h1, h2, h3, h4, h5, h6, span, button {
    font-family: 'Cairo', sans-serif !important;
}

/* =================================================
   2. امتداد الهيدر والنافبار بعرض الصفحة الكامل
=================================================*/
.pkp_structure_head, 
.pkp_navigation_primary_wrapper,
.pkp_navigation_primary {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pkp_site_name_wrapper {
    background-color: #2a2a2a !important;
    padding: 35px 5% !important;
    position: relative;
}

/* =================================================
   3. شريط التنقل الأساسي بتأثير 3D (داكن)
=================================================*/
.pkp_navigation_primary {
    /* دمج لونين: رمادي متوسط للأعلى وأسود للأسفل لخلق عمق */
    background: linear-gradient(to bottom, #3a3a3a 0%, #151515 100%) !important;
    border-top: 1px solid #555 !important; /* حافة علوية مضيئة */
    border-bottom: 6px solid #000000 !important; /* قاعدة سوداء سميكة للبروز */
    box-shadow: 0 10px 20px rgba(0,0,0,0.5), 
                inset 0 1px 1px rgba(255,255,255,0.15) !important;
    position: relative;
    z-index: 100;
}

/* تنسيق الروابط الأساسية (خط أبيض) */
.pkp_navigation_primary a {
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 15px 25px !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.dropdown-menu{
background-color: #2a2a2a !important;
}
/* =================================================
   4. القائمة المنسدلة (نفس لون القائمة + خط أبيض)
=================================================*/
.pkp_navigation_primary ul ul {
    /* مطابقة لون القائمة الأساسية مع تأثير 3D */
    background: #222222 !important; 
    border-top: 3px solid #ffffff !important; /* تمييز علوي */
    border-bottom: 8px solid #000000 !important; /* قاعدة 3D سميكة */
    box-shadow: 10px 10px 30px rgba(0,0,0,0.6) !important;
    min-width: 220px !important;
}

.pkp_navigation_primary ul ul li a {
    color: #ffffff !important; /* الحفاظ على لون الخط أبيض */
    font-family: 'Cairo', sans-serif !important;
    background: transparent !important;
    text-align: inherit; 
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    padding: 12px 20px !important;
}

/* تأثير التمرير داخل المنسدلة */
.pkp_navigation_primary ul ul li a:hover {
    background: #333333 !important;
    color: #ffffff !important;
}

/* =================================================
   5. تموضع البحث في الأعلى (عكس تسجيل الدخول)
=================================================*/

/* للعربية (RTL): البحث أقصى اليسار */
html[dir="rtl"] .pkp_navigation_search_wrapper {
    position: absolute !important;
    top: 20px !important;
    left: 5% !important;
    right: auto !important;
    z-index: 2000;
}

/* للإنجليزية (LTR): البحث أقصى اليمين */
html[dir="ltr"] .pkp_navigation_search_wrapper {
    position: absolute !important;
    top: 20px !important;
    right: 5% !important;
    left: auto !important;
    z-index: 2000;
}

/* شكل حقل البحث */
.pkp_navigation_search input {
    background: #444 !important;
    border: 1px solid #666 !important;
    color: #fff !important;
    border-radius: 20px;
    padding: 6px 15px;
}