/* Add custom Js code below */ document.addEventListener("DOMContentLoaded", function () { const footerInner = document.querySelector(".store-footer__inner"); if (footerInner) { const customSection = document.createElement("div"); customSection.className = "custom-footer-section"; customSection.innerHTML = `

ساعات العمل

طوال أيام الأسبوع .

من ٢ - ١١ مساءً .

يوم الجمعة من ٤-١١ مساءً.

موقعنا

الرياض ، شارع التخصصي.

0555319066.

`; footerInner.appendChild(customSection);   } });