콘텐츠로 건너뛰기
설정을 구성하세요
설정을 구성하세요

국가

내 개인정보를 판매하거나 공유하지 마세요

미국의 특정 주(캘리포니아 포함)에 거주하는 경우, 교차 맥락 행동 광고("타겟 광고"라고도 함)를 위한 개인정보의 "판매" 또는 "공유"를 거부할 권리가 있을 수 있습니다.


설명

당사는 성과 측정과 관련성 높은 광고 제공을 위해 특정 정보를 제3자(예: 광고 파트너)에게 공개할 수 있습니다. 일부 미국 주의 개인정보 보호법에 따라 이러한 공개는 "판매" 또는 "공유"로 간주될 수 있습니다.


옵트아웃 방법

글로벌 개인정보 보호 제어(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('현재 페이지에 고객 개인정보 보호 API가 정의되어 있지 않습니다'); } 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에 추가합니다(position이 fixed인 경우에도 해당) 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(); }); // GPC 및 옵트아웃을 위한 Shopify 고객 개인정보 보호 API 연동 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"=>"비교할 항목을 2~3개 선택하세요", "other"=>"3개 항목 중 {{ count }}개 선택됨"}

비교할 첫 번째 항목을 선택하세요

비교할 두 번째 항목을 선택하세요

비교할 세 번째 항목을 선택하세요

비교하기