document.addEventListener('DOMContentLoaded', function () {
const footerGrid = document.querySelector('.store-footer__inner .grid');
const branchesDiv = document.createElement('div');
const icon = `
`;
branchesDiv.innerHTML = `
فروعنا
`;
footerGrid.appendChild(branchesDiv);
});
document.addEventListener("DOMContentLoaded", function () {
const thirdSection = document.querySelector(
'.store-footer__inner .container > div:nth-child(3)'
);
if (!thirdSection) return;
if (thirdSection.querySelector('.wholesale-numbers')) return;
thirdSection.insertAdjacentHTML('beforeend', `
`);
});