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

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

Return Policy

Return and exchange policy


- The return or exchange of a product is a right for all our customers, and it includes all the products we offer on our shop.

- All the products offered on our shop are subject to the exchange and refund policy according to the terms and conditions stipulated on this page.

- Returns or exchanges can be made if the product is in its original condition when purchased and packed in its original packaging.

- Return within three (3) days and replacement within seven (7) days from the date of purchase.

- Please contact us via the Contact Us page or via our phone numbers to request a return or exchange.

- Please take a picture and send the product with the city, address and order number specified so that it can be replaced by another product in case the product is corrupt or has a certain defect, or it is not used in accordance with the agreement.

- The amount is returned to the customer in full if the product he received is completely different from the product presented on our website.

- We are not responsible for expectations of customer use of the products, which we did not mention on the product page on our website.

- Deduct 30% or a value of at least 25 dirhams if the customer does not want the product and the latter has no defect or problem mentioned.

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