// JavaScript to calculate discount and add badge document.addEventListener("DOMContentLoaded", function () { // For the homepage document.querySelectorAll(".product-item").forEach(function (product) { const beforePriceElement = product.querySelector(".currency-value.before .value"); const afterPriceElement = product.querySelector(".currency-value.after .value"); const productImage = product.querySelector(".product-thumbnail img"); if (beforePriceElement && afterPriceElement && productImage) { const beforePrice = parseFloat(beforePriceElement.textContent.trim()); const afterPrice = parseFloat(afterPriceElement.textContent.trim()); if (beforePrice > afterPrice) { const discount = Math.round(((beforePrice - afterPrice) / beforePrice) * 100); // Create the badge const badge = document.createElement("div"); badge.className = "discount-badge"; badge.textContent = `-${discount}% تخفيض`; // Append the badge to the product image container productImage.parentElement.style.position = "relative"; // Ensure the parent is positioned productImage.parentElement.appendChild(badge); } } }); // For the product page document.querySelectorAll(".slick-track .preview-item").forEach(function (previewItem) { const beforePriceElement = document.querySelector(".currency-value.before .value"); const afterPriceElement = document.querySelector(".currency-value.after .value"); const productImage = previewItem.querySelector("img"); if (beforePriceElement && afterPriceElement && productImage) { const beforePrice = parseFloat(beforePriceElement.textContent.trim()); const afterPrice = parseFloat(afterPriceElement.textContent.trim()); if (beforePrice > afterPrice) { const discount = Math.round(((beforePrice - afterPrice) / beforePrice) * 100); // Create the badge const badge = document.createElement("div"); badge.className = "discount-badge"; badge.textContent = `-${discount}% تخفيض`; // Append the badge to the product image container previewItem.style.position = "relative"; // Ensure the parent is positioned previewItem.appendChild(badge);
سياسة الاستبدال والاسترجاع:
- الإستبدال والإسترجاع حق مضمون كل عملائنا وهو يشمل جميع المنتجات التي نعرضها على متجرنا.
- جميع المنتجات المعروضة على متجرنا قابلة لسياسة الإستبدال والإسترجع وفق الشروط والأحكام المنصوص عليها في هذه الصحفة.
- يمكن الإرجاع أو الإستبدال إذا كان المنتج بنفس حالته الأصلية عند الشراء ومغلفا بالغلاف الأصلي.
- الاسترجاع خلال ثلاثة (3) أيام والاستبدال خلال سبعة (7) أيام من تاريخ الشراء.
- يرجى التواصل معنا عبر صفحة اتصل بنا أو عبر أرقامنا الهاتفية من أجل طلب الإسترجاع أو الإستبدال.
- يرجى تصوير المنتج وإرساله مع تحديد المدينة والعنوان ورقم الطلب ليتم إستبداله بمنتج اخر في حالة كان المنتج فاسدا أو به عيب معين، أو لا يستغل وفق المتفق عليه.
- يتم إسترجاع المبلغ للعميل كاملا في حالة كان المنتج الذي توصل به مختلف تماما مع وصف المنتج في صفحة المنتج بموقعنا.
- لسنا مسؤولين عن أي توقعات لإستعمال المنتجات من طرف العميل لم نذكرها بصفحة المنتج بموقعنا.