document.addEventListener('DOMContentLoaded', function() { if (document.querySelector('.product-single')) { const productContainer = document.createElement('div'); productContainer.classList.add('product-container'); productContainer.innerHTML = `
جهاز التعطير
احصل على العطر هذا بسعر مميز اليوم
جهاز التعطير
٧٥ ريال سعودي ٩٩ ريال
`; const referenceNode = document.querySelector('.flex.flex-col.space-y-5.mb-5'); if (referenceNode && referenceNode.parentNode) { referenceNode.parentNode.insertBefore(productContainer, referenceNode.nextSibling); } else { const infoSection = document.querySelector('.product-single__info'); if (infoSection) { infoSection.appendChild(productContainer); } } } }); document.addEventListener("DOMContentLoaded", () => { if (location.pathname.includes("/cart")) { ["body", "html", ".app-inner"].forEach(sel => { const el = document.querySelector(sel); if (el) el.style.background = "#f7f6f2"; }); } });