انتقل إلى المحتوى
اضبط إعداداتك
اضبط إعداداتك

الدولة

لا تبع معلوماتي الشخصية أو تشاركها

إذا كنت مقيمًا في بعض الولايات الأمريكية (بما فيها كاليفورنيا)، فقد يحق لك إلغاء الاشتراك في «بيع» معلوماتك الشخصية أو «مشاركتها» لأغراض الإعلانات السلوكية عبر سياقات مختلفة (وتُسمى أيضًا «الإعلانات الموجّهة»).


التوضيح

قد نفصح عن معلومات معينة لأطراف ثالثة (مثل شركاء الإعلان) للمساعدة في قياس الأداء وعرض إعلانات ذات صلة. وبموجب بعض قوانين الخصوصية في الولايات، قد تُعتبر عمليات الإفصاح هذه «بيعًا» أو «مشاركة».


كيفية إلغاء الاشتراك

التحكم العالمي في الخصوصية (GPC): إذا أرسل متصفحك إشارة التحكم العالمي في الخصوصية (GPC)، فسنتعامل معها كتفضيل لإلغاء الاشتراك لهذا المتصفح/الجهاز حيثما كان ذلك مدعومًا.


نموذج إلغاء الاشتراك: أرسل النموذج أدناه لتسجيل تفضيل إلغاء الاشتراك لحساب العميل الخاص بك. سنطبّق تفضيلك في أقرب وقت ممكن، مع العلم أن بعض الأنظمة قد تستغرق وقتًا حتى يكتمل تحديثها.

أوافق على جمع عنوان بريدي الإلكتروني وعنوان IP الخاص بي بغرض معالجة هذا الطلب. لمزيد من المعلومات، راجع سياسة الخصوصية.

'; var isEmailValid = function(email) { let regex = /^(([^()\[\]\\.,;:\s@"]+(\.[^()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; if (email == '' || email == undefined) { return false; } else { return regex.test(email); } } var usSendRequest = function(callback) { fetch('https://www.cloudflare.com/cdn-cgi/trace', { method: 'GET' , headers: { 'Content-Type': 'text/plain', }, }) .then(resp => resp.text()) .then(resp => { if (!resp.error) { let ipInfo = resp; let formData = new FormData(); if (type === 'customer/do-not-sell') { isenseGDPR.Cookies.set('cookieconsent_preferences_disabled', 'analytics,marketing,functionality,', { expires: 365 }); isenseGDPR.Cookies.set('cookieconsent_status', 'accept_selected', { expires: 365 }); if (typeof window.Shopify.customerPrivacy !== 'undefined' && typeof window.Shopify.customerPrivacy.setTrackingConsent === 'function') { if (typeof localStorage.getItem("gdprCache") !== 'undefined' && localStorage.getItem("gdprCache") !== null) { let gdprCache = JSON.parse(localStorage.getItem("gdprCache")); if (typeof gdprCache.userIsInSaleOfDataRegion !== 'undefined' && (gdprCache.userIsInSaleOfDataRegion === 'true' || gdprCache.userIsInSaleOfDataRegion === true)) { window.Shopify.customerPrivacy.setTrackingConsent( { "sale_of_data": false, }, () => { console.log('sale_of_data: false')} ); } } } else { console.log('واجهة برمجة تطبيقات خصوصية العميل غير معرّفة في الصفحة الحالية'); } if (document.querySelector('.cc-window')) { document.querySelector('.cc-window').style.display = 'none'; } // إعادة تعيين نص النافذة المنبثقة document.querySelector('#donotsell-modal-container-text').innerHTML = 'أوافق على جمع عنوان بريدي الإلكتروني وعنوان IP الخاص بي لغرض معالجة هذا الطلب. لمزيد من المعلومات، راجع سياسة الخصوصية.'; } formData.append('shop', (typeof window.Shopify !== 'undefined' && window.Shopify.shop) ? window.Shopify.shop : ''); formData.append('email', email); formData.append('type', type); formData.append('sourceOfRequest', 7); formData.append('ipAddress', ipInfo); formData.append('consentGiven', consentGiven); formData.append('page', 'us laws'); formData.append('lang', (typeof window.Shopify !== 'undefined' && window.Shopify.locale) ? window.Shopify.locale : ''); formData.append('gtranslateLang', (typeof isenseGDPR !== 'undefined' && isenseGDPR.Cookies) ? isenseGDPR.Cookies.get('googtrans') : ''); fetch('https://app.consentmo.com/gdprRequests/submitRequest', { method: 'POST', body: formData }) .then(resp => resp.json()) .then(resp => { if (!resp.error) { showInlineSuccessMessage(); } else { showInlineErrorMessage(resp.message || 'حدث خطأ ما. يُرجى المحاولة مرة أخرى.'); } if (typeof callback == 'function') { callback(resp); } }) .catch(error => { showInlineErrorMessage(error.message || 'حدث خطأ ما. يُرجى المحاولة مرة أخرى.'); }) } else { showInlineErrorMessage(resp.message || 'حدث خطأ ما. يُرجى المحاولة مرة أخرى.'); } }) } function showInlineSuccessMessage() { if (!activeSubmitButton) { return; } var form = activeSubmitButton.closest('form'); if (!form) { return; } var errNode = form.querySelector('.gdpr-request-error'); if (errNode) { errNode.remove(); } var successNode = form.querySelector('.gdpr-request-success'); if (!successNode) { successNode = document.createElement('p'); successNode.className = 'gdpr-request-success'; form.appendChild(successNode); } successNode.textContent = successMessage; } function showInlineErrorMessage(message) { if (!activeSubmitButton) { return; } var form = activeSubmitButton.closest('form'); if (!form) { return; } var successNode = form.querySelector('.gdpr-request-success'); if (successNode) { successNode.remove(); } var errorNode = form.querySelector('.gdpr-request-error'); if (!errorNode) { errorNode = document.createElement('p'); errorNode.className = 'gdpr-request-error'; form.appendChild(errorNode); } errorNode.textContent = message; } document.addEventListener("DOMContentLoaded", function() { // أضِف النافذة المنبثقة إلى body، لأنها بخلاف ذلك لن تبقى في المنتصف (حتى إذا كان موضعها ثابتًا) document.querySelector("body").insertAdjacentHTML( 'beforeend', verificationModalContent); document.addEventListener('click', function(e) { let submitButton = e.target.closest('input[type="submit"]'); if (submitButton && submitButton.id && submitButton.id.indexOf('request-submit') !== -1) { activeSubmitButton = submitButton; } }); let searchParams = new URLSearchParams(window.location.search); let param = searchParams.get('id'); if(param) { document.getElementById(param).scrollIntoView(); } // When the user clicks on (x), close the modal document.querySelector('.data-verification-close').addEventListener('click', function(e) { e.preventDefault(); closeVerificationModal(); }); document.querySelector('#data-verification-icon, #data-verification-container p').addEventListener('click', function(e) { e.preventDefault(); // اكتشف النقر على رابط href لأنه مُستبدَل. if(e.target.tagName === "A") { window.open(e.target.href, '_blank'); return; } document.querySelector('#data-verification-icon').classList.add("clicked"); setTimeout(()=>{ toggleFadeiSense(document.querySelector("#data-verification-modal"), false); document.querySelector('#data-verification-background .loading').style.display = 'inline-block'; consentGiven = true; usSendRequest(function(resp) { consentGiven = false; closeVerificationModal(); }); }, 400); }); // التنقل بلوحة المفاتيح في نافذة التحقق من البيانات لتحسين إمكانية الوصول document.addEventListener("DOMContentLoaded", function() { document.querySelector('#data-verification-modal').addEventListener('keydown', function(e) { let isTabPressed = e.keyCode === 9 || e.key === "Tab" || e.code === "Tab"; let isEscapePressed = e.keyCode === 27 || e.key === "Escape" || e.code === "Escape"; let isSpacePressed = e.keyCode === 32 || e.key === " " || e.code === "Space"; let isEnterPressed = e.keyCode === 13 || e.key === "Enter" || e.code === "Enter"; let dataVerificationCloseButton = document.querySelector('.data-verification-close'); let dataVerificationCheckbox = document.querySelector('#data-verification-container input'); let dataVerificationLink = document.querySelector('#data-verification-container a'); let executeFocus = (focusElement) => { focusElement.focus(); e.preventDefault(); }; if (isEscapePressed) { if (dataVerificationCloseButton) { dataVerificationCloseButton.click(); } } if (isSpacePressed || isEnterPressed) { if (document.activeElement === dataVerificationCheckbox) { document.querySelector('#data-verification-container #data-verification-icon').click(); } } if (isTabPressed) { if (e.shiftKey) { if (dataVerificationCloseButton && document.activeElement === dataVerificationCloseButton) { executeFocus(dataVerificationLink); } } else { if (dataVerificationLink && document.activeElement === dataVerificationLink) { executeFocus(dataVerificationCloseButton); } } } }); }); }); function openVerificationModal(){ if(!isEmailValid(email)) { showInlineErrorMessage('بريد إلكتروني غير صالح'); return; } toggleFadeiSense(document.querySelector("#data-verification-modal"), true); toggleFadeiSense(document.querySelector('#data-verification-background'), true); document.querySelector('#data-verification-container input').focus(); } function closeVerificationModal(){ toggleFadeiSense(document.querySelector("#data-verification-background"), false); document.querySelector('#data-verification-icon').classList.remove("clicked"); document.querySelector('#data-verification-background .loading').style.display = 'none'; // ركّز على زر نوع الطلب الذي تم اختياره let donotsellForms = document.querySelectorAll('.form-donotsell-request'); donotsellForms.forEach(function(donotsellForm) { if (donotsellForm.style.display !== "none") { let donotsellFormLinks = donotsellForm.previousElementSibling; if (donotsellFormLinks && donotsellFormLinks.querySelectorAll('li').length === 1) { donotsellFormLinks.querySelector('button').focus(); } } }); } // زر عدم البيع أو المشاركة document.querySelector('#btn-donotsell-opt-out-request').addEventListener('click', function(e) { e.preventDefault(); let isExpanded = this.getAttribute('aria-expanded') === 'true' ? true : false; donotsellSlideUpAll(); if(!isExpanded) { slideDown(document.querySelector('#form-donotsell-opt-out-request'), 200); this.setAttribute("aria-expanded", "true"); } else { slideUp(document.querySelector('#form-donotsell-opt-out-request'), 200); this.setAttribute("aria-expanded", "false"); } }); document.querySelector('#form-donotsell-opt-out-request-submit').addEventListener('click', function(e) { e.preventDefault(); activeSubmitButton = this; email = document.querySelector('#form-donotsell-opt-out-request-email').value; type = 'customer/do-not-sell'; // التحقق مما إذا كان العميل قد سجل الدخول if (typeof __st !== "undefined" && __st.cid != undefined) { document.querySelector('#donotsell-modal-container-text').innerHTML = 'أوافق على جمع عنوان بريدي الإلكتروني وعنوان IP الخاص بي لغرض معالجة هذا الطلب. لمزيد من المعلومات، راجع سياسة الخصوصية.'; } else { document.querySelector('#donotsell-modal-container-text').innerHTML = 'أوافق على جمع عنوان بريدي الإلكتروني وعنوان IP الخاص بي لغرض معالجة هذا الطلب. لمزيد من المعلومات، راجع سياسة الخصوصية. ملاحظة: إذا كنت مستخدمًا زائرًا أو لم تكن قد سجلت الدخول إلى حسابك، فلن يسري اختيارك لإلغاء الاشتراك إلا خلال جلسة المتصفح هذه.'; } openVerificationModal(); }); // تكامل Shopify Customer Privacy API مع GPC وإلغاء الاشتراك if (typeof window.Shopify !== 'undefined' && typeof window.Shopify.customerPrivacy !== 'undefined') { var values = window.Shopify.customerPrivacy.currentVisitorConsent(); // التحقق من وجود إشارة GPC وتطبيق إلغاء الاشتراك إن وُجدت if (typeof navigator.globalPrivacyControl !== 'undefined' && navigator.globalPrivacyControl === true) { window.Shopify.customerPrivacy.setTrackingConsent({"sale_of_data": false}, () => { console.log('تم اكتشاف إشارة GPC - تم تطبيق إلغاء الاشتراك'); }); } }

أنشئ تجهيزاتك المثالية

اتبع مسارًا إرشاديًا للوصول إلى جهاز المحاكاة المثالي لك، مع خيارات تخصيص في كل خطوة.

صمّم منصة السباق بطريقتك

تجهيزات قابلة للتخصيص بالكامل وفقًا لأسلوب قيادتك وتفضيلاتك.

شحن سريع إلى جميع أنحاء العالم

شحن موثوق إلى جميع أنحاء العالم مع إمكانية التتبع

دعم من متسابقي محاكاة حقيقيين

نحن لا نكتفي بالبيع، بل نساعدك على اختيار التجهيز المناسب.

قارن بين المنتجات

{"one"=>"اختر عنصرين أو 3 عناصر للمقارنة", "other"=>"تم تحديد {{ count }} من أصل 3 عناصر"}

اختر العنصر الأول للمقارنة

اختر العنصر الثاني للمقارنة

حدّد العنصر الثالث للمقارنة

قارن