/* Add custom Js code below */ let esm = "أزرق"; let link = "https://azzrk.com/"; document.addEventListener("DOMContentLoaded", function () { document.querySelector(".footer-rights p").innerHTML = ` صنع بإتقان على ${esm} | 2025 `; }); document.addEventListener("DOMContentLoaded", function () { if (window.location.pathname === "/cart") { const mainContent = document.querySelector('.main-content'); if (mainContent) { const img = document.createElement('img'); img.src = 'https://cdn.files.salla.network/homepage/184051986/0b1fcdce-bf68-41ab-ac67-8379ee2f62b4.webp'; img.alt = 'Cart Banner'; img.style.width = "100%"; mainContent.parentNode.insertBefore(img, mainContent); } } }); document.addEventListener("DOMContentLoaded", function () { if (window.location.pathname === "/cart") { const mainContent = document.querySelector('.main-content'); if (mainContent) { const video = document.createElement('video'); video.src = 'https://app.daralkawther.com/malak-store.mp4'; video.controls = false; video.autoplay = true; video.muted = true; video.loop = true; video.style.width = "100%"; video.style.marginBottom = "16px"; mainContent.parentNode.insertBefore(video, mainContent); } } }); document.addEventListener("DOMContentLoaded", function () { const productInfos = document.querySelectorAll('.product-more-info.vertical'); if (!productInfos.length) return; productInfos.forEach(function (mainContent) { const video = document.createElement('video'); video.src = 'https://app.daralkawther.com/malak-store.mp4'; video.controls = false; video.autoplay = true; video.muted = true; video.loop = true; video.style.width = "100%"; video.style.marginBottom = "16px"; mainContent.parentNode.insertBefore(video, mainContent); }); }); document.addEventListener("DOMContentLoaded", function () { // استبعاد صفحة السلة if (window.location.pathname === "/cart") { return; } const mainContent = document.querySelector(".main-content"); if (mainContent) { // إنشاء Wrapper للصورة const wrapper = document.createElement("div"); wrapper.className = "custom-image-wrapper"; wrapper.style.textAlign = "center"; wrapper.style.margin = "20px 0"; // إنشاء الصورة const img = document.createElement("img"); img.src = "https://cdn.files.salla.network/homepage/184051986/0b1fcdce-bf68-41ab-ac67-8379ee2f62b4.webp"; img.alt = "Custom Banner"; img.style.maxWidth = "100%"; img.style.height = "auto"; img.style.display = "block"; img.style.margin = "0 auto"; wrapper.appendChild(img); // 🔍 التحقق هل الجهاز كمبيوتر أو جوال if (window.innerWidth >= 768) { // كمبيوتر const breadcrumbs = document.querySelector(".breadcrumbs"); if (breadcrumbs && breadcrumbs.parentNode) { // ➜ إدراج العنصر بعد الـ breadcrumbs breadcrumbs.parentNode.insertBefore(wrapper, breadcrumbs.nextSibling); } else { // إن لم يوجد breadcrumbs ضعه كما كان mainContent.parentNode.insertBefore(wrapper, mainContent); } } else { // جوال mainContent.parentNode.insertBefore(wrapper, mainContent); } } }); document.addEventListener("DOMContentLoaded", function () { const target = document.querySelector(".tamara-product-widget"); if (target) { // إنشاء wrapper لمنع أي تعارض مع التنسيقات const wrapper = document.createElement("div"); wrapper.className = "custom-banner-before-tamara"; wrapper.style.textAlign = "center"; wrapper.style.margin = "15px 0"; // إنشاء الصورة const img = document.createElement("img"); img.src = "https://cdn.files.salla.network/homepage/184051986/0b1fcdce-bf68-41ab-ac67-8379ee2f62b4.webp"; // ← ضع رابط الصورة هنا img.alt = "Banner Before Tamara"; img.style.maxWidth = "100%"; img.style.height = "auto"; img.style.display = "block"; img.style.margin = "0 auto"; // إضافة الصورة داخل الـ wrapper wrapper.appendChild(img); // إدراج الـ wrapper قبل tamara-product-widget target.parentNode.insertBefore(wrapper, target); } });