/* Add custom Js code below */ // 4. Additional video section const product1 = document.querySelector("div#product-1413043141"); const product2 = document.querySelector("div#product-303078607"); const product3 = document.querySelector("div#product-792967459"); // Create an array of the products to streamline logic const products = [product1, product2, product3]; // Check if at least one product exists if (products.some(product => product)) { // Check if the section already exists if (!document.querySelector("section.offers")) { const newSection = document.createElement("section"); newSection.setAttribute("class", "offers"); newSection.innerHTML = `
عروض خاصة لمحبي القطط

عند شرائك كات توب 20كليو ، ستحصل على كيس رمل جينغو 10 لتر مجانًا بالرائحة التي تختارها!

`; // Insert the new section before the first product that exists for (const product of products) { if (product) { product.before(newSection); break; // Add the section only once } } } }