document.addEventListener("DOMContentLoaded", function () { // افترضنا أن البانر الكبير يحتوي على هذا الكلاس const bannerSection = document.querySelector('.main-banner'); if (bannerSection) { const productCard = document.createElement('div'); productCard.classList.add('custom-home-product'); productCard.innerHTML = `

🆕 جديدنا: سلفادور نخب خاص

محصول جديد

قهوة مختصة من ارتفاعات شاهقة، بنكهات فريدة.

اطلب الآن
`; // أضفه بعد البانر العريض bannerSection.parentNode.insertBefore(productCard, bannerSection.nextSibling); } });