عروض الصيف واسعار جد منخفضة ومناسبة للجميع سارع الان واطلب

عروض الصيف واسعار جد منخفضة ومناسبة للجميع سارع الان واطلب

How To Pay

Cash on delivery

Payment on delivery is one of the payment methods available in our shop, and payment on receipt means that the customer can buy through our online store and choose the product they want, then place the order and choose the method of payment upon receipt of the product. This means that the payment process is deferred until the customer receives the product he ordered online.

We will send the product to the agreed place (city, district, house or other location), after the latter can make the payment.


Pay by bank transfer

Payment is made by a transfer of the amount payable to our bank account, or via one of the money transfer agencies with the agreed name, after the transfer is made, the product is sent to the chosen address.


Pay by PayPal

Payment is made by transferring the agreed amount to our PayPal account, after this step the product is sent to the chosen address.

m.me/531431373396666
// قائمة الولايات الجزائرية (يمكنك تعديل أو إضافة المزيد) const algerianWilayas = [ "أدرار", "الشلف", "الأغواط", "أم البواقي", "باتنة", "بجاية", "بسكرة", "بشار", "البليدة", "البويرة", "تمنراست", "تبسة", "تلمسان", "تيارت", "تيزي وزو", "الجزائر", "الجلفة", "جيجل", "سطيف", "سعيدة", "سكيكدة", "سيدي بلعباس", "عنابة", "قالمة", "قسنطينة", "المدية", "مستغانم", "المسيلة", "معسكر", "ورقلة", "وهران", "البيض", "إليزي", "برج بوعريريج", "بومرداس", "الطارف", "تندوف", "تيسمسيلت", "الوادي", "خنشلة", "سوق أهراس", "تيبازة", "ميلة", "عين الدفلى", "النعامة", "عين تموشنت", "غرداية", "غليزان", "تميمون", "برج باجي مختار", "أولاد جلال", "بني عباس", "إن صالح", "إن قزام", "تقرت", "جانت", "المغير", "المنيعة" ]; // إدراج الولايات داخل القائمة المنسدلة const selectEl = document.getElementById("wilaya"); if (selectEl) { algerianWilayas.forEach(w => { const option = document.createElement("option"); option.value = w; option.textContent = w; selectEl.appendChild(option); }); } // ولايات مع بلدياتها (جزء فقط - يمكنك إضافة الباقي) const dzData = { "الجزائر": ["باب الواد", "القصبة", "بلوزداد", "بئر مراد رايس", "الدار البيضاء", "باش جراح"], "وهران": ["وهران", "السانية", "الكرمة", "المرسى الكبير", "الطفراوي"], "قسنطينة": ["قسنطينة", "الخروب", "عين اسمارة", "حامة بوزيان"], "سطيف": ["سطيف", "العلمة", "بوقاعة", "عين أرنات"], "باتنة": ["باتنة", "أريس", "مروانة", "عين التوتة"] }; // المراجع إلى عناصر HTML const wilayaSelect = document.getElementById("wilaya"); const communeSelect = document.getElementById("commune"); // تعبئة قائمة الولايات Object.keys(dzData).forEach(w => { const option = document.createElement("option"); option.value = w; option.textContent = w; wilayaSelect.appendChild(option); }); // عند اختيار ولاية، عرض البلديات المرتبطة بها wilayaSelect.addEventListener("change", () => { const selectedWilaya = wilayaSelect.value; communeSelect.innerHTML = ''; communeSelect.disabled = true; if (dzData[selectedWilaya]) { dzData[selectedWilaya].forEach(commune => { const option = document.createElement("option"); option.value = commune; option.textContent = commune; communeSelect.appendChild(option); }); communeSelect.disabled = false; } });