As described in our Privacy Policy, we collect personal information from your interactions with us and our website, including through cookies and similar technologies. We may also share this personal information with third parties, including advertising partners. We do this in order to show you ads on other websites that are more relevant to your interests and for other reasons outlined in our privacy policy.

Sharing of personal information for targeted advertising based on your interaction on different websites may be considered "sales", "sharing," or "targeted advertising" under certain U.S. state privacy laws. Depending on where you live, you may have the right to opt out of these activities. If you would like to exercise this opt-out right, please follow the instructions below.

If you visit our website with the Global Privacy Control opt-out preference signal enabled, depending on where you are, we will treat this as a request to opt-out of activity that may be considered a “sale” or “sharing” of personal information or other uses that may be considered targeted advertising for the device and browser you used to visit our website.

The cookie settings on this website are set to 'allow all cookies' to give you the very best experience. Please click Accept Cookies to continue to use the site.
You have successfully subscribed!
This email has been registered
document.addEventListener('DOMContentLoaded', function () { // Check if the customer is logged in and is placing their first order if (Shopify && Shopify.checkout && isFirstOrder()) { applyDiscountCode('1STORDER'); } }); function isFirstOrder() { // You need to implement this function based on your logic to check if it's the first order // For example, you could use local storage, cookies, or a backend call to validate // This is a dummy implementation return !localStorage.getItem('hasOrdered'); } function applyDiscountCode(discountCode) { fetch('/cart.js') .then(response => response.json()) .then(cart => { if (cart && cart.discount_code === null) { fetch('/cart/update.js', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' }, body: JSON.stringify({ updates: {}, discount_code: discountCode }) }) .then(response => response.json()) .then(cart => { console.log('Discount code applied:', cart); // Update the UI or inform the user if necessary }); } }); } // Set localStorage after the first order is placed // You might need to call this function after a successful checkout function setFirstOrderFlag() { localStorage.setItem('hasOrdered', 'true'); }