/* Add custom Js styles below */ document.addEventListener("DOMContentLoaded", function () { const footer = document.querySelector("footer"); // الفوتر if (footer) { const credit = document.createElement("div"); credit.style.textAlign = "center"; credit.style.marginTop = "15px"; credit.style.fontSize = "13px"; credit.style.color = "#ffffff"; credit.innerHTML = ` Made with ❤ WIZFREELANCE `; footer.appendChild(credit); } }); document.addEventListener("DOMContentLoaded", function () { const el = document.querySelector(".sold-count"); if (!el) return; const start = parseInt(el.textContent, 10) || 0; const end = start + 2170; let current = start; const interval = setInterval(() => { current += 20; if (current >= end) { current = end; clearInterval(interval); } el.textContent = current; }, 20); });