<!doctype html>
<!--[if IE 9]> <html class="ie9 no-js supports-no-cookies" lang="en"> <![endif]-->
<!-- [if (gt IE 9)|!(IE)]><! -->
<html class="no-js supports-no-cookies" lang="en">

  

  <script>
    function deepEqual(obj1, obj2) {
        if (obj1 === obj2) return true;

        if (typeof obj1 !== 'object' || obj1 === null || typeof obj2 !== 'object' || obj2 === null) {
            console.log(obj1, obj2, "typeof obj1 !== 'object' || obj1 === null || typeof obj2 !== 'object' || obj2 === null");
            return false;
        }

        const keys1 = Object.keys(obj1);
        const keys2 = Object.keys(obj2);

        if (keys1.length !== keys2.length) {
            // Handle the edge case for items with only id, quantity, and properties[_intuitive_cid]
            if ((keys1.length === 3 && keys2.length > 3) || (keys2.length === 3 && keys1.length > 3)) {
                const id1 = obj1.id || obj1['id'];
                const id2 = obj2.id || obj2['id'];
                const cid1 = obj1['properties[_intuitive_cid]'] || obj1.properties?._intuitive_cid;
                const cid2 = obj2['properties[_intuitive_cid]'] || obj2.properties?._intuitive_cid;

                // Check if one cid is empty and the other has value
                if (cid1 === '' && cid2 !== '') {
                    obj1['properties[_intuitive_cid]'] = parseInt(cid2);
                } else if (cid2 === '' && cid1 !== '') {
                    obj2['properties[_intuitive_cid]'] = parseInt(cid1);
                }

                if (id1 !== id2 || (cid1 !== cid2 && cid1 !== '' && cid2 !== '')) {
                    console.log('intuit edge case');
                    return false;
                }
            } else {
                return false;
            }
        }

        for (let key of keys1) {
            if (key === 'quantity' || key === 'original_line_price' || key === 'final_line_price' || key === 'line_price') continue;
            if (key === 'properties' && '_intuitive_cid' in obj1.properties && '_intuitive_cid' in obj2.properties) {
                const { _intuitive_cid, ...rest1 } = obj1.properties;
                const { _intuitive_cid: _c, ...rest2 } = obj2.properties;
                if (!deepEqual(rest1, rest2)) return false;
            } else if (key === 'final_price') {
                if (obj1.final_price !== obj2.final_price) {
                    console.log(obj1, obj2, 'not equal: final_price');
                    return false;
                }
            } else if (typeof obj1[key] === 'object' && typeof obj2[key] === 'object') {
                if (!deepEqual(obj1[key], obj2[key])) return false;
            } else if (obj1[key] !== obj2[key] && key !== '_intuitive_cid') {
                console.log(obj1[key], obj2[key], 'not equal key: ' + key);
                return false;
            }
        }

        return true;
    }


    function combineQuantities(objects) {
        const result = [];

        objects.forEach((obj) => {
            if(typeof obj?.properties?._intuitive_cid == 'undefined' || obj?.properties?._intuitive_cid === ''){
              if(typeof obj?.properties == 'undefined'){
                obj.properties = {};
              }
              obj.properties._intuitive_cid = 1;
            }
            let found = false;
            for (let resObj of result) {
                if (
                    obj.product_id === resObj.product_id &&
                    obj.variant_id === resObj.variant_id &&
                    deepEqual(obj, resObj)
                ) {
                    resObj.quantity += obj.quantity;
                    found = true;
                    break;
                }
            }
            if (!found) {
                result.push({ ...obj });
            }
        });

        return result;
    }
  </script>

  
    <script>

      

      function parenthesisCartCount(){

        let cartCountElement = document.querySelector("#slidecarthq .cart-count");
        if(cartCountElement && typeof cartCountElement != 'undefined' && cartCountElement != null && cartCountElement.innerHTML?.indexOf("(") !== 0){
          document.querySelector("#slidecarthq .cart-count").innerHTML = "(" + (cartCountElement.innerHTML?.length ? cartCountElement.innerHTML : 0) + ")"
        }
        

        fetch(`${window.location.origin}/cart.js`)
          .then(res => res.clone().json().then(data => {
            console.log(data.items, ' from cart fetch on theme.liquid');
            // data.items.map((item) => {
            //   console.log(item, item?.properties?._original_price_text_per_item, parseInt(item?.properties?._original_price_text_per_item?.replace(/[^a-zA-Z0-9]/g, '')), ' is cart item ')
            // });

            let totalItemCount = 0;

            data.items.map((item) => {
              const originalPriceText = item?.properties?._original_price_text_per_item;
              const originalPrice = parseInt(originalPriceText?.replace(/[^a-zA-Z0-9]/g, ''));
              console.log(item, originalPriceText, originalPrice, ' is cart item ');

              // Main element
              const mainElement = document.querySelector(`[data-line-item-id="${item.id}"]`);
              if(mainElement){

                const quantitySelect = mainElement.querySelector('.quantity-selector input');
                const quantity = quantitySelect ? parseInt(quantitySelect.value) : 1;

                console.log(totalItemCount, quantity, ' adding qty to total ')
                totalItemCount += quantity;
                
                if (typeof originalPriceText != 'undefined') {
                  // Get .price-discount-block child of the product id
                  const priceDiscountBlock = mainElement.querySelector('.price-discount-block');

                  
                  
                  if (priceDiscountBlock) {
                    // Get the quantity
                    
                    // Calculate the total original price
                    const totalOriginalPrice = originalPrice * quantity;
                    // console.log(totalOriginalPrice, originalPrice, quantity, ' is ttl , orig, qty')

                    // Update the .price-discount-block with the calculated price
                    const strikethroughPrice = priceDiscountBlock.querySelector('.strikethrough-price');
                    if (strikethroughPrice) {
                      strikethroughPrice.style.textDecoration = 'line-through';
                      strikethroughPrice.style.color = 'red';
                      strikethroughPrice.style.paddingRight = '1rem';
                      strikethroughPrice.textContent = `$${totalOriginalPrice.toFixed(2)}`;
                    } else {
                      const newStrikethroughPrice = document.createElement('span');
                      newStrikethroughPrice.className = 'strikethrough-price';
                      newStrikethroughPrice.style.textDecoration = 'line-through';
                      newStrikethroughPrice.style.color = 'red';
                      newStrikethroughPrice.style.paddingRight = '1rem';
                      newStrikethroughPrice.textContent = `$${totalOriginalPrice.toFixed(2)}`;
                      priceDiscountBlock.appendChild(newStrikethroughPrice);
                    }
                  }

                  
                }
              }
            });

            if(cartCountElement && typeof cartCountElement != 'undefined' && cartCountElement != null){
              console.log(totalItemCount, 'update cart count true')
              document.querySelector("#slidecarthq .cart-count").innerHTML = "(" + totalItemCount + ")"
            }

        }));
      }

      

      setTimeout(parenthesisCartCount, 150);

      function checkAndOpenSlideCart() {
            if (window.SLIDECART) {
                window.SLIDECART_UPDATED = function(cart) {
                  // console.log('updated cart')
                  setTimeout(parenthesisCartCount, 150);
                }

                window.SLIDECART_REMOVED_FROM_CART = function({ id }) {
                  setTimeout(parenthesisCartCount, 150);
                }

                // Slide cart is loaded, open the cart
                setTimeout(window.SLIDECART_OPEN, 100);
                setTimeout(parenthesisCartCount, 150);
                console.log('Slide cart opened.');
            } else {
                // Wait for SLIDECART to be true
                setTimeout(checkAndOpenSlideCart, 100); // Check every 100ms
                setTimeout(parenthesisCartCount, 150);
            }
        }

        function quickCheckSlideCartOpen(){
          if (!window.SLIDECART) {
                    console.log('Slide cart not loaded yet. Waiting...');
                    checkAndOpenSlideCart(); // Call the function that checks and opens the cart
                    setTimeout(parenthesisCartCount, 150);
                } else {
                  window.SLIDECART_OPEN()
                  setTimeout(parenthesisCartCount, 150);
                }
        }

        


        document.addEventListener('DOMContentLoaded', function() {
          

            window.SLIDECART_ADD_TO_CART = function({ id, quantity }) {
              // Fires whenever an item has been added to cart
              window.SLIDECART_OPEN()
              setTimeout(parenthesisCartCount, 150);
            }

            const addToCartButtons = document.querySelectorAll('[data-add-to-cart]');
            addToCartButtons.forEach(button => {
                button.addEventListener('click', function(event) {
                    event.preventDefault(); 
                    // event.stopPropagation();
                    // console.log('add to cart clicked')
                    if (!window.SLIDECART) {
                        console.log('Slide cart not loaded yet. Waiting...');
                        checkAndOpenSlideCart(); // Call the function that checks and opens the cart
                    }
                    setTimeout(parenthesisCartCount, 150);
                });
            });

            const goToCartElements = document.querySelectorAll('[href="/cart"]');
            goToCartElements.forEach(element => {
                // element.removeAttribute('onclick');
                element.addEventListener('click', function(event) {
                    event.preventDefault(); // Prevent the default link click

                    quickCheckSlideCartOpen();
                    
                });
            });

        });

    </script>

    <style>
      .slidecarthq .cart-count{
        display:none;
      }
      
    </style>
  

  <!-- <![endif] -->
  
  <head>
    <!-- Google Tag Manager -->
    <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
    new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
    j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
    'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
    })(window,document,'script','dataLayer','GTM-K8KSV92P');</script>
    <!-- End Google Tag Manager -->
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
    <meta name="theme-color" content="#231f20">
    <link rel="canonical" href="https://lightintheattic.net/">

    <link rel="dns-prefetch" href="https://shopify.lita-app.com">
    <link rel="preconnect" href="https://shopify.lita-app.com">

    

    <link rel="preconnect" href="https://kit.fontawesome.com">
    <link rel="dns-prefetch" href="https://kit.fontawesome.com">

    <!-- stylesheets -->
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/theme.scss.css?v=204589516139556881779177780" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/grid-16-col.css?v=112812543984892592791778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.site-banner.scss.css?v=43524709413099121091778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.snippets.pagination.scss.css?v=46339002316055082171778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.sections.about.scss.css?v=87277710018820688871778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.sections.header.scss.css?v=8700085359675642421779202456" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.sections.hero.scss.css?v=183723845098769583421778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.sections.featured-collection.scss.css?v=103119814032130118091778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.sections.featured-cards.scss.css?v=84938280635077722631778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.sections.staff-picks.scss.css?v=20583956651887494221778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.sections.newsletter.scss.css?v=46868104687872737081778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.sections.product.scss.css?v=134870106269930617661778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.sections.footer.scss.css?v=67266790641516115801778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.templates.cart.scss.css?v=124580026544870374341778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.templates.collection.scss.css?v=82269638632095427131779177779" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.templates.customer.scss.css?v=179177608366773432541778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.templates.page.scss.css?v=175038657629465796181778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.templates.search.scss.css?v=143055504664846608451779177779" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/style.wishlist.scss?v=163720225227506318461778233821" rel="stylesheet" type="text/css" media="all" />
    <link rel="stylesheet" href="//lightintheattic.net/cdn/shop/t/153/assets/component-menu-drawer.css?v=57615467500452416091778233821" media="print" onload="this.media='all'">
    <noscript><link href="//lightintheattic.net/cdn/shop/t/153/assets/component-menu-drawer.css?v=57615467500452416091778233821" rel="stylesheet" type="text/css" media="all" /></noscript>

    <!-- fonts -->
    <link rel="stylesheet" href="https://use.typekit.net/gjw2hqa.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link
      href="https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@700&family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
      rel="stylesheet"
    >

    <!-- Slick Slider -->
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/slick.css?v=117389695914220358461778233821" rel="stylesheet" type="text/css" media="all" />
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/slick-theme.css?v=11072021452447009381778233821" rel="stylesheet" type="text/css" media="all" />

    <!-- HAMBURGER ANIMATIONS -->
    <link rel="stylesheet" type="text/css" href="//lightintheattic.net/cdn/shop/t/153/assets/hamburgers.css?v=75776693421750635341778233821">

    

    
      <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="wuPke4ramLrR8EEGV16sPk_G1xAAqIhvlqcdJLu1ABw">
<meta name="facebook-domain-verification" content="xeehgkhxgkj53dsbi2aise0e0ssm13">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/8064172096/digital_wallets/dialog">
<meta name="shopify-checkout-api-token" content="1f4a56fdd7f569cc28ef9562cb960d3c">
<meta id="in-context-paypal-metadata" data-shop-id="8064172096" data-venmo-supported="true" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="USD">
<script async="async" src="/checkouts/internal/preloads.js?locale=en-US"></script>
<link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
<script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-US&shop_id=8064172096" crossorigin="anonymous"></script>
<script id="shopify-features" type="application/json">{"accessToken":"1f4a56fdd7f569cc28ef9562cb960d3c","betas":["rich-media-storefront-analytics"],"domain":"lightintheattic.net","predictiveSearch":true,"shopId":8064172096,"locale":"en"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "lightintheatticrecordsandtapes.myshopify.com";
Shopify.locale = "en";
Shopify.currency = {"active":"USD","rate":"1.0"};
Shopify.country = "US";
Shopify.theme = {"name":"working on search lita-shopify-liquid\/main","id":158282186997,"schema_name":"Slate","schema_version":"0.11.0","theme_store_id":null,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "lightintheattic.net/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";
Shopify.shopJsCdnBaseUrl = "https://cdn.shopify.com/shopifycloud/shop-js";
Shopify.SignInWithShop = Shopify.SignInWithShop || {};
Shopify.SignInWithShop.User = Shopify.SignInWithShop.User || {};
Shopify.SignInWithShop.User.recognized = false;</script>
<script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
<script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
<script>
  window.ShopifyPay = window.ShopifyPay || {};
  window.ShopifyPay.apiHost = "shop.app\/pay";
  window.ShopifyPay.redirectState = null;
</script>
<script>
  window.Shopify = window.Shopify || {};
  window.Shopify.SignInWithShop = window.Shopify.SignInWithShop || {};
  window.Shopify.SignInWithShop.assetMetrics = { sampleRate: 0.01 };
  window.Shopify.SignInWithShop.eligible = true;
</script>
<script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
<script defer="defer" async type="module" src="//lightintheattic.net/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js"></script>
<script type="module">
  await import("//lightintheattic.net/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js");

  window.Shopify.SignInWithShop?.initShopCartSync?.({"fedCMEnabled":true,"windoidEnabled":true});

</script>
<script>
  window.Shopify = window.Shopify || {};
  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  window.Shopify.featureAssets['shop-js'] = {"shop-toast-manager":["modules/v2/loader.shop-toast-manager.en.esm.js"],"shop-cash-offers":["modules/v2/loader.shop-cash-offers.en.esm.js"],"listener":["modules/v2/loader.listener.en.esm.js"],"shop-button":["modules/v2/loader.shop-button.en.esm.js"],"init-shop-user-recognition":["modules/v2/loader.init-shop-user-recognition.en.esm.js"],"init-windoid":["modules/v2/loader.init-windoid.en.esm.js"],"init-fed-cm":["modules/v2/loader.init-fed-cm.en.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/loader.init-shop-email-lookup-coordinator.en.esm.js"],"avatar":["modules/v2/loader.avatar.en.esm.js"],"init-shop-cart-sync":["modules/v2/loader.init-shop-cart-sync.en.esm.js"],"shop-login-button":["modules/v2/loader.shop-login-button.en.esm.js"],"shop-user-recognition":["modules/v2/loader.shop-user-recognition.en.esm.js"],"checkout-modal":["modules/v2/loader.checkout-modal.en.esm.js"],"init-customer-accounts-sign-up":["modules/v2/loader.init-customer-accounts-sign-up.en.esm.js"],"pay-button":["modules/v2/loader.pay-button.en.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/loader.init-shop-for-new-customer-accounts.en.esm.js"],"shop-cart-sync":["modules/v2/loader.shop-cart-sync.en.esm.js"],"init-customer-accounts":["modules/v2/loader.init-customer-accounts.en.esm.js"],"shop-login":["modules/v2/loader.shop-login.en.esm.js"],"shop-follow-button":["modules/v2/loader.shop-follow-button.en.esm.js"],"lead-capture":["modules/v2/loader.lead-capture.en.esm.js"],"payment-terms":["modules/v2/loader.payment-terms.en.esm.js"]};
</script>
<script>(function() {
  var isLoaded = false;
  function asyncLoad() {
    if (isLoaded) return;
    isLoaded = true;
    var urls = ["https:\/\/feed.omegacommerce.com\/js\/init.js?shop=lightintheatticrecordsandtapes.myshopify.com","\/\/www.powr.io\/powr.js?powr-token=lightintheatticrecordsandtapes.myshopify.com\u0026external-type=shopify\u0026shop=lightintheatticrecordsandtapes.myshopify.com","https:\/\/formbuilder.hulkapps.com\/skeletopapp.js?shop=lightintheatticrecordsandtapes.myshopify.com","https:\/\/static.cdn.printful.com\/static\/js\/external\/shopify-product-customizer.js?v=0.25\u0026shop=lightintheatticrecordsandtapes.myshopify.com","\/\/cdn.shopify.com\/proxy\/b7cb4714fd9576e8f7a2541771c86c60da9c9f9ef694b85d0a78bb1df6389f12\/api.kimonix.com\/kimonix_analytics.js?shop=lightintheatticrecordsandtapes.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA","https:\/\/cdn.logbase.io\/lb-upsell-wrapper.js?shop=lightintheatticrecordsandtapes.myshopify.com","https:\/\/chimpstatic.com\/mcjs-connected\/js\/users\/9a8330e981a13533c8791d815\/d731eb7c2f1fd2de9e3974307.js?shop=lightintheatticrecordsandtapes.myshopify.com","https:\/\/cdn.jsdelivr.net\/gh\/apphq\/slidecart-dist@master\/slidecarthq-forward.js?4\u0026shop=lightintheatticrecordsandtapes.myshopify.com","\/\/cdn.shopify.com\/proxy\/b264c90c6959a2c826c6abbaa55073e5b5e55aba543f2ea00a9f3578575a6e40\/api.kimonix.com\/kimonix_void_script.js?shop=lightintheatticrecordsandtapes.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA","\/\/backinstock.useamp.com\/widget\/91444_1767160712.js?category=bis\u0026v=6\u0026shop=lightintheatticrecordsandtapes.myshopify.com"];
    for (var i = 0; i < urls.length; i++) {
      var s = document.createElement('script');
      s.type = 'text/javascript';
      s.async = true;
      s.src = urls[i];
      var x = document.getElementsByTagName('script')[0];
      x.parentNode.insertBefore(s, x);
    }
  };
  if(window.attachEvent) {
    window.attachEvent('onload', asyncLoad);
  } else {
    window.addEventListener('load', asyncLoad, false);
  }
})();</script>
<script id="__st">var __st={"a":8064172096,"offset":-25200,"reqid":"86c30be6-0f5f-49d8-be65-bf6595a00803-1780985147","pageurl":"lightintheattic.net\/?gad_source=1\u0026gad_campaignid=21457158928\u0026gbraid=0AAAAAqegzJtzEvC4Kpw2NRiw9o-0GEnQ1\u0026gclid=Cj0KCQjw0JnRBhDJARIsALobnXaf_gRFHi1WdKl4kimR385Z4ZcwlHWvgwk7p_NO-cVtNo-aWAYtqKQaAtHIEALw_wcB","u":"62b3e85ab1b0","p":"home"};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<script id="form-persister">!function(){'use strict';const t='contact',e='new_comment',n=[[t,t],['blogs',e],['comments',e],[t,'customer']],o='password',r='form_key',c=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',o],s=()=>{try{return window.sessionStorage}catch{return}},i='__shopify_v',u=t=>t.elements[r],a=function(){const t=[...n].map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(',');var e;return e=t,()=>e?[...document.querySelectorAll(e)].map((t=>t.form)):[]}();function m(t){const e=u(t);a().includes(t)&&(!e||!e.value)&&function(t){try{if(!s())return;!function(t){const e=s();if(!e)return;const n=u(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){u(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:r})),t.elements[r].value=e}(t,e),function(t,e){const n=s();if(!n)return;const r=[...t.querySelectorAll(`input[type='${o}']`)].map((({name:t})=>t)),u=[...c,...r],a={};for(const[o,c]of new FormData(t).entries())u.includes(o)||(a[o]=c);n.setItem(e,JSON.stringify({[i]:1,action:t.action,data:a}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(t)}const f=t=>{if('true'===t.dataset.persistBound)return;const e=function(t,e){const n=function(t){return'function'==typeof t.submit?t.submit:HTMLFormElement.prototype.submit}(t).bind(t);return function(){let t;return()=>{t||(t=!0,(()=>{try{e(),n()}catch(t){(t=>{console.error('form submit failed',t)})(t)}})(),setTimeout((()=>t=!1),250))}}()}(t,(()=>{m(t)}));!function(t,e){if('function'==typeof t.submit&&'function'==typeof e)try{t.submit=e}catch{}}(t,e),t.addEventListener('submit',(t=>{t.preventDefault(),e()})),t.dataset.persistBound='true'};!function(){function t(t){const e=(t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form})(t);e&&m(e)}document.addEventListener('submit',t),document.addEventListener('DOMContentLoaded',(()=>{const e=a();for(const t of e)f(t);var n;n=document.body,new window.MutationObserver((t=>{for(const e of t)if('childList'===e.type&&e.addedNodes.length)for(const t of e.addedNodes)1===t.nodeType&&'FORM'===t.tagName&&a().includes(t)&&f(t)})).observe(n,{childList:!0,subtree:!0,attributes:!1}),document.removeEventListener('submit',t)}))}()}();</script>
<script integrity="sha256-JjoPp5ZfB1sSAs5SQaol1x1GgvveM+BgmRzyDexInEQ=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//lightintheattic.net/cdn/shopifycloud/storefront/assets/storefront/load_feature-1bd60354.js" crossorigin="anonymous"></script>
<script crossorigin="anonymous" defer="defer" src="//lightintheattic.net/cdn/shopifycloud/storefront/assets/shopify_pay/storefront-bf1cdb70.js?v=20250812"></script>
<script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://lightintheattic.net/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
</script>
<script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
</script>
<script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
</script>
<script async="async" integrity="sha256-hlq21VGceRKy8z+Fjhropk1BwDPACP0RdQ5rBrATyUo=" src="//cdn.shopify.com/shopifycloud/storefront/assets/storefront/origin_trials-67b41cb9.js" crossorigin="anonymous"></script>
<link id="shopify-accelerated-checkout-styles" rel="stylesheet" media="screen" href="https://lightintheattic.net/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
<style id="shopify-accelerated-checkout-cart">
        #shopify-buyer-consent {
  margin-top: 1em;
  display: inline-block;
  width: 100%;
}

#shopify-buyer-consent.hidden {
  display: none;
}

#shopify-subscription-policy-button {
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  font-size: inherit;
  cursor: pointer;
}

#shopify-subscription-policy-button::before {
  box-shadow: none;
}

      </style>

<script id="shopify-cfh-end">window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
    

    <!-- icons b045d7d4f8 -->
    <script src="https://kit.fontawesome.com/324b93ce3c.js" crossorigin="anonymous"></script>

    

    <!-- [if (gt IE 9)|!(IE)]><! -->
    <script src="//lightintheattic.net/cdn/shop/t/153/assets/vendor.js?v=136679440790961884971778233821" defer="defer"></script>
    <!-- <![endif] -->
    <!--[if lt IE 9]> <script src="//lightintheattic.net/cdn/shop/t/153/assets/vendor.js?v=136679440790961884971778233821"></script> <![endif]-->

    <!-- [if (gt IE 9)|!(IE)]><! -->
    <script src="//lightintheattic.net/cdn/shop/t/153/assets/theme.js?v=165705327795272698671778233821" defer="defer"></script>
    <!-- <![endif] -->
    <!--[if lt IE 9]> <script src="//lightintheattic.net/cdn/shop/t/153/assets/theme.js?v=165705327795272698671778233821"></script> <![endif]-->

    <script
      src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"
      integrity="sha512-bnIvzh6FU75ZKxp0GXLH9bewza/OIw6dLVh9ICg0gogclmYGguQJWl8U30WpbsGTqbIiAwxTsbe76DErLq5EDQ=="
      crossorigin="anonymous"
      referrerpolicy="no-referrer"
    ></script>

    <!-- Slick Slider -->
    <script src="//lightintheattic.net/cdn/shop/t/153/assets/slick.js?v=18270799639888039791778233821" type="text/javascript"></script>
    <!-- fancybox on productpage -->
    

    <script>
      document.documentElement.className = document.documentElement.className.replace('no-js', 'js');

      window.theme = {
        strings: {
          addToCart: "Add to Cart",
      soldOut: "Sold Out",
      unavailable: "Unavailable"
          },
      moneyFormat: "${{amount}}"
        };
    </script>

    <!-- COOKIE -->
    <script src="//lightintheattic.net/cdn/shop/t/153/assets/custom-cookie.js?v=38916089555021838291778233821" async></script>

    

<script>window.BOLD = window.BOLD || {};
    window.BOLD.common = window.BOLD.common || {};
    window.BOLD.common.Shopify = window.BOLD.common.Shopify || {};
    window.BOLD.common.Shopify.shop = {
      domain: 'lightintheattic.net',
      permanent_domain: 'lightintheatticrecordsandtapes.myshopify.com',
      url: 'https://lightintheattic.net',
      secure_url: 'https://lightintheattic.net',
      money_format: "${{amount}}",
      currency: "USD"
    };
    window.BOLD.common.Shopify.customer = {
      id: null,
      tags: null,
    };
    window.BOLD.common.Shopify.cart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"USD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0};
    window.BOLD.common.template = 'index';window.BOLD.common.Shopify.formatMoney = function(money, format) {
        function n(t, e) {
            return "undefined" == typeof t ? e : t
        }
        function r(t, e, r, i) {
            if (e = n(e, 2),
                r = n(r, ","),
                i = n(i, "."),
            isNaN(t) || null == t)
                return 0;
            t = (t / 100).toFixed(e);
            var o = t.split(".")
                , a = o[0].replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1" + r)
                , s = o[1] ? i + o[1] : "";
            return a + s
        }
        "string" == typeof money && (money = money.replace(".", ""));
        var i = ""
            , o = /\{\{\s*(\w+)\s*\}\}/
            , a = format || window.BOLD.common.Shopify.shop.money_format || window.Shopify.money_format || "$ {{ amount }}";
        switch (a.match(o)[1]) {
            case "amount":
                i = r(money, 2, ",", ".");
                break;
            case "amount_no_decimals":
                i = r(money, 0, ",", ".");
                break;
            case "amount_with_comma_separator":
                i = r(money, 2, ".", ",");
                break;
            case "amount_no_decimals_with_comma_separator":
                i = r(money, 0, ".", ",");
                break;
            case "amount_with_space_separator":
                i = r(money, 2, " ", ",");
                break;
            case "amount_no_decimals_with_space_separator":
                i = r(money, 0, " ", ",");
                break;
            case "amount_with_apostrophe_separator":
                i = r(money, 2, "'", ".");
                break;
        }
        return a.replace(o, i);
    };
    window.BOLD.common.Shopify.saveProduct = function (handle, product) {
      if (typeof handle === 'string' && typeof window.BOLD.common.Shopify.products[handle] === 'undefined') {
        if (typeof product === 'number') {
          window.BOLD.common.Shopify.handles[product] = handle;
          product = { id: product };
        }
        window.BOLD.common.Shopify.products[handle] = product;
      }
    };
    window.BOLD.common.Shopify.saveVariant = function (variant_id, variant) {
      if (typeof variant_id === 'number' && typeof window.BOLD.common.Shopify.variants[variant_id] === 'undefined') {
        window.BOLD.common.Shopify.variants[variant_id] = variant;
      }
    };window.BOLD.common.Shopify.products = window.BOLD.common.Shopify.products || {};
    window.BOLD.common.Shopify.variants = window.BOLD.common.Shopify.variants || {};
    window.BOLD.common.Shopify.handles = window.BOLD.common.Shopify.handles || {};window.BOLD.common.Shopify.saveProduct(null, null);window.BOLD.apps_installed = {"Customer Pricing":1} || {};window.BOLD.common.Shopify.metafields = window.BOLD.common.Shopify.metafields || {};window.BOLD.common.Shopify.metafields["bold_rp"] = {"recurring_type":2};window.BOLD.common.Shopify.metafields["bold_csp_defaults"] = {};window.BOLD.common.cacheParams = window.BOLD.common.cacheParams || {};
    window.BOLD.common.cacheParams.recurring_orders = 1591024151;
</script><!-- social meta tags -->
    <meta property="og:site_name" content="Light in the Attic">
<meta property="og:url" content="https://lightintheattic.net/">
<meta property="og:title" content="Music | Light In The Attic Records">
<meta property="og:type" content="website">
<meta property="og:description" content="Light in the Attic">


<meta name="twitter:site" content="@lightintheattic">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Music | Light In The Attic Records">
<meta name="twitter:description" content="Light in the Attic">


    
      <link rel="shortcut icon" href="//lightintheattic.net/cdn/shop/files/LITA-Favicon-128x128_32x32.png?v=1614787221" type="image/png">
    


  
    <title>
  
    Music | Light In The Attic Records
  
  
  
  
  &ndash; Light in the Attic
  
  </title>

    
    <script> window.sd__PreorderUniqueData ={"preorderSetting":{"pre_badges":"No","force_preorder":"No","badge_text":"Pre-Order","badge_bk":"FFFFFF","badge_color":"FFFFFF","badgeShape":"Rectangle","badgePosition":"top_right","badge_text_size":"10","animateclass":"hvr-no","global_preorderlimit":"100","button_text":"PREORDER","button_message":"PREORDER NOW","nopreordermessage":"No Pre-Order for this product","mode":"hover","position":"","button_color":"#231F20","button_text_color":"#FFFFFF","button_text_size":"14px","button_font_weight":"normal","button_width":"100%","button_top_margin":"5px","button_radius":"0px","tooltip_bkcolor":"#FFD50D","tooltip_opt":"Yes","tooltip_textcolor":"#FFFFFF","custom_note":"Pre-order Item","custom_note_label":"Note","qty_limit":"","qty_check":"No","error_customer_msg":"Sorry..!! This much quantity is not available. You can avail maximum <PROQTY>","enable_country":"","location_enable":"No","error_message_geo":"Sorry !!! No Pre-Order available at this location.","mandatory_for_customers":"No","customer_delivery_date_feature":"No","customer_delivery_time_feature":"No","customer_delivery_label":"Schedule Delivery"},"developerSetting":{"formselector":"form.d2c-cart-1, form.d2c-cart-2, form.simple-variant__form, #AddToCartForm","buttonselector":"button.d2c-1 , button.d2c-2 , button.d2c-3 , button.d2c-4, button.simple-add","variantselector1":".variant-selector-1 , .variant-selector-2, .variant-selector-3, .simple-variant","variantselector2":"input[name=\"quantity\"]","variantselector3":".product-price","tags_badges":"","badges_allpages":"","badges_allpages_hide_attr":"","checkoutattr":"input[name=\"checkout\"]","subtotalclass":"","partialtext":"Partial Deposit:","remainingtext":"Total Remaining Balance:","drawerbuttonattr":"#drawer input[name=\"checkout\"], .yv_side_drawer_wrapper.mini_cart a[href=\"\/checkout\"], #drawer button[name=\"checkout\"], .Drawer button[name=\"checkout\"]","drawersubtotal":"","drawerevents":"header a[href=\"\/cart\"]","remainingenable":"No"},"generalSetting":{"counter_theme":"sd_counter1","comingsoontext":"Coming Soon","notify_autosent":"","coupon_option":"No","account_coupon":"No","auto_coupon":"No","shipping1":"","shipping2":"","tax_1":"","tax_2":"","com_badges":"","com_badge_text":"Coming-Soon","com_badge_bk":"FF1919","com_badge_color":"ffff","com_badge_text_size":"11px","comBadgeShape":"Rectangle","comBadgePosition":"top_right","enable_favicon":"No","favbgcolor":"FFFFFF","favtxtcolor":"FFFFFF","preorder_mode":"mode1","global_preorderlimit":"100","mixed_cart":"No","mixed_cart_mode":"inline","mixed_cart_heading":"Warning: you have pre-order and in-stock products in the same cart","mixed_cart_content":"Shipment of your in-stock items may be delayed until your pre-order item is ready for shipping.","counter_days":"Days","counter_hours":"Hours","counter_minutes":"Minutes","counter_seconds":"Seconds"},"notifySetting":{"enablenotify":"No","notify_type":"slide","notifylinktext":"Notify me","sd_notifybuttontext":"Notify me","notifylinktextcolor":"000","notifylink_bkcolor":"fff","notify_textalign":"left","notify_link_txtsize":"14","notify_link_deco":"underline","notify_link_weight":"normal","en_inject":"No","selectinject":"Inject after","injectevent":"CLASS","injectvalue":"sd-advanced-preorder"},"partialSettings":{"payment_type_text":"Payment Type","full_partial":"Yes","fullpay_text":"Preorder","partialpay_text":"Partial Payment","cart_total":"No","total_text":"Partial Cart","checkout_text":"Partial Checkout","note_checkout1":"Initial Partial Payment (Check \"My Account\" page in store for balance payment)","note_checkout2":"Final Partial Payment","full_note_checkout":"Pay initial payment -","partial_cart":"Yes","partial_msg_txt":"Pay initial payment -","account_login":"","fullpay_message_text":"Pay full payment - ","partialpay_message_text":"Pay initial payment - ","fullpaybtntext":"Pay Full","partialpaybtntext":"Pay Partial","par_badges":"","par_badge_text":"Partial-Order","par_badge_bk":"FF1919","par_badge_color":"ffff","par_badge_text_size":"11px","enabletimer":"No","timermsg":"Hurry Up !!","timertextcolor":"000","timerbkg":"ddd","timeralign":"left","timertextweight":"normal","timer":"25","timer_border":"none","timerborderpx":"1","timerbordercolor":"000","custom_priceonoff":"No","custom_paytext":"Custom Price"},"AccountPageSetting":{"float_button":"No"},"app":{"appenable":"Yes","memberplan":"advancepremium","status_activation":"active","p_status_activation":"active","advanced_premium":"","today_date_time":"2026-06-08","today_time":"23:05"}}</script>

    <!-- Slick Slider -->
    <script src="//js.klevu.com/core/v2/klevu.js"></script>
    <script type="text/javascript">
        (function(c,l,a,r,i,t,y){
            c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
            t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
            y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
        })(window, document, "clarity", "script", "jkryeiv6td");
    </script>
    <!-- custom css call -->
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/custom.css?v=118657736534149328751780565697" rel="stylesheet" type="text/css" media="all" />


    <!-- responsive css call -->
    <link href="//lightintheattic.net/cdn/shop/t/153/assets/responsive.css?v=97033651257754736601778233821" rel="stylesheet" type="text/css" media="all" />
  <!-- BEGIN app block: shopify://apps/essential-announcer/blocks/app-embed/93b5429f-c8d6-4c33-ae14-250fd84f361b --><script>
  
    window.essentialAnnouncementConfigs = [];
  
  window.essentialAnnouncementMeta = {
    productCollections: null,
    productData: null,
    templateName: "index",
    collectionId: null,
  };
  
</script>

 

<style>
  .essential_annoucement_bar_wrapper {display: none;}
</style>



<script src="https://cdn.shopify.com/extensions/019e7f13-389c-7211-887b-f12f0be5db9f/essential-announcement-bar-111/assets/announcement-bar-essential-apps.js" defer></script>


<!-- END app block --><!-- BEGIN app block: shopify://apps/klaviyo-email-marketing-sms/blocks/klaviyo-onsite-embed/2632fe16-c075-4321-a88b-50b567f42507 -->












  <script async src="https://static.klaviyo.com/onsite/js/Vxftjn/klaviyo.js?company_id=Vxftjn"></script>
  <script>!function(){if(!window.klaviyo){window._klOnsite=window._klOnsite||[];try{window.klaviyo=new Proxy({},{get:function(n,i){return"push"===i?function(){var n;(n=window._klOnsite).push.apply(n,arguments)}:function(){for(var n=arguments.length,o=new Array(n),w=0;w<n;w++)o[w]=arguments[w];var t="function"==typeof o[o.length-1]?o.pop():void 0,e=new Promise((function(n){window._klOnsite.push([i].concat(o,[function(i){t&&t(i),n(i)}]))}));return e}}})}catch(n){window.klaviyo=window.klaviyo||[],window.klaviyo.push=function(){var n;(n=window._klOnsite).push.apply(n,arguments)}}}}();</script>

  




  <script>
    window.klaviyoReviewsProductDesignMode = false
  </script>









<!-- END app block --><!-- BEGIN app block: shopify://apps/advanced-preorder-partial-pay/blocks/app-embed/1e2e5cca-bfda-4196-a3b1-7faf2b23c326 --><!-- BEGIN app snippet: advanced-preorder -->
<script>
var sd__PreorderMetaObject = null;
var user_type = sd__PreorderMetaObject['sd-preorder-metaobject-definition']['user_type']
  </script>
<!-- END app snippet --><!-- END app block --><!-- BEGIN app block: shopify://apps/hulk-form-builder/blocks/app-embed/b6b8dd14-356b-4725-a4ed-77232212b3c3 --><!-- BEGIN app snippet: hulkapps-formbuilder-theme-ext --><script type="text/javascript">
  
  if (typeof window.formbuilder_customer != "object") {
        window.formbuilder_customer = {}
  }

  window.hulkFormBuilder = {
    form_data: {},
    shop_data: {"shop_vBK4f3VTi8q7LkBObGAfTA":{"shop_uuid":"vBK4f3VTi8q7LkBObGAfTA","shop_timezone":"America\/Los_Angeles","shop_id":49722,"shop_is_after_submit_enabled":true,"shop_shopify_plan":"Plus","shop_shopify_domain":"lightintheatticrecordsandtapes.myshopify.com","shop_created_at":"2021-03-23T07:16:52.893-05:00","is_skip_metafield":false,"shop_deleted":false,"shop_disabled":false}},
    settings_data: {"shop_settings":{"shop_customise_msgs":[],"default_customise_msgs":{"is_required":"is required","thank_you":"Thank you! The form was submitted successfully.","processing":"Processing...","valid_data":"Please provide valid data","valid_email":"Provide valid email format","valid_tags":"HTML Tags are not allowed","valid_phone":"Provide valid phone number","valid_captcha":"Please provide a valid CAPTCHA response.","valid_url":"Provide valid URL","only_number_alloud":"Provide valid number in","number_less":"must be less than","number_more":"must be more than","image_must_less":"Image must be less than 20MB","image_number":"Images allowed","image_extension":"Invalid extension! Please provide image file","error_image_upload":"Error in image upload. Please try again.","error_file_upload":"Error in file upload. Please try again.","your_response":"Your response","error_form_submit":"Error occur.Please try again after sometime.","email_submitted":"Form with this email is already submitted","invalid_email_by_zerobounce":"The email address you entered appears to be invalid. Please check it and try again.","download_file":"Download file","card_details_invalid":"Your card details are invalid","card_details":"Card details","please_enter_card_details":"Please enter card details","card_number":"Card number","exp_mm":"Exp MM","exp_yy":"Exp YY","crd_cvc":"CVV","payment_value":"Payment amount","please_enter_payment_amount":"Please enter a payment amount.","address1":"Address line 1","address2":"Address line 2","city":"City","province":"Province","zipcode":"Zip code","country":"Country","blocked_domain":"This form does not accept addresses from","file_must_less":"File must be less than 20MB","file_extension":"Invalid extension! Please provide file","only_file_number_alloud":"files allowed","previous":"Previous","next":"Next","must_have_a_input":"Please enter at least one field.","please_enter_required_data":"Please enter required data","atleast_one_special_char":"Include at least one special character","atleast_one_lowercase_char":"Include at least one lowercase character","atleast_one_uppercase_char":"Include at least one uppercase character","atleast_one_number":"Include at least one number","must_have_8_chars":"Must have 8 characters long","be_between_8_and_12_chars":"Be between 8 and 12 characters long","please_select":"Please Select","phone_submitted":"Form with this phone number is already submitted","user_res_parse_error":"Error while submitting the form","valid_same_values":"values must be the same","product_choice_clear_selection":"Clear Selection","picture_choice_clear_selection":"Clear Selection","remove_all_for_file_image_upload":"Remove All","invalid_file_type_for_image_upload":"You can't upload files of this type.","invalid_file_type_for_signature_upload":"You can't upload files of this type.","max_files_exceeded_for_file_upload":"You can not upload any more files.","max_files_exceeded_for_image_upload":"You can not upload any more files.","file_already_exist":"File already uploaded","max_limit_exceed":"You have added the maximum number of text fields.","cancel_upload_for_file_upload":"Cancel upload","cancel_upload_for_image_upload":"Cancel upload","cancel_upload_for_signature_upload":"Cancel upload"},"shop_blocked_domains":[]}},
    features_data: {"shop_plan_features":{"shop_plan_features":["unlimited-forms","full-design-customization","export-form-submissions","multiple-recipients-for-form-submissions","multiple-admin-notifications","enable-captcha","unlimited-file-uploads","save-submitted-form-data","set-auto-response-message","conditional-logic","form-banner","save-as-draft-facility","include-user-response-in-admin-email","disable-form-submission","mail-platform-integration","stripe-payment-integration","pre-built-templates","create-customer-account-on-shopify","google-analytics-3-by-tracking-id","facebook-pixel-id","bing-uet-pixel-id","advanced-js","advanced-css","api-available","customize-form-message","hidden-field","restrict-from-submissions-per-one-user","utm-tracking","ratings","privacy-notices","heading","paragraph","shopify-flow-trigger","domain-setup","block-domain","address","html-code","form-schedule","after-submit-script","customize-form-scrolling","on-form-submission-record-the-referrer-url","password","duplicate-the-forms","include-user-response-in-auto-responder-email","elements-add-ons","admin-and-auto-responder-email-with-tokens","email-export","premium-support","google-analytics-4-by-measurement-id","google-ads-for-tracking-conversion","validation-field","load_form_as_popup","advanced_conditional_logic","forms-limit","submissions-visibility-limit","file-upload"]}},
    shop: null,
    shop_id: null,
    plan_features: null,
    validateDoubleQuotes: false,
    assets: {
      searchableDropdown: "https://cdn.shopify.com/extensions/019e6828-4915-74c6-afbe-b272d2b36387/form-builder-by-hulkapps-69/assets/searchable-dropdown.js",
      extraFunctions: "https://cdn.shopify.com/extensions/019e6828-4915-74c6-afbe-b272d2b36387/form-builder-by-hulkapps-69/assets/extra-functions.js",
      extraStyles: "https://cdn.shopify.com/extensions/019e6828-4915-74c6-afbe-b272d2b36387/form-builder-by-hulkapps-69/assets/extra-styles.css",
      bootstrapStyles: "https://cdn.shopify.com/extensions/019e6828-4915-74c6-afbe-b272d2b36387/form-builder-by-hulkapps-69/assets/theme-app-extension-bootstrap.css",
    },
    translations: {
      htmlTagNotAllowed: "HTML Tags are not allowed",
      sqlQueryNotAllowed: "SQL Queries are not allowed",
      doubleQuoteNotAllowed: "Double quotes are not allowed",
      vorwerkHttpWwwNotAllowed: "The words \u0026#39;http\u0026#39; and \u0026#39;www\u0026#39; are not allowed. Please remove them and try again.",
      maxTextFieldsReached: "You have added the maximum number of text fields.",
      avoidNegativeWords: "Avoid negative words: Don\u0026#39;t use negative words in your contact message.",
      customDesignOnly: "This form is for custom designs requests. For general inquiries please contact our team at info@stagheaddesigns.com",
      zerobounceApiErrorMsg: "We couldn\u0026#39;t verify your email due to a technical issue. Please try again later.",
    }

  }

  

  window.FbThemeAppExtSettingsHash = {}
  
</script><!-- END app snippet --><!-- END app block --><!-- BEGIN app block: shopify://apps/warnify-pro-warnings/blocks/main/b82106ea-6172-4ab0-814f-17df1cb2b18a --><!-- BEGIN app snippet: cart -->









  <script>    var Elspw = {      params: {        money_format: "${{amount}}",        cart: {          "total_price": 0,          "attributes": {},          "items": [                      ]        }      }    };  </script>
<!-- END app snippet --><!-- BEGIN app snippet: settings -->
  <script>    (function(){      Elspw.loadScript=function(a,b){var c=document.createElement("script");c.type="text/javascript",c.readyState?c.onreadystatechange=function(){"loaded"!=c.readyState&&"complete"!=c.readyState||(c.onreadystatechange=null,b())}:c.onload=function(){b()},c.src=a,document.getElementsByTagName("head")[0].appendChild(c)};      Elspw.config= {"enabled":true,"button":"form[action=\"/cart/add\"] [type=submit], form[action=\"/cart/add\"] .shopify-payment-button__button","css":"","tag":"Els PW","alerts":[],"grid_enabled":1,"cdn":"https://s3.amazonaws.com/els-apps/product-warnings/","theme_app_extensions_enabled":1} ;          })(Elspw)  </script>  <script defer src="https://cdn.shopify.com/extensions/019e01a4-02a3-72a4-8085-6406b7b9f536/cli-26/assets/app.js"></script>

<script>
  Elspw.params.remodalScriptPath = "https://cdn.shopify.com/extensions/019e01a4-02a3-72a4-8085-6406b7b9f536/cli-26/assets/remodal.js";
  Elspw.config = {
    ...(Elspw.config || {}),
    current_date: "2026\/06\/08 23:05",
    current_weekday: +"1",
    current_language: "en",
  }
  Elspw.params.cssPath = "https://cdn.shopify.com/extensions/019e01a4-02a3-72a4-8085-6406b7b9f536/cli-26/assets/app.css";
</script><!-- END app snippet --><!-- BEGIN app snippet: elspw-jsons -->















<!-- END app snippet -->


<!-- END app block --><script src="https://cdn.shopify.com/extensions/019cd7c9-c46e-7c0b-ba02-bcd8296c03fb/preorder-65/assets/advanced.preorder.js" type="text/javascript" defer="defer"></script>
<link href="https://cdn.shopify.com/extensions/019cd7c9-c46e-7c0b-ba02-bcd8296c03fb/preorder-65/assets/advanced.preorder.css" rel="stylesheet" type="text/css" media="all">
<script src="https://cdn.shopify.com/extensions/019e6828-4915-74c6-afbe-b272d2b36387/form-builder-by-hulkapps-69/assets/form-builder-script.js" type="text/javascript" defer="defer"></script>
<link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
<script>(function(){if ("sendBeacon" in navigator && "performance" in window) {try {var session_token_from_headers = performance.getEntriesByType('navigation')[0].serverTiming.find(x => x.name == '_s').description;} catch {var session_token_from_headers = undefined;}var session_cookie_matches = document.cookie.match(/_shopify_s=([^;]*)/);var session_token_from_cookie = session_cookie_matches && session_cookie_matches.length === 2 ? session_cookie_matches[1] : "";var session_token = session_token_from_headers || session_token_from_cookie || "";function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 8064172096,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token,page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
<script>
  window.__TREKKIE_SHIM_QUEUE = window.__TREKKIE_SHIM_QUEUE || [];
</script>
<script id="web-pixels-manager-setup">(function(){var wpmLoader=function(){"use strict";return function(e,d,r,n){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};if(!Boolean(null==(i=null==(a=window.Shopify)?void 0:a.analytics)?void 0:i.replayQueue)){var a,i;window.Shopify=window.Shopify||{};var t=window.Shopify;t.analytics=t.analytics||{};var s=t.analytics;s.replayQueue=[],s.publish=function(e,d,r){return s.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var l,u,c,m,p,f,h,g,y,w,v,b,S,P=(u=(l={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/}).modern,c=l.legacy,(m=navigator.userAgent).match(u)?"modern":m.match(c)?"legacy":"unknown"),C="modern"===P?"modern":"legacy",_=(null!=n?n:{modern:"",legacy:""})[C],O=[(p={baseUrl:d,hashVersion:r,buildTarget:C}).baseUrl,"/wpm","/b",p.hashVersion,"modern"===p.buildTarget?"m":"l",".js"].join(""),U=(f={version:r,bundleTarget:P,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint},h=f.version,g=f.bundleTarget,y=f.surface,w=f.pageUrl,v=f.monorailEndpoint,{emit:function(e){var d=e.status,r=e.errorMsg,n=(new Date).getTime(),o=JSON.stringify({metadata:{event_sent_at_ms:n},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:h,bundle_target:g,page_url:w,status:d,surface:y,error_msg:r},metadata:{event_created_at_ms:n}}]});if(!v)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(v,o)}catch(e){}var a=new XMLHttpRequest;try{return a.open("POST",v,!0),a.setRequestHeader("Content-Type","text/plain"),a.send(o),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}});try{o.browserTarget=P,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,a=e.onerror,i=e.sri,t=e.scriptDataAttributes,s=void 0===t?{}:t,l=document.createElement("script"),u=document.querySelector("head"),c=document.querySelector("body");if(l.async=n,l.src=d,i&&(l.integrity=i,l.crossOrigin="anonymous"),s)for(var m in s)if(Object.prototype.hasOwnProperty.call(s,m))try{l.dataset[m]=s[m]}catch(e){}if(o&&l.addEventListener("load",o),a&&l.addEventListener("error",a),u)u.appendChild(l);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(l)}}({src:O,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null==(d=null==(e=window.Shopify)?void 0:e.analytics)?void 0:d.initialized)}()){var d=window.webPixelsManager.init(e)||void 0;if(d){var r=window.Shopify.analytics;r.replayQueue.forEach(function(e){var r=e[0],n=e[1],o=e[2];d.publishCustomEvent(r,n,o)}),r.replayQueue=[],r.publish=d.publishCustomEvent,r.visitor=d.visitor,r.initialized=!0}}},onerror:function(){return U.emit({status:"failed",errorMsg:"".concat(O," has failed to load")})},sri:(b=_,S=/^sha384-[A-Za-z0-9+/=]+$/,"string"==typeof b&&S.test(b)?_:""),scriptDataAttributes:o}),U.emit({status:"loading"})}catch(e){U.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}}}();wpmLoader({shopId: 8064172096,storefrontBaseUrl: "https://lightintheattic.net",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["2dca8a86","d5bdd5d0","3209b71c","5acaffe6","86d76263","3b3c7daf","6faea013"],webPixelsConfigList: [{"id":"1858371829","configuration":"{\"mailchimp_store_id\":\"store_up7iw9ufd4eazy4q2ea1\", \"mailchimp_user_id\":\"20203252\",\"mailchimp_list_id\":\"6625bc0de4\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"e357a49eadeb6216a959d63fa3fb8f55","type":"APP","apiClientId":2585307,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a"]},{"id":"1686012149","configuration":"{\"accountID\":\"Vxftjn\",\"webPixelConfig\":\"eyJlbmFibGVBZGRlZFRvQ2FydEV2ZW50cyI6IHRydWV9\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"524f6c1ee37bacdca7657a665bdca589","type":"APP","apiClientId":123074,"privacyPurposes":["ANALYTICS","MARKETING"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a"]},{"id":"914030837","configuration":"{\"tagID\":\"2613772955956\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"18031546ee651571ed29edbe71a3550b","type":"APP","apiClientId":3009811,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized"},{"id":"799768821","configuration":"{\"pixelCode\":\"CVM2LNBC77U5VNGOMBE0\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"22e92c2ad45662f435e4801458fb78cc","type":"APP","apiClientId":4383523,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":[]},"dataSharingState":"optimized"},{"id":"501448949","configuration":"{\"config\":\"{\\\"pixel_id\\\":\\\"G-30HQY2845Y\\\",\\\"target_country\\\":\\\"US\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":\\\"G-30HQY2845Y\\\"},{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":\\\"G-30HQY2845Y\\\"},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-30HQY2845Y\\\",\\\"MC-EGQF5110BP\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-30HQY2845Y\\\",\\\"MC-EGQF5110BP\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-30HQY2845Y\\\",\\\"MC-EGQF5110BP\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":\\\"G-30HQY2845Y\\\"},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":\\\"G-30HQY2845Y\\\"}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"f15305aac1e98c5c26a7c80e7bc37bde","type":"APP","apiClientId":1780363,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a"]},{"id":"109117685","configuration":"{\"accountID\":\"selleasy-metrics-track\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"a451bb5b79c95ec6981bec9c1b10ec34","type":"APP","apiClientId":5519923,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_email","read_customer_name","read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted"},{"id":"62226677","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["MARKETING"],"name":"Meta pixel (migrated)"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0460","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0460","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"Light in the Attic","paymentSettings":{"currencyCode":"USD"},"myshopifyDomain":"lightintheatticrecordsandtapes.myshopify.com","countryCode":"US","storefrontUrl":"https:\/\/lightintheattic.net"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"products":null,"purchasingCompany":null,"page":null},},"https://lightintheattic.net/cdn","a9664f44w6a62cec8p04af10e4mb91e3447",{"modern":"","legacy":""},{"trekkieShim":true,"apiClientId":"580111","pageType":"home","shopId":"8064172096","storefrontBaseUrl":"https:\/\/lightintheattic.net","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"2dca8a86\", \"d5bdd5d0\", \"3209b71c\", \"5acaffe6\", \"86d76263\", \"3b3c7daf\", \"6faea013\"]","isMerchantRequest":"false","hashVersion":"a9664f44w6a62cec8p04af10e4mb91e3447","publish":"custom","events":"[[\"page_viewed\",{}]]"});})();</script><script>
  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  window.ShopifyAnalytics.meta.currency = 'USD';
  var meta = {"page":{"pageType":"home","requestId":"86c30be6-0f5f-49d8-be65-bf6595a00803-1780985147"}};
  for (var attr in meta) {
    window.ShopifyAnalytics.meta[attr] = meta[attr];
  }
</script>
<script class="analytics">
  (function () {
    var customDocumentWrite = function(content) {
      var jquery = null;

      if (window.jQuery) {
        jquery = window.jQuery;
      } else if (window.Checkout && window.Checkout.$) {
        jquery = window.Checkout.$;
      }

      if (jquery) {
        jquery('body').append(content);
      }
    };

    var hasLoggedConversion = function(token) {
      if (token) {
        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
      }
      return false;
    }

    var setCookieIfConversion = function(token) {
      if (token) {
        var twoMonthsFromNow = new Date(Date.now());
        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);

        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
      }
    }

    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
    window.ShopifyAnalytics.lib.trekkie = window.trekkie;
    if (trekkie.integrations) {
      return;
    }
    trekkie.methods = [
      'identify',
      'page',
      'ready',
      'track',
      'trackForm',
      'trackLink'
    ];
    trekkie.factory = function(method) {
      return function() {
        var args = Array.prototype.slice.call(arguments);
        args.unshift(method);
        trekkie.push(args);
        if (window.__TREKKIE_SHIM_QUEUE && (method == 'track' || method == 'page')) {
          try {
            window.__TREKKIE_SHIM_QUEUE.push({
              from: 'trekkie-stub',
              method: method,
              args: args.slice(1)
            });
          } catch (e) {
            // no-op
          }
        }
        return trekkie;
      };
    };
    for (var i = 0; i < trekkie.methods.length; i++) {
      var key = trekkie.methods[i];
      trekkie[key] = trekkie.factory(key);
    }
    trekkie.load = function(config) {
      trekkie.config = config || {};
      trekkie.config.initialDocumentCookie = document.cookie;
      var first = document.getElementsByTagName('script')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.onerror = function(e) {
  var scriptFallback = document.createElement('script');
  scriptFallback.type = 'text/javascript';
  scriptFallback.onerror = function(error) {
          var Monorail = {
      produce: function produce(monorailDomain, schemaId, payload) {
        var currentMs = new Date().getTime();
        var event = {
          schema_id: schemaId,
          payload: payload,
          metadata: {
            event_created_at_ms: currentMs,
            event_sent_at_ms: currentMs
          }
        };
        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
      },
      sendRequest: function sendRequest(endpointUrl, payload) {
        // Try the sendBeacon API
        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
          var blobData = new window.Blob([payload], {
            type: 'text/plain'
          });

          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
            return true;
          } // sendBeacon was not successful

        } // XHR beacon

        var xhr = new XMLHttpRequest();

        try {
          xhr.open('POST', endpointUrl);
          xhr.setRequestHeader('Content-Type', 'text/plain');
          xhr.send(payload);
        } catch (e) {
          console.log(e);
        }

        return false;
      },
      isIos12: function isIos12() {
        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
      }
    };
    Monorail.produce('monorail-edge.shopifysvc.com',
      'trekkie_storefront_load_errors/1.1',
      {shop_id: 8064172096,
      theme_id: 158282186997,
      app_name: "storefront",
      context_url: window.location.href,
      source_url: "//lightintheattic.net/cdn/s/trekkie.storefront.f7140b8b25ae1195cf346a36a85e3e4bcf46adb3.min.js"});

  };
  scriptFallback.async = true;
  scriptFallback.src = '//lightintheattic.net/cdn/s/trekkie.storefront.f7140b8b25ae1195cf346a36a85e3e4bcf46adb3.min.js';
  first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//lightintheattic.net/cdn/s/trekkie.storefront.f7140b8b25ae1195cf346a36a85e3e4bcf46adb3.min.js';
first.parentNode.insertBefore(script, first);

    };
    trekkie.load(
      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":8064172096,"isMerchantRequest":null,"themeId":158282186997,"themeCityHash":"4105219766725455835","contentLanguage":"en","currency":"USD","eventMetadataId":"36c368c9-19e4-4a59-baaf-c3d118022162"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["b5387b81","d5bdd5d0"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"source":"trekkie-storefront-renderer","apiClientId":580111}}
    );

    var loaded = false;
    trekkie.ready(function() {
      if (loaded) return;
      loaded = true;

      window.ShopifyAnalytics.lib = window.trekkie;

      var originalDocumentWrite = document.write;
      document.write = customDocumentWrite;
      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
      document.write = originalDocumentWrite;

      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","requestId":"86c30be6-0f5f-49d8-be65-bf6595a00803-1780985147","shopifyEmitted":true});

      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
      var token = match? match[1]: undefined;
      if (!hasLoggedConversion(token)) {
        setCookieIfConversion(token);
        
      }
    });

    var eventsListenerScript = document.createElement('script');
    eventsListenerScript.async = true;
    eventsListenerScript.src = "//lightintheattic.net/cdn/shopifycloud/storefront/assets/shop_events_listener-4e26a9ce.js";
    document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
})();</script>
  <script>
  if (!window.ga || (window.ga && typeof window.ga !== 'function')) {
    window.ga = function ga() {
      (window.ga.q = window.ga.q || []).push(arguments);
      if (window.Shopify && window.Shopify.analytics && typeof window.Shopify.analytics.publish === 'function') {
        window.Shopify.analytics.publish("ga_stub_called", {}, {sendTo: "google_osp_migration"});
      }
      console.error("Shopify's Google Analytics stub called with:", Array.from(arguments), "\nSee https://help.shopify.com/manual/promoting-marketing/pixels/pixel-migration#google for more information.");
    };
    if (window.Shopify && window.Shopify.analytics && typeof window.Shopify.analytics.publish === 'function') {
      window.Shopify.analytics.publish("ga_stub_initialized", {}, {sendTo: "google_osp_migration"});
    }
  }
</script>
<script
  defer
  src="https://lightintheattic.net/cdn/shopifycloud/perf-kit/shopify-perf-kit-3.5.0.min.js"
  data-application="storefront-renderer"
  data-shop-id="8064172096"
  data-render-region="gcp-us-central1"
  data-page-type="index"
  data-theme-instance-id="158282186997"
  data-theme-name="Slate"
  data-theme-version="0.11.0"
  data-monorail-region="shop_domain"
  data-resource-timing-sampling-rate="10"
  data-shs="true"
  data-shs-beacon="true"
  data-shs-export-with-fetch="true"
  data-shs-logs-sample-rate="1"
  data-shs-beacon-endpoint="https://lightintheattic.net/api/collect"
></script>
</head>
  <body id="music-light-in-the-attic-records" class="template-index templatepage-index">
    <!-- Google Tag Manager (noscript) -->
    <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-K8KSV92P"
    height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
    <!-- End Google Tag Manager (noscript) -->
    

    <a class="in-page-link visually-hidden skip-link" href="#MainContent">Skip to content</a>
    
    <div class="site-banner__wrapper position-sticky top-0 z-5 bg-light">
      <div id="shopify-section-site-banner" class="shopify-section"><div class="wrapper">


  <div class="site-banner d-flex flex-wrap flex-lg-nowrap bg-light align-items-center"
    data-section-id="site-banner">
    <div class="site-banner__logo justify-content-start text-light">
      <a href="#"><img class="banner-logo" src="//lightintheattic.net/cdn/shop/files/LITA-Favicon-128x128_36x.png?v=4049316078396507721"
          alt="LITA Logo"></a>
    </div>

    

    <div class="site-banner__nav-list d-none d-sm-none d-md-flex justify-content-lg-end justify-content-sm-center">
      
      
  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/pages/wholesale">
      <p>Wholesale</p>
    </a>
  </div>

  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/pages/licensing">
      <p>Licensing</p>
    </a>
  </div>

  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/pages/newsletter">
      <p>Newsletter</p>
    </a>
  </div>

  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/pages/about-us">
      <p>About</p>
    </a>
  </div>

  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/products/light-in-the-attic-gift-card">
      <p>Gift Cards</p>
    </a>
  </div>

<style>
  .pointer {
    cursor: pointer;
  }
</style>

      


        <div class="pl-1 pr-1 float-right">
          <a class="nav-list__sign-in d-flex align-items-center fw-med" href="https://shopify.com/8064172096/account"><i
            class="fal fa-user"></i>
            <p>SIGN IN</p>
          </a>
        </div>
          <div class="pl-1 pr-1 right"><a class="nav-list__cart d-flex align-items-center fw-med" href="#swym-wishlist"
              data-wishlist><img src="//lightintheattic.net/cdn/shop/files/wishlis-star_20x.png?v=7308900106498124281" alt="Wishlist icon">
              <p>WISHLIST</p>
            </a></div>
      <div class="pl-1 pr-1 right">
        <a class="nav-list__cart d-flex align-items-center fw-med" href="/cart"  onclick="event.preventDefault(); quickCheckSlideCartOpen(); return false;" >
          <p>
            <span class="cart-count-wrap"style="display:none;">
  (<span data-cart-count>0</span>)
</span>

          </p>
          <i class="fal fa-shopping-cart"></i>
          <p>CART</p>
        </a>
      </div>

    </div>

    <div class="site-banner__mobile-dropdown">
      <button class="hamburger hamburger--squeeze z-5" type="button">
        <span class="hamburger-box">
          <span class="hamburger-inner"></span>
        </span>
      </button>

      <div class="site-banner__navigation darker-grey-bg">
        <div class="navigation__nav-list z-2">
          
          
  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/pages/wholesale">
      <p>Wholesale</p>
    </a>
  </div>

  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/pages/licensing">
      <p>Licensing</p>
    </a>
  </div>

  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/pages/newsletter">
      <p>Newsletter</p>
    </a>
  </div>

  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/pages/about-us">
      <p>About</p>
    </a>
  </div>

  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/products/light-in-the-attic-gift-card">
      <p>Gift Cards</p>
    </a>
  </div>

<style>
  .pointer {
    cursor: pointer;
  }
</style>

          
          <div class="pl-1 pr-1"><a class="nav-list__sign-in d-flex align-items-center justify-content-end fw-med"
              href="/account">
              <p>SIGN IN</p><i class="fal fa-user"></i>
            </a></div>
          <div class="pl-1 pr-1">
            <a class="nav-list__cart d-flex align-items-center justify-content-end fw-med" href="/cart"  onclick="event.preventDefault(); quickCheckSlideCartOpen(); return false;" >
              <p>
                <span class="cart-count-wrap" style="display: none" >(<span data-cart-count>0</span>)</span>
              </p>
              <i class="fal fa-shopping-cart"></i>
              <p>CART</p>
            </a>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>

</div>
    </div>

    <div class="shopify-header position-sticky z-4">
      <div id="shopify-section-header" class="shopify-section"><div class="header-background z-4">
  <div class="wrapper position-relative">
    <div class="header-content position-absolute d-flex align-items-center justify-content-end z-4">
      
      <div class="header-content__content-image position-relative justify-content-start">
        <a href="/"><img class="white-logo position-absolute" src="//lightintheattic.net/cdn/shop/files/light-in-the-ettic_1_200x.svg?v=1734347844"
            alt="LITA Logo"></a>
      </div>
            
      <div class="header-content__nav-list d-flex flex-column justify-content-around align-items-stretch">
        <div class="nav-list__items row d-none d-md-flex justify-content-between align-items-center">
          <div class="nav-list__change-on-scroll d-flex justify-content-between align-items-center">
            
            
            
  <div><a href="/collections/just-added"><p class="fw-demi text-light text-uppercase">Just added</p></a></div>

  <div><a href="/collections/preorder-albums"><p class="fw-demi text-light text-uppercase">Preorders</p></a></div>

  <div><a href="/collections/now-shipping"><p class="fw-demi text-light text-uppercase">Now shipping</p></a></div>

  <div><a href="/blogs/features"><p class="fw-demi text-light text-uppercase">Features</p></a></div>

  <div><a href="/collections/merch"><p class="fw-demi text-light text-uppercase">Merch</p></a></div>

  <div><a href="/collections/sale"><p class="fw-demi text-light text-uppercase">Sale</p></a></div>

  <div><a href="/pages/artists"><p class="fw-demi text-light text-uppercase">LITA Artists</p></a></div>

  <div><a href="/pages/labels"><p class="fw-demi text-light text-uppercase">Labels</p></a></div>

  <div><a href="/collections/in-stock"><p class="fw-demi text-light text-uppercase">Browse</p></a></div>

            
          </div>
          <div class="nav-list__search-icon">
            <!-- <img
              src="//lightintheattic.net/cdn/shop/files/search-icon_2x_0c9e4966-78de-4b53-8775-d78a53ef7ad8_small.png?v=17845682356397293744" alt="search-icon"> -->
              <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
            <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5 3.99999C8.77609 3.99999 7.12279 4.68481 5.90381 5.9038C4.68482 7.12279 4 8.77609 4 10.5C4 12.2239 4.68482 13.8772 5.90381 15.0962C7.12279 16.3152 8.77609 17 10.5 17C12.2239 17 13.8772 16.3152 15.0962 15.0962C16.3152 13.8772 17 12.2239 17 10.5C17 8.77609 16.3152 7.12279 15.0962 5.9038C13.8772 4.68481 12.2239 3.99999 10.5 3.99999ZM2 10.5C2.00012 9.14459 2.32436 7.80886 2.94569 6.60425C3.56702 5.39964 4.46742 4.36109 5.57175 3.57523C6.67609 2.78937 7.95235 2.279 9.29404 2.0867C10.6357 1.8944 12.004 2.02574 13.2846 2.46977C14.5652 2.9138 15.7211 3.65764 16.6557 4.63923C17.5904 5.62082 18.2768 6.8117 18.6576 8.11251C19.0384 9.41332 19.1026 10.7863 18.8449 12.117C18.5872 13.4477 18.015 14.6974 17.176 15.762L20.828 19.414C21.0102 19.6026 21.111 19.8552 21.1087 20.1174C21.1064 20.3796 21.0012 20.6304 20.8158 20.8158C20.6304 21.0012 20.3796 21.1064 20.1174 21.1087C19.8552 21.1109 19.6026 21.0102 19.414 20.828L15.762 17.176C14.5086 18.164 13.0024 18.7792 11.4157 18.9511C9.82905 19.123 8.22602 18.8448 6.79009 18.1482C5.35417 17.4516 4.14336 16.3649 3.29623 15.0123C2.44911 13.6597 1.99989 12.096 2 10.5ZM9.5 6.99999C9.5 6.73478 9.60536 6.48042 9.79289 6.29289C9.98043 6.10535 10.2348 5.99999 10.5 5.99999C11.6935 5.99999 12.8381 6.4741 13.682 7.31801C14.5259 8.16193 15 9.30652 15 10.5C15 10.7652 14.8946 11.0196 14.7071 11.2071C14.5196 11.3946 14.2652 11.5 14 11.5C13.7348 11.5 13.4804 11.3946 13.2929 11.2071C13.1054 11.0196 13 10.7652 13 10.5C13 9.83695 12.7366 9.20107 12.2678 8.73223C11.7989 8.26339 11.163 7.99999 10.5 7.99999C10.2348 7.99999 9.98043 7.89464 9.79289 7.7071C9.60536 7.51956 9.5 7.26521 9.5 6.99999Z" fill="white"></path>
            </svg>
          </div>
        </div>

        <div class="nav-list__items--mobile d-flex d-md-none justify-content-end align-items-center">
          <div class="nav-list__search-icon--mobile mr-1  " >            
            <!-- <img
              src="//lightintheattic.net/cdn/shop/files/search-icon_2x_0c9e4966-78de-4b53-8775-d78a53ef7ad8_small.png?v=17845682356397293744"
              alt="Magnifying glass icon"> -->
            <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
            <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5 3.99999C8.77609 3.99999 7.12279 4.68481 5.90381 5.9038C4.68482 7.12279 4 8.77609 4 10.5C4 12.2239 4.68482 13.8772 5.90381 15.0962C7.12279 16.3152 8.77609 17 10.5 17C12.2239 17 13.8772 16.3152 15.0962 15.0962C16.3152 13.8772 17 12.2239 17 10.5C17 8.77609 16.3152 7.12279 15.0962 5.9038C13.8772 4.68481 12.2239 3.99999 10.5 3.99999ZM2 10.5C2.00012 9.14459 2.32436 7.80886 2.94569 6.60425C3.56702 5.39964 4.46742 4.36109 5.57175 3.57523C6.67609 2.78937 7.95235 2.279 9.29404 2.0867C10.6357 1.8944 12.004 2.02574 13.2846 2.46977C14.5652 2.9138 15.7211 3.65764 16.6557 4.63923C17.5904 5.62082 18.2768 6.8117 18.6576 8.11251C19.0384 9.41332 19.1026 10.7863 18.8449 12.117C18.5872 13.4477 18.015 14.6974 17.176 15.762L20.828 19.414C21.0102 19.6026 21.111 19.8552 21.1087 20.1174C21.1064 20.3796 21.0012 20.6304 20.8158 20.8158C20.6304 21.0012 20.3796 21.1064 20.1174 21.1087C19.8552 21.1109 19.6026 21.0102 19.414 20.828L15.762 17.176C14.5086 18.164 13.0024 18.7792 11.4157 18.9511C9.82905 19.123 8.22602 18.8448 6.79009 18.1482C5.35417 17.4516 4.14336 16.3649 3.29623 15.0123C2.44911 13.6597 1.99989 12.096 2 10.5ZM9.5 6.99999C9.5 6.73478 9.60536 6.48042 9.79289 6.29289C9.98043 6.10535 10.2348 5.99999 10.5 5.99999C11.6935 5.99999 12.8381 6.4741 13.682 7.31801C14.5259 8.16193 15 9.30652 15 10.5C15 10.7652 14.8946 11.0196 14.7071 11.2071C14.5196 11.3946 14.2652 11.5 14 11.5C13.7348 11.5 13.4804 11.3946 13.2929 11.2071C13.1054 11.0196 13 10.7652 13 10.5C13 9.83695 12.7366 9.20107 12.2678 8.73223C11.7989 8.26339 11.163 7.99999 10.5 7.99999C10.2348 7.99999 9.98043 7.89464 9.79289 7.7071C9.60536 7.51956 9.5 7.26521 9.5 6.99999Z" fill="white"/>
            </svg>
            </div>
          <a class="d-flex align-items-center" href="/account">
           <!--  <img
              src="//lightintheattic.net/cdn/shop/files/sign-in-icon-white_20x.png?v=1129565491144792838" alt="Account icon"> -->
          <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
          <path fill-rule="evenodd" clip-rule="evenodd" d="M15.2818 14.1401H8.7149C7.61554 14.1401 6.5612 14.5768 5.78384 15.3542C5.00647 16.1315 4.56975 17.1858 4.56975 18.2852C4.56975 18.8555 4.93775 19.2372 5.35604 19.3058C6.93661 19.5686 9.28633 19.8544 11.9983 19.8544C14.7103 19.8544 17.06 19.5686 18.6406 19.3058C19.0589 19.2372 19.4269 18.8555 19.4269 18.2852C19.4269 17.1858 18.9902 16.1315 18.2128 15.3542C17.4354 14.5768 16.3811 14.1401 15.2818 14.1401ZM8.7149 12.4258C7.16088 12.4258 5.67051 13.0431 4.57166 14.142C3.4728 15.2408 2.85547 16.7312 2.85547 18.2852C2.85547 19.6201 3.75833 20.7789 5.07604 20.9972C6.72404 21.2715 9.16975 21.5686 11.9983 21.5686C14.8269 21.5686 17.2726 21.2715 18.9206 20.9972C20.2372 20.7801 21.1412 19.6201 21.1412 18.2852C21.1412 16.7312 20.5239 15.2408 19.425 14.142C18.3261 13.0431 16.8358 12.4258 15.2818 12.4258H8.7149Z" fill="white"/>
          <path fill-rule="evenodd" clip-rule="evenodd" d="M7.99944 7.71038C7.99944 8.23567 8.10291 8.75581 8.30392 9.24111C8.50494 9.72642 8.79958 10.1674 9.17102 10.5388C9.54245 10.9102 9.98341 11.2049 10.4687 11.4059C10.954 11.6069 11.4742 11.7104 11.9994 11.7104C12.5247 11.7104 13.0449 11.6069 13.5302 11.4059C14.0155 11.2049 14.4564 10.9102 14.8279 10.5388C15.1993 10.1674 15.4939 9.72642 15.695 9.24111C15.896 8.75581 15.9994 8.23567 15.9994 7.71038C15.9994 6.64951 15.578 5.6321 14.8279 4.88195C14.0777 4.13181 13.0603 3.71038 11.9994 3.71038C10.9386 3.71038 9.92116 4.13181 9.17102 4.88195C8.42087 5.6321 7.99944 6.64951 7.99944 7.71038ZM11.9994 1.99609C10.4839 1.99609 9.03047 2.59813 7.95883 3.66977C6.8872 4.74141 6.28516 6.19486 6.28516 7.71038C6.28516 9.2259 6.8872 10.6794 7.95883 11.751C9.03047 12.8226 10.4839 13.4247 11.9994 13.4247C13.515 13.4247 14.9684 12.8226 16.0401 11.751C17.1117 10.6794 17.7137 9.2259 17.7137 7.71038C17.7137 6.19486 17.1117 4.74141 16.0401 3.66977C14.9684 2.59813 13.515 1.99609 11.9994 1.99609Z" fill="white"/>
          </svg>
          </a>          
          <a class="d-flex align-items-center" href="/cart"  onclick="event.preventDefault(); quickCheckSlideCartOpen(); return false;" >
            <!-- <img class="ml-1"
              src="//lightintheattic.net/cdn/shop/files/cart-icon-white_24x.png?v=15228657229473078063" alt="Cart icon">
               -->
            <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
            <path d="M21.3301 5.86981C21.2623 5.78869 21.1775 5.72344 21.0817 5.67868C20.986 5.63391 20.8815 5.61072 20.7758 5.61073H6.21373L5.6649 2.59306C5.63467 2.42667 5.547 2.27616 5.41717 2.16778C5.28735 2.0594 5.1236 2.00002 4.95448 2H2.72215C2.53062 2 2.34694 2.07608 2.21151 2.21151C2.07608 2.34694 2 2.53062 2 2.72215C2 2.91367 2.07608 3.09735 2.21151 3.23278C2.34694 3.36821 2.53062 3.44429 2.72215 3.44429H4.34698L6.65424 16.108C6.7222 16.4836 6.88818 16.8346 7.13537 17.1254C6.7942 17.444 6.54795 17.851 6.42392 18.301C6.2999 18.7511 6.30296 19.2267 6.43274 19.6752C6.56253 20.1236 6.81399 20.5273 7.15922 20.8416C7.50446 21.1559 7.92998 21.3684 8.38862 21.4555C8.84725 21.5427 9.32107 21.5012 9.75753 21.3355C10.194 21.1698 10.576 20.8865 10.8613 20.517C11.1466 20.1475 11.324 19.7061 11.3737 19.2419C11.4235 18.7778 11.3437 18.3089 11.1433 17.8872H15.2433C15.0817 18.2255 14.9981 18.5956 14.9986 18.9705C14.9986 19.4704 15.1469 19.959 15.4246 20.3747C15.7023 20.7903 16.0971 21.1143 16.5589 21.3056C17.0208 21.4969 17.529 21.5469 18.0193 21.4494C18.5095 21.3519 18.9599 21.1112 19.3134 20.7577C19.6669 20.4042 19.9076 19.9538 20.0051 19.4635C20.1026 18.9733 20.0526 18.4651 19.8613 18.0032C19.67 17.5414 19.346 17.1466 18.9304 16.8689C18.5147 16.5912 18.0261 16.4429 17.5262 16.4429H8.78547C8.61636 16.4429 8.45261 16.3835 8.32279 16.2752C8.19296 16.1668 8.10529 16.0163 8.07506 15.8499L7.78891 14.2765H18.26C18.7674 14.2764 19.2586 14.0983 19.6481 13.7732C20.0376 13.448 20.3006 12.9965 20.3913 12.4973L21.4889 6.46197C21.5075 6.35765 21.5029 6.25053 21.4755 6.14819C21.448 6.04585 21.3984 5.95081 21.3301 5.86981ZM9.94362 18.9705C9.94362 19.1847 9.88009 19.3941 9.76106 19.5723C9.64204 19.7504 9.47286 19.8892 9.27493 19.9712C9.07699 20.0532 8.85919 20.0747 8.64907 20.0329C8.43895 19.9911 8.24593 19.8879 8.09444 19.7364C7.94295 19.5849 7.83979 19.3919 7.79799 19.1818C7.75619 18.9717 7.77764 18.7539 7.85963 18.5559C7.94162 18.358 8.08046 18.1888 8.25859 18.0698C8.43673 17.9508 8.64616 17.8872 8.8604 17.8872C9.14768 17.8872 9.42321 18.0014 9.62635 18.2045C9.82949 18.4076 9.94362 18.6832 9.94362 18.9705ZM18.6094 18.9705C18.6094 19.1847 18.5459 19.3941 18.4268 19.5723C18.3078 19.7504 18.1386 19.8892 17.9407 19.9712C17.7428 20.0532 17.525 20.0747 17.3148 20.0329C17.1047 19.9911 16.9117 19.8879 16.7602 19.7364C16.6087 19.5849 16.5055 19.3919 16.4638 19.1818C16.422 18.9717 16.4434 18.7539 16.5254 18.5559C16.6074 18.358 16.7462 18.1888 16.9244 18.0698C17.1025 17.9508 17.3119 17.8872 17.5262 17.8872C17.8134 17.8872 18.089 18.0014 18.2921 18.2045C18.4953 18.4076 18.6094 18.6832 18.6094 18.9705ZM18.9705 12.2391C18.9401 12.406 18.8521 12.5569 18.7217 12.6653C18.5913 12.7737 18.4269 12.8328 18.2573 12.8322H7.52623L6.47641 7.05503H19.9101L18.9705 12.2391Z" fill="white" stroke="white" stroke-width="0.2"/>
            </svg>

            
          </a><a class="d-flex align-items-center" href="#swym-wishlist" data-wishlist>
            <!-- <img class="ml-1"
              src="//lightintheattic.net/cdn/shop/files/wishlis-star-white_24x.png?v=17419851590758026478" alt="Wishlist icon">
             -->
          <svg width="27" height="27" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
          <path d="M12 15.39L8.24 17.66L9.23 13.38L5.91 10.5L10.29 10.13L12 6.09L13.71 10.13L18.09 10.5L14.77 13.38L15.76 17.66M22 9.24L14.81 8.63L12 2L9.19 8.63L2 9.24L7.45 13.97L5.82 21L12 17.27L18.18 21L16.54 13.97L22 9.24Z" fill="white"/>
          </svg>
            </a><div class="header__mobile-dropdown position-relative">
            <button class="header-hamburger hamburger--squeeze z-5" type="button">
              <span class="hamburger-box">
                <span class="hamburger-inner"></span>
              </span>
            </button>
          </div>
        </div>

        <div class="header__navigation darker-grey-bg">
          <div class="">
            <div class="navigation__nav-list text-left z-5 pl-1">
              
            
            
  <div><a href="/collections/just-added"><p class="fw-demi text-light text-uppercase">Just added</p></a></div>

  <div><a href="/collections/preorder-albums"><p class="fw-demi text-light text-uppercase">Preorders</p></a></div>

  <div><a href="/collections/now-shipping"><p class="fw-demi text-light text-uppercase">Now shipping</p></a></div>

  <div><a href="/blogs/features"><p class="fw-demi text-light text-uppercase">Features</p></a></div>

  <div><a href="/collections/merch"><p class="fw-demi text-light text-uppercase">Merch</p></a></div>

  <div><a href="/collections/sale"><p class="fw-demi text-light text-uppercase">Sale</p></a></div>

  <div><a href="/pages/artists"><p class="fw-demi text-light text-uppercase">LITA Artists</p></a></div>

  <div><a href="/pages/labels"><p class="fw-demi text-light text-uppercase">Labels</p></a></div>

  <div><a href="/collections/in-stock"><p class="fw-demi text-light text-uppercase">Browse</p></a></div>

            
            </div>
            <div class="navigation__nav-list text-left z-5 pl-1">
              
              
  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/pages/wholesale">
      <p>Wholesale</p>
    </a>
  </div>

  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/pages/licensing">
      <p>Licensing</p>
    </a>
  </div>

  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/pages/newsletter">
      <p>Newsletter</p>
    </a>
  </div>

  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/pages/about-us">
      <p>About</p>
    </a>
  </div>

  <div class="pl-1 pr-1 ">
    <a class="fw-med text-uppercase" href="/products/light-in-the-attic-gift-card">
      <p>Gift Cards</p>
    </a>
  </div>

<style>
  .pointer {
    cursor: pointer;
  }
</style>

              
            </div>

          </div>
        </div>

        <div class="nav-list__search row d-flex justify-content-end align-items-center">
          


<script>
  window.LITA_CONFIG = {
    domain: "lightintheatticrecordsandtapes.myshopify.com",
    storefrontToken: '429197bd29c51c0e9a1cdce5f9013d4d'
  };
</script>



<script id="lita-all-products-meta" type="application/json">
{
  "products": [
    
{
        "handle": "music-from-siesta",
        "title": "Music From Siesta",
        "artist": "Miles Davis \u0026 Marcus Miller",
        "label": "WEA",
        "genres": ["Soundtrack","Jazz"],
        "tags": ["Album","all","B2B","D2C","In Stock","Jazz","just-added","last-week","LP","Miles Davis \u0026 Marcus Miller","Rhino","sd__preorder--48220500459765--end::2026-08-21","Soundtrack","valid-preorder","valid-preorder-new","WEA"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/603497804115_400x.jpg?v=1780360762",
        "price": 3400,
        "url": "\/products\/music-from-siesta",
        "description": "[[Release Detail]][[Release Description]] By the end of 1986, with Miles’ career in resurgence, he was approached by the producers of a major Hollywood film, Siesta, based on the book by Patrice Chaplin and starring Ellen Barkin, Gabriel Byrne and Martin Sheen. The story takes place in Spain, and the director had already used tracks from Sketches of Spain as placeholders,...",
        "available": true,
        "catalogNumber": "RHINO-603497804115",
        "upc": "603497804115"
      },

{
        "handle": "surround",
        "title": "Surround",
        "artist": "Hiroshi Yoshimura",
        "label": "Temporal Drift",
        "genres": ["Japanese","Ambient \/ New Age"],
        "tags": ["Album","Ambient \/ New Age","B2B","Cassette","CD","D2C","Hiroshi Yoshimura","In Stock","Japanese","LP","now-shipping","sale","sd__preorder--44088467128565--end::2026-06-26","sd__preorder--44088493211893--end::2026-06-26","Temporal Drift","valid-preorder","valid-preorder-new"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/tmp_2F1694114908661-mmct9nzv4t-d5fe3872063d04183b367554a06eb42d_2FDRIFT09_Cover_2B_281_29_400x.jpg?v=1697035337",
        "price": 1500,
        "url": "\/products\/surround",
        "description": "[[Release Detail]][[Release Description]] “If Surround can be listened to as music that’s as close to air itself, allowing us to enter each listener’s sound scenery, or as something that exists within a new perspective, expanding the middle ground between sound and music, and transforming it into a comfortable space, it would be much appreciated.” — Hiroshi Yoshimura Temporal Drift proudly...",
        "available": true,
        "catalogNumber": "DRFT09",
        "upc": "850054840011"
      },

{
        "handle": "crashin-from-passion",
        "title": "Crashin' From Passion",
        "artist": "Betty Davis",
        "label": "Light In The Attic",
        "genres": ["Funk \/ Soul"],
        "tags": ["Album","all","B2B","best-sellers","Betty Davis","CD","D2C","Funk \/ Soul","In Stock","Light In The Attic","now-shipping","On Sale","Released 6\/22\/2023","sale","test-albums","Vinyl","wintersale"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/tmp_2F1687281665395-1fx9z19jcng-bcfe3d9b2c1bd6941a85c5e7ee02384c_2FLITA_2B196-Hi_2BRes_2BAlbum_2BCover_400x.jpg?v=1696119906",
        "price": 1400,
        "url": "\/products\/crashin-from-passion",
        "description": "[[Release Detail]][[Release Description]] In the 1970s, Betty Davis defied genre and gender by pushing her voice to extremes and embracing the erotic. She articulated a kind of pre-punk, funk-blues fusion that had yet to be normalized in mainstream music – a style that few musicians have come close to replicating. As one of the first Black women to write, arrange,...",
        "available": true,
        "catalogNumber": "LITA 196",
        "upc": "826853019613"
      },

{
        "handle": "green",
        "title": "GREEN",
        "artist": "Hiroshi Yoshimura",
        "label": "Light In The Attic",
        "genres": ["Electronic","Ambient \/ New Age","Japanese"],
        "tags": ["Album","all","Ambient \/ New Age","B2B","best-sellers","Cassette","CD","D2C","Electronic","Hiroshi Yoshimura","In Stock","Japanese","just-added","last-week","Light In The Attic","LP","now-shipping","Released 3\/20\/2020","sd__preorder--42632702820597--end::2026-04-17","sd__preorder--47918245708021--end::2026-04-17","test-albums"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/products\/tmp_2F1584396374225-r841zxaz2i-23b57779b34355a9d6ca49f0b632c15d_2FLITA192_2BCover_400x.jpg?v=1673639316",
        "price": 129,
        "url": "\/products\/green",
        "description": "[[Release Detail]][[Release Description]] Barely known outside of his home country during his lifetime, the late Japanese ambient music pioneer Hiroshi Yoshimura has seen his global stature rise steadily in the past few years. The 2017 reissue of his lauded debut, Music For Nine Post Cards, along with a slow-building cult internet following has helped ignite a renaissance in his acclaimed...",
        "available": true,
        "catalogNumber": "LITA 192",
        "upc": ""
      },


{
        "handle": "pacific-breeze-japanese-city-pop-aor-boogie-1976-1986",
        "title": "Pacific Breeze: Japanese City Pop, AOR \u0026 Boogie 1976-1986",
        "artist": "V\/A - Pacific Breeze",
        "label": "Light In The Attic",
        "genres": ["City Pop","Japanese"],
        "tags": ["Album","all","B2B","best-sellers","Cassette","City Pop","D2C","In Stock","Japanese","June Sale","Light In The Attic","now-shipping","On Sale","Released 1\/30\/2019","sale","test-albums","V\/A - Pacific Breeze","Vinyl"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/products\/large_550_tmp_2F1548958036956-h1jtoij0pd7-065adccee812e0f27d47a0492a00122b_2Flita163_cvrs-1_400x.jpg?v=1634288016",
        "price": 1000,
        "url": "\/products\/pacific-breeze-japanese-city-pop-aor-boogie-1976-1986",
        "description": "[[Release Detail]][[Release Description]] Wondering when this will be back in stock? We love it too! There are no current plans to repress this title but if we do, we will announce it in our newsletter. We encourage you to sign up there to be the first to know! Pacific Breeze documents Japan’s blast into the stratosphere. By the 1960s, the...",
        "available": true,
        "catalogNumber": "Light in the Attic",
        "upc": ""
      },





{
        "handle": "they-say-i-m-different",
        "title": "They Say I'm Different",
        "artist": "Betty Davis",
        "label": "Light In The Attic",
        "genres": ["Funk \/ Soul","Disco"],
        "tags": ["Album","all","B2B","best-sellers","Betty Davis","D2C","Disco","Funk \/ Soul","In Stock","Light In The Attic","LP","Released 6\/22\/2023","sd__preorder--48052762935541--end::2026-06-26","test-albums","valid-preorder","valid-preorder-new","Vinyl"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/826853027144_400x.jpg?v=1776814362",
        "price": 1600,
        "url": "\/products\/they-say-i-m-different",
        "description": "[[Release Detail]][[Release Description]] Available June 26, 2026 Punk-funk provocateur Betty Davis’ 1974 sophomore album They Say I’m Different features a worthy-of-framing futuristic cover challenging David Bowie’s science fiction funk with real rocking soul-fire, kicked off with the savagely sexual “Shoo-B-Doop and Cop Him” (later sampled by Ice Cube). Her follow up is full of classic cuts like “Don’t Call Her...",
        "available": true,
        "catalogNumber": "LITA027-1-4",
        "upc": "826853027144"
      },

{
        "handle": "betty-davis",
        "title": "Betty Davis",
        "artist": "Betty Davis",
        "label": "Light In The Attic",
        "genres": ["Funk \/ Soul","Disco"],
        "tags": ["Album","all","B2B","best-sellers","Betty Davis","D2C","Disco","Funk \/ Soul","just-added","last-week","Light In The Attic","now-shipping","Released 6\/22\/2023","sale","sd__preorder--42600422113525--end::2024-05-24","test-albums","Vinyl"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/tmp_2F1687443365888-ap68bkr7g1-fad21c265c5c560153c9f40c2e5e21b0_2Flita026_frCvr_hiRez_400x.jpg?v=1696119806",
        "price": 129,
        "url": "\/products\/betty-davis",
        "description": "[[Release Detail]][[Release Description]] In 1973, Betty Davis would finally kick off her cosmic career with an amazingly progressive hard funk, sweet soul, self-titled debut. Davis showcased her fiercely unique talent and features such gems as “If I’m In Luck I Might Get Picked Up” and “Game Is My Middle Name.” Betty Davis was recorded with Sly \u0026amp; The Family Stone’s...",
        "available": true,
        "catalogNumber": "LITA 026",
        "upc": ""
      },


{
        "handle": "is-it-love-or-desire",
        "title": "Is It Love Or Desire",
        "artist": "Betty Davis",
        "label": "Light In The Attic",
        "genres": ["Funk \/ Soul","Disco"],
        "tags": ["Album","all","B2B","Betty Davis","Cassette","CD","D2C","Disco","Funk \/ Soul","In Stock","just-added","last-week","Light In The Attic","now-shipping","On Sale","Released 6\/22\/2023","sale","Vinyl"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/bettydavis_isitloveordesire_400x.jpg?v=1696119809",
        "price": 129,
        "url": "\/products\/is-it-love-or-desire",
        "description": "[[Release Detail]][[Release Description]] Is It Love Or Desire is a little-known gem in the Davis catalogue. Mastered from the original tapes, and untouched for over 30 years, this release features detailed liner notes by Oliver Wang (Soul Sides, Betty Davis and They Say I’m Different re-issue contributor), the originally intended artwork housed in a lavishly packaged digipak, rare photos, archival...",
        "available": true,
        "catalogNumber": "LITA 047",
        "upc": ""
      },



{
        "handle": "dreamin-wild",
        "title": "Dreamin' Wild",
        "artist": "Donnie \u0026 Joe Emerson",
        "label": "Light In The Attic",
        "genres": ["Rock","Pop"],
        "tags": ["2LP","Album","all","B2B","best-sellers","CD","D2C","Donnie \u0026 Joe Emerson","In Stock","June Sale","just-added","last-week","Light In The Attic","LP","now-shipping","On Sale","Pop","Released 2\/14\/2023","Rock","sale","test-albums","wintersale"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/Donnie_JoeEmerson_DreaminWild_325_400x.jpg?v=1697032708",
        "price": 129,
        "url": "\/products\/dreamin-wild",
        "description": "[[Release Detail]] [[Release Description]] Pacific Northwest isolation mixed with wide-eyed ambition, a strong sense of family, and the gift of music proved to be quite the combination for teenage brothers Donnie and Joe Emerson. Originally released in 1979, Dreamin’ Wild is the sonic vision of the talented Emerson boys, recorded in a family-built home studio in rural Washington State. Situated...",
        "available": true,
        "catalogNumber": "LITA 082",
        "upc": ""
      },



{
        "handle": "start-walkin-1965-1976",
        "title": "Start Walkin’ 1965–1976",
        "artist": "Nancy Sinatra",
        "label": "Light In The Attic",
        "genres": ["Pop"," Country"," Psych"],
        "tags": ["Album","all","B2B","best-sellers","Cassette","CD","Country","D2C","In Stock","June Sale","Light In The Attic","Nancy Sinatra","now-shipping","On Sale","Pop","Psych","Released 10\/21\/2020","sale","test-albums","Vinyl","wintersale"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/tmp_2F1603218483868-zprs3r875wi-18ee9d1e6e5bcced33fde7524df399e0_2FLITA_2B195_2B-_2BNancy_2BSinatra_2B-_2BStart_2BWalkin-Hi_2BRes_2BCover_400x.jpg?v=1696119890",
        "price": 1400,
        "url": "\/products\/start-walkin-1965-1976",
        "description": "[[Release Detail]][[Release Description]] Wondering when this will be back in stock? We love it too! There are no current plans to repress this title but if we do, we will announce it in our newsletter. We encourage you to sign up there to be the first to know! Light In The Attic Records is proud to present Nancy Sinatra: Start...",
        "available": true,
        "catalogNumber": "LITA 195",
        "upc": "826853019590"
      },



{
        "handle": "boots",
        "title": "Boots",
        "artist": "Nancy Sinatra",
        "label": "Light In The Attic",
        "genres": ["Pop"],
        "tags": ["Album","all","B2B","best-sellers","Cassette","CD","D2C","In Stock","June Sale","Light In The Attic","Nancy Sinatra","now-shipping","On Sale","Pop","Released 7\/28\/2021","sale","test-albums","Vinyl","wintersale"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/tmp_2F1626291676218-cpiuq4bxqk6-bd9ec93ada06ba717714498e4f859c3f_2Flita1974_lpCvr_3000px_300dpi_400x.jpg?v=1696119905",
        "price": 1000,
        "url": "\/products\/boots",
        "description": "[[Release Detail]][[Release Description]] “Dumb stuff, as Lee used to call it. Dumb doesn’t mean stupid. It means human and understandable. It was the sound of three guitars, drums, and bass. It was simple, very, very simple. I can still see the room, the studio. With Carol Kaye, Glen Campbell, Donnie Owens… I can still see them all sitting there and...",
        "available": true,
        "catalogNumber": "LITA 197",
        "upc": "826853019712"
      },

{
        "handle": "nancy-lee-again",
        "title": "Nancy \u0026 Lee Again",
        "artist": "Nancy Sinatra",
        "label": "Light In The Attic",
        "genres": ["Pop"," Psych"],
        "tags": ["Album","all","B2B","best-sellers","Cassette","CD","D2C","In Stock","June Sale","Light In The Attic","Nancy Sinatra","now-shipping","On Sale","Pop","Psych","Released 1\/26\/2023","sale","test-albums","Vinyl","wintersale"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/tmp_2F1674083385494-opfm8kfke1c-6447dc37d5dd53b1becdbf5aedd35c80_2Flita199_hiRez_400x.jpg?v=1696119910",
        "price": 1300,
        "url": "\/products\/nancy-lee-again",
        "description": "[[Release Detail]][[Release Description]] Light in the Attic Records is proud to present the next installment of the Nancy Sinatra Archival Series with the first ever reissue of the classic 1972 album Nancy \u0026amp; Lee Again. Recorded during a 1972 reunion between Nancy and the enigmatic Hazlewood, the album contains some of the pair’s most enduring and ambitious duets including the...",
        "available": true,
        "catalogNumber": "LITA 199",
        "upc": "826853019910"
      },


{
        "handle": "u-f-o",
        "title": "U.F.O.",
        "artist": "Jim Sullivan",
        "label": "Light In The Attic",
        "genres": ["Folk"," Rock"],
        "tags": ["Album","all","B2B","best-sellers","Cassette","CD","D2C","Folk","In Stock","Jim Sullivan","June Sale","just-added","last-week","Light In The Attic","now-shipping","On Sale","Released 5\/4\/2023","Rock","sale","test-albums","Vinyl","wintersale"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/JimSullivan_400x.jpg?v=1697032706",
        "price": 129,
        "url": "\/products\/u-f-o",
        "description": "[[Release Detail]][[Release Description]] In March 1975, Jim Sullivan mysteriously disappeared outside Santa Rosa, New Mexico. His VW bug was found abandoned, his motel room untouched. Some think he got lost in the desert. Some think he fell foul of a local family with alleged mafia ties. Some think he was abducted by aliens. By coincidence–or perhaps not–Jim’s 1969 debut album...",
        "available": true,
        "catalogNumber": "LITA 206",
        "upc": ""
      },




{
        "handle": "masana-temples",
        "title": "Masana Temples",
        "artist": "Kikagaku Moyo",
        "label": "Guruguru Brain",
        "genres": ["Rock","Psych"],
        "tags": ["Album","all","B2B","best-sellers","CD","D2C","Guruguru Brain","In Stock","just-added","Kikagaku Moyo","Psych","Released 2\/27\/2023","Rock","sale","sd__preorder--43959652221173--end::2026-09-04","test-albums","valid-preorder","valid-preorder-new","Vinyl"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/tmp_2F1648839260622-qzjil5tnl5-7237878d4b4818c3f5104b74c334e734_2FDKjUJGNw_400x.jpg?v=1690525172",
        "price": 1300,
        "url": "\/products\/masana-temples",
        "description": "[[Release Detail]][[Release Description]] Kikagaku Moyo started in the summer of 2012 busking on the streets of Tokyo. Though the band started as a free music collective, it quickly evolved into a tight group of multi-instrumentalists. Kikagaku Moyo call their sound psychedelic because it encompasses a broad spectrum of influence. Their music incorporates elements of classical Indian music, Krautrock, Traditional Folk,...",
        "available": true,
        "catalogNumber": "GGB-017LP-2",
        "upc": "606825444120"
      },

{
        "handle": "greatest-hits-of-tatsuro-yamashita",
        "title": "Greatest Hits! Of Tatsuro Yamashita",
        "artist": "Tatsuro Yamashita",
        "label": "RCA\/AIR",
        "genres": ["City Pop"],
        "tags": ["Album","B2B","City Pop","D2C","In Stock","just-added","LP","RCA\/AIR","Released 4\/20\/2023","sd__preorder--44136578842869--end::2026-07-10","Tatsuro Yamashita","valid-preorder","valid-preorder-new"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/4547366588187_400x.jpg?v=1738026899",
        "price": 5000,
        "url": "\/products\/greatest-hits-of-tatsuro-yamashita",
        "description": "[[Release Detail]][[Release Description]]\nOriginally released in 1982, Greatest Hits! Of Tatsuro Yamashita is the first and only “best of” compilation album of Yamashita’s work. \n[[Selling Points]]\n\nOriginally released in 1982\nCurated by Yamashita himself\nLimited edition\nPressed on 180g black vinyl\n\n[[Catalog Number]]BVJL-98[[Artist]]Tatsuro Yamashita",
        "available": true,
        "catalogNumber": "BVJL-98",
        "upc": "4547366588187"
      },

{
        "handle": "my-pussy-belongs-to-daddy",
        "title": "My Pussy Belongs To Daddy",
        "artist": "Various Artists",
        "label": "Ebalunga!!!",
        "genres": ["Exotica"],
        "tags": ["Album","B2B","CD","D2C","Ebalunga!!!","Exotica","In Stock","now-shipping","Released 5\/10\/2023","sd__preorder--44136578220277--end::2024-09-27","sd__preorder--44136578253045--end::2024-09-27","Various Artists","Vinyl"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/tmp_2F1683747572204-u8hpj1aajq-528675f724f2cca99547a1ba21901255_2Fa4086283489_10_400x.jpg?v=1698103309",
        "price": 1500,
        "url": "\/products\/my-pussy-belongs-to-daddy",
        "description": "[[Release Detail]][[Release Description]]Ebalunga!!! presents a joyful reissue of the legendary compilation album “My Pussy Belongs To Daddy”! Released in 1957 on the Beacon label run by the legendary producer Joe Davis – it was one of the first albums which captured the audience’s attention by means of double entendres in the songs. The release became one of the most eccentric...",
        "available": true,
        "catalogNumber": "EBL-016LP",
        "upc": "8016670158790"
      },

{
        "handle": "words-music-may-1965-standard-edition",
        "title": "Words \u0026 Music, May 1965 - Standard Edition",
        "artist": "Lou Reed",
        "label": "Light In The Attic",
        "genres": ["Rock"],
        "tags": ["Album","all","B2B","best-sellers","Cassette","CD","D2C","In Stock","June Sale","Light In The Attic","Lou Reed","now-shipping","On Sale","Released 6\/5\/2022","Rock","sale","test-albums","Vinyl","wintersale"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/tmp_2F1654039103843-jq3i3tii0pg-64fd745fa19a1d10a7fca8dce8077905_2FLITA188-Lou_2BReed-Words_2B_26_2BMusic_2BMay_2B1965-Standard_2BEdition-Hi-Res_2BCover_400x.jpg?v=1696119908",
        "price": 1200,
        "url": "\/products\/words-music-may-1965-standard-edition",
        "description": "[[Release Detail]][[Release Description]] “To hear a tape containing their earliest demos, recorded on May 11, 1965 and locked away until now, is to hear traces of things rarely associated with The Velvet Underground: blues and folk, earthy and traditional, uncertain and hesitant… yet bristling with that rusty, caustic, Lou Reed spirit. It is a revelation.” – Will Hodgkinson, MOJO Light...",
        "available": true,
        "catalogNumber": "LITA 188",
        "upc": "826853018883"
      },



{
        "handle": "spacy",
        "title": "Spacy",
        "artist": "Tatsuro Yamashita",
        "label": "RCA\/AIR",
        "genres": ["City Pop"],
        "tags": ["Album","B2B","City Pop","D2C","In Stock","just-added","LP","RCA\/AIR","Released 4\/20\/2023","Ryuichi Sakamoto","sd__preorder--44136580022517--end::2026-07-10","Tatsuro Yamashita","valid-preorder","valid-preorder-new"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/4547366588170_400x.jpg?v=1738026927",
        "price": 5000,
        "url": "\/products\/spacy",
        "description": "[[Release Detail]][[Release Description]]  Spacy, originally released in 1977, boasts an impressive lineup of Japanese legends including Haruomi Hosono, Ryuichi Sakamoto, Minako Yoshida, Kenji Ohmura, and Hiroshi Sato. The album features all the usual Yamashita elements, such as euphoric vocals, innovative string arrangements, glistening keyboards, and funky guitar riffs, but the rhythms on this one are a little more forceful.  [[Selling...",
        "available": true,
        "catalogNumber": "BVJL-94",
        "upc": "4547366588170"
      },

{
        "handle": "wajazz-legends-jiro-inagaki-selected-by-yusuke-ogawa-universounds",
        "title": "WaJazz Legends: Jiro Inagaki - Selected by Yusuke Ogawa (Universounds)",
        "artist": "Jiro Inagaki",
        "label": "180g",
        "genres": ["Jazz","Japanese"],
        "tags": ["180g","2LP","Album","all","B2B","best-sellers","D2C","In Stock","Japanese","Jazz","Jiro Inagaki","just-added","Released 7\/26\/2023","sale","sd__preorder--43959874814197--end::2026-11-06","test-albums","test-klevu","valid-preorder","valid-preorder-new"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/tmp_2F1690393955508-q5yhg4rokp-0d78889d16369b5cb84e21f88725ddf7_2F180GHMVLP03_2Bfront_2B3000x3000px_400x.jpg?v=1690532555",
        "price": 4300,
        "url": "\/products\/wajazz-legends-jiro-inagaki-selected-by-yusuke-ogawa-universounds",
        "description": "[[Release Detail]][[Release Description]] WaJazz Legends: Jiro Inagaki - Selected by Yusuke Ogawa (Universounds) by Wajazz series Universounds, HMV Record Shop and 180g team up for an exceptional release in their highly acclaimed WaJazz series, to be out on Jiro Inagaki’s 90th birthday, October 3rd, 2023, celebrating the life and music of one of the most iconic Japanese jazz musicians of...",
        "available": true,
        "catalogNumber": "180GHMVLP03-GOLD",
        "upc": "5050580810174"
      },


{
        "handle": "kumoyo-island",
        "title": "Kumoyo Island",
        "artist": "Kikagaku Moyo",
        "label": "Guruguru Brain",
        "genres": ["Rock","Psych"],
        "tags": ["Album","all","B2B","best-sellers","D2C","Guruguru Brain","In Stock","just-added","Kikagaku Moyo","LP","Psych","Released 5\/9\/2022","Rock","sale","sd__preorder--43959825006837--end::2026-09-04","test-albums","valid-preorder","valid-preorder-new"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/tmp_2F1652115522888-f56oub57tbq-8169c930de8e5b004c8a77cffd22402f_2Fa0810188384_10_400x.jpg?v=1690530743",
        "price": 3000,
        "url": "\/products\/kumoyo-island",
        "description": "[[Release Detail]][[Release Description]] In many ways Kumoyo Island represents the culmination of a journey for Kikagaku Moyo. While their decade-long career can be summarized as a series of kaleidoscopic explorations through lands and dimensions far and near, there’s a strong intention in each of their works to take the listener to a particular place, however real or abstract they may...",
        "available": true,
        "catalogNumber": "GGB-028LP",
        "upc": "9501962371494"
      },




{
        "handle": "wamono-a-to-z-vol-i-japanese-jazz-funk-rare-groove-1968-1980-selected-by-dj-yoshizawa-dynamite-chintam",
        "title": "WAMONO A to Z Vol. I - Japanese Jazz Funk \u0026 Rare Groove 1968-1980 (Selected by DJ Yoshizawa Dynamite \u0026 Chintam)",
        "artist": "Various Artists",
        "label": "180g",
        "genres": ["Funk \/ Soul","Japanese"],
        "tags": ["180g","Album","all","B2B","best-sellers","D2C","Funk \/ Soul","In Stock","Japanese","LP","now-shipping","Released 6\/4\/2020","sale","test-albums","Various Artists"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/tmp_2F1591301539384-nbuyy0qg5t-f50c19150c5e29003d05dcfc15a1d0ca_2F0513_LP_Sleeve_3mmSpine_400x.jpg?v=1690613304",
        "price": 2900,
        "url": "\/products\/wamono-a-to-z-vol-i-japanese-jazz-funk-rare-groove-1968-1980-selected-by-dj-yoshizawa-dynamite-chintam",
        "description": "[[Release Detail]][[Release Description]] WAMONO A to Z Vol. I - Japanese Jazz Funk \u0026amp; Rare Groove 1968-1980 (Selected by DJ Yoshizawa Dynamite \u0026amp; Chintam) by Wamono series Active as a professional DJ in Japan since the late eighties, DJ Yoshizawa Dynamite is also a renowned remixer, compiler and producer. An avid record collector and an expert of the Wamono style,...",
        "available": true,
        "catalogNumber": "180GWALP01",
        "upc": "5050580740839"
      },


{
        "handle": "circus-town",
        "title": "Circus Town",
        "artist": "Tatsuro Yamashita",
        "label": "RCA\/AIR",
        "genres": ["City Pop"],
        "tags": ["Album","B2B","City Pop","D2C","In Stock","LP","now-shipping","RCA\/AIR","Released 4\/20\/2023","Tatsuro Yamashita"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/4547366588163_400x.jpg?v=1738026954",
        "price": 5000,
        "url": "\/products\/circus-town",
        "description": "[[Release Detail]][[Release Description]]\nYamashita’s debut solo album, Circus Town, was first released in 1976. Recorded between New York and Los Angeles, the record itself reflects the contrasting environments in which it was recorded; featuring both earnest ballads as well as carefree melodies. \n[[Selling Points]]\n\nOriginally released in 1976\nLimited edition\nPressed on 180g black vinyl\n\n[[Catalog Number]]BVJL-95[[Artist]]Tatsuro Yamashita",
        "available": true,
        "catalogNumber": "BVJL-95",
        "upc": "4547366588163"
      },

{
        "handle": "the-oz-tapes",
        "title": "The OZ Tapes",
        "artist": "Les Rallizes Denudes",
        "label": "Temporal Drift",
        "genres": ["Rock","Psych","Japanese"],
        "tags": ["2LP","Album","all","B2B","best-sellers","D2C","In Stock","Japanese","Les Rallizes Denudes","now-shipping","Psych","Released 4\/5\/2022","Rock","Temporal Drift","test-albums","Vinyl"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/195893730780_400x.jpg?v=1747164706",
        "price": 3800,
        "url": "\/products\/the-oz-tapes",
        "description": "[[Release Detail]][[Release Description]]Operating out of a small upstairs space just around the corner from the train station in the Kichijoji neighborhood of Tokyo, OZ was a scruffy, DIY affair that lasted not much more than a year. Between June 1972 to September 1973, the cafe and performance space became the nerve center for the city’s burgeoning underground and counterculture set....",
        "available": true,
        "catalogNumber": "DRFT03",
        "upc": "195893782888"
      },

{
        "handle": "another-side",
        "title": "Another Side",
        "artist": "Leo Nocentelli",
        "label": "Light In The Attic",
        "genres": ["Funk \/ Soul"],
        "tags": ["Album","all","B2B","best-sellers","Cassette","CD","D2C","Funk \/ Soul","In Stock","Leo Nocentelli","Light In The Attic","now-shipping","On Sale","Released 4\/25\/2021","Released 9\/28\/2021","test-albums","Vinyl","wintersale"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/tmp_2F1632506928281-mckyjrqwo3n-af84ecd0e830c9a749f70150a77cbeaf_2FLITA_2B191_2B-_2BLeo_2BNocentelli_2B-_2BAnother_2BSide_2B-_2BHi_2BRes_2BCover_400x.jpg?v=1696119902",
        "price": 129,
        "url": "\/products\/another-side",
        "description": "[[Release Detail]][[Release Description]] “Things happen for a reason, man.” – Leo Nocentelli At just fourteen, Leo Nocentelli was backing up Otis Redding. Soon after, he was playing on hits for Lee Dorsey, The Supremes, and The Temptations. As an original member of The Meters, Leo wrote instant classics “Cissy Strut” and “Hey Pocky A–Way,” but his greatest moment on record...",
        "available": true,
        "catalogNumber": "LITA 191",
        "upc": ""
      },

{
        "handle": "its-a-poppin-time",
        "title": "It’s a Poppin’ Time",
        "artist": "Tatsuro Yamashita",
        "label": "RCA\/AIR",
        "genres": ["City Pop"],
        "tags": ["2LP","Album","all","B2B","best-sellers","City Pop","D2C","In Stock","just-added","RCA\/AIR","Released 4\/20\/2023","Ryuichi Sakamoto","sd__preorder--44136578482421--end::2026-07-10","Tatsuro Yamashita","test-albums","valid-preorder","valid-preorder-new"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/4547366588194_400x.jpg?v=1738026941",
        "price": 5500,
        "url": "\/products\/its-a-poppin-time",
        "description": "[[Release Detail]][[Release Description]] This album is an unforgettable live recording featuring both original songs by Yamashita as well as covers! What’s more, Yamashita is accompanied by several top-class musicians including Ryuichi Sakamoto, Minako Yoshida, Shuichi “Ponta” Murakami, Tsunehide Matsuki, and Akira Okazawa at the legendary Pitt Inn.  [[Selling Points]] Originally released in 1978 Recorded at the legendary Pitt Inn in...",
        "available": true,
        "catalogNumber": "BVJL-96-97",
        "upc": "4547366588194"
      },

{
        "handle": "bacchanal",
        "title": "Bacchanal",
        "artist": "Gabor Szabo",
        "label": "Ebalunga!!!",
        "genres": ["Jazz"],
        "tags": ["Album","all","B2B","CD","D2C","Ebalunga!!!","Gabor Szabo","In Stock","Jazz","just-added","now-shipping","preorder-new","Released 2\/15\/2021","sale","sd__preorder--43959785324789--end::2024-10-11","sd__preorder--43959785357557--end::2026-07-03","test-albums","valid-preorder","valid-preorder-new","Vinyl"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/8016670147374_400x.jpg?v=1755043119",
        "price": 1600,
        "url": "\/products\/bacchanal",
        "description": "[[Release Detail]][[Release Description]]The long-awaited reissue of rare Eastern and psychedelic Jazz LP by the famous Hungarian guitarist, originally released in 1968. The first time, extended Edition with four bonus tracks: radio version from singles 7” 1968. Deluxe 6-sided Digipak CD with a booklet and Gatefold Vinyl comes with long, exclusively written inner notes by the famous researcher and biographer Douglas...",
        "available": true,
        "catalogNumber": "EBL-009LP",
        "upc": "8016670147374"
      },

{
        "handle": "naruto-best-collection",
        "title": "Naruto: Best Collection",
        "artist": "Various Artists",
        "label": "Microids Records",
        "genres": ["Soundtrack"],
        "tags": ["Album","all","B2B","best-sellers","D2C","In Stock","just-added","LP","Microids Records","now-shipping","Released 5\/12\/2023","sd__preorder--43959863410933--end::2026-06-08","sd__preorder--48078918615285--end::2026-07-03","Soundtrack","test-albums","valid-preorder-new","Various Artists"],
        "image": "\/\/lightintheattic.net\/cdn\/shop\/files\/3701627800055_400x.png?v=1752610598",
        "price": 4200,
        "url": "\/products\/naruto-best-collection",
        "description": "[[Release Detail]][[Release Description]] A selection of the main soundtracks of Naruto – one of the best known Anime in the world. Including the opening theme “Haruka Kanata”. In the village of Konoha lives Naruto, a young boy who is hated and feared by the villagers because he has Kyuubi (Nine-tailed fox demon) of incredible strength inside him, which has killed...",
        "available": true,
        "catalogNumber": "DV12782",
        "upc": "3701627800055"
      }

  ]
}
</script>


<form class="search-form" action="/search" role="search" style="display: none !important;">
  <input type="search" id="lita-search-trigger" name="q" placeholder="Search our store" autocomplete="off">
  <button type="submit" id="lita-search-submit-btn"><img src="//lightintheattic.net/cdn/shop/files/search-icon_2x_0c9e4966-78de-4b53-8775-d78a53ef7ad8_small.png?v=17845682356397293744" alt="search"></button>
  <button class="search-form--close"><img src="//lightintheattic.net/cdn/shop/files/search_close_small.png?v=9770601861559901426" alt="close"></button>
</form>


<div id="lita-search-popup">
  <div class="lita-popup__box">
    <div class="lita-popup__left" id="lita-popup-left">
      <div id="lita-filter-artist"></div>
      <div id="lita-filter-label"></div>
      <div id="lita-filter-format"></div>
      <div id="lita-filter-genre"></div>
    </div>
    <div class="lita-popup__right">
      <div class="lita-popup__topbar">
        <div style="display: flex; align-items: center; gap: 8px; flex: 1;">
          <input type="text" id="lita-popup-input" placeholder="Search by artist, album, label, catalog number, or UPC..." style="flex: 1; min-width: 150px; border: 1px solid #ddd; border-radius: 6px; padding: 10px 16px; font-size: 15px; outline: none; font-family: inherit;" autocomplete="off">
          <button id="lita-popup-search-btn" style="background: #111; border: none; border-radius: 6px; cursor: pointer; padding: 8px 16px; display: flex; align-items: center; justify-content: center; gap: 6px;">
            <svg width="18" height="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
              <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5 3.99999C8.77609 3.99999 7.12279 4.68481 5.90381 5.9038C4.68482 7.12279 4 8.77609 4 10.5C4 12.2239 4.68482 13.8772 5.90381 15.0962C7.12279 16.3152 8.77609 17 10.5 17C12.2239 17 13.8772 16.3152 15.0962 15.0962C16.3152 13.8772 17 12.2239 17 10.5C17 8.77609 16.3152 7.12279 15.0962 5.9038C13.8772 4.68481 12.2239 3.99999 10.5 3.99999ZM2 10.5C2.00012 9.14459 2.32436 7.80886 2.94569 6.60425C3.56702 5.39964 4.46742 4.36109 5.57175 3.57523C6.67609 2.78937 7.95235 2.279 9.29404 2.0867C10.6357 1.8944 12.004 2.02574 13.2846 2.46977C14.5652 2.9138 15.7211 3.65764 16.6557 4.63923C17.5904 5.62082 18.2768 6.8117 18.6576 8.11251C19.0384 9.41332 19.1026 10.7863 18.8449 12.117C18.5872 13.4477 18.015 14.6974 17.176 15.762L20.828 19.414C21.0102 19.6026 21.111 19.8552 21.1087 20.1174C21.1064 20.3796 21.0012 20.6304 20.8158 20.8158C20.6304 21.0012 20.3796 21.1064 20.1174 21.1087C19.8552 21.1109 19.6026 21.0102 19.414 20.828L15.762 17.176C14.5086 18.164 13.0024 18.7792 11.4157 18.9511C9.82905 19.123 8.22602 18.8448 6.79009 18.1482C5.35417 17.4516 4.14336 16.3649 3.29623 15.0123C2.44911 13.6597 1.99989 12.096 2 10.5ZM9.5 6.99999C9.5 6.73478 9.60536 6.48042 9.79289 6.29289C9.98043 6.10535 10.2348 5.99999 10.5 5.99999C11.6935 5.99999 12.8381 6.4741 13.682 7.31801C14.5259 8.16193 15 9.30652 15 10.5C15 10.7652 14.8946 11.0196 14.7071 11.2071C14.5196 11.3946 14.2652 11.5 14 11.5C13.7348 11.5 13.4804 11.3946 13.2929 11.2071C13.1054 11.0196 13 10.7652 13 10.5C13 9.83695 12.7366 9.20107 12.2678 8.73223C11.7989 8.26339 11.163 7.99999 10.5 7.99999C10.2348 7.99999 9.98043 7.89464 9.79289 7.7071C9.60536 7.51956 9.5 7.26521 9.5 6.99999Z" fill="white"/>
            </svg>
            <span style="color: white; font-size: 13px; font-weight: 500;">Search</span>
          </button>
        </div>
        
        <div class="sort-wrapper" style="position: relative;">
          <select id="sort-price" style="padding: 8px 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 13px; background: #fff; cursor: pointer; outline: none;">
            <option value="">Sort by</option>
            <option value="price_asc">Price ↑ Low to High</option>
            <option value="price_desc">Price ↓ High to Low</option>
          </select>
        </div>
        
        <div class="view-toggle" id="view-toggle" style="display: flex; gap: 8px;">
          <button class="view-btn active" data-view="grid" title="Grid View" style="background: none; border: none; cursor: pointer; padding: 6px; border-radius: 6px; display: flex; align-items: center; justify-content: center; width: 32px; height: 32px;">
            <svg width="18" height="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
              <rect x="3" y="3" width="7" height="7" rx="1" stroke="currentColor" stroke-width="1.5" fill="none"/>
              <rect x="14" y="3" width="7" height="7" rx="1" stroke="currentColor" stroke-width="1.5" fill="none"/>
              <rect x="3" y="14" width="7" height="7" rx="1" stroke="currentColor" stroke-width="1.5" fill="none"/>
              <rect x="14" y="14" width="7" height="7" rx="1" stroke="currentColor" stroke-width="1.5" fill="none"/>
            </svg>
          </button>
          <button class="view-btn" data-view="list" title="List View" style="background: none; border: none; cursor: pointer; padding: 6px; border-radius: 6px; display: flex; align-items: center; justify-content: center; width: 32px; height: 32px;">
            <svg width="18" height="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
              <rect x="3" y="4" width="18" height="4" rx="1" stroke="currentColor" stroke-width="1.5" fill="none"/>
              <rect x="3" y="10" width="18" height="4" rx="1" stroke="currentColor" stroke-width="1.5" fill="none"/>
              <rect x="3" y="16" width="18" height="4" rx="1" stroke="currentColor" stroke-width="1.5" fill="none"/>
            </svg>
          </button>
        </div>
        
        <button id="mobile-filter-toggle" style="display: none; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 6px; align-items: center; justify-content: center; width: 32px; height: 32px;">
          <svg width="18" height="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
            <path d="M4 6H20M6 12H18M10 18H14" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
            <circle cx="7" cy="6" r="2" stroke="currentColor" stroke-width="1.5"/>
            <circle cx="17" cy="12" r="2" stroke="currentColor" stroke-width="1.5"/>
            <circle cx="12" cy="18" r="2" stroke="currentColor" stroke-width="1.5"/>
          </svg>
        </button>
        
        <button id="lita-popup-close">&times;</button>
      </div>
      <div class="lita-loading-bar"><div class="lita-loading-bar-fill" id="lita-fill" style="width: 0%;"></div></div>
      <div class="lita-popup__meta" id="lita-meta"></div>
      <div id="lita-products-container"></div>
    </div>
  </div>
</div>

<div id="mobile-filters-sheet">
  <div class="mobile-filters-header">
    <span>FILTERS</span>
    <button id="mobile-filters-close">&times;</button>
  </div>
  <div class="mobile-filters-content">
    <div id="mobile-filter-artist"></div>
    <div id="mobile-filter-label"></div>
    <div id="mobile-filter-format"></div>
    <div id="mobile-filter-genre"></div>
  </div>
  <div class="mobile-filters-footer">
    <button id="mobile-filters-clear">CLEAR ALL</button>
    <button id="mobile-filters-apply">APPLY</button>
  </div>
</div>
<div id="mobile-filters-overlay"></div>

<style>
#lita-search-popup { 
  display: none; 
  position: fixed; 
  inset: 0; 
  z-index: 99999; 
  background: rgba(0,0,0,0.7); 
  align-items: flex-start; 
  justify-content: center; 
  padding-top: 60px; 
}
#lita-search-popup.active { display: flex; }
.lita-popup__box { display: flex; width: 92%; max-width: 1100px; max-height: 85vh; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.lita-popup__left { width: 250px; min-width: 250px; border-right: 1px solid #e5e5e5; overflow-y: auto; flex-shrink: 0; background: #fafafa; }
.lita-fsection { border-bottom: 1px solid #e5e5e5; }
.lita-fhead { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; color: #111; user-select: none; background: #fff; }
.lita-fhead:hover { background: #f5f5f5; }
.lita-fhead .arr { color: #999; font-size: 10px; transition: transform .2s; }
.lita-fhead.shut .arr { transform: rotate(-90deg); }
.lita-fbody { padding: 8px 18px 14px; background: #fff; }
.lita-fbody.hide { display: none; }
.lita-fitem { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 13px; color: #333; cursor: pointer; }
.lita-fitem:hover { background: #f9f9f9; }
.lita-fitem input[type=checkbox] { width: 15px; height: 15px; cursor: pointer; accent-color: #222; flex-shrink: 0; }
.lita-fitem label { flex: 1; cursor: pointer; }
.lita-fitem .cnt { color: #aaa; font-size: 11px; margin-left: auto; }
.lita-fmore { font-size: 11px; color: #888; cursor: pointer; padding: 5px 0; text-decoration: underline; }
.lita-fmore:hover { color: #000; }
.lita-popup__right { flex: 1; display: flex; flex-direction: column; overflow: hidden; background: #fff; }
.lita-popup__topbar { display: flex; align-items: center; padding: 14px 20px; border-bottom: 1px solid #e5e5e5; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
#lita-popup-input { flex: 1; min-width: 150px; border: 1px solid #ddd; border-radius: 6px; padding: 10px 16px; font-size: 15px; outline: none; font-family: inherit; }
#lita-popup-input:focus { border-color: #000; box-shadow: 0 0 0 2px rgba(0,0,0,0.05); }
#lita-popup-search-btn { transition: opacity 0.2s ease; cursor: pointer; }
#sort-price { font-family: inherit; }
#sort-price:hover { border-color: #aaa; }
#lita-popup-close { background: none; border: none; font-size: 28px; cursor: pointer; color: #999; line-height: 1; padding: 0; width: 36px; height: 36px; border-radius: 50%; }
#lita-popup-close:hover { color: #000; background: #f0f0f0; }
.lita-loading-bar { height: 2px; background: #f0f0f0; flex-shrink: 0; display: none; overflow: hidden; }
.lita-loading-bar.active { display: block; }
.lita-loading-bar-fill { height: 100%; background: #111; transition: width 0.5s ease; width: 0%; }
.lita-popup__meta { font-size: 13px; color: #666; padding: 12px 20px 0; flex-shrink: 0; }
#lita-products-container { flex: 1; overflow-y: auto; padding: 16px 20px 24px; }

.search-loader {
  text-align: center;
  padding: 60px 20px;
}
.search-loader .spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #111;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
.search-loader .loader-text { color: #666; font-size: 14px; }
.search-loader .loader-subtext { color: #999; font-size: 12px; margin-top: 8px; }

#lita-products-container:empty {
  display: block;
}
#lita-products-container:empty::before {
  content: '🔍 Start typing to search products...';
  display: block;
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 14px;
}

.lita-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.lita-list { display: flex; flex-direction: column; gap: 12px; }
.lita-list .lita-card { display: flex; flex-direction: row; gap: 16px; align-items: flex-start; }
.lita-list .lita-card .lita-card-image-wrapper { width: 80px; flex-shrink: 0; }
.lita-list .lita-card img { width: 80px; height: 80px; aspect-ratio: 1; object-fit: cover; }
.lita-list .lita-card-info { flex: 1; padding: 8px 0; }
.lita-list .lita-card-title { font-size: 14px; margin-bottom: 6px; }
.lita-list .lita-card-artist { font-size: 12px; margin-bottom: 8px; }

.lita-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all .2s ease;
  background: #fff;
}
.lita-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.lita-card-image-wrapper {
  position: relative;
  overflow: hidden;
}
.lita-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.lita-card:hover img {
  transform: scale(1.05);
}
.lita-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lita-card:hover .lita-card-overlay {
  opacity: 1;
}
.lita-card-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.lita-card-btn:hover {
  background: #111;
  color: #fff;
  transform: scale(1.05);
}
.lita-card-info {
  padding: 12px;
}
.lita-card-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
  color: #111;
}
.lita-card-artist {
  font-size: 11px;
  color: #666;
  margin-bottom: 8px;
}
.lita-card-price {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}
.lita-viewall {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}
.lita-viewall:hover { background: #e8e8e8; }
.lita-noresults { color: #999; font-size: 14px; padding: 40px 0; text-align: center; }
.lita-pages { display: flex; justify-content: center; gap: 6px; padding: 24px 0 8px; flex-wrap: wrap; }
.lita-pgbtn { padding: 6px 12px; border: 1px solid #ddd; background: #fff; border-radius: 5px; cursor: pointer; font-size: 13px; font-family: inherit; color: #444; }
.lita-pgbtn:hover { background: #f0f0f0; border-color: #aaa; }
.lita-pgbtn.on { background: #000; color: #fff; border-color: #000; font-weight: 600; }
.view-btn { color: #999; transition: all 0.2s; }
.view-btn:hover { background: #f0f0f0; color: #333; }
.view-btn.active { color: #000; background: #f0f0f0; }

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#mobile-filters-sheet {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  z-index: 100001;
  transition: bottom 0.3s ease;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
#mobile-filters-sheet.open { bottom: 0; }
.mobile-filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #e5e5e5;
  font-weight: 700;
  font-size: 16px;
  background: #fff;
  border-radius: 20px 20px 0 0;
}
#mobile-filters-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mobile-filters-close:hover { background: #f0f0f0; color: #000; }
.mobile-filters-content { flex: 1; overflow-y: auto; padding: 16px 0; }
.mobile-filters-footer {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid #e5e5e5;
  background: #fff;
}
#mobile-filters-clear,
#mobile-filters-apply {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
#mobile-filters-clear { background: #f5f5f5; color: #333; }
#mobile-filters-clear:hover { background: #e8e8e8; }
#mobile-filters-apply { background: #111; color: #fff; }
#mobile-filters-apply:hover { background: #333; }
#mobile-filters-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 100000;
  display: none;
}
#mobile-filters-overlay.active { display: block; }

.mobile-filter-section { border-bottom: 1px solid #e5e5e5; margin-bottom: 8px; }
.mobile-filter-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  background: #fff;
}
.mobile-filter-head .arrow { color: #999; font-size: 10px; transition: transform 0.2s; }
.mobile-filter-head.collapsed .arrow { transform: rotate(-90deg); }
.mobile-filter-body { padding: 8px 20px 14px; display: block; }
.mobile-filter-body.collapsed { display: none; }
.mobile-filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
}
.mobile-filter-item input { width: 18px; height: 18px; cursor: pointer; accent-color: #111; }
.mobile-filter-item label { flex: 1; font-size: 14px; cursor: pointer; }
.mobile-filter-item .count { color: #999; font-size: 12px; }

#shopify-section-header form.search-form { padding: 0; height: 0px; }
body form.search-form input[type=search] {
    padding: 5px;
    font-size: 12px;
    border-bottom: 1px solid #FFFFFF;
    border-right: none;
    float: left;
    width: 100%;
    background: transparent;
    height: 30px;
    color: #FFFFFF;
    text-overflow: ellipsis;
    border-radius: 0;
    -webkit-appearance: none;
}
form.search-form button {
    float: left;
    width: 34px;
    padding: 5px 7px 7px 7px;
    background: transparent;
    color: white;
    font-size: 18px;
    border: none;
    border-left: none;
    cursor: pointer;
}
body form.search-form input[type=search]::placeholder { font-size: 16px; }
#lita-search-popup {
    position: absolute;
    left: 0;
    top: 0px;
    right: 0;
    padding: 0;
}
.nav-list__search { position: relative; }
.lita-popup__box {
    width: calc(100% - 65px);
    border-radius: 5px !important;
    margin-right: auto;
}
@media(max-width:767px){
    #lita-search-popup { top: -20px; }
    #lita-search-popup .lita-popup__box { width: 100% !important; }
    #lita-search-popup .lita-popup__topbar input#lita-popup-input { min-width: 100%; }
}
@media(max-width: 768px){ 
  .lita-popup__left { display: none; }
  .lita-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .lita-list .lita-card .lita-card-image-wrapper { width: 60px; }
  .lita-list .lita-card img { width: 60px; height: 60px; }
  .lita-list .lita-card-title { font-size: 12px; }
  .lita-popup__topbar { gap: 8px; }
  #sort-price { font-size: 12px; padding: 6px 10px; }
  #mobile-filter-toggle { display: flex !important; }
  .lita-card-info { padding: 10px; }
  .lita-card-title { font-size: 12px; }
  .lita-card-artist { font-size: 10px; }
  .lita-card-price { font-size: 12px; }
  .lita-card-btn { padding: 6px 12px; font-size: 10px; }
}
@media(max-width: 480px){ 
  .lita-popup__box { width: 95%; }
  .lita-popup__topbar { flex-wrap: wrap; }
  #lita-popup-input { order: 1; width: 100%; min-width: auto; }
  .sort-wrapper { order: 2; }
  .view-toggle { order: 3; }
  #mobile-filter-toggle { order: 4; }
  #lita-popup-close { order: 5; margin-left: auto; }
}
</style>

<script>
(function(){
  var PER_PAGE = 12;
  var currentView = 'grid';
  var currentSort = '';

  var allProducts      = [];
  var baseQueryResults = [];
  var filteredResults  = [];
  var currentQuery     = '';
  var currentPage      = 1;
  var activeFilters    = { artist: [], label: [], format: [], genre: [] };
  var apiFullyLoaded   = false;
  var loadedHandles    = {};
  var searchTimeout    = null;
  var isSearching      = false;
  var productsLoadPromise = null;

  var popup            = document.getElementById('lita-search-popup');
  var searchInput      = document.getElementById('lita-popup-input');
  var popupSearchBtn   = document.getElementById('lita-popup-search-btn');
  var closeButton      = document.getElementById('lita-popup-close');
  var resultsContainer = document.getElementById('lita-products-container');
  var metaContainer    = document.getElementById('lita-meta');
  var sortSelect       = document.getElementById('sort-price');
  var mobileFilterToggle = document.getElementById('mobile-filter-toggle');
  var mobileFilterSheet = document.getElementById('mobile-filters-sheet');
  var mobileFilterOverlay = document.getElementById('mobile-filters-overlay');
  var mobileFiltersClose = document.getElementById('mobile-filters-close');
  var mobileFiltersClear = document.getElementById('mobile-filters-clear');
  var mobileFiltersApply = document.getElementById('mobile-filters-apply');

  function showSearchLoader(searchTerm) {
    if (!resultsContainer) return;
    isSearching = true;
    resultsContainer.innerHTML = '<div class="search-loader">' +
      '<div class="spinner"></div>' +
      '<div class="loader-text">Searching for "' + escapeHtml(searchTerm) + '"</div>' +
      '<div class="loader-subtext">Checking catalog numbers & barcodes...</div>' +
      '</div>';
  }
  
  function hideLoader() {
    isSearching = false;
  }

  function resetHeaderClasses() {
    var navListSearch = document.querySelector('.nav-list__search');
    var navListItems = document.querySelector('.nav-list__items');
    var headerContent = document.querySelector('.header-content');
    var mobileSearchIcon = document.querySelector('.nav-list__search-icon--mobile');
    
    if (navListSearch && navListSearch.classList.contains('nav-list__search--search')) navListSearch.classList.remove('nav-list__search--search');
    if (navListItems && navListItems.classList.contains('nav-list__items--search')) navListItems.classList.remove('nav-list__items--search');
    if (headerContent && headerContent.classList.contains('header-content--search')) headerContent.classList.remove('header-content--search');
    if (mobileSearchIcon && mobileSearchIcon.classList.contains('active')) mobileSearchIcon.classList.remove('active');
  }

  var tempActiveFilters = { artist: [], label: [], format: [], genre: [] };

  var rightPanel = popup ? popup.querySelector('.lita-popup__right') : null;
  var barEl = document.createElement('div');
  barEl.className = 'lita-loading-bar';
  barEl.innerHTML = '<div class="lita-loading-bar-fill" id="lita-fill"></div>';
  if (rightPanel) {
    var metaDiv = rightPanel.querySelector('.lita-popup__meta');
    if (metaDiv) rightPanel.insertBefore(barEl, metaDiv);
    else rightPanel.appendChild(barEl);
  }
  var fillEl = document.getElementById('lita-fill');

  function normalizeForSearch(str) {
    if (!str) return '';
    return String(str).toLowerCase()
      .replace(/[-–—_]/g, ' ')
      .replace(/[&+]/g, ' and ')
      .replace(/[^\w\s]/g, ' ')
      .replace(/\s+/g, ' ')
      .trim();
  }

  var GM = {
    'African':'African','Ambient':'Ambient / New Age','Ambient / New Age':'Ambient / New Age',
    'New Age':'Ambient / New Age','New-age':'Ambient / New Age',
    'Anime':'Anime','Anime Soundtrack':'Anime',
    'Blues':'Blues','City Pop':'City Pop',
    'Country':'Country / Folk / Americana','Folk':'Country / Folk / Americana',
    'Bluegrass':'Country / Folk / Americana',
    'Electronic':'Electronic / Dance','Electronic / Minimal Wave':'Electronic / Dance',
    'Dance':'Electronic / Dance','Techno':'Electronic / Dance','EDM':'Electronic / Dance',
    'Funk':'Funk / Soul','Funk / Soul':'Funk / Soul','Soul':'Funk / Soul',
    'Soul/Funk/Reggae':'Funk / Soul','Groove':'Funk / Soul',
    'Hip Hop':'Hip-Hop','Hip hop':'Hip-Hop','Hip-hop':'Hip-Hop','Hip-Hop':'Hip-Hop',
    'Holiday':'Holiday',
    'Indie':'Indie / Alternative','Alternative':'Indie / Alternative',
    'Alternative rock':'Indie / Alternative','Indie Rock':'Indie / Alternative',
    'Instrumental':'Instrumental',
    'International':'International','Brazilian':'International','Hawaiian':'International',
    'Indonesian':'International','World':'International',
    'World music':'International','World Music':'International',
    'Japan':'Japan','Japanese':'Japan',
    'Japanese Jazz':'Japanese Jazz','Jazz':'Jazz','Fusion':'Jazz',
    'Pop':'Pop','Pop / Rock':'Pop','Pop Rock':'Pop','Pop/Rock':'Pop',
    'Rock':'Rock','Psychedelic Rock':'Rock','Shoegaze':'Rock',
    'Soundtrack':'Soundtrack','Movie Soundtrack':'Soundtrack','Television Soundtrack':'Soundtrack',
    'Video Game':'Video Game','Video Game Soundtrack':'Video Game',
    'Americana':'Americana','Boogie':'Boogie','Christmas':'Christmas',
    'Classical':'Classical','Classic':'Classical','Orchestral':'Classical',
    'Disco':'Disco','Exotica':'Exotica','Lounge':'Exotica',
    'Experimental':'Experimental','Field Recordings':'Field Recordings',
    'French':'French','Gospel':'Gospel','Halloween':'Halloween',
    'House':'House / Electro','Industrial':'Industrial',
    'Korean':'Korean','K-Pop':'Korean','Latin':'Latin','Library':'Library',
    'Metal':'Metal','Musical':'Musical','Opera':'Opera',
    'Prog':'Prog Rock','Prog Rock':'Prog Rock',
    'Psych':'Psych Rock','Psych Rock':'Psych Rock',
    'Punk':'Punk','Pop Punk':'Punk',
    'R&B':'R&B','Rap':'Rap',
    'Reggae':'Reggae / Dub','Ska':'Reggae / Dub',
    'Dancehall':'Dancehall / Ragga','Dancehall / Ragga':'Dancehall / Ragga',
    'New Wave':'New Wave','New wave':'New Wave',
    'Synth':'Synth','Synth-pop':'Synth','Trance':'Trance',
    'Singer Songwriter':'Singer Songwriter','Goth':'Goth',
    'Electronica':'Electronica','International Hip Hop':'International Hip Hop',
    'Mash-Ups':'Mash-Ups','Rockabilly':'Rockabilly',
    'Spoken World':'Spoken World','Studio Ghibli':'Studio Ghibli',
    'Non-Music':'Non-Music',"Rock 'n' Roll":"Rock 'n' Roll"
  };

  function normalizeGenreName(genre) {
    if (!genre) return '';
    return String(genre).toLowerCase().trim();
  }

  function getCanonicalGenre(genre) {
    if (!genre) return null;
    var raw = String(genre).trim();
    if (GM[raw]) return GM[raw];
    var clean = raw.replace(/\(\d+\)/,'').trim();
    if (GM[clean]) return GM[clean];
    var lowerClean = clean.toLowerCase();
    for (var key in GM) {
      if (key.toLowerCase() === lowerClean) return GM[key];
    }
    return null;
  }

  function isGenreMatch(productGenres, selectedGenres) {
    if (!selectedGenres.length) return true;
    if (!productGenres.length) return false;
    var productCanonicalGenres = productGenres.map(function(g) { return getCanonicalGenre(g); }).filter(Boolean);
    return selectedGenres.some(function(selected) {
      return productCanonicalGenres.some(function(productGenre) { return productGenre === selected; });
    });
  }

  function isArtistMatch(productArtist, selectedArtists) {
    if (!selectedArtists.length) return true;
    if (!productArtist) return false;
    var normalizedProductArtist = normalizeGenreName(productArtist);
    return selectedArtists.some(function(selected) {
      return normalizedProductArtist === normalizeGenreName(selected);
    });
  }

  function isLabelMatch(productLabel, selectedLabels) {
    if (!selectedLabels.length) return true;
    if (!productLabel) return false;
    var normalizedProductLabel = normalizeGenreName(productLabel);
    return selectedLabels.some(function(selected) {
      return normalizedProductLabel === normalizeGenreName(selected);
    });
  }

  function isFormatMatch(productTags, selectedFormats) {
    if (!selectedFormats.length) return true;
    var normalizedProductTags = productTags.map(function(t) { return normalizeGenreName(t); });
    var normalizedSelectedFormats = selectedFormats.map(function(f) { return normalizeGenreName(f); });
    return normalizedSelectedFormats.some(function(selected) {
      return normalizedProductTags.some(function(productTag) { return productTag === selected; });
    });
  }

  function openMobileFilters() {
    if (mobileFilterSheet) {
      tempActiveFilters = JSON.parse(JSON.stringify(activeFilters));
      renderMobileFilters();
      mobileFilterSheet.classList.add('open');
      if (mobileFilterOverlay) mobileFilterOverlay.classList.add('active');
      document.body.style.overflow = 'hidden';
    }
  }
  
  function closeMobileFilters() {
    if (mobileFilterSheet) {
      mobileFilterSheet.classList.remove('open');
      if (mobileFilterOverlay) mobileFilterOverlay.classList.remove('active');
      document.body.style.overflow = '';
    }
  }
  
  function applyMobileFilters() {
    activeFilters = JSON.parse(JSON.stringify(tempActiveFilters));
    applyFilters(false);
    closeMobileFilters();
  }
  
  function clearMobileFilters() {
    tempActiveFilters = { artist: [], label: [], format: [], genre: [] };
    renderMobileFilters();
  }
  
  function renderMobileFilters() {
    if (!baseQueryResults.length) return;
    var aC = {}, lC = {}, fC = {}, gC = {};
    baseQueryResults.forEach(function(p) {
      if (p.artist) {
        var normalizedArtist = normalizeGenreName(p.artist);
        aC[normalizedArtist] = aC[normalizedArtist] || { original: p.artist, count: 0 };
        aC[normalizedArtist].count++;
      }
      if (p.label) {
        var normalizedLabel = normalizeGenreName(p.label);
        lC[normalizedLabel] = lC[normalizedLabel] || { original: p.label, count: 0 };
        lC[normalizedLabel].count++;
      }
      p.tags.forEach(function(t) { 
        if (t && t.trim()) {
          var normalizedTag = normalizeGenreName(t);
          fC[normalizedTag] = fC[normalizedTag] || { original: t, count: 0 };
          fC[normalizedTag].count++;
        }
      });
      p.genres.forEach(function(g) { 
        if (g) {
          var canonical = getCanonicalGenre(g);
          if (canonical) {
            gC[canonical] = gC[canonical] || { original: canonical, count: 0 };
            gC[canonical].count++;
          }
        }
      });
    });
    buildMobileSection('mobile-filter-artist', 'ARTIST', 'artist', aC, tempActiveFilters);
    buildMobileSection('mobile-filter-label', 'LABEL', 'label', lC, tempActiveFilters);
    buildMobileSection('mobile-filter-format', 'FORMAT', 'format', fC, tempActiveFilters);
    buildMobileSection('mobile-filter-genre', 'GENRE', 'genre', gC, tempActiveFilters);
  }
  
  function buildMobileSection(containerId, title, key, counts, filtersObj) {
    var container = document.getElementById(containerId);
    if (!container) return;
    var entries = Object.keys(counts).map(function(k) { 
      return { value: counts[k].original, normalized: k, count: counts[k].count };
    }).sort(function(a, b) { return b.count - a.count; });
    if (!entries.length) {
      container.innerHTML = '';
      return;
    }
    var section = document.createElement('div');
    section.className = 'mobile-filter-section';
    var head = document.createElement('div');
    head.className = 'mobile-filter-head';
    head.innerHTML = title + ' <span class="arrow">▼</span>';
    var body = document.createElement('div');
    body.className = 'mobile-filter-body';
    head.onclick = function() {
      head.classList.toggle('collapsed');
      body.classList.toggle('collapsed');
    };
    entries.slice(0, 15).forEach(function(entry) {
      var checked = filtersObj[key].some(function(f) { return f === entry.value; });
      var item = document.createElement('div');
      item.className = 'mobile-filter-item';
      item.innerHTML = '<input type="checkbox" ' + (checked ? 'checked' : '') + ' data-value="' + entry.value.replace(/"/g, '&quot;') + '" data-normalized="' + entry.normalized + '" data-key="' + key + '"><label>' + entry.value.substring(0, 40) + '</label><span class="count">(' + entry.count + ')</span>';
      var cb = item.querySelector('input');
      cb.addEventListener('change', function(e) {
        e.stopPropagation();
        var val = this.dataset.value;
        var k = this.dataset.key;
        if (this.checked) {
          if (filtersObj[k].indexOf(val) === -1) filtersObj[k].push(val);
        } else {
          filtersObj[k] = filtersObj[k].filter(function(v) { return v !== val; });
        }
      });
      body.appendChild(item);
    });
    section.appendChild(head);
    section.appendChild(body);
    container.innerHTML = '';
    container.appendChild(section);
  }

  function sortProducts(products, sortType) {
    if (!sortType) return products;
    var sorted = [...products];
    if (sortType === 'price_asc') sorted.sort(function(a, b) { return a.price - b.price; });
    else if (sortType === 'price_desc') sorted.sort(function(a, b) { return b.price - a.price; });
    return sorted;
  }

  function initSort() {
    if (sortSelect) {
      var savedSort = localStorage.getItem('lita_search_sort');
      if (savedSort) {
        currentSort = savedSort;
        sortSelect.value = savedSort;
      }
      sortSelect.addEventListener('change', function(e) {
        currentSort = e.target.value;
        localStorage.setItem('lita_search_sort', currentSort);
        applyFilters(true);
      });
    }
  }

  function initViewToggle() {
    var viewBtns = document.querySelectorAll('.view-btn');
    var savedView = localStorage.getItem('lita_search_view');
    if (savedView && (savedView === 'grid' || savedView === 'list')) currentView = savedView;
    viewBtns.forEach(function(btn) {
      var view = btn.dataset.view;
      if (view === currentView) btn.classList.add('active');
      btn.addEventListener('click', function(e) {
        e.preventDefault();
        currentView = this.dataset.view;
        localStorage.setItem('lita_search_view', currentView);
        viewBtns.forEach(function(b) { b.classList.remove('active'); });
        this.classList.add('active');
        renderResults();
      });
    });
  }

  function getSearchableText(p) {
    var parts = [
      p.title || '', p.artist || '', p.label || '',
      p.description || '', (p.genres || []).join(' '), (p.tags || []).join(' '),
      p.catalogNumber || '', p.upc || ''
    ];
    return normalizeForSearch(parts.join(' '));
  }

  function normalizeProduct(p) {
    var artist = Array.isArray(p.artist) ? (p.artist[0] || '') : String(p.artist || '');
    var label = Array.isArray(p.label) ? (p.label[0] || '') : String(p.label || '');
    var genres = p.genres;
    if (typeof genres === 'string') {
      try { genres = JSON.parse(genres); } catch(e) { genres = genres ? [genres] : []; }
    }
    if (!Array.isArray(genres)) genres = [];
    genres = genres.filter(function(g) {
      return g && typeof g === 'string' && !g.startsWith('gid://') && g.trim().length > 0;
    });
    return {
      handle: String(p.handle || ''),
      title: String(p.title || ''),
      artist: artist.trim(),
      label: label.trim(),
      genres: genres,
      tags: Array.isArray(p.tags) ? p.tags : [],
      image: String(p.image || ''),
      price: Number(p.price || 0),
      url: String(p.url || ('/products/' + (p.handle || ''))),
      description: String(p.description || ''),
      available: p.available !== undefined ? p.available : true,
      catalogNumber: String(p.catalogNumber || ''),
      upc: String(p.upc || '')
    };
  }

  function loadLiquidProducts() {
    var el = document.getElementById('lita-all-products-meta');
    if (!el) return false;
    try {
      var data = JSON.parse(el.textContent);
      (data.products || []).forEach(function(raw) {
        var p = normalizeProduct(raw);
        if (p.available && !loadedHandles[p.handle]) {
          allProducts.push(p);
          loadedHandles[p.handle] = true;
        }
      });
      return true;
    } catch(e) { return false; }
  }

  var GQL = `query AllProducts($cursor: String) {
  products(first: 250, after: $cursor) {
    pageInfo { hasNextPage endCursor }
    edges {
      node {
        handle title tags vendor onlineStoreUrl description(truncateAt: 300)
        featuredImage { url(transform: {maxWidth: 400}) }
        priceRange { minVariantPrice { amount } }
        totalInventory
        catalogNumberMeta: metafield(namespace: "album", key: "catalog_number") {
          value type
        }
        variants(first: 250) {
          edges {
            node {
              availableForSale
              quantityAvailable
              barcode
            }
          }
        }
        artist: metafield(namespace: "participant", key: "primary_artist") {
          value type
          reference { ... on Metaobject { mTitle: field(key: "title") { value } mName: field(key: "name") { value } } }
        }
        label: metafield(namespace: "album", key: "label") {
          value type
          reference { ... on Metaobject { mTitle: field(key: "title") { value } mName: field(key: "name") { value } } }
        }
        genresMeta: metafield(namespace: "custom", key: "genres") {
          value type
          references(first: 20) {
            edges { node { ... on Metaobject { gName: field(key: "name") { value } gTitle: field(key: "title") { value } gLabel: field(key: "label") { value } } } }
          }
        }
      }
    }
  }
}`;

  function resolveScalar(field) {
    if (!field) return '';
    if (field.reference) {
      var r = field.reference;
      return (r.mTitle && r.mTitle.value) || (r.mName && r.mName.value) || field.value || '';
    }
    return field.value || '';
  }

  function resolveGenres(genresMeta) {
    if (!genresMeta) return [];
    if (genresMeta.references?.edges?.length > 0) {
      return genresMeta.references.edges.map(function(e) {
        var n = e.node;
        return (n.gName && n.gName.value) || (n.gTitle && n.gTitle.value) || (n.gLabel && n.gLabel.value) || '';
      }).filter(Boolean);
    }
    if (genresMeta.value) {
      try {
        var parsed = JSON.parse(genresMeta.value);
        if (Array.isArray(parsed)) return parsed.filter(function(g) { return g && typeof g === 'string' && !g.startsWith('gid://'); });
        if (typeof parsed === 'string') return [parsed];
      } catch(e) {}
    }
    return [];
  }

  function isProductAvailable(node) {
    if (node.totalInventory !== undefined && node.totalInventory !== null) {
      if (node.totalInventory > 0) return true;
      return false;
    }
    if (node.variants && node.variants.edges && node.variants.edges.length > 0) {
      for (var i = 0; i < node.variants.edges.length; i++) {
        var variant = node.variants.edges[i].node;
        if (variant.availableForSale === true && variant.quantityAvailable > 0) {
          return true;
        }
      }
      return false;
    }
    return false;
  }

  function mapApiNode(node) {
    var priceInCents = 0;
    if (node.priceRange?.minVariantPrice?.amount) {
      priceInCents = Math.round(parseFloat(node.priceRange.minVariantPrice.amount) * 100);
    }
    var available = isProductAvailable(node);
    
    var catalogNumber = '';
    if (node.catalogNumberMeta) {
      catalogNumber = resolveScalar(node.catalogNumberMeta);
    }
    if (!catalogNumber && node.vendor) {
      catalogNumber = node.vendor;
    }
    
    var upc = '';
    if (node.variants && node.variants.edges && node.variants.edges.length > 0) {
      var firstVariant = node.variants.edges[0].node;
      if (firstVariant.barcode) {
        upc = firstVariant.barcode;
      }
    }
    
    return {
      handle: node.handle,
      title: node.title,
      artist: resolveScalar(node.artist),
      label: resolveScalar(node.label),
      genres: resolveGenres(node.genresMeta),
      tags: node.tags || [],
      image: node.featuredImage?.url || '',
      price: priceInCents,
      url: node.onlineStoreUrl || ('/products/' + node.handle),
      description: node.description || '',
      available: available,
      catalogNumber: catalogNumber,
      upc: upc
    };
  }

  var CACHE_KEY = 'lita_products_cache';
  var CACHE_TTL = 5 * 60 * 1000;

  function saveCache(products) {
    try { sessionStorage.setItem(CACHE_KEY, JSON.stringify({ ts: Date.now(), products: products })); } catch(e) {}
  }

  function loadCache() {
    try {
      var raw = sessionStorage.getItem(CACHE_KEY);
      if (!raw) return null;
      var cached = JSON.parse(raw);
      if (Date.now() - cached.ts > CACHE_TTL) { sessionStorage.removeItem(CACHE_KEY); return null; }
      return cached.products;
    } catch(e) { return null; }
  }

  function fetchAllViaStorefront() {
    if (productsLoadPromise) return productsLoadPromise;
    
    productsLoadPromise = new Promise(function(resolve, reject) {
      var cfg = window.LITA_CONFIG || {};
      if (!cfg.domain || !cfg.storefrontToken) { 
        apiFullyLoaded = true; 
        resolve(allProducts);
        return;
      }

      var cached = loadCache();
      if (cached && cached.length > 0) {
        cached.forEach(function(p) {
          if (p.available && !loadedHandles[p.handle]) {
            allProducts.push(p);
            loadedHandles[p.handle] = true;
          }
        });
        apiFullyLoaded = true;
        if (fillEl) { 
          fillEl.style.width = '100%'; 
          setTimeout(function() { 
            if (barEl) barEl.classList.remove('active'); 
            if (fillEl) fillEl.style.width = '0%'; 
          }, 300);
        }
        resolve(allProducts);
        return;
      }

      var endpoint = 'https://' + cfg.domain + '/api/2024-04/graphql.json';
      var cursor = null, total = 0;
      var fetchedProducts = [];
      if (barEl) barEl.classList.add('active');
      if (fillEl) fillEl.style.width = '5%';

      function nextPage() {
        fetch(endpoint, {
          method: 'POST',
          headers: { 
            'Content-Type': 'application/json', 
            'X-Shopify-Storefront-Access-Token': cfg.storefrontToken 
          },
          body: JSON.stringify({ query: GQL, variables: cursor ? { cursor: cursor } : {} })
        })
        .then(function(r) { return r.json(); })
        .then(function(json) {
          if (json.errors) { finishLoading(); reject(json.errors); return; }
          var productsData = json.data?.products;
          if (!productsData) { finishLoading(); reject(new Error('No products data')); return; }
          var edges = productsData.edges || [];
          edges.forEach(function(edge) {
            var p = normalizeProduct(mapApiNode(edge.node));
            fetchedProducts.push(p);
            if (p.available && !loadedHandles[p.handle]) {
              allProducts.push(p);
              loadedHandles[p.handle] = true;
            }
          });
          total += edges.length;
          if (fillEl) fillEl.style.width = Math.min(90, 5 + total / 7) + '%';
          if (productsData.pageInfo?.hasNextPage) {
            cursor = productsData.pageInfo.endCursor;
            setTimeout(nextPage, 150);
          } else {
            saveCache(fetchedProducts);
            finishLoading();
            resolve(allProducts);
          }
        })
        .catch(function(err) { finishLoading(); reject(err); });
      }
      
      function finishLoading() {
        apiFullyLoaded = true;
        if (fillEl) fillEl.style.width = '100%';
        setTimeout(function() { 
          if (barEl) barEl.classList.remove('active'); 
          if (fillEl) fillEl.style.width = '0%'; 
        }, 500);
      }
      
      nextPage();
    });
    
    return productsLoadPromise;
  }

  // CRITICAL FIX: Wait for products to load before searching
  function runSearch(keepPage) {
    if (searchTimeout) clearTimeout(searchTimeout);
    
    var q = normalizeForSearch(currentQuery);
    
    if (q.length < 2) {
      baseQueryResults = [];
      filteredResults = [];
      if (metaContainer) metaContainer.textContent = '';
      if (resultsContainer) resultsContainer.innerHTML = '';
      clearFilters();
      hideLoader();
      return;
    }
    
    // Show loader immediately
    showSearchLoader(currentQuery);
    
    // Wait for products to be loaded before searching
    var searchFn = function() {
      baseQueryResults = allProducts.filter(function(p) {
        return getSearchableText(p).indexOf(q) !== -1;
      });
      applyFilters(keepPage);
      hideLoader();
    };
    
    if (allProducts.length > 0) {
      // Products already loaded, search immediately
      searchTimeout = setTimeout(searchFn, 100);
    } else {
      // Wait for products to load
      fetchAllViaStorefront().then(function() {
        searchTimeout = setTimeout(searchFn, 100);
      }).catch(function(err) {
        console.error('Failed to load products:', err);
        hideLoader();
        if (resultsContainer) {
          resultsContainer.innerHTML = '<div class="lita-noresults">Error loading products. Please refresh and try again.</div>';
        }
      });
    }
  }

  function applyFilters(keepPage) {
    if (!keepPage) currentPage = 1;
    var filtered = baseQueryResults.filter(function(p) {
      if (!isArtistMatch(p.artist, activeFilters.artist)) return false;
      if (!isLabelMatch(p.label, activeFilters.label)) return false;
      if (!isFormatMatch(p.tags, activeFilters.format)) return false;
      if (!isGenreMatch(p.genres, activeFilters.genre)) return false;
      return true;
    });
    filteredResults = sortProducts(filtered, currentSort);
    renderResults();
    renderFilters();
  }

  function clearFilters() {
    ['lita-filter-artist','lita-filter-label','lita-filter-format','lita-filter-genre'].forEach(function(id) {
      var el = document.getElementById(id);
      if (el) el.innerHTML = '';
    });
  }

  function renderFilters() {
    var aC = {}, lC = {}, fC = {}, gC = {};
    baseQueryResults.forEach(function(p) {
      if (p.artist) {
        var normalizedArtist = normalizeGenreName(p.artist);
        aC[normalizedArtist] = aC[normalizedArtist] || { original: p.artist, count: 0 };
        aC[normalizedArtist].count++;
      }
      if (p.label) {
        var normalizedLabel = normalizeGenreName(p.label);
        lC[normalizedLabel] = lC[normalizedLabel] || { original: p.label, count: 0 };
        lC[normalizedLabel].count++;
      }
      p.tags.forEach(function(t) { 
        if (t && t.trim()) {
          var normalizedTag = normalizeGenreName(t);
          fC[normalizedTag] = fC[normalizedTag] || { original: t, count: 0 };
          fC[normalizedTag].count++;
        }
      });
      p.genres.forEach(function(g) { 
        if (g) {
          var canonical = getCanonicalGenre(g);
          if (canonical) {
            gC[canonical] = gC[canonical] || { original: canonical, count: 0 };
            gC[canonical].count++;
          }
        }
      });
    });
    buildSection('lita-filter-artist', 'ARTIST', 'artist', aC);
    buildSection('lita-filter-label', 'LABEL', 'label', lC);
    buildSection('lita-filter-format', 'FORMAT', 'format', fC);
    buildSection('lita-filter-genre', 'GENRE', 'genre', gC);
  }

  function buildSection(id, title, key, counts) {
    var container = document.getElementById(id);
    if (!container) return;
    var entries = Object.keys(counts).map(function(k) { 
      return { value: counts[k].original, normalized: k, count: counts[k].count };
    }).sort(function(a, b) { return b.count - a.count; });
    if (!entries.length) {
      container.innerHTML = '<div class="lita-fsection"><div class="lita-fhead">' + title + '</div><div class="lita-fbody" style="padding:10px 18px;color:#999;font-size:12px;">None</div></div>';
      return;
    }
    var section = document.createElement('div');
    section.className = 'lita-fsection';
    var head = document.createElement('div');
    head.className = 'lita-fhead';
    head.innerHTML = title + ' <span class="arr">▼</span>';
    var body = document.createElement('div');
    body.className = 'lita-fbody';
    head.onclick = function() {
      body.classList.toggle('hide');
      head.classList.toggle('shut');
      head.querySelector('.arr').innerHTML = head.classList.contains('shut') ? '▶' : '▼';
    };
    var showCount = Math.min(entries.length, 10);
    for (var i = 0; i < showCount; i++) {
      body.appendChild(makeItem(key, entries[i].value, entries[i].normalized, entries[i].count));
    }
    if (entries.length > showCount) {
      var moreBtn = document.createElement('span');
      moreBtn.className = 'lita-fmore';
      moreBtn.textContent = '+' + (entries.length - showCount) + ' more';
      moreBtn.onclick = function() {
        for (var j = showCount; j < entries.length; j++) {
          body.insertBefore(makeItem(key, entries[j].value, entries[j].normalized, entries[j].count), moreBtn);
        }
        moreBtn.remove();
      };
      body.appendChild(moreBtn);
    }
    section.appendChild(head);
    section.appendChild(body);
    container.innerHTML = '';
    container.appendChild(section);
  }

  function makeItem(key, value, normalized, count) {
    var id = 'lf_' + key + '_' + normalized.replace(/[^a-z0-9]/gi, '_');
    var div = document.createElement('div');
    div.className = 'lita-fitem';
    var cb = document.createElement('input');
    cb.type = 'checkbox';
    cb.id = id;
    cb.checked = activeFilters[key].indexOf(value) !== -1;
    var lbl = document.createElement('label');
    lbl.setAttribute('for', id);
    lbl.textContent = value;
    var cnt = document.createElement('span');
    cnt.className = 'cnt';
    cnt.textContent = count;
    div.appendChild(cb);
    div.appendChild(lbl);
    div.appendChild(cnt);
    cb.onchange = function() {
      if (cb.checked) {
        if (activeFilters[key].indexOf(value) === -1) activeFilters[key].push(value);
      } else {
        activeFilters[key] = activeFilters[key].filter(function(v) { return v !== value; });
      }
      applyFilters(false);
    };
    return div;
  }

  function escapeHtml(str) {
    if (!str) return '';
    return String(str).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;');
  }

  function renderResults() {
    var total = filteredResults.length;
    var pages = Math.ceil(total / PER_PAGE);
    if (currentPage > pages) currentPage = Math.max(1, pages);
    
    var qNormalized = normalizeForSearch(currentQuery);
    
    if (qNormalized.length < 2) {
      if (metaContainer) metaContainer.textContent = '';
      if (resultsContainer) resultsContainer.innerHTML = '';
      return;
    }
    
    var loadNote = apiFullyLoaded ? '' : ' <span style="color:#aaa;font-size:11px;">(loading more…)</span>';
    
    if (total === 0 && !isSearching) {
      var hasF = activeFilters.artist.length || activeFilters.label.length || activeFilters.format.length || activeFilters.genre.length;
      if (metaContainer) metaContainer.innerHTML = '0 results for "' + escapeHtml(currentQuery) + '"' + loadNote;
      if (resultsContainer) {
        resultsContainer.innerHTML = '<div class="lita-noresults">😔 ' + (hasF ? 'No products match the selected filters. Try clearing some filters.' : 'No products found for "' + escapeHtml(currentQuery) + '". Try a different search term.') + '</div>';
      }
      return;
    }
    
    var start = (currentPage - 1) * PER_PAGE;
    var page = filteredResults.slice(start, start + PER_PAGE);
    if (metaContainer) metaContainer.innerHTML = 'Showing ' + page.length + ' of ' + total + ' results for "' + escapeHtml(currentQuery) + '"' + loadNote;
    
    var containerClass = currentView === 'grid' ? 'lita-grid' : 'lita-list';
    var html = '<div class="' + containerClass + '">';
    page.forEach(function(p) {
      var price = p.price ? '$' + (p.price / 100).toFixed(2) : '';
      var productUrl = p.url;
      html += '<div class="lita-card">';
      html += '<div class="lita-card-image-wrapper">';
      html += '<a href="' + productUrl + '" style="display: block;">';
      html += '<img src="' + (p.image || 'https://placehold.co/400x400?text=No+Image') + '" alt="' + escapeHtml(p.title) + '" loading="lazy" onerror="this.src=\'https://placehold.co/400x400?text=No+Image\'">';
      html += '</a>';
      html += '<div class="lita-card-overlay">';
      html += '<a href="' + productUrl + '" class="lita-card-btn">VIEW PRODUCT</a>';
      html += '</div>';
      html += '</div>';
      html += '<a href="' + productUrl + '" style="text-decoration: none; color: inherit;">';
      html += '<div class="lita-card-info">';
      html += '<div class="lita-card-title">' + escapeHtml(p.title) + '</div>';
      if (p.artist) html += '<div class="lita-card-artist">' + escapeHtml(p.artist) + '</div>';
      html += '</div>';
      html += '</a>';
      html += '</div>';
    });
    html += '</div>';
    if (pages > 1) {
      html += '<div class="lita-pages">';
      if (currentPage > 1) html += '<button class="lita-pgbtn" data-page="' + (currentPage-1) + '">← Prev</button>';
      var sp = Math.max(1, currentPage-2), ep = Math.min(pages, currentPage+2);
      if (sp > 1) html += '<button class="lita-pgbtn" data-page="1">1</button>';
      for (var pn = sp; pn <= ep; pn++) {
        html += '<button class="lita-pgbtn' + (pn===currentPage ? ' on' : '') + '" data-page="' + pn + '">' + pn + '</button>';
      }
      if (ep < pages) html += '<button class="lita-pgbtn" data-page="' + pages + '">' + pages + '</button>';
      if (currentPage < pages) html += '<button class="lita-pgbtn" data-page="' + (currentPage+1) + '">Next →</button>';
      html += '</div>';
    }
    html += '<a class="lita-viewall" href="/search?q=' + encodeURIComponent(currentQuery) + '">View All Results →</a>';
    if (resultsContainer) resultsContainer.innerHTML = html;
    if (resultsContainer) {
      resultsContainer.querySelectorAll('.lita-pgbtn').forEach(function(btn) {
        btn.onclick = function() {
          currentPage = parseInt(btn.dataset.page, 10);
          renderResults();
          if (resultsContainer) resultsContainer.scrollTop = 0;
        };
      });
    }
  }

  function resetAll() {
    currentQuery = ''; 
    currentPage = 1;
    activeFilters = { artist:[], label:[], format:[], genre:[] };
    baseQueryResults = []; 
    filteredResults = [];
    if (resultsContainer) resultsContainer.innerHTML = '';
    if (metaContainer) metaContainer.textContent = '';
    clearFilters();
    hideLoader();
  }

  function openPopup() {
    if (popup) popup.classList.add('active');
    setTimeout(function() { 
      if (searchInput) {
        searchInput.focus();
        if (searchInput.value.trim().length >= 2) {
          currentQuery = searchInput.value.trim();
          runSearch(false);
        }
      }
    }, 100);
  }

  function closePopup() {
    if (popup) popup.classList.remove('active');
    closeMobileFilters();
    resetAll();
    if (searchInput) searchInput.value = '';
    resetHeaderClasses();
  }

  function setupSearchIconListeners() {
    document.body.addEventListener('click', function(e) {
      var target = e.target;
      var searchIcon = target.closest('.nav-list__search-icon');
      var mobileSearchIcon = target.closest('.nav-list__search-icon--mobile');
      if (searchIcon || mobileSearchIcon) {
        e.preventDefault();
        e.stopPropagation();
        openPopup();
      }
    });
  }

  function reinitializeOnPageLoad() {
    if (allProducts.length === 0) {
      loadedHandles = {};
      loadLiquidProducts();
      fetchAllViaStorefront();
    }
    initViewToggle();
    initSort();
  }

  function setupInstantPaste() {
    if (!searchInput) return;
    
    searchInput.addEventListener('paste', function(e) {
      setTimeout(function() {
        var pastedValue = searchInput.value.trim();
        if (pastedValue.length >= 2) {
          currentQuery = pastedValue;
          showSearchLoader(pastedValue);
          runSearch(false);
        }
      }, 10);
    });
    
    searchInput.addEventListener('input', function(e) {
      var value = e.target.value.trim();
      currentQuery = value;
      
      if (value.length >= 2) {
        showSearchLoader(value);
        runSearch(false);
      } else if (value.length === 0) {
        resetAll();
      }
    });
    
    searchInput.addEventListener('keypress', function(e) {
      if (e.key === 'Enter') {
        e.preventDefault();
        var query = this.value.trim();
        if (query.length >= 2) {
          window.location.href = '/search?q=' + encodeURIComponent(query);
        }
      }
    });
  }

  function init() {
    try { sessionStorage.removeItem('lita_products_cache'); } catch(e) {}
    loadLiquidProducts();
    fetchAllViaStorefront();
    initViewToggle();
    initSort();
    setupInstantPaste();
    
    if (popupSearchBtn) {
      popupSearchBtn.addEventListener('click', function(e) {
        e.preventDefault();
        var query = searchInput ? searchInput.value.trim() : '';
        if (query.length >= 2) {
          window.location.href = '/search?q=' + encodeURIComponent(query);
        }
      });
    }
    
    if (mobileFilterToggle) mobileFilterToggle.addEventListener('click', openMobileFilters);
    if (mobileFiltersClose) mobileFiltersClose.addEventListener('click', closeMobileFilters);
    if (mobileFilterOverlay) mobileFilterOverlay.addEventListener('click', closeMobileFilters);
    if (mobileFiltersClear) mobileFiltersClear.addEventListener('click', clearMobileFilters);
    if (mobileFiltersApply) mobileFiltersApply.addEventListener('click', applyMobileFilters);
    
    setupSearchIconListeners();
    
    if (closeButton) closeButton.addEventListener('click', closePopup);
    if (popup) popup.addEventListener('click', function(e) { if (e.target === popup) closePopup(); });
    document.addEventListener('keydown', function(e) { if (e.key === 'Escape') closePopup(); });
    
    if (document.addEventListener) {
      document.addEventListener('turbo:load', reinitializeOnPageLoad);
      document.addEventListener('shopify:section:load', reinitializeOnPageLoad);
    }
  }
  
  if (document.readyState === 'loading') {
    document.addEventListener('DOMContentLoaded', init);
  } else {
    init();
  }
})();
</script>
        </div>
      </div>
    </div>
  </div>
</div>

<a href="/"><img class="position-fixed color-logo z-2" src="//lightintheattic.net/cdn/shop/files/Rectangle_388_36x.png?v=11003259012804441922"
    alt="LITA Logo Color"></a>
<a href="/"><img class="position-fixed color-circle-logo z-4"
    src="//lightintheattic.net/cdn/shop/files/LITA-Favicon-128x128_50x.png?v=4049316078396507721" alt="LITA Logo Color Circle"></a>

<script>
  (function () {
    var hT, hH, wH, wS;
    var x = window.matchMedia("(max-width: 768px)");
    var y = window.matchMedia("(min-width: 767px)");

    function toggleShortHeader(immediate) {
      wS = $(this).scrollTop();
      var desktopCutoff = immediate ? -1 : 100;
      var mobileCutoff = desktopCutoff - 20;

      if (x.matches) { // If media query matches
        $('.header-background').toggleClass('header-background--scrolled', wS > mobileCutoff);
        //$('form.search-form').toggleClass('header__search-form--scrolled', wS > mobileCutoff);
        $('.nav-list__search-icon--mobile').toggleClass('nav-list__search-icon--mobile-scrolled', wS > mobileCutoff);
      } else {
        if (!$('form.search-form input').is(":focus")) {
          $('.white-logo').toggleClass('header-content__content-image--scrolled', wS > desktopCutoff);
          $('.header-background').toggleClass('header-background--scrolled', wS > desktopCutoff);
          //$('form.search-form').toggleClass('header__search-form--scrolled', wS > desktopCutoff);
          $('.nav-list__search-icon').toggleClass('nav-list__search-icon--scrolled', wS > desktopCutoff);
          $('.nav-list__items').toggleClass('nav-list__change-on-scroll--scrolled', wS > desktopCutoff);
          $('.header-background').removeClass('header-background--search');
        }
      }
    }
    toggleShortHeader( false);

  $(window).scroll(function () {
    if ($('.header-hamburger').hasClass('is-active')) {
      return;
    }
    toggleShortHeader(false);
      });

  $('.nav-list__search-icon').on('click', function () {
    //$('.white-logo').toggleClass('header-content__content-image--scrolled');
    // $('.header-background').toggleClass('header-background--search');
    $('.nav-list__search').toggleClass('nav-list__search--search');
    $('.nav-list__items').toggleClass('nav-list__items--search');
  });
  $('.search-form--close').on('click', function (e) {
    e.preventDefault();
    //$('.white-logo').toggleClass('header-content__content-image--scrolled');
    // $('.header-background').toggleClass('header-background--search');     

    $('.nav-list__search').toggleClass('nav-list__search--search');
    $('.nav-list__items').toggleClass('nav-list__items--search');
    console.log(x.matches);
    if (x.matches) {
      $('.header-content').toggleClass('header-content--search');
    }
    $('.nav-list__search-icon--mobile').toggleClass('active');
  });

  $('.nav-list__search-icon--mobile').on('click', function () {
    // $('.header-background').toggleClass('header-background--scrolled');
    $('.nav-list__search').toggleClass('nav-list__search--search');
    $('.header-content').toggleClass('header-content--search');
    $('.nav-list__search-icon--mobile').toggleClass('active');
  });

  function disableScroll() {
    // Get the current page scroll position
    scrollTop = window.pageYOffset || document.documentElement.scrollTop;
    scrollLeft = window.pageXOffset || document.documentElement.scrollLeft,

      // if any scroll is attempted, set this to the previous value
      window.onscroll = function () {
        window.scrollTo(scrollLeft, scrollTop);
      };
  }

  function enableScroll() {
    window.onscroll = function () { };
  }

  $('.header-hamburger').on('click', function () {
    $(this).toggleClass('is-active');
    $('.header-content').toggleClass('header-content--menu');

    if (wS <= 150) {
      $('.header__navigation').slideToggle();
    }
    $('.header-background').removeClass('header-background--scrolled');
    $('form.search-form').removeClass('header__search-form--scrolled');
    //$('.nav-list__search-icon--mobile').removeClass('nav-list__search-icon--mobile-scrolled');
    if (wS > 150) {
      setTimeout(function () {
        $('.header__navigation').slideToggle();
      }, 400);
    }

    if ($(this).hasClass('is-active')) {
      // add listener to disable scroll
      disableScroll();
    }
    else {
      // Remove listener to re-enable scroll
      enableScroll();
    }
  });

  $('.nav-list__cart').on('click', function () {
    console.log('aaa');
  });

  function watchForHover() {
    var hasHoverClass = false;
    var container = document.body;
    var lastTouchTime = 0;

    function enableHover() {
      // filter emulated events coming from touch events
      if (new Date() - lastTouchTime < 500) return;
      if (hasHoverClass) return;

      container.className += ' hasHover';
      hasHoverClass = true;
    }

    function disableHover() {
      if (!hasHoverClass) return;

      container.className = container.className.replace(' hasHover', '');
      hasHoverClass = false;
    }

    function updateLastTouchTime() {
      lastTouchTime = new Date();
    }

    document.addEventListener('touchstart', updateLastTouchTime, true);
    document.addEventListener('touchstart', disableHover, true);
    document.addEventListener('mousemove', enableHover, true);

    enableHover();
  }

  watchForHover();
  }) ();
</script>

</div>
    </div>

    <main role="main" id="MainContent">
      <!-- BEGIN content_for_index --><div id="shopify-section-1563210189045" class="shopify-section"><div class="hero position-relative top-0 mb-1">
  <div class="hero__slider">
    

      
      <div class="hero position-relative" style="background-image: url('//lightintheattic.net/cdn/shop/files/movin_with_nancy_header_2000x.png?v=1779296769')">
        <div class="wrapper">
          <div class="hero-content__area position-absolute top-0 z-4 d-flex flex-column justify-content-center text-light">
            <div class="hero-content__title">
              <h4 class="fw-norm text-uppercase">Nancy Sinatra</h4>
            </div>

            <div class="hero-content__text mb-2">
              <h1 class="fw-norm">Movin' With Nancy</h1>
            </div>

            <div class="hero-content__button d-none d-md-block">
              <a class="btn btn-white btn-md btn-hover-light fw-med" href="https://lightintheattic.net/collections/whats-hot/products/movin-with-nancy">Let's Get Movin'</a>
            </div>
          </div>
        </div>
      </div>
    

      
      <div class="hero position-relative" style="background-image: url('//lightintheattic.net/cdn/shop/files/studio_ghibli_header_2000x.png?v=1780963948')">
        <div class="wrapper">
          <div class="hero-content__area position-absolute top-0 z-4 d-flex flex-column justify-content-center text-light">
            <div class="hero-content__title">
              <h4 class="fw-norm text-uppercase">Back in stock</h4>
            </div>

            <div class="hero-content__text mb-2">
              <h1 class="fw-norm">Studio Ghibli Soundtracks</h1>
            </div>

            <div class="hero-content__button d-none d-md-block">
              <a class="btn btn-white btn-md btn-hover-light fw-med" href="https://lightintheattic.net/collections/studio-ghibli-collection">Preorder here</a>
            </div>
          </div>
        </div>
      </div>
    

      
      <div class="hero position-relative" style="background-image: url('//lightintheattic.net/cdn/shop/files/etr_header_2000x.png?v=1780072286')">
        <div class="wrapper">
          <div class="hero-content__area position-absolute top-0 z-4 d-flex flex-column justify-content-center text-light">
            <div class="hero-content__title">
              <h4 class="fw-norm text-uppercase">LITA Exclusive Variants</h4>
            </div>

            <div class="hero-content__text mb-2">
              <h1 class="fw-norm">Fraggle Rock & Hey Arnold!</h1>
            </div>

            <div class="hero-content__button d-none d-md-block">
              <a class="btn btn-white btn-md btn-hover-light fw-med" href="https://lightintheattic.net/collections/enjoy-the-ride/d2c">Preorder here</a>
            </div>
          </div>
        </div>
      </div>
    

      
      <div class="hero position-relative" style="background-image: url('//lightintheattic.net/cdn/shop/files/obsession_header_2000x.png?v=1779297079')">
        <div class="wrapper">
          <div class="hero-content__area position-absolute top-0 z-4 d-flex flex-column justify-content-center text-light">
            <div class="hero-content__title">
              <h4 class="fw-norm text-uppercase">Original Motion Picture Soundtrack</h4>
            </div>

            <div class="hero-content__text mb-2">
              <h1 class="fw-norm">Obsession</h1>
            </div>

            <div class="hero-content__button d-none d-md-block">
              <a class="btn btn-white btn-md btn-hover-light fw-med" href="https://lightintheattic.net/products/obsession-original-motion-picture-soundtrack">Make a wish...</a>
            </div>
          </div>
        </div>
      </div>
    

      
      <div class="hero position-relative" style="background-image: url('//lightintheattic.net/cdn/shop/files/kikagaku_header_2000x.png?v=1780964271')">
        <div class="wrapper">
          <div class="hero-content__area position-absolute top-0 z-4 d-flex flex-column justify-content-center text-light">
            <div class="hero-content__title">
              <h4 class="fw-norm text-uppercase">Back in stock</h4>
            </div>

            <div class="hero-content__text mb-2">
              <h1 class="fw-norm">Kikagaku Moyo</h1>
            </div>

            <div class="hero-content__button d-none d-md-block">
              <a class="btn btn-white btn-md btn-hover-light fw-med" href="https://lightintheattic.net/collections/kikagaku-moyo">Dive in</a>
            </div>
          </div>
        </div>
      </div>
    

      
      <div class="hero position-relative" style="background-image: url('//lightintheattic.net/cdn/shop/files/takanaka_header_2000x.png?v=1775845002')">
        <div class="wrapper">
          <div class="hero-content__area position-absolute top-0 z-4 d-flex flex-column justify-content-center text-light">
            <div class="hero-content__title">
              <h4 class="fw-norm text-uppercase">Repress Alert</h4>
            </div>

            <div class="hero-content__text mb-2">
              <h1 class="fw-norm">Masayoshi Takanaka</h1>
            </div>

            <div class="hero-content__button d-none d-md-block">
              <a class="btn btn-white btn-md btn-hover-light fw-med" href="https://lightintheattic.net/collections/masayoshi-takanaka">Feel the summer breeze</a>
            </div>
          </div>
        </div>
      </div>
    

      
      <div class="hero position-relative" style="background-image: url('//lightintheattic.net/cdn/shop/files/anri_header_2000x.png?v=1780964548')">
        <div class="wrapper">
          <div class="hero-content__area position-absolute top-0 z-4 d-flex flex-column justify-content-center text-light">
            <div class="hero-content__title">
              <h4 class="fw-norm text-uppercase">New color variants</h4>
            </div>

            <div class="hero-content__text mb-2">
              <h1 class="fw-norm">Anri</h1>
            </div>

            <div class="hero-content__button d-none d-md-block">
              <a class="btn btn-white btn-md btn-hover-light fw-med" href="https://lightintheattic.net/collections/anri-collection">Get coool</a>
            </div>
          </div>
        </div>
      </div>
    

      
      <div class="hero position-relative" style="background-image: url('//lightintheattic.net/cdn/shop/files/Home_Page_Website_692416f5-0071-4ff9-8175-db8810d383d5_2000x.png?v=1779296941')">
        <div class="wrapper">
          <div class="hero-content__area position-absolute top-0 z-4 d-flex flex-column justify-content-center text-light">
            <div class="hero-content__title">
              <h4 class="fw-norm text-uppercase">The Black Angels</h4>
            </div>

            <div class="hero-content__text mb-2">
              <h1 class="fw-norm">Passover (20th Anniversary Edition)</h1>
            </div>

            <div class="hero-content__button d-none d-md-block">
              <a class="btn btn-white btn-md btn-hover-light fw-med" href="https://lightintheattic.net/products/passover">Dig in</a>
            </div>
          </div>
        </div>
      </div>
    

      
      <div class="hero position-relative" style="background-image: url('//lightintheattic.net/cdn/shop/files/poison_gf_header_2000x.png?v=1779815671')">
        <div class="wrapper">
          <div class="hero-content__area position-absolute top-0 z-4 d-flex flex-column justify-content-center text-light">
            <div class="hero-content__title">
              <h4 class="fw-norm text-uppercase">New Reissues</h4>
            </div>

            <div class="hero-content__text mb-2">
              <h1 class="fw-norm">POiSON GiRL FRiEND</h1>
            </div>

            <div class="hero-content__button d-none d-md-block">
              <a class="btn btn-white btn-md btn-hover-light fw-med" href="https://lightintheattic.net/collections/poison-girl-friend">Check it out</a>
            </div>
          </div>
        </div>
      </div>
    

      
      <div class="hero position-relative" style="background-image: url('//lightintheattic.net/cdn/shop/files/betty_davis_header_2000x.png?v=1777327006')">
        <div class="wrapper">
          <div class="hero-content__area position-absolute top-0 z-4 d-flex flex-column justify-content-center text-light">
            <div class="hero-content__title">
              <h4 class="fw-norm text-uppercase">Betty Davis</h4>
            </div>

            <div class="hero-content__text mb-2">
              <h1 class="fw-norm">They Say I'm Different</h1>
            </div>

            <div class="hero-content__button d-none d-md-block">
              <a class="btn btn-white btn-md btn-hover-light fw-med" href="https://lightintheattic.net/collections/just-added/products/they-say-i-m-different">New Color Variant</a>
            </div>
          </div>
        </div>
      </div>
    

      
      <div class="hero position-relative" style="background-image: url('//lightintheattic.net/cdn/shop/files/Charanjit_Singh_-_Ten_Ragas_to_a_Disco_Beat_Hero_2000x.jpg?v=1769665569')">
        <div class="wrapper">
          <div class="hero-content__area position-absolute top-0 z-4 d-flex flex-column justify-content-center text-light">
            <div class="hero-content__title">
              <h4 class="fw-norm text-uppercase">Charanjit Singh</h4>
            </div>

            <div class="hero-content__text mb-2">
              <h1 class="fw-norm">Synthesizing: Ten Ragas for a Disco Beat</h1>
            </div>

            <div class="hero-content__button d-none d-md-block">
              <a class="btn btn-white btn-md btn-hover-light fw-med" href="/collections/charanjit-singh-synthesizing-ten-ragas-to-a-disco-beat">PREORDER NOW</a>
            </div>
          </div>
        </div>
      </div>
    

      
      <div class="hero position-relative" style="background-image: url('//lightintheattic.net/cdn/shop/files/Shaggs_Home_Page_Website_20_2000x.jpg?v=1772847193')">
        <div class="wrapper">
          <div class="hero-content__area position-absolute top-0 z-4 d-flex flex-column justify-content-center text-light">
            <div class="hero-content__title">
              <h4 class="fw-norm text-uppercase">repress alert!!</h4>
            </div>

            <div class="hero-content__text mb-2">
              <h1 class="fw-norm">On Yellow Smoke Wax</h1>
            </div>

            <div class="hero-content__button d-none d-md-block">
              <a class="btn btn-white btn-md btn-hover-light fw-med" href="/products/philosophy-of-the-world">Preorder now</a>
            </div>
          </div>
        </div>
      </div>
    
  </div>
  <div class="pagination-wrapper wrapper position-absolute top-0 left-0 right-0">
      <div class="hero__pagination position-relative d-flex align-items-center">
        <ul>
          <li class="hero__pagination__prev d-flex align-items-center z-2 justify-content-end"><img src="//lightintheattic.net/cdn/shop/files/arrow_left_e92e9987-34d6-4ebc-90fd-645688a9fab9_65x.png?v=3811090213217013552"></li>
          <li class="hero__pagination__next d-flex align-items-center z-2"><img src="//lightintheattic.net/cdn/shop/files/arrow_right_65x.png?v=12634365105593460472"></li>
        </ul>
      </div>
    </div>
</div>

<script>
  $('.hero__slider').slick({
    prevArrow: $('.hero__pagination__prev'),
    nextArrow: $('.hero__pagination__next'),
    autoplay: true,
    autoplaySpeed: 6000,
  });
</script>


</div><div id="shopify-section-featured_collection_section_nwdwLJ" class="shopify-section"><div class="wrapper">
    <div class="featured-collection mt-1 mb-md-2">
      <div class="featured-collection__header d-flex justify-content-between align-content-center">
        <div class="featured-collection__title text-uppercase flex-grow-1">
          <h3>
            <span>
              Just Added
            </span>
          </h3>
        </div>
        <div class="featured-collection__shop text-uppercase text-right">
          <a href="/collections/just-added">
            <h3 class="d-flex align-items-center">
              Shop All <!-- <img src="//lightintheattic.net/cdn/shop/files/arrow_right_black_65x.png?v=6628212861579591553"> -->
              <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
              <path d="M12.5133 1.01306C6.45457 0.730177 1.28489 5.65337 0.989147 11.9876C0.693409 18.3217 5.38187 23.7051 11.4406 23.988C17.4993 24.2709 22.6691 19.3477 22.9648 13.0136C23.2605 6.67941 18.572 1.29594 12.5133 1.01306ZM11.514 22.4155C6.2847 22.1713 2.23806 17.5249 2.49322 12.0578C2.74848 6.5907 7.21045 2.34155 12.4399 2.5856C17.6692 2.82986 21.7158 7.47628 21.4605 12.9435C21.2053 18.4104 16.7433 22.6596 11.514 22.4155Z" fill="black" stroke="black" stroke-width="0.3"/>
              <path d="M13.499 7.58874C13.3591 7.43991 13.1684 7.35529 12.9688 7.35347C12.7691 7.35165 12.5769 7.43278 12.4343 7.57903C12.3637 7.65148 12.3075 7.73776 12.2687 7.83293C12.23 7.92809 12.2096 8.03029 12.2087 8.13367C12.2077 8.23706 12.2263 8.3396 12.2633 8.43546C12.3003 8.53131 12.355 8.61858 12.4243 8.6923L15.2897 11.7431L6.91204 11.6676C6.71237 11.6657 6.52012 11.7469 6.37759 11.8933C6.23506 12.0396 6.15393 12.2391 6.15204 12.4478C6.15015 12.6566 6.22765 12.8575 6.36751 13.0064C6.50736 13.1553 6.69811 13.2399 6.89778 13.2417L15.2758 13.3173L12.3544 16.316C12.2119 16.4623 12.1307 16.6618 12.1288 16.8706C12.1269 17.0794 12.2044 17.2803 12.3442 17.4292C12.4841 17.5781 12.6748 17.6628 12.8745 17.6647C13.0742 17.6665 13.2665 17.5853 13.409 17.439L17.6277 13.1084C17.6983 13.036 17.7546 12.9497 17.7933 12.8546C17.832 12.7594 17.8524 12.6572 17.8534 12.5539C17.8552 12.3451 17.7776 12.1441 17.6378 11.9951L13.499 7.58874Z" fill="black" stroke="black" stroke-width="0.3"/>
              </svg>

            </h3>
          </a>
        </div>
      </div>

      <div class="collection__items flex-wrap mt-1 d-flex justfy-content-center">
        
          
<a class="collection__item mb-2" href="/collections/just-added/products/la-la-lu-jazz-in-wonderland">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/4988003387501_500x.jpg?v=1780949346" alt="La La Lu - Jazz In Wonderland" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Tsuyoshi Yamamoto Trio</h6>
            </div>

            <div class="collection__album text-center">
              <p>La La Lu - Jazz In Wonderland</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/just-added/products/once-upon-a-dream">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/4988003387518_500x.jpg?v=1780949469" alt="Once Upon A Dream" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Tsuyoshi Yamamoto Trio</h6>
            </div>

            <div class="collection__album text-center">
              <p>Once Upon A Dream</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/just-added/products/weezer">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/093624818892_500x.jpg?v=1780946002" alt="Weezer" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Weezer</h6>
            </div>

            <div class="collection__album text-center">
              <p>Weezer</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/just-added/products/disclosure-day">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/850078789679_500x.jpg?v=1780690295" alt="Disclosure Day" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>John Williams</h6>
            </div>

            <div class="collection__album text-center">
              <p>Disclosure Day</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/just-added/products/timeless">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/199584532912_500x.jpg?v=1780689164" alt="Timeless" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Prince</h6>
            </div>

            <div class="collection__album text-center">
              <p>Timeless</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/just-added/products/lovely-moments">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/4524135299703_500x.jpg?v=1780688264" alt="lovely moments" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Ako</h6>
            </div>

            <div class="collection__album text-center">
              <p>lovely moments</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/just-added/products/mission-impossible-fallout">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/810155842536_500x.jpg?v=1780598026" alt="Mission: Impossible - Fallout" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Lorne Balfe</h6>
            </div>

            <div class="collection__album text-center">
              <p>Mission: Impossible - Fallout</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/just-added/products/pressure-original-motion-picture-soundtrack">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/810155842383_500x.jpg?v=1780598130" alt="Pressure - Original Motion Picture Soundtrack" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Volker Bertelmann</h6>
            </div>

            <div class="collection__album text-center">
              <p>Pressure - Original Motion ...</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/just-added/products/mission-impossible-rogue-nation">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/810155842413_500x.jpg?v=1780598075" alt="Mission: Impossible - Rogue Nation" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Joe Kraemer</h6>
            </div>

            <div class="collection__album text-center">
              <p>Mission: Impossible - Rogue...</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/just-added/products/music-fashion-film">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/075678584206_500x.jpg?v=1780520114" alt="Music, Fashion, Film" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Charli xcx</h6>
            </div>

            <div class="collection__album text-center">
              <p>Music, Fashion, Film</p>
            </div>
          </a>
        
      </div>
    </div>

    <div class="featured-collection__shop--mobile mb-2 pb-2">
      <a class="flex-grow-1" href="/collections/just-added">
        <h3 class="d-flex align-items-center justify-content-center">
          Shop All Just Added
          <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
          <path d="M12.5128 1.01303C6.45404 0.730428 1.28458 5.65386 0.989122 11.9881C0.693672 18.3222 5.38238 23.7054 11.4411 23.9881C17.4998 24.2707 22.6694 19.3472 22.9648 13.0131C23.2603 6.6789 18.5715 1.29564 12.5128 1.01303ZM11.5145 22.4155C6.28514 22.1716 2.23829 17.5254 2.4932 12.0582C2.74821 6.59112 7.20998 2.34176 12.4394 2.58558C17.6687 2.8296 21.7156 7.47583 21.4605 12.9431C21.2055 18.41 16.7438 22.6594 11.5145 22.4155Z" fill="black" stroke="black" stroke-width="0.3"/>
          <path d="M13.4988 7.58867C13.3589 7.43985 13.1682 7.35523 12.9685 7.35342C12.7689 7.35161 12.5767 7.43275 12.4341 7.57901C12.3635 7.65146 12.3072 7.73774 12.2685 7.83291C12.2298 7.92808 12.2094 8.03028 12.2085 8.13366C12.2076 8.23705 12.2261 8.33959 12.2631 8.43544C12.3001 8.53129 12.3548 8.61857 12.4241 8.69228L15.2897 11.743L6.912 11.6678C6.71233 11.666 6.52008 11.7472 6.37756 11.8935C6.23504 12.0399 6.15392 12.2393 6.15204 12.4481C6.15015 12.6568 6.22767 12.8578 6.36753 13.0066C6.50739 13.1555 6.69814 13.2402 6.89782 13.242L15.2758 13.3172L12.3546 16.316C12.2121 16.4623 12.1309 16.6618 12.129 16.8706C12.1271 17.0793 12.2046 17.2803 12.3445 17.4292C12.4843 17.5781 12.6751 17.6628 12.8748 17.6646C13.0745 17.6664 13.2667 17.5852 13.4093 17.4389L17.6278 13.1081C17.6984 13.0357 17.7546 12.9495 17.7933 12.8543C17.8321 12.7592 17.8524 12.657 17.8534 12.5536C17.8552 12.3448 17.7776 12.1439 17.6378 11.9949L13.4988 7.58867Z" fill="black" stroke="black" stroke-width="0.3"/>
          </svg>

          <!-- <img
            src="//lightintheattic.net/cdn/shop/files/arrow_right_black_65x.png?v=6628212861579591553"
          > -->
        </h3>
      </a>
    </div>
  </div>

  



</div><div id="shopify-section-featured_collection_section_CHDBPX" class="shopify-section">


</div><div id="shopify-section-featured_collection_section_k8Lq7d" class="shopify-section">

</div><div id="shopify-section-1633721757c379b13e" class="shopify-section"><div class="wrapper">
  <div class="featured-cards d-flex flex-wrap justify-content-between mt-2">
    
        <a href="/blogs/features/shining-a-light-on-our-favorite-labels-iam8bit">
          <div class="featured-card position-relative mb-2">
            <img src="//lightintheattic.net/cdn/shop/files/iam8bit_Feature_Card_Home_Page_Website_615x.jpg?v=1773351672" alt="Feature Image" />
            <div class="featured-card__content position-absolute z-1">
              <div class="featured-card__sub-title">
                <span class="h7 text-uppercase text-light"></span>
              </div>
    
              <div class="featured-card__title">
                <h2 class="mt-0 text-light"></h2>
              </div>
    
              <div class="featured-card__button">
                 <span class="btn btn-white btn-md btn-hover-light fw-med" >Check it out</span>
              </div>
            </div>
          </div>
        </a>
    
        <a href="/blogs/features/bite-in-the-attic-sandy-dedricks-chocolate-mayonnaise-cake">
          <div class="featured-card position-relative mb-2">
            <img src="//lightintheattic.net/cdn/shop/files/Sandy_Dedrick_Choc_Mayo_Cake_615x.jpg?v=1766436343" alt="Feature Image" />
            <div class="featured-card__content position-absolute z-1">
              <div class="featured-card__sub-title">
                <span class="h7 text-uppercase text-light"></span>
              </div>
    
              <div class="featured-card__title">
                <h2 class="mt-0 text-light"></h2>
              </div>
    
              <div class="featured-card__button">
                 <span class="btn btn-white btn-md btn-hover-light fw-med" >Get the recipe</span>
              </div>
            </div>
          </div>
        </a>
    
  </div>
</div></div><div id="shopify-section-163603457920d5bd75" class="shopify-section">

</div><div id="shopify-section-featured_collection_section_nhbdd9" class="shopify-section"><div class="wrapper">
    <div class="featured-collection mt-1 mb-md-2">
      <div class="featured-collection__header d-flex justify-content-between align-content-center">
        <div class="featured-collection__title text-uppercase flex-grow-1">
          <h3>
            <span>
              What's Hot
            </span>
          </h3>
        </div>
        <div class="featured-collection__shop text-uppercase text-right">
          <a href="/collections/whats-hot">
            <h3 class="d-flex align-items-center">
              Shop All <!-- <img src="//lightintheattic.net/cdn/shop/files/arrow_right_black_65x.png?v=6628212861579591553"> -->
              <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
              <path d="M12.5133 1.01306C6.45457 0.730177 1.28489 5.65337 0.989147 11.9876C0.693409 18.3217 5.38187 23.7051 11.4406 23.988C17.4993 24.2709 22.6691 19.3477 22.9648 13.0136C23.2605 6.67941 18.572 1.29594 12.5133 1.01306ZM11.514 22.4155C6.2847 22.1713 2.23806 17.5249 2.49322 12.0578C2.74848 6.5907 7.21045 2.34155 12.4399 2.5856C17.6692 2.82986 21.7158 7.47628 21.4605 12.9435C21.2053 18.4104 16.7433 22.6596 11.514 22.4155Z" fill="black" stroke="black" stroke-width="0.3"/>
              <path d="M13.499 7.58874C13.3591 7.43991 13.1684 7.35529 12.9688 7.35347C12.7691 7.35165 12.5769 7.43278 12.4343 7.57903C12.3637 7.65148 12.3075 7.73776 12.2687 7.83293C12.23 7.92809 12.2096 8.03029 12.2087 8.13367C12.2077 8.23706 12.2263 8.3396 12.2633 8.43546C12.3003 8.53131 12.355 8.61858 12.4243 8.6923L15.2897 11.7431L6.91204 11.6676C6.71237 11.6657 6.52012 11.7469 6.37759 11.8933C6.23506 12.0396 6.15393 12.2391 6.15204 12.4478C6.15015 12.6566 6.22765 12.8575 6.36751 13.0064C6.50736 13.1553 6.69811 13.2399 6.89778 13.2417L15.2758 13.3173L12.3544 16.316C12.2119 16.4623 12.1307 16.6618 12.1288 16.8706C12.1269 17.0794 12.2044 17.2803 12.3442 17.4292C12.4841 17.5781 12.6748 17.6628 12.8745 17.6647C13.0742 17.6665 13.2665 17.5853 13.409 17.439L17.6277 13.1084C17.6983 13.036 17.7546 12.9497 17.7933 12.8546C17.832 12.7594 17.8524 12.6572 17.8534 12.5539C17.8552 12.3451 17.7776 12.1441 17.6378 11.9951L13.499 7.58874Z" fill="black" stroke="black" stroke-width="0.3"/>
              </svg>

            </h3>
          </a>
        </div>
      </div>

      <div class="collection__items flex-wrap mt-1 d-flex justfy-content-center">
        
          
<a class="collection__item mb-2" href="/collections/whats-hot/products/hey-arnold-the-music-vol-1">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/843563198636_500x.png?v=1780070575" alt="Hey Arnold! The Music, Vol. 1 (LITA Exclusive Variant)" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Jim Lang</h6>
            </div>

            <div class="collection__album text-center">
              <p>Hey Arnold! The Music, Vol....</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/whats-hot/products/the-best-of-jim-hensons-fraggle-rock-lita-exclusive-variant">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/843563198643_500x.jpg?v=1780017222" alt="The Best of Jim Henson&#39;s Fraggle Rock (LITA Exclusive Variant)" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Jim Henson</h6>
            </div>

            <div class="collection__album text-center">
              <p>The Best of Jim Henson's Fr...</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/whats-hot/products/natsu-ban-45rpm-ep">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/4988018102533_500x.jpg?v=1779495677" alt="Natsu Ban 45rpm EP" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Anri</h6>
            </div>

            <div class="collection__album text-center">
              <p>Natsu Ban 45rpm EP</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/whats-hot/products/movin-with-nancy">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/826853222112_500x.jpg?v=1777943335" alt="Movin&#39; With Nancy" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Nancy Sinatra</h6>
            </div>

            <div class="collection__album text-center">
              <p>Movin' With Nancy</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/whats-hot/products/obsession-original-motion-picture-soundtrack">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/850078789631_500x.jpg?v=1779120567" alt="Obsession Original Motion Picture Soundtrack" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Rock Burwell</h6>
            </div>

            <div class="collection__album text-center">
              <p>Obsession Original Motion P...</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/whats-hot/products/the-vocal-music-collection">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/843563186244_500x.jpg?v=1764192740" alt="Robotech - The Vocal Music Collection (LITA Exclusive Variant)" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Robotech</h6>
            </div>

            <div class="collection__album text-center">
              <p>Robotech - The Vocal Music ...</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/whats-hot/products/the-sequel-collection-lita-exclusive-variant">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/843563198568_500x.jpg?v=1778858254" alt="The Sequel Collection (LITA Exclusive Variant)" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Robotech</h6>
            </div>

            <div class="collection__album text-center">
              <p>The Sequel Collection (LITA...</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/whats-hot/products/mugshot">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/4943674454297_500x.jpg?v=1778859874" alt="MUGSHOT" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Kingo Hamada</h6>
            </div>

            <div class="collection__album text-center">
              <p>MUGSHOT</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/whats-hot/products/rainbow-goblins-story-live-at-budokan-1981">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/Screenshot_2026-04-27_at_4.19.53_PM_500x.webp?v=1779053557" alt="Rainbow Goblins Story Live at Budokan 1981" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Masayoshi Takanaka</h6>
            </div>

            <div class="collection__album text-center">
              <p>Rainbow Goblins Story Live ...</p>
            </div>
          </a>
        
          
<a class="collection__item mb-2" href="/collections/whats-hot/products/synthesizing-ten-ragas-to-a-disco-beat">
            <div class="collection__image position-relative d-flex align-content-center">
              <img src="//lightintheattic.net/cdn/shop/files/826853226103_500x.jpg?v=1769546563" alt="Synthesizing: Ten Ragas to a Disco Beat" />
              <div class="collection__image-btn position-absolute align-items-center justify-content-center">
                
                  <button class="btn btn-white btn-md btn-hover-light fw-med text-uppercase">View Product</button>
                
              </div>
            </div>

            <div class="collection__artist text-center">
              <h6>Charanjit Singh</h6>
            </div>

            <div class="collection__album text-center">
              <p>Synthesizing: Ten Ragas to ...</p>
            </div>
          </a>
        
      </div>
    </div>

    <div class="featured-collection__shop--mobile mb-2 pb-2">
      <a class="flex-grow-1" href="/collections/whats-hot">
        <h3 class="d-flex align-items-center justify-content-center">
          Shop All What's Hot
          <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
          <path d="M12.5128 1.01303C6.45404 0.730428 1.28458 5.65386 0.989122 11.9881C0.693672 18.3222 5.38238 23.7054 11.4411 23.9881C17.4998 24.2707 22.6694 19.3472 22.9648 13.0131C23.2603 6.6789 18.5715 1.29564 12.5128 1.01303ZM11.5145 22.4155C6.28514 22.1716 2.23829 17.5254 2.4932 12.0582C2.74821 6.59112 7.20998 2.34176 12.4394 2.58558C17.6687 2.8296 21.7156 7.47583 21.4605 12.9431C21.2055 18.41 16.7438 22.6594 11.5145 22.4155Z" fill="black" stroke="black" stroke-width="0.3"/>
          <path d="M13.4988 7.58867C13.3589 7.43985 13.1682 7.35523 12.9685 7.35342C12.7689 7.35161 12.5767 7.43275 12.4341 7.57901C12.3635 7.65146 12.3072 7.73774 12.2685 7.83291C12.2298 7.92808 12.2094 8.03028 12.2085 8.13366C12.2076 8.23705 12.2261 8.33959 12.2631 8.43544C12.3001 8.53129 12.3548 8.61857 12.4241 8.69228L15.2897 11.743L6.912 11.6678C6.71233 11.666 6.52008 11.7472 6.37756 11.8935C6.23504 12.0399 6.15392 12.2393 6.15204 12.4481C6.15015 12.6568 6.22767 12.8578 6.36753 13.0066C6.50739 13.1555 6.69814 13.2402 6.89782 13.242L15.2758 13.3172L12.3546 16.316C12.2121 16.4623 12.1309 16.6618 12.129 16.8706C12.1271 17.0793 12.2046 17.2803 12.3445 17.4292C12.4843 17.5781 12.6751 17.6628 12.8748 17.6646C13.0745 17.6664 13.2667 17.5852 13.4093 17.4389L17.6278 13.1081C17.6984 13.0357 17.7546 12.9495 17.7933 12.8543C17.8321 12.7592 17.8524 12.657 17.8534 12.5536C17.8552 12.3448 17.7776 12.1439 17.6378 11.9949L13.4988 7.58867Z" fill="black" stroke="black" stroke-width="0.3"/>
          </svg>

          <!-- <img
            src="//lightintheattic.net/cdn/shop/files/arrow_right_black_65x.png?v=6628212861579591553"
          > -->
        </h3>
      </a>
    </div>
  </div>

  



</div><div id="shopify-section-162923691672237975" class="shopify-section">

</div><div id="shopify-section-featured_collection_section_CfnCiF" class="shopify-section">

</div><div id="shopify-section-1592935708244" class="shopify-section"><div class="wrapper">
  <div class="featured-cards d-flex flex-wrap justify-content-between mt-2">
    
        <a href="/blogs/features/matt-sullivans-favorite-things-of-2025">
          <div class="featured-card position-relative mb-2">
            <img src="//lightintheattic.net/cdn/shop/files/Matt_s_Favorite_Things_Feature_Card_615x.jpg?v=1767635995" alt="Feature Image" />
            <div class="featured-card__content position-absolute z-1">
              <div class="featured-card__sub-title">
                <span class="h7 text-uppercase text-light">favorite things</span>
              </div>
    
              <div class="featured-card__title">
                <h2 class="mt-0 text-light">matt sullivan</h2>
              </div>
    
              <div class="featured-card__button">
                 <span class="btn btn-white btn-md btn-hover-light fw-med" >Watch now</span>
              </div>
            </div>
          </div>
        </a>
    
        <a href="/blogs/news/the-time-is-out-of-joint-notes-on-dangelo-s-voodoo">
          <div class="featured-card position-relative mb-2">
            <img src="//lightintheattic.net/cdn/shop/files/D_Angelo_-_Voodoo_615x.jpg?v=1765003837" alt="Feature Image" />
            <div class="featured-card__content position-absolute z-1">
              <div class="featured-card__sub-title">
                <span class="h7 text-uppercase text-light">jason king</span>
              </div>
    
              <div class="featured-card__title">
                <h2 class="mt-0 text-light">notes on d'angelo's voodoo</h2>
              </div>
    
              <div class="featured-card__button">
                 <span class="btn btn-white btn-md btn-hover-light fw-med" >dig in</span>
              </div>
            </div>
          </div>
        </a>
    
  </div>
</div></div><div id="shopify-section-1565028333490" class="shopify-section"><div class="wrapper">
  <div class="newsletter mt-3">
      <div class="newsletter__title">
          <h4 class="text-uppercase"><span>Sign up for our newsletter</span></h4>
      </div>

      <!-- Begin Mailchimp Signup Form -->
      <div id="mc_embed_signup" class="newsletter__email-form">
        <form action="https://lightintheattic.us7.list-manage.com/subscribe/post?u=9a8330e981a13533c8791d815&amp;id=6625bc0de4" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
          <div id="mc_embed_signup_scroll" class="newsletter__input-area d-flex justify-content-center">
            <div class="container mr-2">
              <input type="email" value="" name="EMAIL" class="newsletter__email-input text-uppercase email" id="mce-EMAIL" placeholder="Email address" required>
            </div>
            <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
            <div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_9a8330e981a13533c8791d815_7034b25228" tabindex="-1" value=""></div>

            <div class="container">
              <input type="submit" value="Sign up" name="subscribe" id="mc-embedded-subscribe" class="newsletter__submit-btn text-uppercase fw-med">
            </div>  
          </div>
        </form>
      </div>
      <!--End mc_embed_signup-->
  </div>
</div>


</div><!-- END content_for_index -->
<script>
  function formatGraphQlID(graphqlID) {
    return window.atob(graphqlID).split('/').pop();
  }

  var CUSTOMER_ID = '' ;
  var SRC_URL = 'https://lita-app.com/api/';
  var METAFIELD_DATA = null;

  $(document).off().on('submit', '.wishlist-form', function (e) {
    e.preventDefault();
    var targetProduct = $(this).attr('data-product-id');
    var productJSON = JSON.parse($('[data-json-for="' + targetProduct + '"]').first().text());
    var JSONfromGraphQL = productJSON.variants.hasOwnProperty('edges');
    if (JSONfromGraphQL) {
      productJSON.variants = productJSON.variants.edges.map(function (v) {
        return v.node;
      });
    }
    var targetVariant = $(this).attr('data-variant-id');
    
      var selectedQuantity = '1';
    

    for (var variant of productJSON.variants) {
      if (JSONfromGraphQL && formatGraphQlID(variant.id) == targetVariant || variant.id == targetVariant) {
        var sku = variant.sku;
        var price = variant.price;
        break;
      }
    }
    var data = {
      customer_id: CUSTOMER_ID,
      product: {
        product_id: targetProduct,
        variant_id: targetVariant,
        quantity: selectedQuantity,
        price: JSONfromGraphQL ? Number(price) * 100 : price,
        sku: sku,
        handle: productJSON.handle
      }
    };

    handleAJAXtoServer('add', data, targetVariant);
  });

  function handleAJAXtoServer(endpoint, data, variant_id) {
    var url = SRC_URL + endpoint;
    var handle = data.product.handle;
    var dataJSON = JSON.stringify({ data: data });
    
    $('.collection__item[data-product-handle=' + handle + ']').addClass('toggled');
    $('.btn--collection-grid[data-variant-id=' + variant_id + ']').addClass('toggled');
    

    $.post(url, dataJSON, function (result) {
      METAFIELD_DATA = JSON.parse(result['metafield']['value']);
      handleCartQuantityChange(METAFIELD_DATA, handle);
      displayUpdatedWishlistItemQuantity(METAFIELD_DATA, handle);
    })
      .fail(function (jqXhr, textStatus, errorMessage) {
        console.log("ERROR: ", jqXhr + " -- " + textStatus + " -- " + errorMessage);
        alert("Something went wrong, please try again later");
        handleCartQuantityChange(METAFIELD_DATA, handle);
      })
      .always(function () {
        
        $('.btn--collection-grid[data-variant-id=' + variant_id + ']').removeClass('toggled');
        setTimeout(function () {
          $('.collection__item[data-product-handle=' + handle + ']').removeClass('toggled');
        }, 2500);
        
      })
      .done(function () {
        //alert("second success");
        $('.btn--collection-grid[data-variant-id=' + variant_id + ']').find('.add-to-cart-confirmation').show();
      });
  }
  function handleCartQuantityChange(metafieldData, handle) {
    $.get( "/cart", function( data ) {
      $('.cart-count-wrap').html($(data).find('.cart-count-wrap').html()).show();
      $('.cart-count-wrap').show();
    });
  }
  function displayUpdatedWishlistItemQuantity(metafieldValue, handle){
    var totalCartQuantity = 0;
    for (var productHandle in metafieldValue) {
      var variants = metafieldValue[productHandle]['variants'];
      for(var variant in variants){
        // update individual item with new quantity
         if(productHandle == handle){
          $('#wishlisted_' + variants[variant].sku + '_quantity').text(variants[variant].quantity);
        }
      }
    }
  }
</script>


    </main>
    



    <div id="shopify-section-footer" class="shopify-section"><div class="footer">
  <div class="footer-background footer-background--dark bg-dark mt-2">
    <div class="wrapper">
      <div class="footer__content text-capitalize btw-grid-16 container">
        <div class="row">
          <div class="col-16 col-lg-5">
            <div class="footer__content-section mb-2">
              <div class="h8 text-uppercase text-yellow d-flex justify-content-between">
                <span>Customer Service</span><span class="footer__slide-icon"><i class="fal fa-chevron-down"></i></span>
              </div>
              <div class="klaviyo-form-VeHPBR"></div>
              <div class="footer__content-list">
                
                  <a class="text-light" href="/account">
                    <p>My Account</p>
                  </a>
                
                  <a class="text-light" href="/pages/faq">
                    <p>FAQ</p>
                  </a>
                
                  <a class="text-light" href="#contact">
                    <p>Contact Us</p>
                  </a>
                
              </div>
            </div>

            <div id="paymentIcons" class="footer__content-section">
              <div class="h8 text-uppercase text-yellow d-flex justify-content-between">
                <span>Secure Payments</span><span class="footer__slide-icon"><i class="fal fa-chevron-down"></i></span>
              </div>
              <div class="footer__payment-icons d-flex align-items-center">
                <img src="//lightintheattic.net/cdn/shop/files/paypal_small.png?v=10090271032262056329" alt="paypal">
                <img src="//lightintheattic.net/cdn/shop/files/visa_small.png?v=7333123987132753973" alt="visa">
                <img src="//lightintheattic.net/cdn/shop/files/mastercard_small.png?v=4272920010211987347" alt="mastercard">
                <img src="//lightintheattic.net/cdn/shop/files/amazon-pay_small.png?v=8372695686291200007" alt="amazon-pay">
              </div>
            </div>
          </div>

          <div class="col-16 col-lg-4">
            <div class="footer__content-section">
              <div class="h8 text-uppercase text-yellow d-flex justify-content-between">
                <span>Navigation</span
                ><span
                  class="footer__slide-icon"
                  ><i class="fal fa-chevron-down"></i
                ></span>
              </div>
              <div class="footer__content-list">
                
                  <a class="text-light" href="/collections/just-added">
                    <p>Just added</p>
                  </a>
                
                  <a class="text-light" href="/collections/whats-hot-b2b">
                    <p>What&#39;s Hot</p>
                  </a>
                
                  <a class="text-light" href="/collections/now-shipping">
                    <p>Now shipping</p>
                  </a>
                
                  <a class="text-light" href="/collections/preorder-albums">
                    <p>Preorders</p>
                  </a>
                
                  <a class="text-light" href="/collections/sale">
                    <p>Sale</p>
                  </a>
                
                  <a class="text-light" href="/pages/labels">
                    <p>Labels</p>
                  </a>
                
              </div>
            </div>
          </div>

          <div class="col-16 col-lg-3">
            <div class="footer__content-section mb-2">
              <div class="h8 text-uppercase text-yellow d-flex justify-content-between">
                <span>Company</span
                ><span
                  class="footer__slide-icon"
                  ><i class="fal fa-chevron-down"></i
                ></span>
              </div>
              <div class="footer__content-list">
                
                  <a class="text-light" href="/pages/about-us">
                    <p>About Us</p>
                  </a>
                
                  <a class="text-light" href="/pages/wholesale">
                    <p>Wholesale</p>
                  </a>
                
                  <a class="text-light" href="/pages/licensing">
                    <p>Licensing</p>
                  </a>
                
                  <a class="text-light" href="/pages/newsletter">
                    <p>Newsletter</p>
                  </a>
                
              </div>
            </div>
            <div class="footer__content-section">
              <div class="h8 text-uppercase text-yellow d-flex justify-content-between">
                <span>Press Center</span
                ><span
                  class="footer__slide-icon"
                  ><i class="fal fa-chevron-down"></i
                ></span>
              </div>
              <div class="footer__content-list">
                
                  <a class="text-light" href="https://lita.audiosalad.com/login.php">
                    <p>Login</p>
                  </a>
                
              </div>
            </div>
          </div>

          <div class="col-16 col-lg-4">
            
            <div id="followUs" class="footer__content-section mb-2">
              <div class="h8 text-uppercase text-yellow d-flex justify-content-between">
                <span>Follow Us</span
                ><span
                  class="footer__slide-icon"
                  ><i class="fal fa-chevron-down"></i
                ></span>
              </div>
              <div class="footer__social-icons d-flex justify-content-between align-items-center">
                <a href="https://www.facebook.com/lightintheatticrecords/" target="_blank"><i class="fab fa-facebook-f"></i></a>
                <a href="https://twitter.com/lightintheattic" target="_blank"><i class="fab fa-twitter"></i></a>
                <a href="https://www.instagram.com/lightintheatticrecords/" target="_blank"><i class="fab fa-instagram"></i></a>
                <a href="https://www.youtube.com/user/litaRecords" target="_blank"><i class="fab fa-youtube"></i></a>
                <a href="https://open.spotify.com/user/lightintheatticrecords?si=G-leD1NWR16E56FfYWbFOA" target="_blank"><i class="fab fa-spotify"></i></a>
                <a href="https://music.apple.com/us/curator/light-in-the-attic/1099882547" target="_blank"><i class="fab fa-itunes"></i></a>
                <a href="https://lightintheattic.bandcamp.com/" target="_blank"><i class="fab fa-bandcamp"></i></a>
              </div>
            </div>

            <div class="footer__content-section">
              <div class="h8 text-uppercase text-yellow d-flex justify-content-between">
                <span>Listen To Our Podcast</span
                ><span class="footer__slide-icon"><i class="fal fa-chevron-down"></i></span>
              </div>
              <div class="footer__content-list">
                <div class="footer__podcast-btn">
                  <a
                    class="btn btn-yellow btn-md btn-hover-yellow fw-med"
                    href="https://fanlink.tv/linernotes"
                    target="_blank"
                    >Listen Now</a
                  >
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>

      <div class="footer__icons-mobile d-flex d-lg-none flex-wrap justify-content-center align-items-center mt-1">
        <div
          class="footer__social-icons d-flex justify-content-around justify-content-lg-between align-items-center mb-1"
        >
          <a href="https://www.facebook.com/lightintheatticrecords/" target="_blank"><i class="fab fa-facebook-f"></i></a>
          <a href="https://twitter.com/lightintheattic" target="_blank"><i class="fab fa-twitter"></i></a>
          <a href="https://www.instagram.com/lightintheatticrecords/" target="_blank"><i class="fab fa-instagram"></i></a>
          <a href="https://www.youtube.com/user/litaRecords" target="_blank"><i class="fab fa-youtube"></i></a>
          <a href="https://open.spotify.com/user/lightintheatticrecords?si=G-leD1NWR16E56FfYWbFOA" target="_blank"><i class="fab fa-spotify"></i></a>
          <a href="https://music.apple.com/us/curator/light-in-the-attic/1099882547" target="_blank"><i class="fab fa-itunes"></i></a>
          <a href="https://lightintheattic.bandcamp.com/" target="_blank"><i class="fab fa-bandcamp"></i></a>
        </div>
        <div class="footer__payment-icons d-flex align-items-center mb-2">
          <img src="//lightintheattic.net/cdn/shop/files/paypal_small.png?v=10090271032262056329" alt="paypal">
          <img src="//lightintheattic.net/cdn/shop/files/visa_small.png?v=7333123987132753973" alt="visa">
          <img src="//lightintheattic.net/cdn/shop/files/mastercard_small.png?v=4272920010211987347" alt="mastercard">
          <img src="//lightintheattic.net/cdn/shop/files/amazon-pay_small.png?v=8372695686291200007" alt="amazon-pay">
        </div>
      </div>
    </div>
  </div>

  <div class="footer-background footer-background--black">
    <div class="wrapper">
      <div class="footer__copyright d-flex flex-nowrap flex-lg-nowrap justify-content-center align-items-center">
        <p class="text-light fw-med text-center">
          &copy 2026 Light in the Attic Records & Distribution, LLC <span>|</span> All Rights
          Reserved
        </p>
        <div class="footer__terms-and-policies d-flex justify-content-between align-items-center"></div>
        <!-- <a href="#"><p class="text-light fw-med">Terms of Service</p></a> -->
        <!-- <p class="text-light fw-med"><span>|</span></p> -->
        <a href="/pages/privacy-policy">
          <p class="text-light fw-med">Privacy Policy</p>
        </a>
      </div>
    </div>
  </div>
</div>
<span id="Klevuu_scroll_style"></span>



<script>
  $(document).ready(function () {
    if ($(window).width() <= 992) {
      $('.footer__content-section .h8').click(function () {
        $(this).siblings('.footer__content-list').slideToggle();
        $(this).find('.footer__slide-icon').toggleClass('transform');
      });
    }
    $('.footer__content-list a').off('click').on('click', function (e) {
      if ($(this).attr('href') == '#contact') {
        e.preventDefault();
        zE('webWidget', 'open');
      }
    });
    
      var search_form = $(".search-form").last();
      var eTop = search_form.offset().top; //get the offset top of the element
      var offsettop = eTop - $(window).scrollTop() + 30; //position of the ele w.r.t window
      var style = "<style>#Klevuu-pt-rs-hover.Klevuu-pt-rs-hover,#KlevuuLoader.Klevuu-min-ltr,#KlevuuSearchingArea.Klevuu-searching-area{position: fixed !important;top: " + offsettop + "px!important;}</style>"
      $('#Klevuu_scroll_style').html(style);
      $(window).scroll(function () {
        var eTop = search_form.offset().top; //get the offset top of the element
        var offsettop = eTop - $(window).scrollTop() + 30; //position of the ele w.r.t window
        var style = "<style>#Klevuu-pt-rs-hover.Klevuu-pt-rs-hover,#KlevuuLoader.Klevuu-min-ltr,#KlevuuSearchingArea.Klevuu-searching-area{position: fixed !important;top: " + offsettop + "px!important;}</style>"
        $('#Klevuu_scroll_style').html(style);
      });
      
  });
</script>

</div>
<script src="//lightintheattic.net/cdn/shop/t/153/assets/jquery-csv.min.js?v=20118733322040592601778233821" type="text/javascript"></script>

    <!-- "snippets/swymSnippet.liquid" was not rendered, the associated app was uninstalled -->
      <script>
  (function () {
    var swymWishlist = [];

    function loadWishlist() {
      if (!window._swat) {
        setTimeout(loadWishlist, 200);
        return;
      }

      $('[data-wishlist]').addClass('loaded');

      window._swat.fetchWrtEventTypeET(function(items) {
        swymWishlist = items;
        $('[data-wishlist-toggle]').each(function (i, el) {
          toggleButtonState(el, inWishlist($(this).data('variant-id')), true);
          el.classList.add('loaded');
        });
      }, window._swat.EventTypes.addToWishList);
    }

    function inWishlist(variantId) {
      return swymWishlist.some(function (item) {
        return item.epi == variantId;
      });
    }

    function toggleButtonState(button, inWishlist, initialSetup = false) {
      button.classList.toggle('in-wishlist', inWishlist);
      var tooltip = button.querySelector('[data-tooltip]');
      if (!tooltip) {
        return;
      }
      if (!initialSetup) {
        tooltip.innerText = inWishlist ? 'Added!' : 'Removed!';
      }
      setTimeout(function () {
        tooltip.innerText = inWishlist ? 'Remove from wishlist' : 'Add to wishlist';
      }, initialSetup ? 0 : 2000);
    }

    $('[data-wishlist]').on('click', function (e) {
      e.preventDefault();
      if (window.SwymUI) {
        window.SwymUI.prototype.open();
      }
    });

    $('main').on('click', '[data-wishlist-toggle]', function toggleWishlistItem(e) {
      e.preventDefault();

      var $this = $(this);
      var item = {
        epi: $this.data('variant-id'),
        empi: $this.data('product-id'),
        du: $this.data('url'),
        iu: $this.data('image'),
        pr: $this.data('price'),
      };

      if (inWishlist(item.epi)) {
        window._swat.removeFromWishList(item, function () {
          toggleButtonState(e.target, false);
          var index = swymWishlist.findIndex(function (wItem) {
            return wItem.epi == item.epi;
          });
          swymWishlist.splice(index, 1);
        });
        return;
      }

      window._swat.addToWishList(item, function () {
        toggleButtonState(e.target, true);
        swymWishlist.push(item);
      });
    });

    loadWishlist();
  })();
</script>


    <script>
      (function () {
        $('a[href^="/collections/"]').each(function (i, el) {
          var userTag = 'd2c';
          var regex = {
            userTag: new RegExp('(b2b|d2c)'),
            productUrl: new RegExp('collections/[^/]+/products'),
            filteredCollection: new RegExp('collections/[^/]+/[^#?]+'),
            collectionPath: new RegExp('(collections/[^/]+)/?'),
          };
          if (!regex.userTag.test(el.href) && !regex.productUrl.test(el.href)) {
            var parts = el.href.split('?');
            if (regex.filteredCollection.test(parts[0])) {
              userTag += '-';
            }
            parts[0] = parts[0].replace(regex.collectionPath, '$1/' + userTag);
            el.href = parts.join('?');
          }
        });
      })();
    </script><script>
      var shappify_customer_tags = null
      var klevu_loginCustomerGroup = 'd2c';
    </script><script
      src="https://js.klevu.com/klevu-js-v1/customizations/klevu-user-customization-156701826704910555-dev.js"
      async
    ></script>
    

    <div id="out_of_stock_message" style="display:none;max-width:500px;">
      <span> We apologize, but the quantity you are trying to add to the cart exceeds the available inventory. </span>
      <span class="extra" style="font-weight:600"></span>
    </div>
    <div id="checkin_error" style="display:none;max-width:500px;">
      <span> </span>
    </div>
    <script>
         function klevu_afterInitialSetup() {
      var klevu_enableLandingAutoScroll = false;
         }
    </script>



<script>
window.addEventListener('load', function() {
function addedToCart() {
  fetch(`${window.location.origin}/cart.js`)
  .then(res => res.clone().json().then(data => {
    console.log(data.items);
    for(const item of data?.items){
      let slideoutItem = document.querySelector(`[data-line-item-key='${item?.key}']`)
      if(typeof slideoutItem != 'undefined' && slideoutItem != null && slideoutItem){
        let slideoutItemQuantity = slideoutItem.querySelector(".quantity-selector input")
        if(slideoutItemQuantity && typeof slideoutItemQuantity != 'undefined' && slideoutItemQuantity != null && slideoutItemQuantity && slideoutItemQuantity.value != item.quantity){
          slideoutItemQuantity.value = item.quantity;
        }
      }
      
    }
    var cart = {
      total_price: data.total_price/100,
      $value: data.total_price/100,
      total_discount: data.total_discount,
      original_total_price: data.original_total_price/100,
      items: data.items
    }
    if (typeof item !== 'undefined' && item !== 'undefined') {
      cart = Object.assign(cart, item)
    }
    if (klAjax) {
        klaviyo.push(['track', 'Added to Cart', cart]);
        klAjax = false;
      }
  }))
};
(function (ns, fetch) {
  ns.fetch = function() {
    const response = fetch.apply(this, arguments);
    response.then(res => {
      if (`${window.location.origin}/cart/add.js`
      	.includes(res.url)) {
        	addedToCart()
      }
    });
    return response
  }
}(window, window.fetch));
var klAjax = true;
var classname;
var toggleElements = document.querySelectorAll('.available-toggle, .preorder-toggle');

toggleElements.forEach((element) => {   
    element.addEventListener('click', () => {	       
        if (element.classList.contains('available-toggle')) { 
           classname = document.getElementsByClassName("btn btn-outline btn-hover-dark simple-add available-toggle");       
        } else if (element.classList.contains('preorder-toggle')) {
           classname = document.getElementsByClassName("btn btn-outline btn-hover-dark simple-add preorder-toggle");            
        }
	AddedToCart(classname);
    });
});

function AddedToCart(classname){

  for (var i = 0; i < classname.length; i++) { 
    if (klAjax) {
      klaviyo.push(['track', 'Added to Cart',
                    {                        
                      item
                    }
      ]);
      klAjax = false;
    }
  }
}  
});
</script>


    
  <div id="shopify-block-AV3hyQ2FISjdzWlBPV__11945366711752539959" class="shopify-block shopify-app-block"><script> var script = document.createElement('script');script.type = 'text/javascript';script.id = 'ze-snippet';script.src = 'https://static.zdassets.com/ekr/snippet.js?key=13b6999e-e275-45a8-b425-f95fecc752f2';document.getElementsByTagName('head')[0].appendChild(script); </script>


</div><div id="shopify-block-AK0h3cTVsZkRtSWZvY__back-in-stock-restock-alerts-4bb73be2-b7c2-4870-949f-c528145452a3" class="shopify-block shopify-app-block"><!-- Config and setup JS -->
<script id="RestockRocketConfig">
  window._RestockRocketConfig = window._RestockRocketConfig || {}

  // Helper function to normalize locale format from hyphen to underscore (e.g., 'en-US' -> 'en_us')
  // This matches the backend's Mobility.normalize_locale behavior
  // Returns empty string if locale is empty or invalid (matches original behavior)
  function normalizeLocale(locale) {
    if (!locale || locale.trim() === '') {
      return '';
    }
    return locale.toString().toLowerCase().replace(/-/g, '_');
  }

  window._RestockRocketConfig.locale = 'en';
  window._RestockRocketConfig.normalizedLocale = normalizeLocale('en');
  window._RestockRocketConfig.shop = 'lightintheatticrecordsandtapes.myshopify.com';
  window._RestockRocketConfig.pageType = 'index';
  window._RestockRocketConfig.liquidRenderedAt = 1780985147;window._RestockRocketConfig.marketId = 1954611445;window._RestockRocketConfig.countryName = 'United States';
    window._RestockRocketConfig.countryIsoCode = 'US';window._RestockRocketConfig.cartInventoryQuantity = {};// cart.token falls back to the `cart` cookie when the Liquid context didn't carry one
  // (some page types render with cart={} until first interaction).
  if (!window._RestockRocketConfig.cartToken) {
    try {
      const m = document.cookie.match(/(?:^|;\s*)cart=([^;]+)/);
      if (m && m[1]) window._RestockRocketConfig.cartToken = decodeURIComponent(m[1]);
    } catch (e) { /* cookie unavailable */ }
  }window._RestockRocketConfig.cachedSettings = {"id":12461,"shop_id":12302,"currency":"USD","created_at":"2024-04-16T17:26:36.783Z","updated_at":"2026-04-22T20:27:51.434Z","enable_app":true,"enable_signup_widget":true,"storefront_button_text":"Notify me when available","storefront_button_text_color":"#FFFFFF","storefront_button_background_color":"#202223","storefront_form_header":"Notify me","storefront_form_description":"Get a notification as soon as this product is back in stock by signing up below!","storefront_form_button_text":"Notify me when available","storefront_form_button_text_color":"#FFFFFF","storefront_form_button_background_color":"#202223","storefront_form_terms":"Promise we won't spam. You'll only receive notifications for this product.","storefront_form_error":"Please enter a valid email address","storefront_form_success":"Thank you! We will notify you when the product is available.","enable_powered_by":true,"show_button_on_preorder":false,"sms_enabled":false,"email_enabled":false,"storefront_button_disable_tag":"rocket-hide","theme_config":{"disableDebugLoggingForNonPreorderItem":false},"storefront_form_email_placeholder":"Email address","storefront_form_phone_placeholder":"SMS","storefront_form_phone_label":"Phone number","storefront_form_email_label":"Email","storefront_form_phone_error":"Please enter a valid phone number","storefront_form_customer_name_placeholder":"Name","storefront_form_customer_name_error":"Please enter your name","storefront_form_did_you_mean_error":"Did you mean %{suggested_email}? Or use %{current_email}","form_customer_name_enabled":false,"form_customer_name_required":false,"css_config":null,"js_config":null,"collect_promotion_consent":false,"storefront_form_promotion_consent_label":"Notify me about other news, sales, discounts & offers too","show_button_on_collection":false,"sms_default_country":"us","sms_allowed_countries":[],"sms_restrict_country":false,"sms_default_channel":true,"optin_required":false,"optin_custom_domain_enabled":false,"optin_success_text":"Registration confirmed! You'll receive an alert when the product is restocked.","storefront_button_border_radius":0,"storefront_button_disable_tag_hides_button":true,"storefront_button_disable_tag_enabled":false,"quantity_required":false,"storefront_form_quantity_label":"Quantity","enable_alerts":true,"sms_allowed":false,"email_allowed":true,"collect_promotion_consent_default":true,"insert_button_after_selector":null,"insert_button_after_selector_type":"afterend","storefront_button_position_type":"float-right","storefront_form_duplicate_error":"You've already subscribed for alerts to this product.","storefront_mixed_cart_error":"Preorders must be purchased separately from regular items. Please complete your current order first, or clear your cart to continue.","storefront_error_heading":"Error","default_locale":"en","collection_page_button_text_color":"#FFFFFF","collection_page_button_background_color":"#202223","show_button_if_any_out_of_stock":false,"show_button_if_any_variant_out_of_stock_collection":false,"show_button_on_index":false,"insert_button_after_selector_collection":null,"insert_button_after_selector_index":null,"push_enabled":false,"push_allowed":false,"storefront_form_push_label":"Push","storefront_form_push_description":"Click 'Allow' to be notified via push notification","storefront_form_push_error":"Permission rejected! Please review notification settings and try again","storefront_font_family":"OpenSans","insert_button_after_selector_collection_type":"afterend","show_channel_selector":false,"storefront_form_empty_error":"Please fill in one or more of the options above","storefront_form_push_input":"Send notification to your browser","insert_button_after_selector_page":null,"show_button_on_page":false,"insert_button_after_selector_search":null,"show_button_on_search":false,"app_proxy_path_prefix":"/apps/restockrocket-production","collection_link_selector":"","index_link_selector":"","page_link_selector":"","search_link_selector":"","collection_check_link_visibility":true,"collection_buttons_container":null,"index_buttons_container":null,"page_buttons_container":null,"search_buttons_container":null,"extension_enable_url_variant_detection":true,"extension_enable_value_variant_detection":true,"extension_value_variant_selector":"[name='id']","resubscribe_text":"This product is out of stock. Get notified when it’s restocked again by entering your details below!","preorder_enabled":false,"preorder_buy_button_selector":null,"preorder_add_to_cart_button_selector":null,"preorder_badge_selector":null,"preorder_button_out_of_stock_text":"Out of stock","preorder_button_add_to_cart_text":"Add to cart","preorder_form_selector":"form[action*=\"/cart/add\"]","preorder_collection_enabled":false,"preorder_collection_form_selector":"form[action*=\"/cart/add\"]","preorder_collection_add_to_cart_button_selector":"form[action*=\"/cart/add\"] button","preorder_index_enabled":false,"preorder_index_form_selector":"form[action*=\"/cart/add\"]","preorder_index_add_to_cart_button_selector":"form[action*=\"/cart/add\"] button","preorder_page_enabled":false,"preorder_page_form_selector":"form[action*=\"/cart/add\"]","preorder_page_add_to_cart_button_selector":"form[action*=\"/cart/add\"] button","preorder_search_enabled":false,"preorder_search_form_selector":"form[action*=\"/cart/add\"]","preorder_search_add_to_cart_button_selector":"form[action*=\"/cart/add\"] button","preorder_collection_badge_selector":null,"preorder_index_badge_selector":null,"preorder_page_badge_selector":null,"preorder_search_badge_selector":null,"preorder_badge_selector_type":"afterend","preorder_collection_badge_selector_type":"afterend","preorder_button_child_selector":"span","preorder_button_disclaimer_insert_selector":null,"preorder_button_disclaimer_insert_selector_type":"afterend","preorder_payment_insert_selector":null,"preorder_payment_insert_selector_type":"afterend","preorder_price_container_selector":null,"preorder_price_container_selector_insert_type":"afterend","preorder_terms_insert_selector":null,"preorder_terms_insert_selector_type":"afterend","preorder_original_price_selector":null,"preorder_price_format":"{{amount}} {{currency}}","show_badge_if_any_variant_is_preorder":false,"enable_console_debug":false,"inline_form_enabled":false,"inline_form_selector":null,"inline_form_selector_type":"afterend","storefront_form_prefill_customer":true,"storefront_form_show_image":false,"storefront_form_text_color":"#202223","storefront_form_background_color":"#FFFFFF","storefront_form_border_radius":0,"market_setup_type":"single_market","shopify_app_id":5940125,"preorder_progress_bar_insert_selector":null,"preorder_progress_bar_insert_selector_type":"beforebegin","countdown_timer_insert_selector":null,"countdown_timer_insert_selector_type":"afterend","configure_notify_me_enabled":false,"restock_note_insert_selector":null,"restock_note_insert_selector_type":"afterend","preorder_modal_continue_button_text":"Continue","preorder_modal_cancel_button_text":"Cancel","cache":true,"cached_at":"2026-04-22T20:27:51.455Z","multi_language_enabled":false,"translation_locale":"en"};window._RestockRocketConfig.cachedPreorderVariantIds = {"preorder_variant_ids":[32191126208591,32191126274127,32191126306895,32191126339663,32191126372431,32191126405199,32191126437967,32191126470735,32191126503503,32191126536271,32191126569039,32191126601807,32191126634575,32191126667343,32191126700111,32191126732879,32191126765647,32191126798415,32191126831183,32191126863951,32191126896719,32191126929487,32191126962255,32191127027791,32191127060559,32191127093327,32191127126095,32191127158863,32191127191631,32191127224399,32191127257167,32191127289935,32191127322703,32191127355471,32191127388239,32191127421007,32191127453775,32191127486543,32191127519311,32191127552079,32191127584847,32191127617615,32191127650383,32191127683151,32191127715919,32191127781455,32191127814223,32191127846991,32191127879759,32191127912527,32191127945295,32191127978063,32191128010831,32191128043599,32191128076367,32191128109135,32191128141903,32191128174671,32191128207439,32191128240207,32191128272975,32191128305743,32191128338511,32191128404047,32191128436815,32191128469583,32191128535119,32191128567887,32191128600655,32191128633423,32191128666191,32191128698959,32191128731727,32191128764495,32191128797263,32191128830031,32191128862799,32191128895567,32191128928335,32191128961103,32191129026639,32191140364367,32191140397135,32191140462671,32191140528207,32191140659279,32191140757583,32191140888655,32191141052495,32191141150799,32191141281871,32191141380175,32191141511247,32191141609551,32191141740623,32191141838927,32191141937231,32191142035535,32191142133839,32191142232143,32191142330447,32191142461519,32191142559823,32191142658127,32191142690895,32191142723663,32191142756431,32191142789199,32191142821967,32191142854735,32191142887503,32191142920271,32191142953039,32191142985807,32191143018575,32191143051343,32191143149647,32191143215183,32191143247951,32191143280719,32191143313487,32191143346255,32191143379023,32191143411791,32191143444559,32191143477327,32191144525903,32191144558671,32191144591439,32191144656975,32191144689743,32191144722511,32191144755279,32191144788047,32191144820815,32191144853583,32191144886351,32191144919119,32191144951887,32191145017423,32191145115727,32191145214031,32191145246799,32191145279567,32191145312335,32191145345103,32191145377871,32191145410639,32191145476175,32191145508943,32191145541711,32191145574479,32191145607247,32191145640015,32191145672783,32191145705551,32191145738319,32191145771087,32191145803855,32191145836623,32191145869391,32191145902159,32191145934927,32191145967695,32191146000463,32191146655823,32191146688591,32191146721359,32191146754127,32191146786895,32191146819663,32191146852431,32191146885199,32191146950735,32191147016271,32191147081807,32191147212879,32191147278415,32191147343951,32191147376719,32191147409487,32191147442255,32191147475023,32191147507791,32191147540559,32191147573327,32191147606095,32191147638863,32191147671631,32191147704399,32191147737167,32191147769935,32191147802703,32191147868239,32191147901007,32191147933775,32191147966543,32191147999311,32191148032079,32191148064847,32191148097615,32191148130383,32191148163151,32191148195919,32191148982351,32191149015119,32191149047887,32191149080655,32191149113423,32191149146191,32191149178959,32191149211727,32191149244495,32191149277263,32191149342799,32191149375567,32191149408335,32191149441103,32191149473871,32191149506639,32191149539407,32191149572175,32191149604943,32191149637711,32191149670479,32191149703247,32191149736015,32191149768783,32191149801551,32191149834319,32191149867087,32191149899855,32191149932623,32191149965391,32191150030927,32191150063695,32191150096463,32191150129231,32191150161999,32191150194767,32191150227535,32191150260303,32191150293071,32191150948431,32191150981199,32191151013967,32191151046735,32191151079503,32191151112271,32191151145039,32191151177807,32191151210575,32191151243343,32191151276111,32191151308879,32191151341647,32191151374415,32191151407183,32191151439951,32191151472719,32191151505487,32191151538255,32191151571023,32191151603791,32191151636559,32191151669327,32191151702095,32191151734863,32191151767631,32191151800399,32191151833167,32191151865935,32191151898703,32191151931471,32191151964239,32191151997007,32191297650767,32191297683535,32191297716303,32191297749071,32191297781839,32191297814607,32191297847375,32191297880143,32191297912911,32191297945679,32191297978447,32191298011215,32191298043983,32191298076751,32191298142287,32191298175055,32191298207823,32191298240591,32191298273359,32191298306127,32191298338895,32191298371663,32191298404431,32191298437199,32191298469967,32191298502735,32191298535503,32191298568271,32191298633807,32191298666575,32191298699343,32191298797647,32191298830415,32191298863183,32191298895951,32191298928719,32191298961487,32191298994255,32191299027023,32191299059791,32191299092559,32191299125327,32191299158095,32191299190863,32191299223631,32191299289167,32191299321935,32191299354703,32191299387471,32191299420239,32191299453007,32191299485775,32191299518543,32191299551311,32191328387151,32191328419919,32191328452687,32191328485455,32191328518223,32191328550991,32191328583759,32191328616527,32191328649295,32191328682063,32191328747599,32191328813135,32191328845903,32191328878671,32191328911439,32191328944207,32191328976975,32191329009743,32191329042511,32191329075279,32191329108047,32191329140815,32191329173583,32191329206351,32191329239119,32191329304655,32191329337423,32191329370191,32191329402959,32191329468495,32191329501263,32191329534031,32191329566799,32191329599567,32191329632335,32191329665103,32191331074127,32191331106895,32191331139663,32191331172431,32191331205199,32191331237967,32191331336271,32191331369039,32191331401807,32191331434575,32191331467343,32191331500111,32191331532879,32191331565647,32191331729487,32191331860559,32191331893327,32191331926095,32191331958863,32191331991631,32191332057167,32191333367887,32191333400655,32191333433423,32191333466191,32191333498959,32191333531727,32191333564495,32191333597263,32191333662799,32191333695567,32191333728335,32191333761103,32191333793871,32191333826639,32191333859407,32191333892175,32191333924943,32191333957711,32191333990479,32191334023247,32191334056015,32191334088783,32191334121551,32191334154319,32191334187087,32191334219855,32191334252623,32191334318159,32191334350927,32191334383695,32191334416463,32191334449231,32191334481999,32191334514767,32191334547535,32191334580303,32191336317007,32191336349775,32191336382543,32191336415311,32191336448079,32191336480847,32191336513615,32191336546383,32191336579151,32191336611919,32191336644687,32191336677455,32191336710223,32191336742991,32191336775759,32191336808527,32191336841295,32191336874063,32191336906831,32191336939599,32191336972367,32191337005135,32191337103439,32191337136207,32191337168975,32191337201743,32191337234511,32191337267279,32191337300047,32191337332815,32191337365583,32191337398351,32191337431119,32191337463887,32191337496655,32191337562191,32191337594959,32191337627727,32191337660495,32191337693263,32191337726031,32191337758799,32191337791567,32191337824335,32191337857103,32191337889871,32191337922639,32191337955407,32191337988175,32191338020943,32191338053711,32191338086479,32191338119247,32191338184783,32191338217551,32191338250319,32191338283087,32191338315855,32191338348623,32191338381391,32191352733775,32191352766543,32191352799311,32191352832079,32191352864847,32191352930383,32191352963151,32191352995919,32191353028687,32191353061455,32191353094223,32191353126991,32191353159759,32191353258063,32191353454671,32191353618511,32191353684047,32191353716815,32191353749583,32191353782351,32191353815119,32191353847887,32191353880655,32191353946191,32191353978959,32191354011727,32191354044495,32191354077263,32191354110031,32191354142799,32191354175567,32191354208335,32191354241103,32191354273871,32191354306639,32191354339407,32191354404943,32191354437711,32191354470479,32191355191375,32191355224143,32191355256911,32191355289679,32191355322447,32191355355215,32191355387983,32191355420751,32191355453519,32191355486287,32191355519055,32191355551823,32191355584591,32191355617359,32191355650127,32191355682895,32191355715663,32191355748431,32191355781199,32191355813967,32191355846735,32191355879503,32191355912271,32191355977807,32191356010575,32191356043343,32191356076111,32191356108879,32191356141647,32191356174415,32191356207183,32191356239951,32191356272719,32191356305487,32191356338255,32191356371023,32191356403791,32191356436559,32191356469327,32191358009423,32191358042191,32191358074959,32191358107727,32191358140495,32191358173263,32191358206031,32191358238799,32191358271567,32191358304335,32191358337103,32191358369871,32191358402639,32191358435407,32191358468175,32191358500943,32191358533711,32191358566479,32191358599247,32191358632015,32191358664783,32191358697551,32191358730319,32191358763087,32191358795855,32191358828623,32191358861391,32191358894159,32191358926927,32191358959695,32191359549519,32191359582287,32191359615055,32191359647823,32191359680591,32191359713359,32191359746127,32191359778895,32191359811663,32191359844431,32191359877199,32191359909967,32191359942735,32191359975503,32191360008271,32191360041039,32191360073807,32191360106575,32191360139343,32191360172111,32191360204879,32191360237647,32191360270415,32191360303183,32191360335951,32191360368719,32191360401487,32191360434255,32191360467023,32191360499791,32191360532559,32191360565327,32191360598095,32191360630863,32191360663631,32191360696399,32191360729167,32191360794703,32191360827471,32191360860239,32191360893007,32191360925775,32191360958543,32191360991311,32191361024079,32191361056847,32191361089615,32191361122383,32191361155151,32191361187919,32191361220687,32191361253455,32191363219535,32191363252303,32191363285071,32191363317839,32191363350607,32191363383375,32191363416143,32191363448911,32191363481679,32191363514447,32191363547215,32191363579983,32191363612751,32191363645519,32191363678287,32191363711055,32191363743823,32191363776591,32191363809359,32191363842127,32191363874895,32191363907663,32191363940431,32191363973199,32191364005967,32191364038735,32191364071503,32191364104271,32191364137039,32191364169807,32191364202575,32191364235343,32191364268111,32191364300879,32191364333647,32191364366415,32191364399183,32191364431951,32191364464719,32191364497487,32191364530255,32191364563023,32191364595791,32191364628559,32191364661327,32191364694095,32191364726863,32191364759631,32191364792399,32191364825167,32191364857935,32191364890703,32191364923471,32191364956239,32191364989007,32191365021775,32191365054543,32191365087311,32191365120079,32191365152847,32191365185615,32191365218383,32191365251151,32191365283919,32191365316687,32191365349455,32191365382223,32191365414991,32191365447759,32191365480527,32191365513295,32191365546063,32191365578831,32191365611599,32191365677135,32191365709903,32191365742671,32191365775439,32191365808207,32191365840975,32191365873743,32191365906511,32191365939279,32191365972047,32191366037583,32191366070351,32191366103119,32191366135887,32191366168655,32191366201423,32191366234191,32191366266959,32191366299727,32191366332495,32191366365263,32191366398031,32191368265807,32191368298575,32191368331343,32191368364111,32191368396879,32191368429647,32191368462415,32191368495183,32191368527951,32191368560719,32191368593487,32191368626255,32191368659023,32191368691791,32191368724559,32191368757327,32191368790095,32191368822863,32191368855631,32191368888399,32191368921167,32191368953935,32191368986703,32191369019471,32191369052239,32191369085007,32191369117775,32191369150543,32191369183311,32191369216079,32191369248847,32191369281615,32191369314383,32191369347151,32191369379919,32191369412687,32191369445455,32191369478223,32191369510991,32191369543759,32191369576527,32191369609295,32191369642063,32191369674831,32191369707599,32191369740367,32191369773135,32191369805903,32191369838671,32191369871439,32191369904207,32191371706447,32191371739215,32191371771983,32191371804751,32191371837519,32191371870287,32191371903055,32191371935823,32191371968591,32191372001359,32191372034127,32191372066895,32191372099663,32191372263503,32191372361807,32191372394575,32191372427343,32191372460111,32191372492879,32191372525647,32191372558415,32191372591183,32191372623951,32191372656719,32191373934671,32191373967439,32191374000207,32191374032975,32191374065743,32191374098511,32191374131279,32191374164047,32191374196815,32191374229583,32191374295119,32191374327887,32191374360655,32191374393423,32191374426191,32191374458959,32191374491727,32191374524495,32191374557263,32191374590031,32191374622799,32191374655567,32191374688335,32191374721103,32191374753871,32191374786639,32191374819407,32191374852175,32191374884943,32191374917711,32191374950479,32191374983247,32191375016015,32191375048783,32191375081551,32191375114319,32191375147087,32191375179855,32191375212623,32191375245391,32191375278159,32191375310927,32191375343695,32191375376463,32191375409231,32191375441999,32191375474767,32191375507535,32191375540303,32191375573071,32191375605839,32191378653263,32191378686031,32191378718799,32191378751567,32191378784335,32191378817103,32191378849871,32191378882639,32191378915407,32191378948175,32191378980943,32191379013711,32191379046479,32191379079247,32191379112015,32191379144783,32191379177551,32191379210319,32191379243087,32191379275855,32191379308623,32191379341391,32191379374159,32191379406927,32191379439695,32191379472463,32191379505231,32191379537999,32191379570767,32191379603535,32191379636303,32191379669071,32191379701839,32191379734607,32191379800143,32191379832911,32191379865679,32191379898447,32191379931215,32191379963983,32191380029519,32191380062287,32191384289359,32191384322127,32191384354895,32191384387663,32191384420431,32191384453199,32191384485967,32191384518735,32191384551503,32191384584271,32191384617039,32191384649807,32191384682575,32191384715343,32191384748111,32191384780879,32191384813647,32191384846415,32191384879183,32191384911951,32191384944719,32191384977487,32191385010255,32191385043023,32191385075791,32191385108559,32191385206863,32191385305167,32191385436239,32191385534543,32191385567311,32191385600079,32191385632847,32191385665615,32191385698383,32191385731151,32191385763919,32191385796687,32191385829455,32191385862223,32191385894991,32191385927759,32191385960527,32191385993295,32191386026063,32191386058831,32191386091599,32191386124367,32191386157135,32191386189903,32191386222671,32191698436175,32191698468943,32191698501711,32191698534479,32191698567247,32191698600015,32191698632783,32191698665551,32191698698319,32191698731087,32191698763855,32191698796623,32191698829391,32191698862159,32191698894927,32191698927695,32191698960463,32191698993231,32191699025999,32191699058767,32191699091535,32191713902671,32191713935439,32191713968207,32191714000975,32191714033743,32191714066511,32191714099279,32191714132047,32191714164815,32191714197583,32191714230351,32191714263119,32191714295887,32191714361423,32191714426959,32191714459727,32191714492495,32191714525263,32191714558031,32191714590799,32191714623567,32191714656335,32191714689103,32191714721871,32191714754639,32191714787407,32191714820175,32191714852943,32191714885711,32191714918479,32191714951247,32191715016783,32191715082319,32191715115087,32191715147855,32191715180623,32191715213391,32191715246159,32191715278927,32191768297551,32191768330319,32191768363087,32191768428623,32191768461391,32191768494159,32191768526927,32191768559695,32191768592463,32191768625231,32191768657999,32191768690767,32191768723535,32191768756303,32191768789071,32191768821839,32191768854607,32191768887375,32191768920143,32191768952911,32191768985679,32191769018447,32191769051215,32191769083983,32191769116751,32191769149519,32191769182287,32191769215055,32191769247823,32191769280591,32191769346127,32191769378895,32191769411663,32191769444431,32191769477199,32191769509967,32191769542735,32191769575503,32191769608271,32191769641039,32191769673807,32191769706575,32191769772111,32191769804879,32191769837647,32191769870415,32191769903183,32191769935951,32191769968719,32191770001487,32191770067023,32191770132559,32191770165327,32191770198095,32191770230863,32191770263631,32191770329167,32191770361935,32191770394703,32191770427471,32191770460239,32191770493007,32191770525775,32191770558543,32191770591311,32191770624079,32191770689615,32191770722383,32191770755151,32191770787919,32191770820687,32191770853455,32191770886223,32191770918991,32191770951759,32191771017295,32191771050063,32191771082831,32191771115599,32191771148367,32191771181135,32191771213903,32191771246671,32191771279439,32191771377743,32191771410511,32191771443279,32191875383375,32191875416143,32191875448911,32191875481679,32191875547215,32191875579983,32191875612751,32191875678287,32191875711055,32191875743823,32191875776591,32191875809359,32191875842127,32191875874895,32191875940431,32191875973199,32191876038735,32191876104271,32191876137039,32191876202575,32191876235343,32191876300879,32191876333647,32191876366415,32191876399183,32191876464719,32191876497487,32191876530255,32191876563023,32191876628559,32191876661327,32191876694095,32191876726863,32191876759631,32191876792399,32191876825167,32191876857935,32191876890703,32191876923471,32191876956239,32191876989007,32191877021775,32191877087311,32191877120079,32191877152847,32191877185615,32191877251151,32191877283919,32191877349455,32191877382223,32191877447759,32191890358351,32191890391119,32200679424079,32200682176591,32200688500815,32200699183183,32201593913423,32201602596943,32201725902927,32201766273103,32217596723279,32217596756047,32217596788815,32217596821583,32217596854351,32217596887119,32217596919887,32217596985423,32217597018191,32217597083727,32217597116495,32217597149263,32217597182031,32217597247567,32217597280335,32217597313103,32217597345871,32217597378639,32217597444175,32217597476943,32217597509711,32217597542479,32217597575247,32217597608015,32217597673551,32217597706319,32217597739087,32217597771855,32217597804623,32217597837391,32228892311631,32228892344399,32228892409935,32228892442703,32228892475471,32228892508239,32228892573775,32228892606543,32228892639311,32228892672079,32228892704847,32228892737615,32228892803151,32228892835919,32228892868687,32228892934223,32228892966991,32228892999759,32228893032527,32228893065295,32228893098063,32228893130831,32228893196367,32228893261903,32228893294671,32228893327439,32228893360207,32228893425743,32228893458511,32228893491279,32228893556815,32228893589583,32228893622351,32229017485391,32229017518159,32229017550927,32229017583695,32229017616463,32229017649231,32229017681999,32229017714767,32229017780303,32229017813071,32229017845839,32229017878607,32229017911375,32229017944143,32229017976911,32229018009679,32229018042447,32229018075215,32229018107983,32229018140751,32229018173519,32229018206287,32229018271823,32229018304591,32229018337359,32229018370127,32229018402895,32229018435663,32229018468431,32229018501199,32229018533967,32229018566735,32229018599503,32229018632271,32229018665039,32229018697807,32229018730575,32229018763343,32229018796111,32229018828879,32229018861647,32229018894415,32229018927183,32229018959951,32229018992719,32229019025487,32229019058255,32229019091023,32229019123791,32229019156559,32229019189327,32229019254863,32229019353167,32229019517007,32229019615311,32229019680847,32229019713615,32229061165135,32229061197903,32229061230671,32229061263439,32229061296207,32229061328975,32229061361743,32229061394511,32229061427279,32229061460047,32229061492815,32229061558351,32229061591119,32229061623887,32229061656655,32229061689423,32229061722191,32229061754959,32229061787727,32229061820495,32229061853263,32229061886031,32229061918799,32229061951567,32229061984335,32229062017103,32229062049871,32229062082639,32229062115407,32229062148175,32229062180943,32229062213711,32229062246479,32229062279247,32229062312015,32229062344783,32229062377551,32229062410319,32229062443087,32229062606927,32229062737999,32229062770767,32229062803535,32229062836303,32229062869071,32229062901839,32229062934607,32229062967375,32229063000143,32229063032911,32229063098447,32229063131215,32229063163983,32229063196751,32229063229519,32229063262287,32229063295055,32229065556047,32229065588815,32229065621583,32229065654351,32229065687119,32229065719887,32229065752655,32229065818191,32229065850959,32229065883727,32229065916495,32229065949263,32229065982031,32229066014799,32229066047567,32229066080335,32229066113103,32229066145871,32229066178639,32229066211407,32229066244175,32229066276943,32229066408015,32229066473551,32229066506319,32229066539087,32229066571855,32229066604623,32229066637391,32229066670159,32229066702927,32229066768463,32229066965071,32229067161679,32229067358287,32229067489359,32229067522127,32229067620431,32229067653199,32229067685967,32229067718735,32229067751503,32229067784271,32229067817039,32229067849807,32229067882575,32229067915343,32229067980879,32229068013647,32229068046415,32229068079183,32229068111951,32229068144719,32229068177487,32229068210255,32229068243023,32229068275791,32229068308559,32229068341327,32229068374095,32229074927695,32229074960463,32229074993231,32229075025999,32229075058767,32229075091535,32229075124303,32229075157071,32229075189839,32229075222607,32229075255375,32229075288143,32229075320911,32229075353679,32229075386447,32229075419215,32229075451983,32229075484751,32229075517519,32229075550287,32229075583055,32229075615823,32229075648591,32229075681359,32229075714127,32229075746895,32229075779663,32229075812431,32229075845199,32229075877967,32229075910735,32229075943503,32229075976271,32229076009039,32229076041807,32229076074575,32229076107343,32229076140111,32229076172879,32229076205647,32229076238415,32229076271183,32229076303951,32229076369487,32229076402255,32229076435023,32229076467791,32229076500559,32229076533327,32229076566095,32229076598863,32229076631631,32229076664399,32229076697167,32229076729935,32229076762703,32229076795471,32229076828239,32229076861007,32229076893775,32229076926543,32229076959311,32229076992079,32229077024847,32229077057615,32229077090383,32229077123151,32229077155919,32229077188687,32229077221455,32229077254223,32229077286991,32229082234959,32229082267727,32229082300495,32229082333263,32229082366031,32229082398799,32229082431567,32229082464335,32229082497103,32229082529871,32229082562639,32229082595407,32229082628175,32229082660943,32229082693711,32229082726479,32229082759247,32229082890319,32229083021391,32229083152463,32229083250767,32229083381839,32229083545679,32229083643983,32229083676751,32229083709519,32229083742287,32229083775055,32229083807823,32229083840591,32229083873359,32229083938895,32229083971663,32229084004431,32229084069967,32229084102735,32229084135503,32229084168271,32229084201039,32229084233807,32229084266575,32229084299343,32229084332111,32229084364879,32229084397647,32229084430415,32229084463183,32229084495951,32229084528719,32229084561487,32229084594255,32229101666383,32229101731919,32229101764687,32229101830223,32229101961295,32229102092367,32229102223439,32229102354511,32229102485583,32229102583887,32229102682191,32229102813263,32229102911567,32229103042639,32229103140943,32229103206479,32229103239247,32229103337551,32229103435855,32229103566927,32229103665231,32229103763535,32229103894607,32229103992911,32229104025679,32229104058447,32229104091215,32229104123983,32229104156751,32229104189519,32229104222287,32229104255055,32229104320591,32229104353359,32229104386127,32229104418895,32229104451663,32229104484431,32229104517199,32229104549967,32229104648271,32229104713807,32229104812111,32229104844879,32229104877647,32229104910415,32229104975951,32229105008719,32229105041487,32229105074255,32229105107023,32229105139791,32229105172559,32229105205327,32229105303631,32229105336399,32229105369167,32229105401935,32229105434703,32229105467471,32229105500239,32229105533007,32229105565775,32229108121679,32229108187215,32229108219983,32229108318287,32229108449359,32229108547663,32229108580431,32229108613199,32229108645967,32229108678735,32229108711503,32229108744271,32229108777039,32229108809807,32229108842575,32229108875343,32229108908111,32229108940879,32229108973647,32229109006415,32229109039183,32229109071951,32229109104719,32229109137487,32229109170255,32229109203023,32229109235791,32229109268559,32229109301327,32229109334095,32229109366863,32229109399631,32229109465167,32229109497935,32229109530703,32229109563471,32229109596239,32229109629007,32229109661775,32229109694543,32229109727311,32229109760079,32229109792847,32229109825615,32229109858383,32229109891151,32229109923919,32229109956687,32229109989455,32229110022223,32229110054991,32229110087759,32229110153295,32229110186063,32229115953231,32229115985999,32229116018767,32229116051535,32229116084303,32229116117071,32229116149839,32229116182607,32229116215375,32229116248143,32229116280911,32229116313679,32229116346447,32229116379215,32229116411983,32229116444751,32229116510287,32229116543055,32229116575823,32229116608591,32229116641359,32229116706895,32229116739663,32229116772431,32229116805199,32229116837967,32229116903503,32229116936271,32229116969039,32229117001807,32229117034575,32229117067343,32229117100111,32229117132879,32229117165647,32229117198415,32229117231183,32229117263951,32229117296719,32229117329487,32229117362255,32229117395023,32229117427791,32229117460559,32229117493327,32229117526095,32229117558863,32229117591631,32229117624399,32229117657167,32229117689935,32229119557711,32229119590479,32229119623247,32229119656015,32229119688783,32229119721551,32229119754319,32229119787087,32229119819855,32229119852623,32229119885391,32229119918159,32229119950927,32229119983695,32229120016463,32229120049231,32229120081999,32229120114767,32229120147535,32229120180303,32229120213071,32229120245839,32229120278607,32229120311375,32229120344143,32229120376911,32229120409679,32229120442447,32229120639055,32229120704591,32229120737359,32229120770127,32229120802895,32229120835663,32229120868431,32229120901199,32229120933967,32229120966735,32229120999503,32229124014159,32229124046927,32229124079695,32229124112463,32229124145231,32229124177999,32229124210767,32229124243535,32229124276303,32229124309071,32229124341839,32229124374607,32229124407375,32229124440143,32229124472911,32229124505679,32229124538447,32229124571215,32229124603983,32229124636751,32229124669519,32229124702287,32229124735055,32229124767823,32229124800591,32229124833359,32229124866127,32229124898895,32229124931663,32229124964431,32229125029967,32229125095503,32229125128271,32229125161039,32229125193807,32229125226575,32229125259343,32229125292111,32229125324879,32229125357647,32229126766671,32229126799439,32229126832207,32229126864975,32229126897743,32229126930511,32229126963279,32229126996047,32229127028815,32229127061583,32229127094351,32229127127119,32229127159887,32229127192655,32229127225423,32229127258191,32229127290959,32229127323727,32229127356495,32229127389263,32229127422031,32229127454799,32229127487567,32229127520335,32229127553103,32229127585871,32229127618639,32229127651407,32229127684175,32229127716943,32229127749711,32229127782479,32229127815247,32229127848015,32229127880783,32229127913551,32229127946319,32229127979087,32229128011855,32229137678415,32229137711183,32229137743951,32229137776719,32229137809487,32229137842255,32229137875023,32229137907791,32229137973327,32229138006095,32229138038863,32229138071631,32229138104399,32229138137167,32229138169935,32229138202703,32229138235471,32229138268239,32229138301007,32229138333775,32229138366543,32229138399311,32229138432079,32229138464847,32229138530383,32229138563151,32229138595919,32229138628687,32229138661455,32229138694223,32229138726991,32229138759759,32229138792527,32229138825295,32229138858063,32229138890831,32229138923599,32229138956367,32229138989135,32229139021903,32229139054671,32229139087439,32229139120207,32229139152975,32229139218511,32229141708879,32229141741647,32229141774415,32229141807183,32229141839951,32229141872719,32229141905487,32229141938255,32229141971023,32229142003791,32229142036559,32229142069327,32229142102095,32229142134863,32229142167631,32229142200399,32229142233167,32229142265935,32229142298703,32229142331471,32229142364239,32229142397007,32229142429775,32229142462543,32229142495311,32229142528079,32229142560847,32229142593615,32229142626383,32229142659151,32229142691919,32229142724687,32229142757455,32229142790223,32229142822991,32229142855759,32229142888527,32229142921295,32229142954063,32229142986831,32229143019599,32229143052367,32229143117903,32229143150671,32229143183439,32229147541583,32229147574351,32229147607119,32229147639887,32229147672655,32229147705423,32229147738191,32229147770959,32229147803727,32229147836495,32229147869263,32229147902031,32229147934799,32229147967567,32229148000335,32229148033103,32229148065871,32229148098639,32229148131407,32229148164175,32229148229711,32229148262479,32229148295247,32229148328015,32229148426319,32229148557391,32229148655695,32229148721231,32229148753999,32229148786767,32229148819535,32229148852303,32229148885071,32229148917839,32229148950607,32229148983375,32229149016143,32229149048911,32229149081679,32229150064719,32229150097487,32229150130255,32229150163023,32229150195791,32229150228559,32229150261327,32229150294095,32229150359631,32229150425167,32229150457935,32229150490703,32229150523471,32229150556239,32229150589007,32229150621775,32229150654543,32229150687311,32229150720079,32229150752847,32229150785615,32229150818383,32229150851151,32229150883919,32229150916687,32229150949455,32229150982223,32229151014991,32229151047759,32229151080527,32229151113295,32229151146063,32229151178831,32229151211599,32229151244367,32229151277135,32229151309903,32229151342671,32229151375439,32229151408207,32229151440975,32229151473743,32229158453327,32229158486095,32229158518863,32229158551631,32229158584399,32229158617167,32229158649935,32229158682703,32229158715471,32229158748239,32229158781007,32229158813775,32229158846543,32229158879311,32229158912079,32229158944847,32229158977615,32229159010383,32229159043151,32229159075919,32229159108687,32229159141455,32229159174223,32229159206991,32229159239759,32229159305295,32229159338063,32229159370831,32229159403599,32229159436367,32229159469135,32229159534671,32229159567439,32229159600207,32229159632975,32229159665743,32229159698511,32229159731279,32229159764047,32229159796815,32229159829583,32229159895119,32229159927887,32229159960655,32229159993423,32229689622607,32229689655375,32229689688143,32229689720911,32229689786447,32229689819215,32229689851983,32229689884751,32229689917519,32229689950287,32229689983055,32229690015823,32229690048591,32229690081359,32229690114127,32229690146895,32229690179663,32229690212431,32229690245199,32229690277967,32229690343503,32229690376271,32229690409039,32229690441807,32229690474575,32229690507343,32229690540111,32229690572879,32229690605647,32229690703951,32229690736719,32229690769487,32229690802255,32229692801103,32229692833871,32229692866639,32229692899407,32229692932175,32229692964943,32229692997711,32229693030479,32229693063247,32229693096015,32229693128783,32229693161551,32229693227087,32229693259855,32229693292623,32229693325391,32229693358159,32229693390927,32229693423695,32229693456463,32229693489231,32229693521999,32229693554767,32229693587535,32229693620303,32229693653071,32229693685839,32229693718607,32229693751375,32229693784143,32229693816911,32229693849679,32229693915215,32229693980751,32229694013519,32229694046287,32229694079055,32229694111823,32229694144591,32229695848527,32229695881295,32229695914063,32229695946831,32229698863183,32229698895951,32229698961487,32229704302671,32229704335439,32229704368207,32229704400975,32229704433743,32229704466511,32229704499279,32229704532047,32229704564815,32229704597583,32229704630351,32229704663119,32229704695887,32229704728655,32229704761423,32229704794191,32229704826959,32229704859727,32229704892495,32229704925263,32229704958031,32229704990799,32229705023567,32229705089103,32230142836815,32230142869583,32230142902351,32230145228879,32230145261647,32230145294415,32230145327183,32230145359951,32230145392719,32230145425487,32230145458255,32230145491023,32230145523791,32230145556559,32230145589327,32230145622095,32230145654863,32230145687631,32230145720399,32230145753167,32230145785935,32230145818703,32230145851471,32230145884239,32230145917007,32230145949775,32230145982543,32230146015311,32230146048079,32230146080847,32230146113615,32230146146383,32230146179151,32230146211919,32230146244687,32230146277455,32230146310223,32230146342991,32230146375759,32230146408527,32230146441295,32230146474063,32230146506831,32230146539599,32230146572367,32230146605135,32230146637903,32230146670671,32230146703439,32230146736207,32230146768975,32230147162191,32230147194959,32230147227727,32230147260495,32230147293263,32230147326031,32230147358799,32230147391567,32230147424335,32230147457103,32230147489871,32230147522639,32230147555407,32230147588175,32230147620943,32230147653711,32230147686479,32230147719247,32230147752015,32230147784783,32230147817551,32230147850319,32230147883087,32230147915855,32230147948623,32230147981391,32230148014159,32230148079695,32230148112463,32230148145231,32230148177999,32230148210767,32230148243535,32230148276303,32230148309071,32230148341839,32230148374607,32230148407375,32230148440143,32230148472911,32230148505679,32230148571215,32230148669519,32230148735055,32230148800591,32230148833359,32230148866127,32230148931663,32230148964431,32230148997199,32230149029967,32230149587023,32230149619791,32230149652559,32230149685327,32230149718095,32230149750863,32230149783631,32230149816399,32230149849167,32230149881935,32230149914703,32230149947471,32230149980239,32230150013007,32230150045775,32230150078543,32230150111311,32230150144079,32230150176847,32230150209615,32230150242383,32230150275151,32230150307919,32230150340687,32230150373455,32230150406223,32230150438991,32230150471759,32230150504527,32230150537295,32230150570063,32230150602831,32230150635599,32230150668367,32230150701135,32230150733903,32230150766671,32230150799439,32230150832207,32230150864975,32230150897743,32230150930511,32230150996047,32230151061583,32230151094351,32230151127119,32230151159887,32230151192655,32230151225423,32230151258191,32230151290959,32230151323727,32230151356495,32230151389263,32230151422031,32230151454799,32230151487567,32230151520335,32230151553103,32230151585871,32230151618639,32230151684175,32230152470607,32230152503375,32230152536143,32230154141775,32230154174543,32230154207311,32230154240079,32230154272847,32230154305615,32230154371151,32230154403919,32230154436687,32230154469455,32230154502223,32230154534991,32230154567759,32230154600527,32230154633295,32230154666063,32230154698831,32230154731599,32230154764367,32230154797135,32230154829903,32230154862671,32230154895439,32230154928207,32230154960975,32230154993743,32230155026511,32230155059279,32230155092047,32230155124815,32230155157583,32230155190351,32230155223119,32230280495183,32230280527951,32230280560719,32230280593487,32230280626255,32230280659023,32230280691791,32230280724559,32230280757327,32230280790095,32230280822863,32230280855631,32230280888399,32230280921167,32230280953935,32230280986703,32230281019471,32230281052239,32230281085007,32230281117775,32230281150543,32230281183311,32230281216079,32230281248847,32230281314383,32230281347151,32230281379919,32230281412687,32230281445455,32230281478223,32230281510991,32230281543759,32230281576527,32230281609295,32230281674831,32230281707599,32230281740367,32230281773135,32230281805903,32230282330191,32230282362959,32230282395727,32230282428495,32230282461263,32230282494031,32230282526799,32230282559567,32230282592335,32230282625103,32230282657871,32230282690639,32230282723407,32230282756175,32230282788943,32230282854479,32230282887247,32230282920015,32230282952783,32230282985551,32230283018319,32230284853327,32230284886095,32230284918863,32230284951631,32230284984399,32230285017167,32230285049935,32230285082703,32230285115471,32230285148239,32230285181007,32230285213775,32230285246543,32230285279311,32230285312079,32230285344847,32230285377615,32230285410383,32230285443151,32230285475919,32230285508687,32230285541455,32230285639759,32230285738063,32230285836367,32230285869135,32230285901903,32230285934671,32230285967439,32230286000207,32230286032975,32230286065743,32230286098511,32230286131279,32230286164047,32230286196815,32230286229583,32230286262351,32230286295119,32230286327887,32230286360655,32230286393423,32230286426191,32230286458959,32230286491727,32230286590031,32230286622799,32230286655567,32230286688335,32230286721103,32230286753871,32230286786639,32230286819407,32230286852175,32230286884943,32230286917711,32230286950479,32230286983247,32230287016015,32230287048783,32230287081551,32230287114319,32230287147087,32230287179855,32230287212623,32230287245391,32230287278159,32230287310927,32230287343695,32230287376463,32230287409231,32230287441999,32230287474767,32230287507535,32230287540303,32230287573071,32230287605839,32230287638607,32230287671375,32230287704143,32230287736911,32230287769679,32230287802447,32230287835215,32230288228431,32230288261199,32230288293967,32230288326735,32230288359503,32230288392271,32230288425039,32230288457807,32230288490575,32230288523343,32230288556111,32230288588879,32230288621647,32230288654415,32230288687183,32230288719951,32230288752719,32230288785487,32230288818255,32230288851023,32230288883791,32230288916559,32230288949327,32230288982095,32230289014863,32230289047631,32230289080399,32230289113167,32230289145935,32230289211471,32230289244239,32230289277007,32230289309775,32230289342543,32230289375311,32230289408079,32230289440847,32230289473615,32230289506383,32230289539151,32230289604687,32230289637455,32230289670223,32230289702991,32230289735759,32230289768527,32230289801295,32230289834063,32230289866831,32230289899599,32230289932367,32230289965135,32230289997903,32230290030671,32230290063439,32230290096207,32230290128975,32230290161743,32230290194511,32230290227279,32230290260047,32230290292815,32230290325583,32230290358351,32230290391119,32230290423887,32230290456655,32230290489423,32230290522191,32230290554959,32230290587727,32230290620495,32230290653263,32230290686031,32230290718799,32230290751567,32230290784335,32230290817103,32230290849871,32230290948175,32230290980943,32230291013711,32230291079247,32230291112015,32230291144783,32230291177551,32230291210319,32230291243087,32230291275855,32230291308623,32230291341391,32230291374159,32230291406927,32230291439695,32230291472463,32230291505231,32230291537999,32230291570767,32230291603535,32230291996751,32230292029519,32230292062287,32230292095055,32230293569615,32230293602383,32230293635151,32230293667919,32230293700687,32230293733455,32230293766223,32230293798991,32230293831759,32230293864527,32230293897295,32230293930063,32230293962831,32230293995599,32230294028367,32230294061135,32230294093903,32230294126671,32230294159439,32230294192207,32230294224975,32230294257743,32230294290511,32230294323279,32230294356047,32230294388815,32230294421583,32230294454351,32230294487119,32230294519887,32230294552655,32230294585423,32230294618191,32230295175247,32230295208015,32230295240783,32230295273551,32230295306319,32230295339087,32230295371855,32230295404623,32230295437391,32230295470159,32230295535695,32230295568463,32230295601231,32230295633999,32230295666767,32230295699535,32230295732303,32230295797839,32230295830607,32230295863375,32230295896143,32230295928911,32230295961679,32230295994447,32230296027215,32230296059983,32230296092751,32230296125519,32230296158287,32230296191055,32230296223823,32230296256591,32230296289359,32230296322127,32230296354895,32230296387663,32230296453199,32230296485967,32230296518735,32230296584271,32230296617039,32230296649807,32230296682575,32230296715343,32230296748111,32230296780879,32230296813647,32230296846415,32230296879183,32230296911951,32230296944719,32230296977487,32230297010255,32230297043023,32230297075791,32230297108559,32230297141327,32230297174095,32230297206863,32230297239631,32230297272399,32230297305167,32230297337935,32230297370703,32230297403471,32230297436239,32230297469007,32230297501775,32230297534543,32230297567311,32230297600079,32230297632847,32230297665615,32230297698383,32230297731151,32230297796687,32230297829455,32230297862223,32230302089295,32230302122063,32230302154831,32230303432783,32230303465551,32230303498319,32230303531087,32230303563855,32230303596623,32230303629391,32230303662159,32230303694927,32230303793231,32230303825999,32230303858767,32230303891535,32230303924303,32230303957071,32230303989839,32230304055375,32230304088143,32230304120911,32230304153679,32230304186447,32230304219215,32230304251983,32230304284751,32230304317519,32230304350287,32230304383055,32230304415823,32230304448591,32230304481359,32230304514127,32230304546895,32230304579663,32230304612431,32230304645199,32230304677967,32230304710735,32230304743503,32230304776271,32230304809039,32230304841807,32230304874575,32230304907343,32230304972879,32230305005647,32230305038415,32230305071183,32230305103951,32230305136719,32230305169487,32230305202255,32230307921999,32230307954767,32230307987535,32230310248527,32230310314063,32230310346831,32230310379599,32230310412367,32230310445135,32230310477903,32230310510671,32230310543439,32230310576207,32230310608975,32230310641743,32230310674511,32230310707279,32230310740047,32230310772815,32230310805583,32230310871119,32230310903887,32230310936655,32230310969423,32230311002191,32230311034959,32230311067727,32230311100495,32230311133263,32230311166031,32230311198799,32230311231567,32230311264335,32230311297103,32230311329871,32230311395407,32230311690319,32230311723087,32230311755855,32230311788623,32230311821391,32230311854159,32230311886927,32230311919695,32230311952463,32230311985231,32230312017999,32230312050767,32230312083535,32230312116303,32230312149071,32230312214607,32230312247375,32230312312911,32230312345679,32230312378447,32230312411215,32230312443983,32230312476751,32230312509519,32230312542287,32230312607823,32230312640591,32230312673359,32230312706127,32230312738895,32230312771663,32230312804431,32230312837199,32230312869967,32230312902735,32230312935503,32230312968271,32230313001039,32230313033807,32230313066575,32230313099343,32230313132111,32230313164879,32230313197647,32230313230415,32230316605519,32230316638287,32230316671055,32230318112847,32230318145615,32230318178383,32230318211151,32230318243919,32230318276687,32230318309455,32230318342223,32230318374991,32230318407759,32230318440527,32230318473295,32230318506063,32230318538831,32230318571599,32230318604367,32230318637135,32230318669903,32230318702671,32230318735439,32230318768207,32230318800975,32230318833743,32230318866511,32230318899279,32230318932047,32230318964815,32230319226959,32230319259727,32230319292495,32230319325263,32230319358031,32230319390799,32230319423567,32230319456335,32230319489103,32230319521871,32230319554639,32230319587407,32230319620175,32230319652943,32230319685711,32230319718479,32230319751247,32230319784015,32230319816783,32230319849551,32230319882319,32230319915087,32230319947855,32230319980623,32230320013391,32230320046159,32230320078927,32230320111695,32230320144463,32230320177231,32230320209999,32230320242767,32230320275535,32230320308303,32230320341071,32230320373839,32230320406607,32230320439375,32230320472143,32230320504911,32230320537679,32230320570447,32230320603215,32230320635983,32230320668751,32230320701519,32230320734287,32230320767055,32230320799823,32230320832591,32230320865359,32230320898127,32230320930895,32230320963663,32230320996431,32230321029199,32230321061967,32230321094735,32230321127503,32230321160271,32230321193039,32230321225807,32230321258575,32230321651791,32230321684559,32230321717327,32230325190735,32230325223503,32230325256271,32230325289039,32230325321807,32230325354575,32230325387343,32230325420111,32230325452879,32230325485647,32230325518415,32230325551183,32230325583951,32230325616719,32230325649487,32230325682255,32230325747791,32230325813327,32230325846095,32230325878863,32230325911631,32230325944399,32230325977167,32230326009935,32230326042703,32230326075471,32230326108239,32230326141007,32230326173775,32230326206543,32230326239311,32230326272079,32230326304847,32230327746639,32230327779407,32230327812175,32230327844943,32230327877711,32230327910479,32230327943247,32230327976015,32230328008783,32230328041551,32230328074319,32230328107087,32230328139855,32230328172623,32230328205391,32230328238159,32230328270927,32230328303695,32230328336463,32230328369231,32230328401999,32230328434767,32230328467535,32230328500303,32230329155663,32230329188431,32230329221199,32236498190415,32236498321487,32236498354255,32236498419791,32236498485327,32236498550863,32236498616399,32236498714703,32236498747471,32236498845775,32236498944079,32236498976847,32236499009615,32236499042383,32236499075151,32236499107919,32236499140687,32236499173455,32236499337295,32236499370063,32236499402831,32236499501135,32236499533903,32236499566671,32236499599439,32236499632207,32236499664975,32236499697743,32236499959887,32236499992655,32236500025423,32236500058191,32236500123727,32236500156495,32236500222031,32236500254799,32236500287567,32236500320335,32236500484175,32236500516943,32236500549711,32236500582479,32236500680783,32236500713551,32236500811855,32236500844623,32236500942927,32236501041231,32236501073999,32236501139535,32236501172303,32236501205071,32236501237839,32236501270607,32236501336143,32236501401679,32236501434447,32236501532751,32236501598287,32236501762127,32236501794895,32236501860431,32236501925967,32236502024271,32236502089807,32236502122575,32236502188111,32236574408783,32236574441551,32236574474319,32236574507087,32236574539855,32236574572623,32236574605391,32236574638159,32236574670927,32236574703695,32236574801999,32236574834767,32236574867535,32236574900303,32236574933071,32236574965839,32236574998607,32236575031375,32236575064143,32236575096911,32236575129679,32236575260751,32236575293519,32236575326287,32236575359055,32236575391823,32236575490127,32236575555663,32236575621199,32236575653967,32236575686735,32236575719503,32236575752271,32236575817807,32236575850575,32236575883343,32236575948879,32236576014415,32236576047183,32236576079951,32236576145487,32236576178255,32237407993935,32237408092239,32237408125007,32237408321615,32237408518223,32237408550991,32237408616527,32237408747599,32237408911439,32237408944207,32237409042511,32237409140815,32237409173583,32237409206351,32237409304655,32237409566799,32237409599567,32237409632335,32237409992783,32237410156623,32237410484303,32237410549839,32237410648143,32237410680911,32237410713679,32237410746447,32237410877519,32237410910287,32237411074127,32237411401807,32237411434575,32237411467343,32237411532879,32237411598415,32237411631183,32237502857295,32237502890063,32237502955599,32237502988367,32237503021135,32237503086671,32237503119439,32237503184975,32237503217743,32237503250511,32237503283279,32237503316047,32237503348815,32237503381583,32237503414351,32237503578191,32237503610959,32237503643727,32237503676495,32237503709263,32237503742031,32237503774799,32237503807567,32237503840335,32237503905871,32237503938639,32237503971407,32237504004175,32237504036943,32237504069711,32237504102479,32237504135247,32237504233551,32237504266319,32237504299087,32237504331855,32237504462927,32237504528463,32237504561231,32237504593999,32237504626767,32237504659535,32242195660879,32339114000463,32347376091215,32347376123983,32347376156751,32347376189519,32347376222287,32347376255055,32347376287823,32347376320591,32347376353359,32347376975951,32347377008719,32347377041487,32347377074255,32347377107023,32347377139791,32347377172559,32347377205327,32347377238095,32347377270863,32347377303631,32347377336399,32347377369167,32347377401935,32347377434703,32347377467471,32347377500239,32347377533007,32347377565775,32347377598543,32347377631311,32347377664079,32347377696847,32347377729615,32347377762383,32347377795151,32347377827919,32347377860687,32347377958991,32347378090063,32347378253903,32347378384975,32347378548815,32347378679887,32347378810959,32347378942031,32347379138639,32347379302479,32347379433551,32347379564623,32347379662927,32347379793999,32347379892303,32347380056143,32347380154447,32347380252751,32347380351055,32347380482127,32347380580431,32347380613199,32347380645967,32347380678735,32347380711503,32347380744271,32347380777039,32347380809807,32347380842575,32347380875343,32347380908111,32347380940879,32347380973647,32347381006415,32347381039183,32347381071951,32347381104719,32347381137487,32347381301327,32347381334095,32347381366863,32347381399631,32347381432399,32347381465167,32347381497935,32347381530703,32347381563471,32347381596239,32347381629007,32347381661775,32347381694543,32347381727311,32347381760079,32347381792847,32347381825615,32347381858383,32347381891151,32347381923919,32347381956687,32347381989455,32347382022223,32347382054991,32347382087759,32347382120527,32347382153295,32347382186063,32347382218831,32347382251599,32347382284367,32347382317135,32347382349903,32347382382671,32347382415439,32347382448207,32347382480975,32347382513743,32347382546511,32347382579279,32350351032399,32350351065167,32350351097935,32350351130703,32350351163471,32350351196239,32350351229007,32350351261775,32350351294543,32350351327311,32350351360079,32350351392847,32350351425615,32350351458383,32350351491151,32350351523919,32350351556687,32350351589455,32350351622223,32350351654991,32350351687759,32350351720527,32350351753295,32350351786063,32350351818831,32350351851599,32350351884367,32350351917135,32350351949903,32350351982671,32350352015439,32350352048207,32350352080975,32350352113743,32350352146511,32350352179279,32350424727631,32350424760399,32350424793167,32350424825935,32350424858703,32350424891471,32350424924239,32350424957007,32350424989775,32350425022543,32350425055311,32350425088079,32350425120847,32350425153615,32350425186383,32350425219151,32350425251919,32350425284687,32350425317455,32350425350223,32350425382991,32350425415759,32350425448527,32350425481295,32350425514063,32350425546831,32350425579599,32350425612367,32350425645135,32350425677903,32350425710671,32350425743439,32350425776207,32350425808975,32350425841743,32350425874511,32350425907279,32350425940047,32350426005583,32350426038351,32350426071119,32350426136655,32350426169423,32350426202191,32350426234959,32350426267727,32350426300495,32350426333263,32350426366031,32350426398799,32350426431567,32350426464335,32350426497103,32350426529871,32350426562639,32350426595407,32350426628175,32350426660943,32350426693711,32350426726479,32350426759247,32350426792015,32350426824783,32350426857551,32350426890319,32350426923087,32350426955855,32350426988623,32350427021391,32350437179471,32350437212239,32350437245007,32350437277775,32350437310543,32350437343311,32350437376079,32350437408847,32350437441615,32350437474383,32350437507151,32350437572687,32350437605455,32350437638223,32350437670991,32350437703759,32350437736527,32350437769295,32350437802063,32350437834831,32350437867599,32350437900367,32350437933135,32350437965903,32350437998671,32350438031439,32350438064207,32350438096975,32350438129743,32350438162511,32350438195279,32350438228047,32350438293583,32350438326351,32350438359119,32350438391887,32350438424655,32350438457423,32350438490191,32350438522959,32350438555727,32350438588495,32350438621263,32350438654031,32350438686799,32350438719567,32350438752335,32350438785103,32350438817871,32350438850639,32350438883407,32350438916175,32350438948943,32350438981711,32350439014479,32350439047247,32350439080015,32350439112783,32350439145551,32350439178319,32350439211087,32350439243855,32350439276623,32350443274319,32350443307087,32350443339855,32350443372623,32350443405391,32350443438159,32350443470927,32350443503695,32350443536463,32350443569231,32350443601999,32350443634767,32350443667535,32350443700303,32350443733071,32350443765839,32350443798607,32350443831375,32350443864143,32350443896911,32350443929679,32350443962447,32350443995215,32350444027983,32350444060751,32350444093519,32350444126287,32350444159055,32350444191823,32350444224591,32350444257359,32350444290127,32350444322895,32350444355663,32350444388431,32350444421199,32350444453967,32350444486735,32350444519503,32350444552271,32350444617807,32350444650575,32350444683343,32350444716111,32350444781647,32350444814415,32350444847183,32350444879951,32350494326863,32350494359631,32350494392399,32350494425167,32350494457935,32350494490703,32350494523471,32350494556239,32350494589007,32350494621775,32350494654543,32350494687311,32350494720079,32350494752847,32350494785615,32350494818383,32350494851151,32350494883919,32350494916687,32350494949455,32350494982223,32350495014991,32350495047759,32350495080527,32350495113295,32350495146063,32350495178831,32350495211599,32350495244367,32350495277135,32350495309903,32350495342671,32350495375439,32350495408207,32350495440975,32350495473743,32350495506511,32350495539279,32350495572047,32350495604815,32350495637583,32350495670351,32350495703119,32350495735887,32350495768655,32350495801423,32350495834191,32350495866959,32350495899727,32350495932495,32350495965263,32350495998031,32350496030799,32350496063567,32350496096335,32350496129103,32350500421711,32350500487247,32350500552783,32350500683855,32350500749391,32350500782159,32350500814927,32350500847695,32350500880463,32350500913231,32350500945999,32350500978767,32350501011535,32350501044303,32350501077071,32350503534671,32350503567439,32350503600207,32350503632975,32350503665743,32350503698511,32350503731279,32350503764047,32350503796815,32350503829583,32350503862351,32350503895119,32350503927887,32350503960655,32350503993423,32350504026191,32350504091727,32350504124495,32350504157263,32350504190031,32350504222799,32350504255567,32350504288335,32350504321103,32350504353871,32350504386639,32350504419407,32350504452175,32350504484943,32350504517711,32350504550479,32350504583247,32350504616015,32350504648783,32350504681551,32350504714319,32350504747087,32350504779855,32350504812623,32350507139151,32350507171919,32350507204687,32350507237455,32350507270223,32350507302991,32350507335759,32350507368527,32350507401295,32350507499599,32350507532367,32350507565135,32350507597903,32350507630671,32350507663439,32350507696207,32350507728975,32350507761743,32350507794511,32350507827279,32350507860047,32350507892815,32350507925583,32350507958351,32350507991119,32350508023887,32350508056655,32350508089423,32350508122191,32350508154959,32350508187727,32350508220495,32350508253263,32350508286031,32350508318799,32350508351567,32350508384335,32350508548175,32350508712015,32350508744783,32350508777551,32350508810319,32350508843087,32350508875855,32350508908623,32350512742479,32350512775247,32350512808015,32350512840783,32350512873551,32350512906319,32350512939087,32350512971855,32350513004623,32350513037391,32350513070159,32350513102927,32350513135695,32350513168463,32350513201231,32350513233999,32350513266767,32350513299535,32350513332303,32350513365071,32350513397839,32350513430607,32350513463375,32350513496143,32350513528911,32350513561679,32350513594447,32350513627215,32350513659983,32350513692751,32350513725519,32350513758287,32350513791055,32350513823823,32350513856591,32350513889359,32350513922127,32350513954895,32350513987663,32350514020431,32350514053199,32350514085967,32350514118735,32350514151503,32350514184271,32350514217039,32350514249807,32350514282575,32350522277967,32350522310735,32350522343503,32350522376271,32350522409039,32350522441807,32350522474575,32350522507343,32350522540111,32350522572879,32350522605647,32350522638415,32350522671183,32350522703951,32350522736719,32350522769487,32350522802255,32350522835023,32350522867791,32350522900559,32350522933327,32350522966095,32350522998863,32350523031631,32350523064399,32350523097167,32350523129935,32350523162703,32350523195471,32350523228239,32350523261007,32350523293775,32350523326543,32350523359311,32350523392079,32350523424847,32350523457615,32350523490383,32350523523151,32350523555919,32350523588687,32350523621455,32350523654223,32350523686991,32350523719759,32350523752527,32350523785295,32350523818063,32350523850831,32350523883599,32350523916367,32350523949135,32350523981903,32350524014671,32350524047439,32350524080207,32350524112975,32350524145743,32350524178511,32350524211279,32350524244047,32350524276815,32350524309583,32350524342351,32350524375119,32350524407887,32350524440655,32350524473423,32350525030479,32350525063247,32350525096015,32350525128783,32350525161551,32350525194319,32350525227087,32350525259855,32350525292623,32350525325391,32350525358159,32350525390927,32350525423695,32350525456463,32350525489231,32350525521999,32350525554767,32350525587535,32350525620303,32350525653071,32350525685839,32350525718607,32350525751375,32350525784143,32350525816911,32350525849679,32350525882447,32350525915215,32350525947983,32350525980751,32350526013519,32350526046287,32350526079055,32350531092559,32350531125327,32350531158095,32350531190863,32350531223631,32350531256399,32350531289167,32350531321935,32350531354703,32350531387471,32350531420239,32350531453007,32350531485775,32350531518543,32350531551311,32350531584079,32350531616847,32350531649615,32350531682383,32350531715151,32350531747919,32350531780687,32350531813455,32350531846223,32350531878991,32350531911759,32350531944527,32350531977295,32350532010063,32350532042831,32350532075599,32350532108367,32350532141135,32350532173903,32350532206671,32350532239439,32350532599887,32350532632655,32350532665423,32350532698191,32350532730959,32350532763727,32350532796495,32350532829263,32350532862031,32350532894799,32350532927567,32350532960335,32350532993103,32350533025871,32350533058639,32350533091407,32350533124175,32350533156943,32350533189711,32350533222479,32350533255247,32350533288015,32350533320783,32350533353551,32350533386319,32350533419087,32350533451855,32350533484623,32350533517391,32350533550159,32350533582927,32350533615695,32350533648463,32350537842767,32350537875535,32350537908303,32350537941071,32350537973839,32350538006607,32350538039375,32350538072143,32350538104911,32350538399823,32350538432591,32350538465359,32350538498127,32350538530895,32350538563663,32350538596431,32350538629199,32350538661967,32354225061967,32354225094735,32354225127503,32354225160271,32354225193039,32354225225807,32354225258575,32354225291343,32354225324111,32354225356879,32354225389647,32354225487951,32354225520719,32354225553487,32354225586255,32354225651791,32354225684559,32354225717327,32354225750095,32354225782863,32354225881167,32354225913935,32354225946703,32354225979471,32354226045007,32354226077775,32354226110543,32354226143311,32354226176079,32354226307151,32354226339919,32354226372687,32354226405455,32354226438223,32354226470991,32354226503759,32354226536527,32354226569295,32369918443599,32369918476367,32372155678799,32372155711567,32372155777103,32372155875407,32372156006479,32372156039247,32372156072015,32372156301391,32372156366927,32372156432463,32372156596303,32372156629071,32372156661839,32372156694607,32372156727375,32372156760143,32372156825679,32372156858447,32372156956751,32373277982799,32373278015567,32373278048335,32373278081103,32373278113871,32373278146639,32373278179407,32373278212175,32373278244943,32373278277711,32373278310479,32373278343247,32373278376015,32373278408783,32373278441551,32373278474319,32373278507087,32373278539855,32373278572623,32373278605391,32373278638159,32373278670927,32373278703695,32373278736463,32373278769231,32373278801999,32373278834767,32373278867535,32373278900303,32373278933071,32373278965839,32373278998607,32373279031375,32373279064143,32373279129679,32373279162447,32373279195215,32373279227983,32373279260751,32373279293519,32373279326287,32373279359055,32373279391823,32373279424591,32373279457359,32373279490127,32373279522895,32373279555663,32373279588431,32373279621199,32373279653967,32373305311311,32373305344079,32373305376847,32373305409615,32373305442383,32373305475151,32373305507919,32373305540687,32373305573455,32373305606223,32373305638991,32373305671759,32373305704527,32373305737295,32373305770063,32373305802831,32373305868367,32373305901135,32373305933903,32373305966671,32373305999439,32373306032207,32373306064975,32373306097743,32373306130511,32373306163279,32373306196047,32373306228815,32373306261583,32373306294351,32373306327119,32373306359887,32373306392655,32373306425423,32373306458191,32373306490959,32373306523727,32373306556495,32373306589263,32373306622031,32373306654799,32373306687567,32373306720335,32373306753103,32373306785871,32373306818639,32373306851407,32373306884175,32373306916943,32373306949711,32373306982479,32373307015247,32373307048015,32373307080783,32373307113551,32373307146319,32373307179087,32373307211855,32373307244623,32373307277391,32373307310159,32373307342927,32373307375695,32373307408463,32373307441231,32373307473999,32373307506767,32373307539535,32373307572303,32373307605071,32373307637839,32373307670607,32373309833295,32373309866063,32373309898831,32373309931599,32373309964367,32373309997135,32373310029903,32373310062671,32373310095439,32373310128207,32373310160975,32373310193743,32373310226511,32373310259279,32373310292047,32373310324815,32373310357583,32373310390351,32373310423119,32373310455887,32373310488655,32373310521423,32373310554191,32373310586959,32373310685263,32373310718031,32373310750799,32373310783567,32373310816335,32373310849103,32373310881871,32373310947407,32373311045711,32373311078479,32373311111247,32373311144015,32373311176783,32373311242319,32373311275087,32373311307855,32373311340623,32373311373391,32373311406159,32373311471695,32373311504463,32373311537231,32373311569999,32373311635535,32373311668303,32373311701071,32373311733839,32373311766607,32373311799375,32373311832143,32373311864911,32373311897679,32373311930447,32373312028751,32373312192591,32373312323663,32373312356431,32373312389199,32373312421967,32373312454735,32373312487503,32373312520271,32373312553039,32373312585807,32373375565903,32373375598671,32373375631439,32373375664207,32373375696975,32373375729743,32373375762511,32373375795279,32373384806479,32373384839247,32373384872015,32373384904783,32373384937551,32373384970319,32373385003087,32373385035855,32373385068623,32373385101391,32373385134159,32373385166927,32373385199695,32373385232463,32373385265231,32373385297999,32373385330767,32373385363535,32373385396303,32373385429071,32373385461839,32373385494607,32373385527375,32373385560143,32373385592911,32373385625679,32373385658447,32373385691215,32373385723983,32373385756751,32373385789519,32373385822287,32373385855055,32373385887823,32373385920591,32373385953359,32373385986127,32373386018895,32373386051663,32373386084431,32373386117199,32373386149967,32373386182735,32373386215503,32373403811919,32373403844687,32373430026319,32373430059087,32373430091855,32373430124623,32373430190159,32373430353999,32373430386767,32373430419535,32373430452303,32373430485071,32373430517839,32373430550607,32373430583375,32373430616143,32373430648911,32373430681679,32373430714447,32373430747215,32373430779983,32373430812751,32373430845519,32373430878287,32373430911055,32373430943823,32373430976591,32373431009359,32373431042127,32373431074895,32373431107663,32373431140431,32373431173199,32373431205967,32373431238735,32373431271503,32373431304271,32373431337039,32373431369807,32373431402575,32373431435343,32373431468111,32373431500879,32373431533647,32373431566415,32373431599183,32373441265743,32373441298511,32373441331279,32373441364047,32373441396815,32373441429583,32373441462351,32373441495119,32373441527887,32373441560655,32373441593423,32373441626191,32373441658959,32373441691727,32373441724495,32373441757263,32373441790031,32373441822799,32373441855567,32373441888335,32373441921103,32373441953871,32373441986639,32373442019407,32373448736847,32373448769615,32373448802383,32373448900687,32373449064527,32374424272975,32374424633423,32374424698959,32374424764495,32374424797263,32374424895567,32374424928335,32374424961103,32374424993871,32374425059407,32374425092175,32374425157711,32374425256015,32374425288783,32374425321551,32374425354319,32374425419855,32374425452623,32374425616463,32374425649231,32374425813071,32374425845839,32374425878607,32374425911375,32374425944143,32374425976911,32374426009679,32374426042447,32374426075215,32374426107983,32374426140751,32374426173519,32374426239055,32374426271823,32374426304591,32374426533967,32374426632271,32374426697807,32374426730575,32374426763343,32374426796111,32374426828879,32374426894415,32374426959951,32374427025487,32374427091023,32374427123791,32374427156559,32374427254863,32374427287631,32374427320399,32374427353167,32374427385935,32374427418703,32374427451471,32374427484239,32374427517007,32374427549775,32374427582543,32374427615311,32374427648079,32374427713615,32374427811919,32374427844687,32374427877455,32374427910223,32374427942991,32374427975759,32374429581391,32374429614159,32374429646927,32374429712463,32374429745231,32374429974607,32374430007375,32374430040143,32374430072911,32374430531663,32374430892111,32374431023183,32374431055951,32374431088719,32374431121487,32374431154255,32374431187023,32374431219791,32374431285327,32374431318095,32374431383631,32374431416399,32374431449167,32374431481935,32374431580239,32374433611855,32374433644623,32374433677391,32374433710159,32374433906767,32398400192591,32398400225359,32398400258127,32398400389199,32398400421967,32398400454735,32398400487503,32398400520271,32398400553039,32398400585807,32398400618575,32398400651343,32398400684111,32398400716879,32398400749647,32398400782415,32398400815183,32398400847951,32398400880719,32398400913487,32398400946255,32398400979023,32398401011791,32398401044559,32398401077327,32398401110095,32398401142863,32398401175631,32398401241167,32398401273935,32398401306703,32398401339471,32398401372239,32398401405007,32398401437775,32398401470543,32398401503311,32398401536079,32398401568847,32398422376527,32398423064655,32398423130191,32398423195727,32398423228495,32398539489359,32500865761359,32511880986703,32535019814991,32535028858959,39322598801487,39322598834255,39322598867023,39322598899791,39322598932559,39322598965327,39322598998095,39322599030863,39322599063631,39322599096399,39322599129167,39322599161935,39322599194703,39322599227471,39322599260239,39322599293007,39322599325775,39322599358543,39322599391311,39322599424079,39322599456847,39322599489615,39322599522383,39322599555151,39322599587919,39322599620687,39322599653455,39569160241231,39569160273999,39569160306767,39569160339535,39650764783695,39650764816463,39650764849231,42600420901109,42600420933877,42600420966645,42600420999413,42600421032181,42600421064949,42600421097717,42600421130485,42600421163253,42600421196021,42600421228789,42600421261557,42600421294325,42600421327093,42600421359861,42600421392629,42600421425397,42600421458165,42600421490933,42600421523701,42600421556469,42600421589237,42600421622005,42600421654773,42600421687541,42600421753077,42600421785845,42600421818613,42600421851381,42600421884149,42600421916917,42600421949685,42600421982453,42600422015221,42600422047989,42600422080757,42632656060661,42632656158965,42632656191733,42632656224501,42632656257269,42632656290037,42632656322805,42632656355573,42632656388341,42632656421109,42632656453877,42632656486645,42632656519413,42632656552181,42632656584949,42632656617717,42632656650485,42632656683253,42632656748789,42632656781557,42632656814325,42632656847093,42632656879861,42632656912629,42632656945397,42632656978165,42632657010933,42632657043701,42632657076469,42632657109237,42632657142005,42632657174773,42632657207541,42632657240309,42632657273077,42632702394613,42632702427381,42632702460149,42632702492917,42632702787829,42632702820597,42632702853365,42632702886133,42773994733813,42774016983285,42779610480885,42779610513653,42805625913589,42805627879669,42926220247285,42930844008693,42930844041461,42930844074229,42930844106997,42957412368629,43201296269557,43201296302325,43201296335093,43201296367861,43201296400629,43201296433397,43201296466165,43201296498933,43201296531701,43201296564469,43201296597237,43201296630005,43201296662773,43201296695541,43201296728309,43201296761077,43201296793845,43201296826613,43201296859381,43201296892149,43201296924917,43201296957685,43201296990453,43201297023221,43201297055989,43201297088757,43201297121525,43201297154293,43201297187061,43201297219829,43201297252597,43201297285365,43201297318133,43201297350901,43201297383669,43201297416437,43201297449205,43201297481973,43201297514741,43201297547509,43201297580277,43201297613045,43201297645813,43201297678581,43201297711349,43205051384053,43205051416821,43205051449589,43205051482357,43205051515125,43205051547893,43205051580661,43205051613429,43205051646197,43205051678965,43205056332021,43205056364789,43205056397557,43205056430325,43205056463093,43205056495861,43205058527477,43205058560245,43205058593013,43205058625781,43205058691317,43205058724085,43205078417653,43205078450421,43205078483189,43205078515957,43205078548725,43205078581493,43205078614261,43205078647029,43205078679797,43205078712565,43205078778101,43205078810869,43205078843637,43205078876405,43205078909173,43205078941941,43205078974709,43205079007477,43205079040245,43205079073013,43205079105781,43205079138549,43205079204085,43205079236853,43205079302389,43205079335157,43205079367925,43205079400693,43205079433461,43205079466229,43205079498997,43205079531765,43205079564533,43205079597301,43205079662837,43205079695605,43205079728373,43205079761141,43205079793909,43205079826677,43205079859445,43205079892213,43205079924981,43205079957749,43205079990517,43205080023285,43205080056053,43205080121589,43213695025397,43213695058165,43213695090933,43213695123701,43213695156469,43213695189237,43213695222005,43213695254773,43213695287541,43213695320309,43213695353077,43213695385845,43213695418613,43213695451381,43213695484149,43213695516917,43213695549685,43213695582453,43213695615221,43213695647989,43213695680757,43213695713525,43213695746293,43213695779061,43213695811829,43213695844597,43213695877365,43213695910133,43213695942901,43213695975669,43213696008437,43213696041205,43213696073973,43213696106741,43213696139509,43213696172277,43213696205045,43213696270581,43213696303349,43213696336117,43213696368885,43213696434421,43213696467189,43213696499957,43213696532725,43213696565493,43213696598261,43213696631029,43213696729333,43213696794869,43213696893173,43213696991477,43213697089781,43213697188085,43213697319157,43213697417461,43213697515765,43213697614069,43213697712373,43213697810677,43213697876213,43213697908981,43213697941749,43213697974517,43213698007285,43213698040053,43213698072821,43213698105589,43213698138357,43213698171125,43213698203893,43213698236661,43213698269429,43213698302197,43213698334965,43213762298101,43213762330869,43213762363637,43213762396405,43213762429173,43213762461941,43213762494709,43213762560245,43213762593013,43213762625781,43213762658549,43213762691317,43213762724085,43213762756853,43213762789621,43213762822389,43213762855157,43213762887925,43213762920693,43213762953461,43213762986229,43213763018997,43213763051765,43213763084533,43213763117301,43213763150069,43213763182837,43213763215605,43213763248373,43213763281141,43213763313909,43213763346677,43213763379445,43213763412213,43213763444981,43213763477749,43213763510517,43213763576053,43213763608821,43213763641589,43213763674357,43213763707125,43213763739893,43213763772661,43213763805429,43213763838197,43213763870965,43213763903733,43213763936501,43213763969269,43213764002037,43213764034805,43213764067573,43213764100341,43213764133109,43213764165877,43213764198645,43213764231413,43213764264181,43213764296949,43213764329717,43213764362485,43213764395253,43213764428021,43213764460789,43213764493557,43213764526325,43213764559093,43213764591861,43213774356725,43213774389493,43213774422261,43213774455029,43213774487797,43213774520565,43213774553333,43213774586101,43213774618869,43213774651637,43213774684405,43213774717173,43213774749941,43213774782709,43213774815477,43213774848245,43213774881013,43213774913781,43213774946549,43213774979317,43213775012085,43213775044853,43213775077621,43213775110389,43213775143157,43213775175925,43213775208693,43213775241461,43213775274229,43213775306997,43213775339765,43213775372533,43213775405301,43213775438069,43213775470837,43213775503605,43213775536373,43213775569141,43213775601909,43213775634677,43213775667445,43213775700213,43213775732981,43213775765749,43213775798517,43213775831285,43213775864053,43213775896821,43213775929589,43213775962357,43213775995125,43213776027893,43213776060661,43213776093429,43213776126197,43213776158965,43213776224501,43213776257269,43213776290037,43213776322805,43213776355573,43213776388341,43213776421109,43213776453877,43213776486645,43213776519413,43213776552181,43213776584949,43213776617717,43213781270773,43213781303541,43213781336309,43213781369077,43213781401845,43213781434613,43213781467381,43213781500149,43213781532917,43213781565685,43213781598453,43213781631221,43213781663989,43213781696757,43213781729525,43213781795061,43213781827829,43213781860597,43213781893365,43213781926133,43213781958901,43213781991669,43213782024437,43213782057205,43213782089973,43213782122741,43213782155509,43213782188277,43213782221045,43213782253813,43213782286581,43213782319349,43213782352117,43213782384885,43213782417653,43213782450421,43213782483189,43213782515957,43213782548725,43213785071861,43213785104629,43213785137397,43213785170165,43213785202933,43213785235701,43213785268469,43213785301237,43213785334005,43213785366773,43213785399541,43213785432309,43213785465077,43213785497845,43213785530613,43213785563381,43213785596149,43213785628917,43213785661685,43213785694453,43213785727221,43213785759989,43213785792757,43213785825525,43213785858293,43213785891061,43213785923829,43213785956597,43213785989365,43213786022133,43213786054901,43213786087669,43213786120437,43213794869493,43213794902261,43213794935029,43213794967797,43213795000565,43213795033333,43213795066101,43213795098869,43213795131637,43213795164405,43213795197173,43213795229941,43213795262709,43213795295477,43213795328245,43213795361013,43213795393781,43213795426549,43213795459317,43213795492085,43213795524853,43213795557621,43213795590389,43213795623157,43213795655925,43213795688693,43213795721461,43213795754229,43213795786997,43213795819765,43213795852533,43213795918069,43213795950837,43213795983605,43213796016373,43213796049141,43213796081909,43213796114677,43213796147445,43213796180213,43213796212981,43213796245749,43213822918901,43213822951669,43213822984437,43213823017205,43213823049973,43213823082741,43213823115509,43213823148277,43213823181045,43213823213813,43213823246581,43213823279349,43213823312117,43213823344885,43213823377653,43213823410421,43213823443189,43213823475957,43213823508725,43213823541493,43213823574261,43213823607029,43213823639797,43213823672565,43213823705333,43213823738101,43213823770869,43213823803637,43213823836405,43213823869173,43213823901941,43213823934709,43213823967477,43213824000245,43213824033013,43213824065781,43213824098549,43213824131317,43213824164085,43213824196853,43213824229621,43213824262389,43213824295157,43213824327925,43213824360693,43213831241973,43213831274741,43213831307509,43213831340277,43213831373045,43213831405813,43213831438581,43213831471349,43213831504117,43213831897333,43213831930101,43213831962869,43213831995637,43213832028405,43213832061173,43347812876533,43347813335285,43347813630197,43347813662965,43347813957877,43347813990645,43347814023413,43347814088949,43347815071989,43347815104757,43347815235829,43347815268597,43347815563509,43347815596277,43347816612085,43347816677621,43347816808693,43347817005301,43347821396213,43347823952117,43348171096309,43348171915509,43348172013813,43348172079349,43348173258997,43348173357301,43348173488373,43348173586677,43348173750517,43348173848821,43348173881589,43348173947125,43348174012661,43348174078197,43348174176501,43348174930165,43348176175349,43348176273653,43348176306421,43348176732405,43348176863477,43348176896245,43348177027317,43348177125621,43348177617141,43348180074741,43348180140277,43348180173045,43348180926709,43348181745909,43348181778677,43348182139125,43348262846709,43348262879477,43348262945013,43348263174389,43348263239925,43348263338229,43348263403765,43348263534837,43348263567605,43348263600373,43348263633141,43348263665909,43348263698677,43348263796981,43348263960821,43348263993589,43348264026357,43348264059125,43348264124661,43348264354037,43348264386805,43348264419573,43348264452341,43348264485109,43348359971061,43348360036597,43348360102133,43348360134901,43348360167669,43348360233205,43348360265973,43348360331509,43348360364277,43348360429813,43348360462581,43348360560885,43348360593653,43348360659189,43348360757493,43348360790261,43348361085173,43348361216245,43348361249013,43348361281781,43348361314549,43348361347317,43348361380085,43348361412853,43348361445621,43348361478389,43348361511157,43348361576693,43348361609461,43348361642229,43348361674997,43348361707765,43348361740533,43348361773301,43348361806069,43348361838837,43348361871605,43348362461429,43348362494197,43348362526965,43348362559733,43348362592501,43348362625269,43348362658037,43348362690805,43348362723573,43348362789109,43588711710965,43588711776501,43588713283829,43588713316597,43588713414901,43588720165109,43588720427253,43588720460021,43589024940277,43589025431797,43589025464565,43589025497333,43589025530101,43589026349301,43589026939125,43589029363957,43589029495029,43589029527797,43589029560565,43589029593333,43589029691637,43589032345845,43589032378613,43589368414453,43932024701173,43932061630709,43932062908661,43932229009653,43932231270645,43932278489333,43942286360821,43942286393589,43942286459125,43942300352757,43942307561717,43942308544757,43942308577525,43942308610293,43942346785013,43942347538677,43942347702517,43942347800821,43942348521717,43942348816629,43942348882165,43948651413749,43948660916469,43954599723253,43959568204021,43959571185909,43959571218677,43959572005109,43959572070645,43959572201717,43959577608437,43959577641205,43959581180149,43959590650101,43959590682869,43959591207157,43959592255733,43959592419573,43959594025205,43959594090741,43959594123509,43959595172085,43959595204853,43959596187893,43959597826293,43959599694069,43959600382197,43959600414965,43959601430773,43959604510965,43959606837493,43959606935797,43959607197941,43959607230709,43959614111989,43959614144757,43959614210293,43959615193333,43959615881461,43959616012533,43959616045301,43959616307445,43959616602357,43959616635125,43959616700661,43959618601205,43959619059957,43959620436213,43959620468981,43959620698357,43959620731125,43959620763893,43959621320949,43959622009077,43959622172917,43959622861045,43959623024885,43959623581941,43959624433909,43959625810165,43959626563829,43959626629365,43959627153653,43959627383029,43959627415797,43959627874549,43959627907317,43959627940085,43959628497141,43959628660981,43959629512949,43959629873397,43959630070005,43959631151349,43959631184117,43959632068853,43959632724213,43959633150197,43959633215733,43959633346805,43959633445109,43959633477877,43959633510645,43959633641717,43959633674485,43959633838325,43959633903861,43959633969397,43959634002165,43959634034933,43959634100469,43959634198773,43959634329845,43959634526453,43959634559221,43959634821365,43959634854133,43959634985205,43959635247349,43959635902709,43959636033781,43959637049589,43959637246197,43959637770485,43959637803253,43959638917365,43959639539957,43959639834869,43959641571573,43959641899253,43959642030325,43959642947829,43959643013365,43959644193013,43959644455157,43959644487925,43959644520693,43959644553461,43959645077749,43959645208821,43959646060789,43959646093557,43959646617845,43959646683381,43959646716149,43959646748917,43959646781685,43959646814453,43959646879989,43959647273205,43959647305973,43959647994101,43959648190709,43959648223477,43959648780533,43959648977141,43959649075445,43959649468661,43959650517237,43959651238133,43959651369205,43959651401973,43959652221173,43959652253941,43959652319477,43959652483317,43959652745461,43959652778229,43959652810997,43959652843765,43959653728501,43959653761269,43959653826805,43959653859573,43959653925109,43959654613237,43959654646005,43959654678773,43959654711541,43959654809845,43959654842613,43959654875381,43959654908149,43959654940917,43959654973685,43959655039221,43959655071989,43959655137525,43959655203061,43959655301365,43959655760117,43959655792885,43959655891189,43959655923957,43959655956725,43959656087797,43959657005301,43959657660661,43959657693429,43959657791733,43959657824501,43959658447093,43959659725045,43959660019957,43959660085493,43959660118261,43959660151029,43959660347637,43959660675317,43959660708085,43959660740853,43959661494517,43959661527285,43959661756661,43959661887733,43959662051573,43959662149877,43959662182645,43959662215413,43959662280949,43959662379253,43959662477557,43959662510325,43959662739701,43959662870773,43959663001845,43959663132917,43959663493365,43959663591669,43959663788277,43959663821045,43959663853813,43959664378101,43959664410869,43959664476405,43959664640245,43959665426677,43959665754357,43959665819893,43959665885429,43959665918197,43959665950965,43959666016501,43959666245877,43959666311413,43959666639093,43959668244725,43959668343029,43959668408565,43959668506869,43959668637941,43959668670709,43959669326069,43959669457141,43959669850357,43959669981429,43959670735093,43959671423221,43959671455989,43959671587061,43959671619829,43959671652597,43959671685365,43959672013045,43959673422069,43959691247861,43959691280629,43959691313397,43959691673845,43959691739381,43959692165365,43959692591349,43959692624117,43959692656885,43959692787957,43959692886261,43959693115637,43959693148405,43959693246709,43959693410549,43959693443317,43959693508853,43959693803765,43959694328053,43959694426357,43959694491893,43959694557429,43959694622965,43959694688501,43959694721269,43959694786805,43959694917877,43959695180021,43959695409397,43959695573237,43959695802613,43959695900917,43959696064757,43959696228597,43959696687349,43959697572085,43959697637621,43959697670389,43959697703157,43959697801461,43959697834229,43959698096373,43959698161909,43959698194677,43959698292981,43959698325749,43959698391285,43959698424053,43959698456821,43959698555125,43959698620661,43959698653429,43959698686197,43959699210485,43959699243253,43959699276021,43959699308789,43959699341557,43959699505397,43959699570933,43959699702005,43959700488437,43959700717813,43959700947189,43959701078261,43959701340405,43959701471477,43959701569781,43959701897461,43959702028533,43959702192373,43959702487285,43959702618357,43959702651125,43959702847733,43959703011573,43959703273717,43959703372021,43959703404789,43959704682741,43959704748277,43959705239797,43959705665781,43959706190069,43959706222837,43959706255605,43959706288373,43959706517749,43959709991157,43959710351605,43959712448757,43959712547061,43959713693941,43959714054389,43959717069045,43959717396725,43959717593333,43959720804597,43959720837365,43959721328885,43959721885941,43959721984245,43959722148085,43959723458805,43959723557109,43959723589877,43959723622645,43959723720949,43959724474613,43959724638453,43959724933365,43959724966133,43959724998901,43959725293813,43959725359349,43959726014709,43959726244085,43959726309621,43959726538997,43959726604533,43959726637301,43959726670069,43959726997749,43959728996597,43959729553653,43959730438389,43959731159285,43959731323125,43959732633845,43959732666613,43959732699381,43959733354741,43959735386357,43959735812341,43959735845109,43959735943413,43959736107253,43959736336629,43959736598773,43959736828149,43959736860917,43959736893685,43959737286901,43959737319669,43959737680117,43959739056373,43959739121909,43959739154677,43959739252981,43959739285749,43959740825845,43959741874421,43959742169333,43959742333173,43959742365941,43959742562549,43959742759157,43959742791925,43959743021301,43959743054069,43959743086837,43959743119605,43959743185141,43959743217909,43959743480053,43959743512821,43959743578357,43959744692469,43959744758005,43959744954613,43959746658549,43959746822389,43959746855157,43959747018997,43959747084533,43959747346677,43959747379445,43959747543285,43959748034805,43959748755701,43959748821237,43959748854005,43959748886773,43959748919541,43959748952309,43959749017845,43959749050613,43959749083381,43959749116149,43959749181685,43959749214453,43959749279989,43959749574901,43959749673205,43959749804277,43959749968117,43959750000885,43959750033653,43959750557941,43959750623477,43959750787317,43959751147765,43959751180533,43959751344373,43959751377141,43959751409909,43959751573749,43959751835893,43959751966965,43959752360181,43959752524021,43959752655093,43959752687861,43959752753397,43959752786165,43959753375989,43959753670901,43959753703669,43959753736437,43959753834741,43959753900277,43959753933045,43959753998581,43959754293493,43959754326261,43959754653941,43959754948853,43959755014389,43959755473141,43959755505909,43959755538677,43959755604213,43959755735285,43959755768053,43959755833589,43959755866357,43959756194037,43959756587253,43959756718325,43959756751093,43959757111541,43959757177077,43959757209845,43959757242613,43959757373685,43959757537525,43959757570293,43959757603061,43959757635829,43959757701365,43959757832437,43959757865205,43959757897973,43959757930741,43959758061813,43959758127349,43959758225653,43959759110389,43959759143157,43959760453877,43959760486645,43959760519413,43959761240309,43959761338613,43959761371381,43959761469685,43959761535221,43959761764597,43959761928437,43959762059509,43959762256117,43959762354421,43959762551029,43959762714869,43959762813173,43959763271925,43959763370229,43959763402997,43959763534069,43959763566837,43959763632373,43959763697909,43959763730677,43959764091125,43959764123893,43959764254965,43959764877557,43959765270773,43959765598453,43959765795061,43959765860597,43959765893365,43959765926133,43959766057205,43959766155509,43959766647029,43959766679797,43959766712565,43959767498997,43959767662837,43959767859445,43959767892213,43959768121589,43959768154357,43959768187125,43959768842485,43959768875253,43959769137397,43959769366773,43959769399541,43959769563381,43959769956597,43959770022133,43959770054901,43959770087669,43959770120437,43959770185973,43959770284277,43959770382581,43959770448117,43959770775797,43959772184821,43959772217589,43959774675189,43959774707957,43959774740725,43959774773493,43959775527157,43959775822069,43959775920373,43959775985909,43959776149749,43959776182517,43959776346357,43959776411893,43959776477429,43959776510197,43959777460469,43959777493237,43959777886453,43959778083061,43959778115829,43959778214133,43959778246901,43959778640117,43959778902261,43959778967797,43959779033333,43959779229941,43959779361013,43959779623157,43959779885301,43959780147445,43959780409589,43959780442357,43959780475125,43959780507893,43959781261557,43959781294325,43959781589237,43959783457013,43959784702197,43959784734965,43959785226485,43959785259253,43959785357557,43959785423093,43959785455861,43959785488629,43959785586933,43959785652469,43959785718005,43959785980149,43959786340597,43959786373365,43959786406133,43959786569973,43959786930421,43959787192565,43959787684085,43959787749621,43959787782389,43959787815157,43959787847925,43959787880693,43959787913461,43959787946229,43959787978997,43959788011765,43959788077301,43959788142837,43959788175605,43959788437749,43959789781237,43959790010613,43959790076149,43959790108917,43959790141685,43959790174453,43959790207221,43959790272757,43959790305525,43959790338293,43959790403829,43959790436597,43959790502133,43959790600437,43959790698741,43959790731509,43959790829813,43959790862581,43959790960885,43959790993653,43959791091957,43959791124725,43959791419637,43959791812853,43959791878389,43959791911157,43959791943925,43959792337141,43959792369909,43959792402677,43959792435445,43959792500981,43959792533749,43959792566517,43959792599285,43959792664821,43959792697589,43959792763125,43959792795893,43959792861429,43959792894197,43959792926965,43959792959733,43959792992501,43959793025269,43959793058037,43959793189109,43959793287413,43959793320181,43959793451253,43959793516789,43959794008309,43959794041077,43959794073845,43959794139381,43959794204917,43959794237685,43959794303221,43959794368757,43959794401525,43959794434293,43959794532597,43959794598133,43959794663669,43959794893045,43959794958581,43959794991349,43959795024117,43959795056885,43959795089653,43959795122421,43959795187957,43959795220725,43959795974389,43959796007157,43959796039925,43959796072693,43959796105461,43959796170997,43959796203765,43959796433141,43959796465909,43959796531445,43959796564213,43959796596981,43959796662517,43959796793589,43959796826357,43959796891893,43959797088501,43959797186805,43959797317877,43959797350645,43959797416181,43959797481717,43959797743861,43959797776629,43959798071541,43959798104309,43959798137077,43959798235381,43959798268149,43959798366453,43959798399221,43959798464757,43959798890741,43959799054581,43959799120117,43959799185653,43959799283957,43959799349493,43959799415029,43959799447797,43959799546101,43959799611637,43959799709941,43959799742709,43959799841013,43959799939317,43959800004853,43959800037621,43959800070389,43959800135925,43959800168693,43959800201461,43959800266997,43959800299765,43959800430837,43959800463605,43959800529141,43959801184501,43959801250037,43959801381109,43959801413877,43959801512181,43959801643253,43959801741557,43959801774325,43959801872629,43959801905397,43959801970933,43959802069237,43959802102005,43959802134773,43959802200309,43959802298613,43959802560757,43959803085045,43959803117813,43959803248885,43959803281653,43959803314421,43959803347189,43959803445493,43959803511029,43959803543797,43959803576565,43959803609333,43959803642101,43959803674869,43959803707637,43959803805941,43959804264693,43959804395765,43959804559605,43959804690677,43959804723445,43959804821749,43959804887285,43959805116661,43959805313269,43959805346037,43959805477109,43959805509877,43959805542645,43959805739253,43959805772021,43959805837557,43959805903093,43959805935861,43959806132469,43959806263541,43959806361845,43959806394613,43959806492917,43959806591221,43959806853365,43959806886133,43959806951669,43959806984437,43959807410421,43959807475957,43959807508725,43959807607029,43959807803637,43959807836405,43959807901941,43959808196853,43959808622837,43959808688373,43959808884981,43959809048821,43959809147125,43959809409269,43959809507573,43959809540341,43959809638645,43959809704181,43959809736949,43959809802485,43959810031861,43959810064629,43959810097397,43959810130165,43959810162933,43959810261237,43959810294005,43959810359541,43959810392309,43959810425077,43959810457845,43959810490613,43959810523381,43959810621685,43959810654453,43959810687221,43959810818293,43959810851061,43959810883829,43959810916597,43959811080437,43959811309813,43959811440885,43959811506421,43959811571957,43959811637493,43959811735797,43959811768565,43959811997941,43959812063477,43959812194549,43959812227317,43959812260085,43959812325621,43959812358389,43959812686069,43959812718837,43959812751605,43959812882677,43959812915445,43959813013749,43959813210357,43959813243125,43959813275893,43959813374197,43959813472501,43959813505269,43959813538037,43959813570805,43959813603573,43959813669109,43959813701877,43959813832949,43959813964021,43959813996789,43959814127861,43959814226165,43959814258933,43959814291701,43959814390005,43959814586613,43959814619381,43959814652149,43959814783221,43959814815989,43959814881525,43959814914293,43959815012597,43959815078133,43959815176437,43959815209205,43959815274741,43959815438581,43959815471349,43959815504117,43959815635189,43959815667957,43959815700725,43959815864565,43959815897333,43959816257781,43959816356085,43959816487157,43959816519925,43959816552693,43959816618229,43959816749301,43959816782069,43959816814837,43959817109749,43959817142517,43959817306357,43959817568501,43959817666805,43959817699573,43959817732341,43959817765109,43959817797877,43959817928949,43959818125557,43959818191093,43959818256629,43959818289397,43959818354933,43959818387701,43959818420469,43959818551541,43959818584309,43959818617077,43959818649845,43959818682613,43959819043061,43959819108597,43959819305205,43959819337973,43959819370741,43959819436277,43959819469045,43959819534581,43959819665653,43959819829493,43959820058869,43959820189941,43959820222709,43959820583157,43959820681461,43959820714229,43959820746997,43959820779765,43959820812533,43959820878069,43959820910837,43959821074677,43959821107445,43959821205749,43959821238517,43959821336821,43959821566197,43959821598965,43959821631733,43959821762805,43959821828341,43959822221557,43959822287093,43959822319861,43959822385397,43959822483701,43959822516469,43959822549237,43959822614773,43959822778613,43959823040757,43959823106293,43959823139061,43959823237365,43959823270133,43959823302901,43959823335669,43959823368437,43959823401205,43959823466741,43959823565045,43959823597813,43959823696117,43959823728885,43959823892725,43959823925493,43959823958261,43959824023797,43959824449781,43959824482549,43959824548085,43959824613621,43959824646389,43959824777461,43959824842997,43959824908533,43959824941301,43959825006837,43959825039605,43959825072373,43959825105141,43959825137909,43959825236213,43959825301749,43959825334517,43959825662197,43959825727733,43959825858805,43959825924341,43959825957109,43959826088181,43959826120949,43959826153717,43959826186485,43959826219253,43959826350325,43959826383093,43959826415861,43959826448629,43959826481397,43959826546933,43959826579701,43959826612469,43959826645237,43959826678005,43959826743541,43959826776309,43959826809077,43959826841845,43959826874613,43959826940149,43959826972917,43959827005685,43959827267829,43959827300597,43959827333365,43959827366133,43959827398901,43959827529973,43959827562741,43959827628277,43959827661045,43959827693813,43959827824885,43959827857653,43959827923189,43959827988725,43959828087029,43959828119797,43959828152565,43959828316405,43959828381941,43959828545781,43959828644085,43959828676853,43959828709621,43959828742389,43959828775157,43959828840693,43959829004533,43959829135605,43959829168373,43959829430517,43959829561589,43959829692661,43959829725429,43959829823733,43959830479093,43959830511861,43959830577397,43959830675701,43959830741237,43959830774005,43959830839541,43959830872309,43959830905077,43959830937845,43959830970613,43959831003381,43959831036149,43959831068917,43959831101685,43959831167221,43959831199989,43959831331061,43959831363829,43959831396597,43959831429365,43959831462133,43959831527669,43959831560437,43959831625973,43959831658741,43959831724277,43959831855349,43959831888117,43959831920885,43959831953653,43959831986421,43959832019189,43959832084725,43959832150261,43959832215797,43959832248565,43959832281333,43959832314101,43959832412405,43959832445173,43959832477941,43959832510709,43959832609013,43959832641781,43959832674549,43959832707317,43959832805621,43959832871157,43959833002229,43959833166069,43959833198837,43959833231605,43959833264373,43959833297141,43959833329909,43959833460981,43959833526517,43959833657589,43959833690357,43959833723125,43959833821429,43959834018037,43959834083573,43959834116341,43959834149109,43959834312949,43959834378485,43959834411253,43959834476789,43959834771701,43959834804469,43959834837237,43959834870005,43959834902773,43959834935541,43959835033845,43959835164917,43959835197685,43959835295989,43959835558133,43959835590901,43959835787509,43959835820277,43959836377333,43959836410101,43959836639477,43959836705013,43959836967157,43959836999925,43959837098229,43959837229301,43959837262069,43959837327605,43959837360373,43959837753589,43959837819125,43959837851893,43959837884661,43959837917429,43959837950197,43959838015733,43959838048501,43959838081269,43959838114037,43959838146805,43959838179573,43959838212341,43959838310645,43959838376181,43959838441717,43959838474485,43959838572789,43959838703861,43959838736629,43959838867701,43959838900469,43959839031541,43959839162613,43959839195381,43959839228149,43959839260917,43959839293685,43959839359221,43959839391989,43959839523061,43959839588597,43959839621365,43959839850741,43959839916277,43959839949045,43959839981813,43959840014581,43959840047349,43959840080117,43959840145653,43959840178421,43959840211189,43959840243957,43959840276725,43959840342261,43959840375029,43959840604405,43959840637173,43959840735477,43959840899317,43959841128693,43959841161461,43959841194229,43959841259765,43959841292533,43959841390837,43959841423605,43959841554677,43959841685749,43959841751285,43959841784053,43959841849589,43959841915125,43959841947893,43959841980661,43959842046197,43959842111733,43959842144501,43959842242805,43959842275573,43959842308341,43959842373877,43959842668789,43959842734325,43959842767093,43959842832629,43959842865397,43959842898165,43959842930933,43959843062005,43959843094773,43959843127541,43959843160309,43959843193077,43959843225845,43959843356917,43959843422453,43959843455221,43959843815669,43959843848437,43959843913973,43959843946741,43959843979509,43959844012277,43959844045045,43959844077813,43959844208885,43959844274421,43959844307189,43959844765941,43959844831477,43959844864245,43959844897013,43959844995317,43959845093621,43959845126389,43959845159157,43959845191925,43959845224693,43959845257461,43959845388533,43959845552373,43959845912821,43959845945589,43959845978357,43959846043893,43959846142197,43959846174965,43959846240501,43959846404341,43959846437109,43959846469877,43959846568181,43959846633717,43959846830325,43959846863093,43959846961397,43959846994165,43959847059701,43959847092469,43959847125237,43959847158005,43959847583989,43959847616757,43959847649525,43959847682293,43959847911669,43959847977205,43959848009973,43959848042741,43959848108277,43959848206581,43959848304885,43959848337653,43959848370421,43959848435957,43959848468725,43959848567029,43959848730869,43959848796405,43959848861941,43959848927477,43959848993013,43959849025781,43959849124085,43959849189621,43959849550069,43959849615605,43959849844981,43959849910517,43959850107125,43959850139893,43959850172661,43959850205429,43959850369269,43959850402037,43959850434805,43959850500341,43959850598645,43959850631413,43959850795253,43959850860789,43959850926325,43959851122933,43959851221237,43959851254005,43959851319541,43959851450613,43959852794101,43959852826869,43959852925173,43959852957941,43959853023477,43959853154549,43959853252853,43959853383925,43959853482229,43959853514997,43959853580533,43959853613301,43959853646069,43959853744373,43959853809909,43959853908213,43959853940981,43959853973749,43959854006517,43959854072053,43959854137589,43959854268661,43959854301429,43959854366965,43959854432501,43959854530805,43959854563573,43959854596341,43959854629109,43959854727413,43959854825717,43959854924021,43959854956789,43959854989557,43959855022325,43959855087861,43959855218933,43959855513845,43959855677685,43959855710453,43959855743221,43959855808757,43959855841525,43959855874293,43959856234741,43959856300277,43959856365813,43959856398581,43959856431349,43959856464117,43959856496885,43959856627957,43959856660725,43959856791797,43959856824565,43959856857333,43959856890101,43959856922869,43959856955637,43959856988405,43959857021173,43959857086709,43959857119477,43959857217781,43959857250549,43959857414389,43959857447157,43959857479925,43959857512693,43959857545461,43959857742069,43959857774837,43959857873141,43959857905909,43959858069749,43959858102517,43959858135285,43959858233589,43959858266357,43959858397429,43959858626805,43959858659573,43959858757877,43959858888949,43959858921717,43959859020021,43959859085557,43959859118325,43959859282165,43959859478773,43959859511541,43959859577077,43959859609845,43959859642613,43959859675381,43959859708149,43959859740917,43959859773685,43959859839221,43959860330741,43959860363509,43959860396277,43959860429045,43959860461813,43959860527349,43959860625653,43959860691189,43959860756725,43959860789493,43959860822261,43959860855029,43959861051637,43959861084405,43959861117173,43959861248245,43959861281013,43959861313781,43959861346549,43959861379317,43959861477621,43959861510389,43959861543157,43959861739765,43959861838069,43959861870837,43959861903605,43959861969141,43959862132981,43959862165749,43959862231285,43959862264053,43959862296821,43959862395125,43959862427893,43959862460661,43959862657269,43959862919413,43959863181557,43959863312629,43959863345397,43959863410933,43959863443701,43959863476469,43959863542005,43959863607541,43959863640309,43959863705845,43959863771381,43959863804149,43959863869685,43959863902453,43959863967989,43959864000757,43959864033525,43959864164597,43959864197365,43959864262901,43959864328437,43959864361205,43959864426741,43959864492277,43959864590581,43959864688885,43959864754421,43959864787189,43959864852725,43959864918261,43959864983797,43959865016565,43959865082101,43959865213173,43959865278709,43959865344245,43959865377013,43959865442549,43959865475317,43959865508085,43959865540853,43959865606389,43959865639157,43959865671925,43959865737461,43959865802997,43959866032373,43959866097909,43959866261749,43959866392821,43959866425589,43959866458357,43959866491125,43959866523893,43959866589429,43959866622197,43959866654965,43959866687733,43959866720501,43959866786037,43959866818805,43959866851573,43959866884341,43959867015413,43959867048181,43959867080949,43959867113717,43959867375861,43959867474165,43959867506933,43959867539701,43959867572469,43959867605237,43959867638005,43959867703541,43959867736309,43959867769077,43959867801845,43959867867381,43959867900149,43959867965685,43959867998453,43959868031221,43959868063989,43959868096757,43959868129525,43959868162293,43959868195061,43959868227829,43959868293365,43959869735157,43959870685429,43959870947573,43959870980341,43959871078645,43959871111413,43959871144181,43959871176949,43959871209717,43959871242485,43959871308021,43959871340789,43959871799541,43959872028917,43959872061685,43959872127221,43959872192757,43959872225525,43959872258293,43959872291061,43959872323829,43959872356597,43959872389365,43959872454901,43959872520437,43959872553205,43959872585973,43959872684277,43959872717045,43959872749813,43959872782581,43959872815349,43959872848117,43959872880885,43959872913653,43959872946421,43959872979189,43959873044725,43959873077493,43959873143029,43959873175797,43959873208565,43959873241333,43959873306869,43959873405173,43959873437941,43959873470709,43959873634549,43959873667317,43959873700085,43959873732853,43959873994997,43959874027765,43959874093301,43959874158837,43959874224373,43959874388213,43959874420981,43959874486517,43959874748661,43959875535093,43959876518133,43959876616437,43959877107957,43961241338101,43961241370869,43961241469173,43961241534709,43961241633013,43961241665781,43961241698549,43961241731317,43961241862389,43961241927925,43961241960693,43961242026229,43961242058997,43961242091765,43961242386677,43961242419445,43961242747125,43961242779893,43961243107573,43961243205877,43961243238645,43961243271413,43961243304181,43961243336949,43961243369717,43961243402485,43961243533557,43961243664629,43961244025077,43961244057845,43961244090613,43961244123381,43961244156149,43961244188917,43961244221685,43961244451061,43961244483829,43961244516597,43961244680437,43961244745973,43961256607989,43961256640757,43961256673525,43961257033973,43961257197813,43961257328885,43961257689333,43961257722101,43961257820405,43961257853173,43961257885941,43961257918709,43961258017013,43961259065589,43961259163893,43961259196661,43961259360501,43961259426037,43961259458805,43961259491573,43961259524341,43961259557109,43961259688181,43961259753717,43961259786485,43961259917557,43961259950325,43961259983093,43961260081397,43961260146933,43961260179701,43961260212469,43961260540149,43961260572917,43961260671221,43961260835061,43961260867829,43961260900597,43961260933365,43961261064437,43961261097205,43961261129973,43961261228277,43961261359349,43961261555957,43961261588725,43961261621493,43961261687029,43961261719797,43961261752565,43961261981941,43961262014709,43961262113013,43961262145781,43961262211317,43961262309621,43961262473461,43961262506229,43961262538997,43961262571765,43961262768373,43961262801141,43961265094901,43961265127669,43982621212917,43982621245685,43984616718581,43984701849845,43984702734581,43984967827701,43984967893237,43984967926005,43985380475125,43985380507893,43989712830709,43989712863477,43989712929013,43989713027317,43989713060085,43989713092853,43989713125621,44018332041461,44018332106997,44018332139765,44018332172533,44018332205301,44018332238069,44018332270837,44018332303605,44018332336373,44018332369141,44018332401909,44018332434677,44052949958901,44052950057205,44052950155509,44052950221045,44052950253813,44052950319349,44052950384885,44052950417653,44052950450421,44052950614261,44052950679797,44062293754101,44062293786869,44062293917941,44062294081781,44062294114549,44062294147317,44062294180085,44062294245621,44062294278389,44062294311157,44062294474997,44062294802677,44062294900981,44065408352501,44065408385269,44065408418037,44065408450805,44065408483573,44065408549109,44065408581877,44065408614645,44065408647413,44065408680181,44065408712949,44065408778485,44065408811253,44065408876789,44065408909557,44065408942325,44065408975093,44065409138933,44065410187509,44065410220277,44065410253045,44065410285813,44065410318581,44065410351349,44065410384117,44065410416885,44065410449653,44065410482421,44065410515189,44065410547957,44065410613493,44065410646261,44065410711797,44065410744565,44065410777333,44065410842869,44065410908405,44065411989749,44065412022517,44065412055285,44065412088053,44065412120821,44065412153589,44065412186357,44065412219125,44065412251893,44065412284661,44065412317429,44065412350197,44065412382965,44065412415733,44065412448501,44065412579573,44065412645109,44065412677877,44065412743413,44065412776181,44065412808949,44065412841717,44065412874485,44065412907253,44065412940021,44065413005557,44065413038325,44065413071093,44065413103861,44065413136629,44065413202165,44065413234933,44065413267701,44065413300469,44065413333237,44065413366005,44065413398773,44065413431541,44065413464309,44065413497077,44065413529845,44065413562613,44065413595381,44065413628149,44065413660917,44065413693685,44065413791989,44065413824757,44065413923061,44065413955829,44065413988597,44065414086901,44065414119669,44065414152437,44065414185205,44065414217973,44065414250741,44065414283509,44065414316277,44065414349045,44065414381813,44065414414581,44065414447349,44065414480117,44065414512885,44065414545653,44065414578421,44065414643957,44065414709493,44065414742261,44065414775029,44065414807797,44065414840565,44065414873333,44065414906101,44065415266549,44065415299317,44065415332085,44065415364853,44065415528693,44065416708341,44066759999733,44066760032501,44066760065269,44066764587253,44066764652789,44066764718325,44066764751093,44066764783861,44066764849397,44066764914933,44066764947701,44066764980469,44066765013237,44066765046005,44066765078773,44066765177077,44066765209845,44066765275381,44066765308149,44066765340917,44066765373685,44066765406453,44066765439221,44066765504757,44066765537525,44066765570293,44066765603061,44066765635829,44066765701365,44066765734133,44066765897973,44066765930741,44066765963509,44066765996277,44066766029045,44066766094581,44066766127349,44066766160117,44073394307317,44073394340085,44073394405621,44073394634997,44073394667765,44088466669813,44088466702581,44088466735349,44088466768117,44088466833653,44088466866421,44088466899189,44088466931957,44088466964725,44088466997493,44088467030261,44088467063029,44088467095797,44088467161333,44088467226869,44088467259637,44088467292405,44088467325173,44088467357941,44088467390709,44088467423477,44088467456245,44088467489013,44088467554549,44088467587317,44088467620085,44088467652853,44088467685621,44088492818677,44088492851445,44088492884213,44088492916981,44088492949749,44088492982517,44088493015285,44088493080821,44088493113589,44088493179125,44088493211893,44088498913525,44088498946293,44088498979061,44088499011829,44095255970037,44095256002805,44095256068341,44095263244533,44096487882997,44096487948533,44108673155317,44108673220853,44108673253621,44108673384693,44108673417461,44108673548533,44108673581301,44108673614069,44108712050933,44108712083701,44108712149237,44136311718133,44136311750901,44136311783669,44136311816437,44136311881973,44136311914741,44136311980277,44136312013045,44136347468021,44136347500789,44136347566325,44136347599093,44136347664629,44136347762933,44136347795701,44136347828469,44136347861237,44136347894005,44136347926773,44136347959541,44136348090613,44136348123381,44136348156149,44136348188917,44136386167029,44136386232565,44136486633717,44136486666485,44136487059701,44136487092469,44136487158005,44136487223541,44136487289077,44136487321845,44136487354613,44136487387381,44136487420149,44136487551221,44136487583989,44136487616757,44136578056437,44136578089205,44136578121973,44136578154741,44136578187509,44136578253045,44136578318581,44136578449653,44136578515189,44136578547957,44136578580725,44136578646261,44136578711797,44136578744565,44136578777333,44136578810101,44136578875637,44136578908405,44136578941173,44136579006709,44136579039477,44136579105013,44136579170549,44136579268853,44136579301621,44136579334389,44136579367157,44136579399925,44136579465461,44136579498229,44136579530997,44136579563765,44136579596533,44136579662069,44136579694837,44136579727605,44136579760373,44136579793141,44136579825909,44136579858677,44136579891445,44136579924213,44136579989749,44136580055285,44136580088053,44136580120821,44136585134325,44136679375093,44136679473397,44136705425653,44151014195445,44151014228213,44151014260981,44151345545461,44151345578229,44151345610997,44151345643765,44151345676533,44151345709301,44151345742069,44151345774837,44151351836917,44152426135797,44152426234101,44157232021749,44157232251125,44157232283893,44157232382197,44157267575029,44159655870709,44168696398069,44168696496373,44168696561909,44168696594677,44168696660213,44168696725749,44168696824053,44182152151285,44182152216821,44182152249589,44182152282357,44196199137525,44196199170293,44196199203061,44196203036917,44196531142901,44196531175669,44196531208437,44196531241205,44196531273973,44196531306741,44201396568309,44201482977525,44219955544309,44219955577077,44219955642613,44219955675381,44219955708149,44219955740917,44219955773685,44219955806453,44224538181877,44226274361589,44226274394357,44227634888949,44230296699125,44237898514677,44237898678517,44237905199349,44237905232117,44242402935029,44242402967797,44243107381493,44243107512565,44243107545333,44247202726133,44247202758901,44247202791669,44247202824437,44247202857205,44247202889973,44247202922741,44247202955509,44247202988277,44247203021045,44247203053813,44247203086581,44247203119349,44247203152117,44247203184885,44269354385653,44269512360181,44269512687861,44269512720629,44269512818933,44269567836405,44269567869173,44269567901941,44269567934709,44271144861941,44271144894709,44271144927477,44271144993013,44271145058549,44271500853493,44271500886261,44272649109749,44272649142517,44321439088885,44321439121653,44322662842613,44322662875381,44322662940917,44322681487605,44323460219125,44323460251893,44323460284661,44326423265525,44326423298293,44326423331061,44326423363829,44326423396597,44326423429365,44326423462133,44327109918965,44329353380085,44330076700917,44341328838901,44341533901045,44341533933813,44341533966581,44341533999349,44341534032117,44341534064885,44341534097653,44341534130421,44341534163189,44341534195957,44341534228725,44341534261493,44341534294261,44343670374645,44343811866869,44343811899637,44343867932917,44343869538549,44343873667317,44343875371253,44347930771701,44347930804469,44347933163765,44351279038709,44351416664309,44351587516661,44352391610613,44352391643381,44354836857077,44354900623605,44354900656373,44362153230581,44362153263349,44362153296117,44362263691509,44367176302837,44367176335605,44367176368373,44367176401141,44399866577141,44399866609909,44399866642677,44399866675445,44399866708213,44402690818293,44402690851061,44402690883829,44402690916597,44402690949365,44402690982133,44403163627765,44403163660533,44416201621749,44416900628725,44416900661493,44416900694261,44416900727029,44416900759797,44416900792565,44416900825333,44422296830197,44422296928501,44422296961269,44423012778229,44425758015733,44428075172085,44428428607733,44428428640501,44428428673269,44433686069493,44433686102261,44450774286581,44451086467317,44452061708533,44452061741301,44458048651509,44458048717045,44458048749813,44458048782581,44458048815349,44458048848117,44458048880885,44459241996533,44459242029301,44459242062069,44459242094837,44459460526325,44459460690165,44463169405173,44463813984501,44464040018165,44464040050933,44464040083701,44464040116469,44467524042997,44467659014389,44467671662837,44467782189301,44468603355381,44468614988021,44469174173941,44469174206709,44469174239477,44482389573877,44482648604917,44482763948277,44482763981045,44482764079349,44487760773365,44488638136565,44488638169333,44488735424757,44488743846133,44488822784245,44488822817013,44489003729141,44494760837365,44494760870133,44494760902901,44494760935669,44494760968437,44494761001205,44494761033973,44494761066741,44494761099509,44495966765301,44500463124725,44500463157493,44500463190261,44500463288565,44500463321333,44500463354101,44500463386869,44500463517941,44500463550709,44500463583477,44500700856565,44501315092725,44501315125493,44501315387637,44506899710197,44524989219061,44539496431861,44549189337333,44549189370101,44554461348085,44573149790453,44573542482165,44573542547701,44581210915061,44581211144437,44581211341045,44581211373813,44581211406581,44581211439349,44581211865333,44581211930869,44581211963637,44581211996405,44588441141493,44588441174261,44593729732853,44593729765621,44593729962229,44593729994997,44593730191605,44593800839413,44593800872181,44593988174069,44594007081205,44602236895477,44602236928245,44602236961013,44608015171829,44608015204597,44615803470069,44615803502837,44615877329141,44624923853045,44624923885813,44631879090421,44651058987253,44653011927285,44653011960053,44657299521781,44657330454773,44657333862645,44661940060405,44661940093173,44662337732853,44662794092789,44670100275445,44681823944949,44699399520501,44699871707381,44699871740149,44700738945269,44701284466933,44727089889525,44727089922293,44738320793845,44738320826613,44739289710837,44739289743605,44739289776373,44740551016693,44741100372213,44744199373045,44744199405813,44744698560757,44744698593525,44744698626293,44744698659061,44744698888437,44744986886389,44745088106741,44775605043445,44785084104949,44785108091125,44785108123893,44785108189429,44792453464309,44814414217461,44814414250229,44815723036917,44824916721909,44824916754677,44825788514549,44825788612853,44825788809461,44829204283637,44829204316405,44829204349173,44829204381941,44829965779189,44834173812981,44834173845749,44859163508981,44859163541749,44859163574517,44859163607285,44859163836661,44859949678837,44859949711605,44879569322229,44886726902005,44886726934773,44886726967541,44886727000309,44886727164149,44886727196917,44887123853557,44887123886325,44887123919093,44887124639989,44924154839285,44924154937589,44924938027253,44924938354933,44924938486005,44924939403509,44924940026101,44927463686389,44927463751925,44927463784693,44939366367477,44958908645621,44958908678389,44959504466165,44959504498933,44959504531701,44959504564469,44959602082037,44959788269813,44967023280373,44967023313141,44967023345909,44967023378677,45005590855925,45013814870261,45028280664309,45048087314677,45048087347445,45048087380213,45048087412981,45049834275061,45049834307829,45049834340597,45049834569973,45049834635509,45049834832117,45050536198389,45050536231157,45050536263925,45050536296693,45050537279733,45062367346933,45062367412469,45062367445237,45062394118389,45063640482037,45063640514805,45108491223285,45108491256053,45108491288821,45108492468469,45109475115253,45134057242869,45134057275637,45134057308405,45134966751477,45134966784245,45134966817013,45134966849781,45134966882549,45134966915317,45134966948085,45150353555701,45150353588469,45182903058677,45192307441909,45192307474677,45192307507445,45192307540213,45204255375605,45204255408373,45221431083253,45250936504565,45250936537333,45251525869813,45251566043381,45251772088565,45259008016629,45259294671093,45259294703861,45259294736629,45267545227509,45267545260277,45267545293045,45272046371061,45274299597045,45274304381173,45274304413941,45297077027061,45297077059829,45297077092597,45304130633973,45304184799477,45313699938549,45313852801269,45318620872949,45346848375029,45346848407797,45350668239093,45368049598709,45368049631477,45368049795317,45373757489397,45373757554933,45374406557941,45374406590709,45374406623477,45374406656245,45374406721781,45374406754549,45380893147381,45380893180149,45401551438069,45401978831093,45402732495093,45402732560629,45402732593397,45402732626165,45402732658933,45402732691701,45402732757237,45402732790005,45402732822773,45402732855541,45402732888309,45402732921077,45402732953845,45406144856309,45407103287541,45407103353077,45409810809077,45409810841845,45415761019125,45415761051893,45415761084661,45415761117429,45482283368693,45491971916021,45492018938101,45493330772213,45493330804981,45493330837749,45493330870517,45493330903285,45493353349365,45494024765685,45507743318261,45507743351029,45512620998901,45512824291573,45512824324341,45512824357109,45518700871925,45524128170229,45529072533749,45529081872629,45535422480629,45535422513397,45540030939381,45540030972149,45540031037685,45540031070453,45540031103221,45540031135989,45540031168757,45540031201525,45540031234293,45540031267061,45540031299829,45540031332597,45540031365365,45540031398133,45540843847925,45540849647861,45540862198005,45553180999925,45553189945589,45553221665013,45553221697781,45553370038517,45553370071285,45553668391157,45558814966005,45558815031541,45562532462837,45563704017141,45563704049909,45571044638965,45571044671733,45584792551669,45584792584437,45584792649973,45584792682741,45586901762293,45587089293557,45587089326325,45587250544885,45591230644469,45591251321077,45591256465653,45598730813685,45598934630645,45598951309557,45599615025397,45610981916917,45611019403509,45611708481781,45623813898485,45623813931253,45625276694773,45625344229621,45625401278709,45625422741749,45631468929269,45631468962037,45631468994805,45631602589941,45631602622709,45644353896693,45644353929461,45644353962229,45644353994997,45644354027765,45644738855157,45644738887925,45647942582517,45654062661877,45654062694645,45654403678453,45654835069173,45654835101941,45654835134709,45659628798197,45659628830965,45670612861173,45674338484469,45674899177717,45676938625269,45676938658037,45680708354293,45680708387061,45680708419829,45680708452597,45680708485365,45680708518133,45680708583669,45680708649205,45680708681973,45680708714741,45680708747509,45680708780277,45681600168181,45681600200949,45695372689653,45695372722421,45695372755189,45695372787957,45695372820725,45697885470965,45700908777717,45700908843253,45700908876021,45700908908789,45701256249589,45704159854837,45704159887605,45704465776885,45704546320629,45706188095733,45706188128501,45714005983477,45714149834997,45714296144117,45716574241013,45716767310069,45716767375605,45717203615989,45719137550581,45719137583349,45719137648885,45724320301301,45730808365301,45732146151669,45732146184437,45735618806005,45741763657973,45742305902837,45742305935605,45744595173621,45744595206389,45744595239157,45744595271925,45744595304693,45744703701237,45744873570549,45744873636085,45756360982773,45756361015541,45756361048309,45756361081077,45756574761205,45756574793973,45756574826741,45756945465589,45756945498357,45756945531125,45756948578549,45757443604725,45757443637493,45757443670261,45757443703029,45757602103541,45757602136309,45764615700725,45765778440437,45766382125301,45766382158069,45766644269301,45766644334837,45768809939189,45768809971957,45768810004725,45775435727093,45775435792629,45775435825397,45775435923701,45775435956469,45775435989237,45778442944757,45782734602485,45782748463349,45782796599541,45782796632309,45782796665077,45783558062325,45783861330165,45783861362933,45783908581621,45788877422837,45788969533685,45789277815029,45789277847797,45789277880565,45789282500853,45792911524085,45793491615989,45793876803829,45794103623925,45794103689461,45797168709877,45797168742645,45797197283573,45798182027509,45803062231285,45803130781941,45803226824949,45803301437685,45805476446453,45805476479221,45805520027893,45805520060661,45808583278837,45810953715957,45810953748725,45848783225077,45849156976885,45855503646965,45857456062709,45859329474805,45860326670581,45860390666485,45862014091509,45862078251253,45862389088501,45868997443829,45869071335669,45869561970933,45869627769077,45872462266613,45872483827957,45872527573237,45875081904373,45875338805493,45875507036405,45879521181941,45879521247477,45882046382325,45889225785589,45891793617141,45891934650613,45891934683381,45895412220149,45899160092917,45903302983925,45903303016693,45903303049461,45903343845621,45903343878389,45911519920373,45911597351157,45916450357493,45916629008629,45916665872629,45916987097333,45922661236981,45925761024245,45926151717109,45929335095541,45929487335669,45929521053941,45930272096501,45932489638133,45935184019701,45935221539061,45937125949685,45937382621429,45953963852021,45953963884789,45962030809333,45962169516277,45962551787765,45963494424821,45969821237493,45969930715381,45969972461813,45970064408821,45978632749301,45980351004917,45980359753973,45980374171893,45980382462197,45980382494965,45980401697013,45980452651253,45989936627957,45990147096821,45990319816949,45995420745973,45997441908981,45997538279669,45997594018037,46003619987701,46003853394165,46003875873013,46003883704565,46013472178421,46013527064821,46013602267381,46013952917749,46013952983285,46013963075829,46014001217781,46015332024565,46022051496181,46022067847413,46024959361269,46028489097461,46030865236213,46031667790069,46031712420085,46035000787189,46042492436725,46046530830581,46046596858101,46048461750517,46048486392053,46048690766069,46048743162101,46048790839541,46050511454453,46050544779509,46053079351541,46053204132085,46053221957877,46078139891957,46078379786485,46088202158325,46088512340213,46088541733109,46088738078965,46088759050485,46088784445685,46088885371125,46089040888053,46089100525813,46089141190901,46091575492853,46091596824821,46091602952437,46099854131445,46100359119093,46100434125045,46100445921525,46100567458037,46107881930997,46107921154293,46115525886197,46151256080629,46151354319093,46154395877621,46154534093045,46157171065077,46171607171317,46171704787189,46171754987765,46172000780533,46172142829813,46175598215413,46191551545589,46193806442741,46193881743605,46195665633525,46195686113525,46225062887669,46225088970997,46281785835765,46282107158773,46282337845493,46282783785205,46293650276597,46293720301813,46379227545845,46379235836149,46379242717429,46380831899893,46396097396981],"updated_at":"2025-02-16T04:22:45Z"};window._RestockRocketConfig.cachedInStockVariantIds = { in_stock_variant_ids: [] };window._RestockRocketConfig.cachedOutOfStockVariantIds = { out_of_stock_variant_ids: [] };window._RestockRocketConfig.cachedVariantPreorderLimits = { variant_preorder_limits: {} };window._RestockRocketConfig.cachedVariantShippingTexts = { variant_shipping_texts: {} };window._RestockRocketConfig.sellingPlans = [];(function() {
      const cachedData = {"plans":[],"disabled_plan_ids":[],"cached_at":"2026-02-18T08:34:13Z"};

      if (cachedData && typeof cachedData === 'object' && cachedData.cached_at) {
        // Find the maximum updated_at from all items in old array
        const oldPlans = window._RestockRocketConfig.sellingPlans;
        const maxUpdatedAt = Array.isArray(oldPlans) && oldPlans.length > 0
          ? oldPlans.reduce(function(max, plan) {
              // Parse dates for proper comparison (handles mixed ISO formats)
              if (plan.updated_at) {
                const planDate = new Date(plan.updated_at);
                const maxDate = max ? new Date(max) : null;
                return (!maxDate || (planDate && !isNaN(planDate) && planDate > maxDate)) ? plan.updated_at : max;
              }
              return max;
            }, '')
          : null;

        // Use cached if old array is empty/has no timestamps, or cached is newer
        // Parse dates for comparison to handle format differences (+00:00 vs .000Z)
        const cachedDate = new Date(cachedData.cached_at);
        const maxDate = maxUpdatedAt ? new Date(maxUpdatedAt) : null;
        const useCached = !maxUpdatedAt || (cachedDate && !isNaN(cachedDate) && (!maxDate || cachedDate > maxDate));

        if (useCached) {
          if (Array.isArray(cachedData.plans)) {
            window._RestockRocketConfig.sellingPlans = cachedData.plans;
            // Only use disabled_plan_ids when using cached plans
            window._RestockRocketConfig.disabledSellingPlanIds = cachedData.disabled_plan_ids || [];
            console.debug('[RR] Using selling plans from cachedSellingPlans (cached_at: ' + cachedData.cached_at + ')');
          }
        } else {
          // When using old format (stale cache), don't trust disabled_plan_ids
          window._RestockRocketConfig.disabledSellingPlanIds = [];
          console.debug('[RR] Using selling plans from old format (max updated_at: ' + maxUpdatedAt + ')');
        }
      }
    })();window._RestockRocketConfig.enabledNotifyMeVariantIds = [];window._RestockRocketConfig.disabledNotifyMeVariantIds = [];window._RestockRocketConfig.backInStockTemplates = [];window._RestockRocketConfig.restockNotes = {};window._RestockRocketConfig.integrations = [];window._RestockRocketConfig.obfuscateInventoryQuantity = false;window._RestockRocketConfig.scriptUrlProduct = 'https://cdn.shopify.com/extensions/019ea604-5871-7fd9-9a64-ed7c19366c7a/restockrocket-1-526/assets/restockrocket-product.js'
  window._RestockRocketConfig.scriptUrlCollection = 'https://cdn.shopify.com/extensions/019ea604-5871-7fd9-9a64-ed7c19366c7a/restockrocket-1-526/assets/restockrocket-collection.js'
  window._RestockRocketConfig.scriptHost = window._RestockRocketConfig.scriptUrlProduct.substring(0, window._RestockRocketConfig.scriptUrlProduct.lastIndexOf('/') + 1)
  window._RestockRocketConfig.host = 'https://app.restockrocket.io'

  // Deployed extension build number, read from the CDN asset host Shopify generates:
  //   https://cdn.shopify.com/extensions/<uuid>/<handle>-<version>/assets/...
  // Trailing digits (e.g. ".../restockrocket-1-521/assets/" -> "521"). Kept numeric to
  // match ParseStoqData, so funnel app_version lines up with the order-attribution
  // app_version. Reflects the ACTUAL deployed build. This is the SINGLE source of the
  // parsed version — preorder.js getAppVersion() reads it back off config rather than
  // re-parsing, so the regex lives in exactly one place.
  try {
    const _stoqVersionMatch = window._RestockRocketConfig.scriptHost.match(/(\d+)\/?(?:assets\/?)?$/);
    window._RestockRocketConfig.appVersion = (_stoqVersionMatch && _stoqVersionMatch[1]) || '';
  } catch (e) {
    window._RestockRocketConfig.appVersion = '';
  }

  const SETTINGS_CACHE_DURATION = 15 * 60 * 1000; // 15 minutes in milliseconds
  const LIQUID_CACHE_MAX_AGE = 15 * 60; // 15 minutes in seconds

  // Calculate Liquid cache freshness once at initialization
  const liquidRenderedAt = window._RestockRocketConfig.liquidRenderedAt;

  // Validate timestamp and calculate cache age
  if (!liquidRenderedAt || typeof liquidRenderedAt !== 'number' || isNaN(liquidRenderedAt)) {
    console.debug('STOQ - Invalid or missing liquidRenderedAt timestamp, assuming fresh');
    window._RestockRocketConfig.isLiquidCacheFresh = true;
    window._RestockRocketConfig.liquidCacheAge = null;
  } else {
    const now = Math.floor(Date.now() / 1000); // Current time in seconds
    const liquidCacheAge = now - liquidRenderedAt; // Age in seconds
    // Surfaced into funnel events: a stale cache means the app rendered with
    // outdated inventory/selling-plan data — a real "had the opportunity but
    // failed" cause. Negative (client clock ahead) clamps to 0.
    window._RestockRocketConfig.liquidCacheAge = Math.max(0, liquidCacheAge);

    // Handle client clock ahead of server
    if (liquidCacheAge < 0) {
      console.debug(`STOQ - Client clock appears ahead of server by ${Math.abs(Math.round(liquidCacheAge / 60))} minutes, assuming cache fresh`);
      window._RestockRocketConfig.isLiquidCacheFresh = true;
    } else if (liquidCacheAge <= LIQUID_CACHE_MAX_AGE) {
      console.debug(`STOQ - Liquid cache is fresh (${Math.round(liquidCacheAge / 60)} minutes old)`);
      window._RestockRocketConfig.isLiquidCacheFresh = true;
    } else {
      console.debug(`STOQ - Liquid cache is stale (${Math.round(liquidCacheAge / 60)} minutes old, max ${Math.round(LIQUID_CACHE_MAX_AGE / 60)} minutes)`);
      window._RestockRocketConfig.isLiquidCacheFresh = false;
    }
  }

  function checkSettingsExpiry(settings) {
    try {
      if (!settings || !settings.updated_at) {
        console.debug('STOQ - Invalid settings data structure');
        return null;
      }

      if (!settings.cache) {
        console.debug('STOQ - settings caching disabled');
        return null;
      }

      // Check if translations are enabled but missing from cache
      // This handles the backfill period where DB has translations but metafield doesn't
      if (settings.multi_language_enabled) {
        if (!settings.translations) {
          // Translations enabled but no translation data in metafield
          // Metafield hasn't been backfilled yet - force refresh
          console.debug('STOQ - multi-language enabled but no translation data in cache, fetching fresh');
          return null;
        }

        // Translations object exists in metafield - cache is valid
        // If current locale isn't translated, applyTranslations will gracefully use default locale from base fields
        if (window._RestockRocketConfig.normalizedLocale &&
            !Object.prototype.hasOwnProperty.call(settings.translations, window._RestockRocketConfig.normalizedLocale)) {
          console.debug('STOQ - locale not explicitly translated, will use default language from cache');
        }
        // Don't return null - continue using cache even for untranslated locales
      }

      const updatedAt = new Date(settings.updated_at);
      if (isNaN(updatedAt.getTime())) {
        console.debug('STOQ - Invalid updated_at date format in settings');
        return null;
      }

      const age = Date.now() - updatedAt.getTime();
      if (age < SETTINGS_CACHE_DURATION) {
        console.debug('STOQ - settings changed recently, skipping cache');
        return null;
      }

      return settings;
    } catch (error) {
      console.debug('STOQ - Error checking settings cache:', error);
      return null;
    }
  }

  function createRestockRocketContainer() {
    const restockRocketContainer = document.createElement('div');
    restockRocketContainer.id = 'restock-rocket';
    document.body.appendChild(restockRocketContainer);
  }

  function createRestockRocketScript(scriptUrl) {
    const restockRocketScriptElement = document.createElement('script');
    restockRocketScriptElement.setAttribute('defer', 'defer');
    restockRocketScriptElement.src = scriptUrl;
    document.body.appendChild(restockRocketScriptElement);
  }

  createRestockRocketContainer()

  console.debug('STOQ - extension activated')

  // Fire stoq_initialized once per page load so the funnel pipeline has a definitive
  // "our code ran on this page" signal independent of any customer interaction.
  // Detected variants: the variants present in this page's Liquid context (product page has them;
  // collection/index/etc. don't expose variants from Liquid). Used to disambiguate "embed didn't
  // load" vs "embed loaded but the variant wasn't a preorder/BIS candidate" in order debug.
  try {
    const _stoqInitConfig = window._RestockRocketConfig;
    const _stoqDetectedVariantIds = (_stoqInitConfig.product && Array.isArray(_stoqInitConfig.product.variants))
      ? _stoqInitConfig.product.variants.map(function(v) { return v.id })
      : [];
    const _stoqSelectedVariantId = _stoqInitConfig.selected_variant_id;
    Shopify?.analytics?.publish?.('stoq_initialized', {
      cart_token: _stoqInitConfig.cartToken || '',
      page_url: window.location.href,
      page_type: _stoqInitConfig.pageType || '',
      shop_domain: _stoqInitConfig.shop || '',
      market_id: _stoqInitConfig.marketId || '',
      detected_variant_ids: _stoqDetectedVariantIds,
      selected_variant_id: _stoqSelectedVariantId || '',
      liquid_rendered_at: _stoqInitConfig.liquidRenderedAt || 0,
      app_version: _stoqInitConfig.appVersion || '',
      liquid_cache_age: _stoqInitConfig.liquidCacheAge,
      // Selected variant's stock posture as our app saw it at render — explains
      // whether we *should* have treated it as a preorder candidate.
      inventory_policy: (_stoqInitConfig.variantsInventoryPolicy || {})[_stoqSelectedVariantId] || '',
      inventory_quantity: (_stoqInitConfig.variantsInventoryQuantity || {})[_stoqSelectedVariantId],
    });
  } catch (e) {
    console.debug('STOQ - stoq_initialized publish failed:', e);
  }

  function applyTranslations(settings) {
    try {
      // Skip translation logic entirely if multi-language is not enabled
      if (!settings || !settings.multi_language_enabled) {
        return settings;
      }

      if (!settings.translations) {
        console.debug('STOQ - No translations found, skipping translation');
        return settings;
      }

      const normalizedLocale = window._RestockRocketConfig.normalizedLocale;
      const translations = settings.translations;

      if (!normalizedLocale) {
        // No matching locale has translations; drop payload to save memory
        console.debug('STOQ - No matching locale for translations. Available:', Object.keys(translations || {}));
        delete settings.translations;
        return settings;
      }

      console.debug(`STOQ - Applying translations for normalized locale: ${normalizedLocale} (original: ${window._RestockRocketConfig.locale})`);

      const translatedFields = translations[normalizedLocale];
      if (translatedFields && typeof translatedFields === 'object') {
        Object.keys(translatedFields).forEach(function(key) {
          const value = translatedFields[key];
          if (value !== null && value !== undefined && value !== '') {
            settings[key] = value;
          }
        });
      } else {
        console.debug('STOQ - No translated fields found for locale:', normalizedLocale);
      }

      delete settings.translations;
      return settings;
    } catch (e) {
      console.debug('STOQ - error applying translations:', e);
      return settings;
    }
  }

  // Setup event listener for cart selling plan updates
  // This must be called before any scripts are loaded to avoid race conditions
  function setupCartSellingPlanUpdater(settings) {
    // Setup listener regardless - updateCartSellingPlans has its own guards
    // This ensures cleanup happens even when preorders are disabled globally
    // Listen for stoq:inventory-data-loaded event dispatched by api.js
    window.addEventListener('stoq:inventory-data-loaded', function(event) {
      console.debug('STOQ - Inventory data loaded, updating cart selling plans');
      if (window._RestockRocket && window._RestockRocket.updateCartSellingPlans) {
        window._RestockRocket.updateCartSellingPlans()
          .then(hasUpdates => {
            if (hasUpdates) {
              console.debug('STOQ - cart selling plans updated successfully');
            } else {
              console.debug('STOQ - no cart selling plan updates needed');
            }
          })
          .catch(error => {
            console.error('STOQ - error updating cart selling plans:', error);
          });
      }
    });
  }

  // First try to get settings from metafields with expiry check
  const cachedSettings = window._RestockRocketConfig.cachedSettings;
  const validCachedSettings = cachedSettings ? checkSettingsExpiry(cachedSettings) : null;

  if (validCachedSettings) {
    console.debug('STOQ - using cached settings');
    initializeScripts(validCachedSettings);
  } else {
    console.debug('STOQ - fetching fresh settings');
    const headers = {
      'X-Shopify-Shop-Domain': window._RestockRocketConfig.shop || window.Shopify.shop,
      'ngrok-skip-browser-warning': 'skip'
    };

    if (window.Shopify?.theme?.role === 'main') {
      headers['X-Shopify-Theme-Schema-Name'] = window.Shopify.theme.schema_name;
      headers['X-Shopify-Theme-Schema-Version'] = window.Shopify.theme.schema_version;
      headers['X-Shopify-Theme-Store-Id'] = window.Shopify.theme.theme_store_id;
    }

    fetch(
      `${window._RestockRocketConfig.host}/api/v1/setting.json?translation_locale=${window._RestockRocketConfig.normalizedLocale}`,
      { headers }
    )
    .then(function(response) {
      if (!response.ok) {
        throw new Error('Network response was not ok');
      }
      return response.json();
    })
    .then(function(settings) {
      initializeScripts(settings);
    })
    .catch(function(error) {
      // If request failed and we have cached settings (even if expired), use them as fallback
      if (cachedSettings) {
        console.debug('STOQ - using expired cached settings as fallback');
        initializeScripts(cachedSettings);
      } else {
        console.error('STOQ - failed to load settings:', error);
      }
    })
    .catch(function(e) {
      console.error(e)
    })
  }

  function fetchEmbedConfig(endpoint, apply) {
    return fetch(
      `${window._RestockRocketConfig.host}/api/v1/embed/${endpoint}.json`,
      {
        headers: {
          'X-Shopify-Shop-Domain': window._RestockRocketConfig.shop || window.Shopify.shop,
          'ngrok-skip-browser-warning': 'skip'
        }
      }
    )
    .then(function(response) {
      if (!response.ok) throw new Error(`Failed to fetch ${endpoint}`);
      return response.json();
    })
    .then(function(data) {
      try {
        apply(data);
      } catch (applyError) {
        // Apply failures are programming bugs (e.g. response shape changed
        // server-side and the assignment threw). Surface them as console.error
        // so they're visible in browser logs, then re-throw to fall through
        // to the same Liquid-cached fallback as a fetch failure.
        console.error('STOQ - apply failed for ' + endpoint + ':', applyError);
        throw applyError;
      }
    })
    .catch(function(error) {
      console.debug(`STOQ - using cached ${endpoint}:`, error.message);
    });
  }

  function initializeScripts(settings) {
    settings = applyTranslations(settings);
    window._RestockRocketConfig.settings = settings;
    console.debug(`STOQ - settings configured for ${window._RestockRocketConfig.pageType}`);

    // Stale-Liquid resilience (default-on, per-shop opt-out via the
    // `disable_refresh_on_stale_liquid` Toggle, surfaced as the negative
    // `disable_refresh_on_stale_liquid` flag in settings.json so that
    // `undefined` -- in CDN-cached metafield payloads that predate this
    // key -- reads as `!undefined === true` and gets default-on behavior
    // immediately, no metafield rewrite required).
    // When the Liquid CDN cache is older than LIQUID_CACHE_MAX_AGE the in-page
    // selling_plans / integrations metafields can be wrong; refresh both from
    // the API before launching scripts. Race against a 1000ms timeout so a slow
    // API can't block init indefinitely. If the timeout wins, the in-flight
    // fetches still complete and update window._RestockRocketConfig — the
    // bundle re-reads sellingPlans/integrations on every interaction, so the
    // late-arriving values benefit subsequent renders even though the first
    // paint may use the Liquid-cached values. On any failure the existing
    // Liquid-loaded values stay in place via fetchEmbedConfig's catch.
    if (!window._RestockRocketConfig.isLiquidCacheFresh && !settings.disable_refresh_on_stale_liquid) {
      console.debug('STOQ - Liquid cache stale, refreshing selling_plans + integrations');
      Promise.race([
        Promise.all([
          fetchEmbedConfig('selling_plans', function(data) {
            if (data && Array.isArray(data.plans)) {
              window._RestockRocketConfig.sellingPlans = data.plans;
              window._RestockRocketConfig.disabledSellingPlanIds = data.disabled_plan_ids || [];
            }
          }),
          fetchEmbedConfig('integrations', function(data) {
            if (Array.isArray(data)) {
              window._RestockRocketConfig.integrations = data;
            }
          })
        ]),
        new Promise(function(resolve) { setTimeout(resolve, 1000); })
      ]).then(function() { loadScripts(settings); });
      return;
    }

    loadScripts(settings);
  }

  function loadScripts(settings) {
    // Setup cart selling plan updater BEFORE loading any scripts to avoid race conditions
    setupCartSellingPlanUpdater(settings);

    if(settings.enable_app) {
      const hijackIntegration = window._RestockRocketConfig.integrations.find(function(integration) {
        return integration.type === 'hijack' && integration.enabled && integration.page_types.includes(window._RestockRocketConfig.pageType);
      })

      if(window._RestockRocketConfig.pageType === 'collection' && (settings.show_button_on_collection || settings.preorder_collection_enabled)) {
        createRestockRocketScript(window._RestockRocketConfig.scriptUrlCollection);
      } else if(window._RestockRocketConfig.pageType === 'index' && (settings.show_button_on_index || settings.preorder_index_enabled)) {
        createRestockRocketScript(window._RestockRocketConfig.scriptUrlCollection);
      } else if(window._RestockRocketConfig.pageType === 'search' && (settings.show_button_on_search || settings.preorder_search_enabled)) {
        createRestockRocketScript(window._RestockRocketConfig.scriptUrlCollection);
      } else if(window._RestockRocketConfig.pageType === 'page' && (settings.show_button_on_page || settings.preorder_page_enabled)) {
        createRestockRocketScript(window._RestockRocketConfig.scriptUrlCollection);
      } else if(window._RestockRocketConfig.pageType === 'product') {
        createRestockRocketScript(window._RestockRocketConfig.scriptUrlProduct);
      } else if(hijackIntegration) {
        createRestockRocketScript(window._RestockRocketConfig.scriptUrlCollection);
      } else if(settings.preorder_enabled) {
        // Load the bundle so updateCartSellingPlans runs even when hijack is not enabled
        createRestockRocketScript(window._RestockRocketConfig.scriptUrlCollection);
      } else {
        console.debug(`STOQ - no scripts enabled for ${window._RestockRocketConfig.pageType}`);
      }

      // Dispatch custom event when app is loaded
      // Cart selling plan updates will be triggered by stoq:inventory-data-loaded event
      const appLoadedEvent = new CustomEvent('stoq:loaded', {
        detail: {
          pageType: window._RestockRocketConfig.pageType,
          enabled: settings.enable_app,
          settings: settings,
          preorderEnabled: settings.preorder_enabled
        }
      });
      console.debug('STOQ - dispatching app loaded event');
      window.dispatchEvent(appLoadedEvent);
    }
  }
</script>

<!-- Critical CSS -->
<style id="RestockRocketStyle" type="text/css">
  .stoq-hide-buy-now .shopify-payment-button{display:none!important}.restock-rocket-button,.restock-rocket-button-float{opacity:1!important;border:none!important;cursor:pointer!important;background-image:none!important;box-shadow:none!important;padding:15px 20px;font-size:16px;width:100%;font-family:inherit}@font-face{font-family:OpenSans;font-weight:200;src:url(https://d382hokyqag45a.cloudfront.net/assets/OpenSans-Light.woff)}@font-face{font-family:OpenSans;font-weight:300;src:url(https://d382hokyqag45a.cloudfront.net/assets/OpenSans-Regular.woff)}@font-face{font-family:OpenSans;font-weight:600;src:url(https://d382hokyqag45a.cloudfront.net/assets/OpenSans-SemiBold.woff)}.restock-rocket-button-container{position:relative;z-index:1;width:100%}.restock-rocket-button-container-float-right{position:fixed;z-index:123123;top:calc(50% - 200px);right:0;transform:rotate(270deg);transform-origin:bottom right}.restock-rocket-button-container-float-left{position:fixed;z-index:123123;top:calc(50% - 200px);left:40px;transform:rotate(90deg);transform-origin:top left}.restock-rocket-button-container-float-left:hover,.restock-rocket-button-container-float-right:hover,.restock-rocket-button-container:hover,.restock-rocket-button-float:hover,.restock-rocket-button:hover{opacity:.8}.restock-rocket-button{min-height:50px;margin-top:10px;margin-bottom:10px}.restock-rocket-button-collection{position:relative;font-size:13px;line-height:1;padding:7px;height:auto;z-index:3}.restock-rocket-wrapper{background-color:rgba(0,0,0,.5);z-index:123123123;width:100%;height:100%;overflow:auto;position:fixed;right:0;top:0;transition-property:all;transition-duration:.3s;display:flex;flex-direction:column;justify-content:center;}.restock-rocket-wrapper-inline{width:100%;height:100%;margin-top:20px}.restock-rocket-preorder-description{padding:10px 15px;margin-top:20px;display:flex;flex-direction:column;gap:10px;}.preorder-description-details{margin-bottom:0;display:flex;flex-direction:column;gap:10px;}.preorder-detail-item{display:flex;flex-direction:row;justify-content:start;gap:8px;align-items:center;}.restock-rocket-payment-widget{border:1px solid #ebebeb;margin-bottom:20px;}.restock-rocket-payment-option{display:flex;flex-wrap:wrap;align-items:center;gap:5px;padding:15px 20px;}.restock-rocket-payment-option:not(:last-child){border-bottom:1px solid #ebebeb;}.restock-rocket-payment-input-container{flex:1 1 auto;min-width:0}.restock-rocket-preorder-discount-badge{background:#ebebeb;height:25px;line-height:25px;padding:0 15px;border-radius:25px;font-size:0.8rem;flex:0 0 auto}.restock-rocket-payment-input{margin-right:10px;margin-top:-3px;vertical-align:middle;margin-left:0;accent-color:#202223}.restock-rocket-payment-description{margin-top:4px;flex:1 1 100%}.restock-rocket-preorder-badge{font-size:13px;line-height:1;padding:5px 13px 6px;border-radius:40px;height:auto;border:none;width:auto;z-index:2;margin:0;background:0 0}.preorder-badge-collection{position:absolute;top:10px;right:10px}.preorder-badge-product{margin-left:10px}.restock-rocket-price-strike{text-decoration:line-through;color: #666666;}.restock-rocket-discounted-price{margin-left:10px;}.restock-rocket-acknowledgement-checkbox{margin-bottom:12px;display:flex;align-items:flex-start;gap:8px;font-size:14px;line-height: 1.5;}.restock-rocket-acknowledge-checkbox-input{width:18px;height:18px;margin-top:2px;cursor:pointer;flex-shrink:0;accent-color: #0d0d0d;}.restock-rocket-acknowledge-checkbox-label{flex:1;cursor:pointer;}.restock-rocket-preorder-countdown-timer{display:flex;flex-direction:column;align-items:center;padding:16px;margin:8px 0;font-family:inherit;}.restock-rocket-preorder-countdown-timer .countdown-header{font-size:16px;margin-bottom:6px;text-align:center}.restock-rocket-preorder-countdown-timer .countdown-units{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}.restock-rocket-preorder-countdown-timer .countdown-unit{display:flex;flex-direction:column;align-items:center;gap:6px}.restock-rocket-preorder-countdown-timer .countdown-box{min-width:40px;padding:10px 6px;text-align:center;font-size:20px;line-height:1}.restock-rocket-preorder-countdown-timer .countdown-label{font-size:14px;font-weight:500;text-align:center;text-transform:capitalize;opacity:.7}@media (max-width:768px){.restock-rocket-preorder-countdown-timer{padding:14px}.restock-rocket-preorder-countdown-timer .countdown-box{min-width:55px;padding:14px 10px;font-size:26px}.restock-rocket-preorder-countdown-timer .countdown-label{font-size:11px}}@media (max-width:480px){.restock-rocket-preorder-countdown-timer{padding:12px}.restock-rocket-preorder-countdown-timer .countdown-units{width:100%;gap:10px}.restock-rocket-preorder-countdown-timer .countdown-box{width:100%;min-width:50px;padding:12px 8px;font-size:24px}.restock-rocket-preorder-countdown-timer .countdown-label{font-size:10px}}.restock-rocket-toast{position:fixed;cursor:pointer;background:#fff;border:0;min-width:40px;min-height:40px;box-shadow:0 0 15px rgba(0,0,0,.1)!important;z-index:622004;padding:20px 30px;font-family:inherit;font-size:inherit;color:#000;display:flex;justify-content:center;align-items:center}.restock-rocket-toast a{text-decoration:none;font-weight:700;color:#000}.restock-rocket-toast .dismiss{margin-left:15px;z-index:1;font-size:20px;}.restock-rocket-toast-top{top:60px}.restock-rocket-toast-bottom{bottom:75px}.restock-rocket-toast-left,.restock-rocket-toast-right{-webkit-animation:.5s forwards slide;animation:.5s forwards slide}.restock-rocket-toast-left{left:0;transform:translateX(-100%);-webkit-transform:translateX(-100%);border-radius:0 10px 10px 0}.restock-rocket-toast-left.slide-out{-webkit-animation:.5s forwards slide-out-left;animation:.5s forwards slide-out-left}.restock-rocket-toast-right{right:0;transform:translateX(100%);-webkit-transform:translateX(100%);border-radius:10px 0 0 10px}.restock-rocket-toast-right.slide-out{-webkit-animation:.5s forwards slide-out-right;animation:.5s forwards slide-out-right}@keyframes slide{100%{transform:translateX(0)}}@-webkit-keyframes slide{100%{-webkit-transform:translateX(0)}}@keyframes slide-out-left{0%{transform:translateX(0)}100%{transform:translateX(-100%)}}@-webkit-keyframes slide-out-left{0%{-webkit-transform:translateX(0)}100%{-webkit-transform:translateX(-100%)}}@keyframes slide-out-right{0%{transform:translateX(0)}100%{transform:translateX(100%)}}@-webkit-keyframes slide-out-right{0%{-webkit-transform:translateX(0)}100%{-webkit-transform:translateX(100%)}}.restock-rocket-preorder-progress-bar{padding:12px 15px;margin-bottom:20px;font-family:inherit;}.restock-rocket-preorder-progress-bar .preorder-progress-text{margin-bottom:8px;}.restock-rocket-preorder-progress-bar .preorder-progress-bar-row{display:flex;align-items:center;gap:10px;}.restock-rocket-preorder-progress-bar .preorder-progress-track{flex:1;height:12px;overflow:hidden;}.restock-rocket-preorder-progress-bar .preorder-progress-fill{display:block;height:100%;min-width:2px;transition:width 0.3s ease;}.restock-rocket-preorder-progress-bar .preorder-progress-percentage{font-weight:500;min-width:35px;text-align:right;}
</style>


</div><script src="https://cdn.shopify.com/storefront/standard-actions.js" type="module" data-source-attribution="shopify.standard_actions"></script>
</body>
  <script>
    function debounce(func, timeout = 300){
      let timer;
      return (...args) => {
        clearTimeout(timer);
        timer = setTimeout(() => { func.apply(this, args); }, timeout);
      };
    }



    
  </script>
<style type="text/css">
  p#customer-account-description {
    color: red !important;
}
</style>
</html>
