نأسف!

إن الصفحة التي تبحث عنها غير موجودة.

الصفحة الرئيسية
const popup = document.getElementById('orderPopup'); const currentProduct = document.getElementById('productName'); function showPopup() { const name = names[Math.floor(Math.random() * names.length)]; const product = (currentProduct && currentProduct.textContent.trim() !== "") ? currentProduct.textContent.trim() : fallbackProducts[Math.floor(Math.random() * fallbackProducts.length)]; popup.innerHTML = `🛍️ ${name} اشترى ${product}`; popup.style.display = 'block'; setTimeout(() => { popup.style.display = 'none'; }, 4500); } setTimeout(() => { showPopup(); setInterval(showPopup, 10000); }, 1500);