document.addEventListener("DOMContentLoaded", function () { const footer = document.querySelector(".store-footer .grid"); if (!footer) return; const firstCol = footer.children[0]; const secondCol = footer.children[1]; const thirdCol = footer.children[2]; /* ===== 1. اللوجو + الوصف في النص ===== */ if (firstCol && !document.querySelector(".footer-brand")) { const brand = document.createElement("div"); brand.className = "footer-brand"; brand.innerHTML = ` `; firstCol.prepend(brand); } /* ===== 2. إخفاء عنوان "لحم وشحم" ===== */ const title = firstCol.querySelector("h3, h4"); if (title) title.style.display = "none"; });