بعد تأكيد عملية الشراء، نقوم بشحن وإرسال المنتج عبر الطريقة التي قمتم بإختيارها، إما عبر مسؤول الشحن الخاص بنا أو عبر خدمة أمانة إكسبريس.


طرق الشحن:

أمانة إكسبريس: خدمة تضمن لكم تسليم الإرساليات إلى العنوان المطلوب في مدة تتراوح بين 3 أيام و 7 أيام نحوالإتجاهات الرئيسية.

مسؤول الشحن: متجرنا يتعاقد مع مجموعة من مسؤولي الشحن بمجموعة من المدن  يقومون بإيصال المنتجات في مدة تتراوح بين يوم و3 أيام


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);