/* Add custom Js styles below */ setTimeout(() => { const oldTax = document.querySelector(".store-footer b:last-of-type"); if (!oldTax) return; /* ===== container الرئيسي ===== */ const main = document.createElement("div"); main.className = "business-info"; /* ===== الصف العلوي ===== */ const topRow = document.createElement("div"); topRow.className = "business-top"; // الرقم الضريبي const vatBox = document.createElement("div"); vatBox.className = "info-box"; vatBox.innerHTML = `
الرقم الضريبي
310700144600003
`; // السجل التجاري const crBox = document.createElement("div"); crBox.className = "info-box"; crBox.innerHTML = `
السجل التجاري
2050136964
`; topRow.append(vatBox, crBox); /* ===== الجزء السفلي ===== */ const bottom = document.createElement("div"); bottom.className = "business-bottom"; bottom.innerHTML = ` شهادة التوثيق `; main.append(topRow, bottom); oldTax.replaceWith(main); });