document.addEventListener("DOMContentLoaded", function () { // ✅ شرط الصفحة الرئيسية const isHomePage = window.location.pathname === "/" || window.location.pathname === "/index.html" || document.body.classList.contains("home"); if (!isHomePage) return; if (document.querySelector(".custom-hero")) return; const hero = ` قهوة مختصة بطابع عالمي اكتشف نكهات مميزة من أفضل مزارع القهوة حول العالم، محمصة بعناية لتجربة قهوة استثنائية كل يوم. تسوق الآن `; const header = document.querySelector("header"); if (header) { header.insertAdjacentHTML("afterend", hero); } else { document.body.insertAdjacentHTML("afterbegin", hero); } }); document.addEventListener("DOMContentLoaded", function () { const pcCategories = [ { img: 'https://i.ibb.co/Vcfb9DZG/Frame-1984077845.png', link: 'https://example.com/category1' }, { img: 'https://i.ibb.co/9H55jxM1/Frame-1984077846.png', link: 'https://example.com/category2' }, { img: 'https://i.ibb.co/S4jnKrjt/Frame-1984077847.png', link: 'https://example.com/category3' }, { img: 'https://i.ibb.co/27RzzK75/Frame-1984077848.png', link: 'https://example.com/category4' }, { img: 'https://i.ibb.co/9H55jxM1/Frame-1984077846.png', link: 'https://example.com/category2' } ]; const mobileCategories = [ { img: 'https://i.ibb.co/QwLKxTy/Frame-1984077848.png', link: 'https://example.com/category4' }, { img: 'https://i.ibb.co/yBSdDnpX/Frame-1984077847.png', link: 'https://example.com/category3' }, { img: 'https://i.ibb.co/TMtxJvzW/Frame-1984077846.png', link: 'https://example.com/category2' }, { img: 'https://i.ibb.co/BHWjS4T8/Frame-1984077845.png', link: 'https://example.com/category1' } ]; // نجيب أول عنصر عنده الكلاس المطلوب const targetElement = document.querySelector('.s-block.s-block--fixed-banner.wide-placeholder.my-custom-section'); if (!targetElement) return; const section = document.createElement('section'); section.classList.add('categories-section'); const heading = document.createElement('h2'); heading.textContent = "لماذا تختار قهوتنا؟"; heading.classList.add('section-heading'); section.appendChild(heading); const categoriesContainer = document.createElement('div'); categoriesContainer.classList.add('categories-container'); section.appendChild(categoriesContainer); // نحط الـ section قبل العنصر الهدف targetElement.insertAdjacentElement('beforebegin', section); // دالة لتحديث الصور حسب حجم الشاشة function updateCategories() { const categories = window.innerWidth <= 768 ? mobileCategories : pcCategories; categoriesContainer.innerHTML = ''; // مسح القديم categories.forEach(category => { const categoryDiv = document.createElement('div'); categoryDiv.classList.add('category-item'); const link = document.createElement('a'); link.href = category.link; link.target = '_blank'; const img = document.createElement('img'); img.src = category.img; img.alt = "صورة فئة"; link.appendChild(img); categoryDiv.appendChild(link); categoriesContainer.appendChild(categoryDiv); }); } updateCategories(); // عرض أولي window.addEventListener('resize', updateCategories); // تحديث عند تغيير حجم الشاشة }); const bannerSection = document.querySelector('section.s-block--fixed-banner'); if(bannerSection) { bannerSection.classList.add('my-custom-section'); // إضافة الكلاس الجديد }
اكتشف نكهات مميزة من أفضل مزارع القهوة حول العالم، محمصة بعناية لتجربة قهوة استثنائية كل يوم.