Ez a webhely korlátozottan támogatja az Ön böngészőjét. Javasoljuk, hogy váltson Edge, Chrome, Safari vagy Firefox böngészőre.

Takarítson meg 20%-ot minden terméken – Vásároljon most!

Az oldal GDPR/LGPD/CCPA-CPRA/VCDPA/APPI/PIPEDA megfelelőségének biztosítására használt alkalmazás összegyűjti az Ön IP-címét és e-mail címét az adatok feldolgozása érdekében. További információért ellenőrizze Adatvédelmi szabályzat és szolgáltatási feltételek

Adatok helyesbítése

Az alábbi link segítségével frissítheti fiókadatait, ha azok nem pontosak.

Adathordozhatóság

Az alábbi linkek segítségével letöltheti az általunk tárolt összes adatot, amelyet a jobb élmény érdekében használunk áruházunkban.

Hozzáférés a személyes adatokhoz

Az alábbi link segítségével jelentést kérhet, amely tartalmazza az összes általunk tárolt személyes adatot.

Ne add el a személyes adataimat

Kérelmet nyújthat be annak tudtára, hogy nem járul hozzá személyes adatai gyűjtéséhez vagy értékesítéséhez.

Az elfeledettség joga

Használja ezt a lehetőséget, ha személyes és egyéb adatait szeretné eltávolítani áruházunkból. Tartsd észben, hogy ez a folyamat törli a fiókját, így többé nem fogja tudni elérni és használni.

I give my consent on collecting my email and IP address for the purpose of processing this request. For more check Privacy Policy &amp Terms of Service.

'; var vcdpaSendRequest = 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 }); window.Shopify.trackingConsent.setTrackingConsent(false,function() { console.log('setTrackingConsent false')}); if (window.Shopify.customerPrivacy.userDataCanBeSold()) { window.Shopify.customerPrivacy.setCCPAConsent(false, () => {}); } if (document.querySelector('.cc-window')) { document.querySelector('.cc-window').style.display = 'none'; } // reset popup text document.querySelector('#vcdpa-modal-container-text').innerHTML = 'I give my consent on collecting my email and IP address for the purpose of processing this request. For more check Privacy Policy &amp Terms of Service.'; } formData.append('shop', Shopify.shop); formData.append('email', email); formData.append('type', type); formData.append('sourceOfRequest', 5); formData.append('ipAddress', ipInfo); formData.append('consentGiven', consentGiven); formData.append('page', 'vcdpa'); formData.append('lang', Shopify.locale ? Shopify.locale : ''); formData.append('gtranslateLang', isenseGDPR.Cookies.get('googtrans') ? isenseGDPR.Cookies.get('googtrans') : ''); fetch('https://gdpr.apps.isenselabs.com/gdprRequests/submitRequest', { method: 'POST', body: formData }) .then(resp => resp.json()) .then(resp => { if (!resp.error) { vcdpaSlideUpAll(); if (resp.message.length) { alert(resp.message); } else { alert('Your request has been submitted successfully. Please check your email for more information.'); } } else { alert(resp.message); } if (typeof callback == 'function') { callback(resp); } }) .catch(error => { alert(error.message); }) } else { alert(resp.message); } }) } //Append modal to body, because otherwise it will not stay centered(even if position is fixed) document.querySelector("body").insertAdjacentHTML( 'beforeend', verificationModalContent); document.addEventListener("DOMContentLoaded", function() { 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(); // Detect a href's click, because it is overwritten. 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; vcdpaSendRequest(function(resp) { consentGiven = false; closeVerificationModal(); }); }, 400); }); }); function openVerificationModal(){ 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'; // Focus the button of the request type that was picked let vcdpaForms = document.querySelectorAll('.form-vcdpa-request'); vcdpaForms.forEach(function(vcdpaForm) { if (vcdpaForm.style.display !== "none") { let vcdpaFormLinks = vcdpaForm.previousElementSibling.querySelectorAll('li'); if (vcdpaFormLinks.length === 1) { vcdpaFormLinks[0].querySelector('button').focus(); } else if (vcdpaFormLinks.length > 1) { vcdpaFormPickedLinkValue = document.querySelector('#form-vcdpa-data-account-request-request-type').value; switch (vcdpaFormPickedLinkValue) { case 'customer/requests': vcdpaFormLinks[0].querySelector('button').focus(); break; case 'customer/personal_info': vcdpaFormLinks[1].querySelector('button').focus(); break; case 'customer/orders': vcdpaFormLinks[2].querySelector('button').focus(); break; default: break; } } } }); } document.querySelector('#btn-vcdpa-edit-account-request').addEventListener('click', function(e) { e.preventDefault(); vcdpaSlideUpAll(); slideDown(document.querySelector('#form-vcdpa-edit-account-request'), 200); this.setAttribute("aria-expanded", "true"); }); document.querySelector('#form-vcdpa-edit-account-request-submit').addEventListener('click', function(e) { e.preventDefault(); email = document.querySelector('#form-vcdpa-edit-account-request-email').value; type = 'customer/edit'; openVerificationModal(); }); document.querySelectorAll('#btn-vcdpa-requests-request, #btn-vcdpa-personal-information-request, #btn-vcdpa-orders-request').forEach(element => { element.addEventListener('click', function(e) { e.preventDefault(); vcdpaSlideUpAll(); type = ''; // Reset the popup message document.querySelector('#vcdpa-modal-container-text').innerHTML = 'I give my consent on collecting my email and IP address for the purpose of processing this request. For more check Privacy Policy &amp Terms of Service.'; switch(this.getAttribute('id')) { case 'btn-vcdpa-requests-request': type = 'customer/requests'; break; case 'btn-vcdpa-personal-information-request': type = 'customer/personal_info'; break; case 'btn-vcdpa-orders-request': type = 'customer/orders'; break; } document.querySelector('#form-vcdpa-data-account-request-request-type').value = type; slideDown(document.querySelector('#form-vcdpa-data-account-request'), 200); this.setAttribute("aria-expanded", "true"); }) }); document.querySelector('#form-vcdpa-data-account-request-submit').addEventListener('click', function(e) { e.preventDefault(); email = document.querySelector('#form-vcdpa-data-account-request-email').value; type = document.querySelector('#form-vcdpa-data-account-request-request-type').value; openVerificationModal(); }); document.querySelector('#btn-vcdpa-personal-data-report-request').addEventListener('click', function(e) { e.preventDefault(); vcdpaSlideUpAll(); slideDown(document.querySelector('#form-vcdpa-personal-data-report-request'), 200); this.setAttribute("aria-expanded", "true"); }); document.querySelector('#form-vcdpa-personal-data-report-request-submit').addEventListener('click', function(e) { e.preventDefault(); email = document.querySelector('#form-vcdpa-personal-data-report-request-email').value; type = 'customer/report'; openVerificationModal(); }); document.querySelector('#btn-vcdpa-do-not-sell-request').addEventListener('click', function(e) { e.preventDefault(); vcdpaSlideUpAll(); slideDown(document.querySelector('#form-vcdpa-do-not-sell-request'), 200); this.setAttribute("aria-expanded", "true"); }); document.querySelector('#form-vcdpa-do-not-sell-request-submit').addEventListener('click', function(e) { e.preventDefault(); email = document.querySelector('#form-vcdpa-do-not-sell-request-email').value; type = 'customer/do-not-sell'; // Check if customer is logged in if (__st.cid != undefined) { document.querySelector('#vcdpa-modal-container-text').innerHTML = 'I give my consent on collecting my email and IP address for the purpose of processing this request. For more check Privacy Policy &amp Terms of Service.'; } else { document.querySelector('#vcdpa-modal-container-text').innerHTML = 'I give my consent on collecting my email and IP address for the purpose of processing this request. For more check Privacy Policy &amp Terms of Service. Note: If you are a guest user or you are not logged into your account, your opt-out choice will only be effective for this browser session.'; } openVerificationModal(); }); document.querySelector('#btn-vcdpa-delete-account-request').addEventListener('click', function(e) { e.preventDefault(); vcdpaSlideUpAll(); slideDown(document.querySelector('#form-vcdpa-delete-account-request'), 200); this.setAttribute("aria-expanded", "true"); }); document.querySelector('#form-vcdpa-delete-account-request-submit').addEventListener('click', function(e) { e.preventDefault(); email = document.querySelector('#form-vcdpa-delete-account-request-email').value; type = 'customer/delete'; openVerificationModal(); }); // Keyboard navigation for the compliance page's requests document.querySelector('#vcdpa_page').addEventListener('keydown', function(e) { let isTabPressed = e.keyCode === 9 || e.key === "Tab" || e.code === "Tab"; // This function saves us the trouble of calling e.preventDefault() after every focusing let executeFocus = (focusElement) => {focusElement.focus();e.preventDefault();} if (isTabPressed) { let vcdpaFormPickedLinkValue = document.querySelector('#form-vcdpa-data-account-request-request-type').value; let vcdpaRequestsButton = document.querySelector('#btn-vcdpa-requests-request'); let personalInformationButton = document.querySelector('#btn-vcdpa-personal-information-request'); let ordersButton = document.querySelector('#btn-vcdpa-orders-request'); let personalDataReportButton = document.querySelector('#btn-vcdpa-personal-data-report-request'); let dataAccountFormEmailField = document.querySelector('#form-vcdpa-data-account-request-email'); let dataAccountFormSubmitButton = document.querySelector('#form-vcdpa-data-account-request-submit'); if (e.shiftKey) { if ((document.activeElement === personalInformationButton && vcdpaFormPickedLinkValue === 'customer/requests') || (document.activeElement === ordersButton && vcdpaFormPickedLinkValue === 'customer/personal_info')) { executeFocus(dataAccountFormSubmitButton); } else if (document.activeElement === dataAccountFormEmailField) { if (vcdpaFormPickedLinkValue === 'customer/requests') { executeFocus(vcdpaRequestsButton); } else if (vcdpaFormPickedLinkValue === 'customer/personal_info') { executeFocus(personalInformationButton); } } else if (document.activeElement === personalDataReportButton) { if (vcdpaFormPickedLinkValue !== 'customer/orders') { executeFocus(ordersButton); } } } else { if ((document.activeElement === vcdpaRequestsButton && vcdpaFormPickedLinkValue === 'customer/requests') || (document.activeElement === personalInformationButton && vcdpaFormPickedLinkValue === 'customer/personal_info')) { executeFocus(dataAccountFormEmailField); } else if (document.activeElement === dataAccountFormSubmitButton) { if (vcdpaFormPickedLinkValue === 'customer/requests') { executeFocus(personalInformationButton); } else if (vcdpaFormPickedLinkValue === 'customer/personal_info') { executeFocus(ordersButton); } } else if (document.activeElement === ordersButton) { if (vcdpaFormPickedLinkValue !== 'customer/orders') { executeFocus(personalDataReportButton); } } } } }); // Keyboard navigation in data verification modal for accesibility 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 = event.keyCode === 32 || e.key === " " || event.code === "Space"; let isEnterPressed = event.keyCode === 13 || e.key === "Enter" || event.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'); // This function saves us the trouble of calling e.preventDefault() after every focusing 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); } } } });

5% kedvezmény az első rendelés árából, ha feliratkozik a hírlevélre.

bevásárlókocsi