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

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

FAQ

How can we help you ?

Find the most frequently asked questions here.


When will the request reach me?

Depending on the shipping company chosen and the responsible in charge of delivery , we provide a group of shipping responsible based in major cities, it usually takes 1 to 3 days for the order to be confirmed.


Is there a delivery outside the country?

At present, the shipping companies with which we work, deliver only in the country and in some cities specified in the delivery page.

You can apply for a delivery outside the country to the store team via WhatsApp by providing information on product weight and pricing for international freight forwarders who are not currently registered in the store.


If I have a product with a manufacturing defect?

You must read the return policy to know the conditions of return and exchange, in case of a defect on the product, it was agreed to return, the shipping value of the company is calculated, and the freight returned to the customer. As for the value of the product, it is not calculated for the customer according to the return policy.


I want to order large quantities. Is there a discount?

The store offers a delivery service for orders of large quantities and there is a discount ranging between 10-20% on certain products. You can contact us directly via the contact page and inquire about the quantities.

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