/* 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 = `
`;
topRow.append(vatBox, crBox);
/* ===== الجزء السفلي ===== */
const bottom = document.createElement("div");
bottom.className = "business-bottom";
bottom.innerHTML = `
`;
main.append(topRow, bottom);
oldTax.replaceWith(main);
});