document.addEventListener('DOMContentLoaded', function() { setTimeout(function() { // الصف الثاني كله - نخفيه const bottomRow = document.querySelector('#mainnav .flex.items-center.justify-center.gap-y-4'); // القائمة نفسها const menu = document.querySelector('#mainnav custom-main-menu'); // الـ div اللي فيه اللوجو const logoDiv = document.querySelector('#mainnav .flex.justify-start.lg\\:justify-center'); if (bottomRow && menu && logoDiv) { // نضيف القائمة بعد اللوجو مباشرة داخل نفس الـ div logoDiv.appendChild(menu); // نخفي الصف الثاني الفاضي bottomRow.style.display = 'none'; } },300); }); document.addEventListener('DOMContentLoaded', function() { setTimeout(function() { if (window.innerWidth > 768) return; const burger = document.querySelector('#mainnav .mburger'); const iconsDiv = document.querySelector('#mainnav .flex.items-center.gap-y-4'); if (burger && iconsDiv) { iconsDiv.insertBefore(burger, iconsDiv.firstChild); burger.style.marginLeft = '0'; burger.style.marginRight = '0'; } const wishlist = iconsDiv ? iconsDiv.querySelector('[aria-label="wishlist"]') : null; const search = iconsDiv ? iconsDiv.querySelector('[aria-label="Search"]') : null; if (wishlist && search) { iconsDiv.appendChild(search); iconsDiv.appendChild(wishlist); } }, 600); }); // كود الجوال document.addEventListener('DOMContentLoaded', function() { setTimeout(function() { if (window.innerWidth > 768) return; const messages = [ 'شحن مجاني للطلبات فوق 450 ريال', 'ضمان تجربة استثنائية', 'التوصيل خلال 3-5 أيام عمل' ]; const topBarMobile = document.createElement('div'); topBarMobile.style.cssText = 'background:#F4EFE8; color:#5F5A55; font-size:12px; padding:6px 0; width:100%; direction:rtl; text-align:center;'; topBarMobile.innerHTML = `
${messages[0]}
`; const target = document.querySelector('header') || document.body.firstElementChild; if (target) target.parentNode.insertBefore(topBarMobile, target); else document.body.prepend(topBarMobile); let current = 0; const msgEl = document.getElementById('top-bar-message'); setInterval(function() { msgEl.style.opacity = '0'; setTimeout(function() { current = (current + 1) % messages.length; msgEl.textContent = messages[current]; msgEl.style.opacity = '1'; }, 500); }, 4000); }, 300); }); // كود الديسكتوب document.addEventListener('DOMContentLoaded', function() { setTimeout(function() { if (window.innerWidth <= 768) return; const topBarDesktop = document.createElement('div'); topBarDesktop.style.cssText = 'background:#F4EFE8; color:5F5A55; font-size:13px; padding:6px 0; width:100%; direction:rtl; position:relative; z-index:9999;'; topBarDesktop.innerHTML = `
المجلة سياسة الخصوصية سياسة الاستبدال
شحن مجاني للطلبات فوق 450 ريال • ضمان تجربة استثنائية • التوصيل خلال 3-5 أيام عمل
support@mashriqi.sa
`; const target = document.querySelector('header') || document.body.firstElementChild; if (target) target.parentNode.insertBefore(topBarDesktop, target); else document.body.prepend(topBarDesktop); }, 300); });