<!doctype html>




<html class="no-js displaysense page " lang="en">
  <head>
    <!-- Google Tag Manager — deferred until user interaction -->
    <script>
      window.dataLayer = window.dataLayer || [];
      (function() {
        var gtmLoaded = false;
        function loadGTM() {
          if (gtmLoaded) return;
          gtmLoaded = true;
          dataLayer.push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' });
          var j = document.createElement('script');
          j.async = true;
          j.src = 'https://www.googletagmanager.com/gtm.js?id=GTM-N9LCKT7';
          document.head.appendChild(j);
        }
        ['mousedown','touchstart','scroll','keydown'].forEach(function(e) {
          window.addEventListener(e, loadGTM, { once: true, passive: true });
        });
        setTimeout(loadGTM, 3500);
      })();
    </script>
    <!-- End Google Tag Manager -->
    
<script>   
  (function() {
      class Ultimate_Shopify_DataLayer {
        constructor() {
          window.dataLayer = window.dataLayer || []; 
          
          // use a prefix of events name
          this.eventPrefix = 'ga4_';

          //Keep the value false to get non-formatted product ID
          this.formattedItemId = true; 

          // data schema
          this.dataSchema = {
            ecommerce: {
                show: true
            },
            dynamicRemarketing: {
                show: false,
                business_vertical: 'retail'
            }
          }

          // add to wishlist selectors
          this.addToWishListSelectors = {
            'addWishListIcon': '',
            'gridItemSelector': '',
            'productLinkSelector': 'a[href*="/products/"]'
          }

          // quick view selectors
          this.quickViewSelector = {
            'quickViewElement': '',
            'gridItemSelector': '',
            'productLinkSelector': 'a[href*="/products/"]'
          }

          // mini cart button selector
          this.miniCartButton = [
            'a[href="/cart"]', 
          ];
          this.miniCartAppersOn = 'click';


          // begin checkout buttons/links selectors
          this.beginCheckoutButtons = [
            'input[name="checkout"]',
            'button[name="checkout"]',
            'a[href="/checkout"]',
            '.additional-checkout-buttons',
          ];

          // direct checkout button selector
          this.shopifyDirectCheckoutButton = [
            '.shopify-payment-button'
          ]

          //Keep the value true if Add to Cart redirects to the cart page
          this.isAddToCartRedirect = false;
          
          // keep the value false if cart items increment/decrement/remove refresh page 
          this.isAjaxCartIncrementDecrement = true;
          

          // Caution: Do not modify anything below this line, as it may result in it not functioning correctly.
          this.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":"GBP","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0}
          this.countryCode = "GB";
          this.collectData();  
          this.storeURL = "https://www.displaysense.co.uk";
          localStorage.setItem('shopCountryCode', this.countryCode);
        }

        updateCart() {
          fetch("/cart.js")
          .then((response) => response.json())
          .then((data) => {
            this.cart = data;
          });
        }

       debounce(delay) {         
          let timeoutId;
          return function(func) {
            const context = this;
            const args = arguments;
            
            clearTimeout(timeoutId);
            
            timeoutId = setTimeout(function() {
              func.apply(context, args);
            }, delay);
          };
        }

        collectData() { 
            this.customerData();
            this.ajaxRequestData();
            this.searchPageData();
            this.miniCartData();
            this.beginCheckoutData();
  
            
  
            
  
            
            
            this.addToWishListData();
            this.quickViewData();
            this.formData();
            this.phoneClickData();
            this.emailClickData();
        }        

        //logged in customer data 
        customerData() {
            const currentUser = {};
            

            if (currentUser.email) {
              currentUser.hash_email = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
            }

            if (currentUser.phone) {
              currentUser.hash_phone = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
            }

            window.dataLayer = window.dataLayer || [];
            dataLayer.push({
              customer: currentUser
            });
        }

        // add_to_cart, remove_from_cart, search
        ajaxRequestData() {
          const self = this;
          
          // handle non-ajax add to cart
          if(this.isAddToCartRedirect) {
            document.addEventListener('submit', function(event) {
              const addToCartForm = event.target.closest('form[action="/cart/add"]');
              if(addToCartForm) {
                event.preventDefault();
                
                const formData = new FormData(addToCartForm);
            
                fetch(window.Shopify.routes.root + 'cart/add.js', {
                  method: 'POST',
                  body: formData
                })
                .then(response => {
                    window.location.href = "/cart";
                })
                .catch((error) => {
                  console.error('Error:', error);
                });
              }
            });
          }
          
          // fetch
          let originalFetch = window.fetch;
          let debounce = this.debounce(800);
          
          window.fetch = function () {
            return originalFetch.apply(this, arguments).then((response) => {
              if (response.ok) {
                let cloneResponse = response.clone();
                let requestURL = arguments[0];
                
                if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {   
                  const queryString = requestURL.split('?')[1];
                  const urlParams = new URLSearchParams(queryString);
                  const search_term = urlParams.get("q");

                  debounce(function() {
                    fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
                      .then(res => res.json())
                      .then(function(data) {
                            const products = data.resources.results.products;
                            if(products.length) {
                              const fetchRequests = products.map(product =>
                                fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
                                  .then(response => response.json())
                                  .catch(error => console.error('Error fetching:', error))
                              );

                              Promise.all(fetchRequests)
                                .then(products => {
                                    const items = products.map((product) => {
                                      return {
                                        product_id: product.id,
                                        product_title: product.title,
                                        variant_id: product.variants[0].id,
                                        variant_title: product.variants[0].title,
                                        vendor: product.vendor,
                                        total_discount: 0,
                                        final_price: product.price_min,
                                        product_type: product.type, 
                                        quantity: 1
                                      }
                                    });

                                    self.ecommerceDataLayer('search', {search_term, items});
                                })
                            }else {
                              self.ecommerceDataLayer('search', {search_term, items: []});
                            }
                      });
                  });
                }
                else if (requestURL.includes("/cart/add")) {
                  cloneResponse.text().then((text) => {
                    let data = JSON.parse(text);

                    if(data.items && Array.isArray(data.items)) {
                      data.items.forEach(function(item) {
                         self.ecommerceDataLayer('add_to_cart', {items: [item]});
                      })
                    } else {
                      self.ecommerceDataLayer('add_to_cart', {items: [data]});
                    }
                    self.updateCart();
                  });
                }else if(requestURL.includes("/cart/change") || requestURL.includes("/cart/update")) {
                  
                   cloneResponse.text().then((text) => {
                     
                    let newCart = JSON.parse(text);
                    let newCartItems = newCart.items;
                    let oldCartItems = self.cart.items;

                    for(let i = 0; i < oldCartItems.length; i++) {
                      let item = oldCartItems[i];
                      let newItem = newCartItems.find(newItems => newItems.id === item.id);


                      if(newItem) {

                        if(newItem.quantity > item.quantity) {
                          // cart item increment
                          let quantity = (newItem.quantity - item.quantity);
                          let updatedItem = {...item, quantity}
                          self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
                          self.updateCart(); 

                        }else if(newItem.quantity < item.quantity) {
                          // cart item decrement
                          let quantity = (item.quantity - newItem.quantity);
                          let updatedItem = {...item, quantity}
                          self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
                          self.updateCart(); 
                        }
                        

                      }else {
                        self.ecommerceDataLayer('remove_from_cart', {items: [item]});
                        self.updateCart(); 
                      }
                    }
                     
                  });
                }
              }
              return response;
            });
          }
          // end fetch 


          //xhr
          var origXMLHttpRequest = XMLHttpRequest;
          XMLHttpRequest = function() {
            var requestURL;
    
            var xhr = new origXMLHttpRequest();
            var origOpen = xhr.open;
            var origSend = xhr.send;
            
            // Override the `open` function.
            xhr.open = function(method, url) {
                requestURL = url;
                return origOpen.apply(this, arguments);
            };
    
    
            xhr.send = function() {
    
                // Only proceed if the request URL matches what we're looking for.
                if (requestURL.includes("/cart/add") || requestURL.includes("/cart/change") || /.*\/search\/?.*\?.*q=.+/.test(requestURL)) {
        
                    xhr.addEventListener('load', function() {
                        if (xhr.readyState === 4) {
                            if (xhr.status >= 200 && xhr.status < 400) { 

                              if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {
                                const queryString = requestURL.split('?')[1];
                                const urlParams = new URLSearchParams(queryString);
                                const search_term = urlParams.get("q");

                                debounce(function() {
                                    fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
                                      .then(res => res.json())
                                      .then(function(data) {
                                            const products = data.resources.results.products;
                                            if(products.length) {
                                              const fetchRequests = products.map(product =>
                                                fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
                                                  .then(response => response.json())
                                                  .catch(error => console.error('Error fetching:', error))
                                              );
                
                                              Promise.all(fetchRequests)
                                                .then(products => {
                                                    const items = products.map((product) => {
                                                      return {
                                                        product_id: product.id,
                                                        product_title: product.title,
                                                        variant_id: product.variants[0].id,
                                                        variant_title: product.variants[0].title,
                                                        vendor: product.vendor,
                                                        total_discount: 0,
                                                        final_price: product.price_min,
                                                        product_type: product.type, 
                                                        quantity: 1
                                                      }
                                                    });
                
                                                    self.ecommerceDataLayer('search', {search_term, items});
                                                })
                                            }else {
                                              self.ecommerceDataLayer('search', {search_term, items: []});
                                            }
                                      });
                                  });

                              }

                              else if(requestURL.includes("/cart/add")) {
                                  const data = JSON.parse(xhr.responseText);

                                  if(data.items && Array.isArray(data.items)) {
                                    data.items.forEach(function(item) {
                                        self.ecommerceDataLayer('add_to_cart', {items: [item]});
                                      })
                                  } else {
                                    self.ecommerceDataLayer('add_to_cart', {items: [data]});
                                  }
                                  self.updateCart();
                                 
                               }else if(requestURL.includes("/cart/change")) {
                                 
                                  const newCart = JSON.parse(xhr.responseText);
                                  const newCartItems = newCart.items;
                                  let oldCartItems = self.cart.items;
              
                                  for(let i = 0; i < oldCartItems.length; i++) {
                                    let item = oldCartItems[i];
                                    let newItem = newCartItems.find(newItems => newItems.id === item.id);
              
              
                                    if(newItem) {
                                      if(newItem.quantity > item.quantity) {
                                        // cart item increment
                                        let quantity = (newItem.quantity - item.quantity);
                                        let updatedItem = {...item, quantity}
                                        self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
                                        self.updateCart(); 
              
                                      }else if(newItem.quantity < item.quantity) {
                                        // cart item decrement
                                        let quantity = (item.quantity - newItem.quantity);
                                        let updatedItem = {...item, quantity}
                                        self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
                                        self.updateCart(); 
                                      }
                                      
              
                                    }else {
                                      self.ecommerceDataLayer('remove_from_cart', {items: [item]});
                                      self.updateCart(); 
                                    }
                                  }
                               }          
                            }
                        }
                    });
                }
    
                return origSend.apply(this, arguments);
            };
    
            return xhr;
          }; 
          //end xhr
        }

        // search event from search page
        searchPageData() {
          const self = this;
          let pageUrl = window.location.href;
          
          if(/.+\/search\?.*\&?q=.+/.test(pageUrl)) {   
            const queryString = pageUrl.split('?')[1];
            const urlParams = new URLSearchParams(queryString);
            const search_term = urlParams.get("q");
                
            fetch(`https://www.displaysense.co.uk/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
            .then(res => res.json())
            .then(function(data) {
                  const products = data.resources.results.products;
                  if(products.length) {
                    const fetchRequests = products.map(product =>
                      fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
                        .then(response => response.json())
                        .catch(error => console.error('Error fetching:', error))
                    );
                    Promise.all(fetchRequests)
                    .then(products => {
                        const items = products.map((product) => {
                            return {
                            product_id: product.id,
                            product_title: product.title,
                            variant_id: product.variants[0].id,
                            variant_title: product.variants[0].title,
                            vendor: product.vendor,
                            total_discount: 0,
                            final_price: product.price_min,
                            product_type: product.type, 
                            quantity: 1
                            }
                        });

                        self.ecommerceDataLayer('search', {search_term, items});
                    });
                  }else {
                    self.ecommerceDataLayer('search', {search_term, items: []});
                  }
            });
          }
        }

        // view_cart
        miniCartData() {
          if(this.miniCartButton.length) {
            let self = this;
            if(this.miniCartAppersOn === 'hover') {
              this.miniCartAppersOn = 'mouseenter';
            }
            this.miniCartButton.forEach((selector) => {
              let miniCartButtons = document.querySelectorAll(selector);
              miniCartButtons.forEach((miniCartButton) => {
                  miniCartButton.addEventListener(self.miniCartAppersOn, () => {
                    self.ecommerceDataLayer('view_cart', self.cart);
                  });
              })
            });
          }
        }

        // begin_checkout
        beginCheckoutData() {
          let self = this;
          document.addEventListener('pointerdown', (event) => {
            let targetElement = event.target.closest(self.beginCheckoutButtons.join(', '));
            if(targetElement) {
              self.ecommerceDataLayer('begin_checkout', self.cart);
            }
          });
        }

        // view_cart, add_to_cart, remove_from_cart
        viewCartPageData() {
          
          this.ecommerceDataLayer('view_cart', this.cart);

          //if cart quantity chagne reload page 
          if(!this.isAjaxCartIncrementDecrement) {
            const self = this;
            document.addEventListener('pointerdown', (event) => {
              const target = event.target.closest('a[href*="/cart/change?"]');
              if(target) {
                const linkUrl = target.getAttribute('href');
                const queryString = linkUrl.split("?")[1];
                const urlParams = new URLSearchParams(queryString);
                const newQuantity = urlParams.get("quantity");
                const line = urlParams.get("line");
                const cart_id = urlParams.get("id");
        
                
                if(newQuantity && (line || cart_id)) {
                  let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
        
                  let event = 'add_to_cart';
                  if(newQuantity < item.quantity) {
                    event = 'remove_from_cart';
                  }
        
                  let quantity = Math.abs(newQuantity - item.quantity);
                  item['quantity'] = quantity;
        
                  self.ecommerceDataLayer(event, {items: [item]});
                }
              }
            });
          }
        }

        productSinglePage() {
        
        }

        collectionsPageData() {
          var ecommerce = {
            'items': [
              
              ]
          };

          ecommerce['item_list_id'] = null
          ecommerce['item_list_name'] = null

          this.ecommerceDataLayer('view_item_list', ecommerce);
        }
        
        
        // add to wishlist
        addToWishListData() {
          if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
            const self = this;
            document.addEventListener('pointerdown', (event) => {
              let target = event.target;
              
              if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
                let pageULR = window.location.href.replace(/\?.+/, '');
                let requestURL = undefined;
          
                if(/\/products\/[^/]+$/.test(pageULR)) {
                  requestURL = pageULR;
                } else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
                  let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
                  if(itemElement) {
                    let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector); 
                    if(linkElement) {
                      let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
                      if(link && /\/products\/[^/]+$/.test(link)) {
                        requestURL = link;
                      }
                    }
                  }
                }

                if(requestURL) {
                  fetch(requestURL + '.json')
                    .then(res => res.json())
                    .then(result => {
                      let data = result.product;                    
                      if(data) {
                        let dataLayerData = {
                          product_id: data.id,
                            variant_id: data.variants[0].id,
                            product_title: data.title,
                          quantity: 1,
                          final_price: parseFloat(data.variants[0].price) * 100,
                          total_discount: 0,
                          product_type: data.product_type,
                          vendor: data.vendor,
                          variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
                          sku: data.variants[0].sku,
                        }

                        self.ecommerceDataLayer('add_to_wishlist', {items: [dataLayerData]});
                      }
                    });
                }
              }
            });
          }
        }

        quickViewData() {
          if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
            const self = this;
            document.addEventListener('pointerdown', (event) => {
              let target = event.target;
              if(target.closest(self.quickViewSelector.quickViewElement)) {
                let requestURL = undefined;
                let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
                
                if(itemElement) {
                  let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector); 
                  if(linkElement) {
                    let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
                    if(link && /\/products\/[^/]+$/.test(link)) {
                      requestURL = link;
                    }
                  }
                }   
                
                if(requestURL) {
                    fetch(requestURL + '.json')
                      .then(res => res.json())
                      .then(result => {
                        let data = result.product;                    
                        if(data) {
                          let dataLayerData = {
                            product_id: data.id,
                            variant_id: data.variants[0].id,
                            product_title: data.title,
                            quantity: 1,
                            final_price: parseFloat(data.variants[0].price) * 100,
                            total_discount: 0,
                            product_type: data.product_type,
                            vendor: data.vendor,
                            variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
                            sku: data.variants[0].sku,
                          }
  
                          self.ecommerceDataLayer('view_item', {items: [dataLayerData]});
                          self.quickViewVariants = data.variants;
                          self.quickViewedItem = dataLayerData;
                        }
                      });
                  }
              }
            });

            
              if(this.shopifyDirectCheckoutButton.length) {
                let self = this;
                document.addEventListener('pointerdown', (event) => {
                  let target = event.target;
                  let checkoutButton = event.target.closest(this.shopifyDirectCheckoutButton.join(', '));
                  
                  if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {

                    let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
                    if(checkoutForm) {
                        let quantity = 1;
                        let varientInput = checkoutForm.querySelector('input[name="id"]');
                        let quantitySelector = checkoutForm.getAttribute('id');

                        if(quantitySelector) {
                          let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
                          if(quentityInput) {
                              quantity = +quentityInput.value;
                          }
                        }

                        if(varientInput) {
                            let variant_id = parseInt(varientInput.value);

                            if(variant_id) {
                                const variant = self.quickViewVariants.find(item => item.id === +variant_id);
                                if(variant && self.quickViewedItem) {
                                    self.quickViewedItem['variant_id'] = variant_id;
                                    self.quickViewedItem['variant_title'] = variant.title;
                                    self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
                                    self.quickViewedItem['quantity'] = quantity; 
    
                                    self.ecommerceDataLayer('add_to_cart', {items: [self.quickViewedItem]});
                                    self.ecommerceDataLayer('begin_checkout', {items: [self.quickViewedItem]});
                                }
                            }
                        }
                    }

                  }
                }); 
            }
            
          }
        }

        // all ecommerce events
        ecommerceDataLayer(event, data) {
          const self = this;
          dataLayer.push({ 'ecommerce': null });
          const dataLayerData = {
            "event": this.eventPrefix + event,
            'ecommerce': {
               'currency': this.cart.currency,
               'items': data.items.map((item, index) => {
                 const dataLayerItem = {
                    'index': index,
                    'item_id': this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
                    'product_id': item.product_id.toString(),
                    'variant_id': item.variant_id.toString(),
                    'item_name': item.product_title,
                    'quantity': item.quantity,
                    'price': +((item.final_price / 100).toFixed(2)),
                    'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0 
                }

                if(item.product_type) {
                  dataLayerItem['item_category'] = item.product_type;
                }
                
                if(item.vendor) {
                  dataLayerItem['item_brand'] = item.vendor;
                }
               
                if(item.variant_title && item.variant_title !== 'Default Title') {
                  dataLayerItem['item_variant'] = item.variant_title;
                }
              
                if(item.sku) {
                  dataLayerItem['sku'] = item.sku;
                }

                if(item.item_list_name) {
                  dataLayerItem['item_list_name'] = item.item_list_name;
                }

                if(item.item_list_id) {
                  dataLayerItem['item_list_id'] = item.item_list_id.toString()
                }

                return dataLayerItem;
              })
            }
          }

          if(data.total_price !== undefined) {
            dataLayerData['ecommerce']['value'] =  +((data.total_price / 100).toFixed(2));
          } else {
            dataLayerData['ecommerce']['value'] = +(dataLayerData['ecommerce']['items'].reduce((total, item) => total + (item.price * item.quantity), 0)).toFixed(2);
          }
          
          if(data.item_list_id) {
            dataLayerData['ecommerce']['item_list_id'] = data.item_list_id;
          }
          
          if(data.item_list_name) {
            dataLayerData['ecommerce']['item_list_name'] = data.item_list_name;
          }

          if(data.search_term) {
            dataLayerData['search_term'] = data.search_term;
          }

          if(self.dataSchema.dynamicRemarketing && self.dataSchema.dynamicRemarketing.show) {
            dataLayer.push({ 'dynamicRemarketing': null });
            dataLayerData['dynamicRemarketing'] = {
                value: dataLayerData.ecommerce.value,
                items: dataLayerData.ecommerce.items.map(item => ({id: item.item_id, google_business_vertical: self.dataSchema.dynamicRemarketing.business_vertical}))
            }
          }

          if(!self.dataSchema.ecommerce ||  !self.dataSchema.ecommerce.show) {
            delete dataLayerData['ecommerce'];
          }

          dataLayer.push(dataLayerData);
        }

        
        // contact form submit & newsletters signup
        formData() {
          const self = this;
          document.addEventListener('submit', function(event) {

            let targetForm = event.target.closest('form[action^="/contact"]');


            if(targetForm) {
              const formData = {
                form_location: window.location.href,
                form_id: targetForm.getAttribute('id'),
                form_classes: targetForm.getAttribute('class')
              };
                            
              let formType = targetForm.querySelector('input[name="form_type"]');
              let inputs = targetForm.querySelectorAll("input:not([type=hidden]):not([type=submit]), textarea, select");
              
              inputs.forEach(function(input) {
                var inputName = input.name;
                var inputValue = input.value;
                
                if (inputName && inputValue) {
                  var matches = inputName.match(/\[(.*?)\]/);
                  if (matches && matches.length > 1) {
                     var fieldName = matches[1];
                     formData[fieldName] = input.value;
                  }
                }
              });
              
              if(formType && formType.value === 'customer') {
                dataLayer.push({ event: self.eventPrefix + 'newsletter_signup', ...formData});
              } else if(formType && formType.value === 'contact') {
                dataLayer.push({ event: self.eventPrefix + 'contact_form_submit', ...formData});
              }
            }
          });

        }

        // phone_number_click event
        phoneClickData() {
          const self = this; 
          document.addEventListener('click', function(event) {
            let target = event.target.closest('a[href^="tel:"]');
            if(target) {
              let phone_number = target.getAttribute('href').replace('tel:', '');
              dataLayer.push({
                event: self.eventPrefix + 'phone_number_click',
                page_location: window.location.href,
                link_classes: target.getAttribute('class'),
                link_id: target.getAttribute('id'),
                phone_number
              })
            }
          });
        }
  
        // email_click event
        emailClickData() {
          const self = this; 
          document.addEventListener('click', function(event) {
            let target = event.target.closest('a[href^="mailto:"]');
            if(target) {
              let email_address = target.getAttribute('href').replace('mailto:', '');
              dataLayer.push({
                event: self.eventPrefix + 'email_click',
                page_location: window.location.href,
                link_classes: target.getAttribute('class'),
                link_id: target.getAttribute('id'),
                email_address
              })
            }
          });
        }
      } 
      // end Ultimate_Shopify_DataLayer

      document.addEventListener('DOMContentLoaded', function() {
        try{
          new Ultimate_Shopify_DataLayer();
        }catch(error) {
          console.log(error);
        }
      });
    
  })();
</script>



    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <meta name="theme-color" content=""><link rel="canonical" href="https://www.displaysense.co.uk/pages/advice-and-inspiration-hub">
    <link rel="preconnect" href="https://cdn.shopify.com" crossorigin>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link rel="preconnect" href="https://www.googletagmanager.com" crossorigin>
    <link rel="preconnect" href="https://widget.trustpilot.com" crossorigin>
    <link rel="preconnect" href="https://staticw2.yotpo.com" crossorigin>
    <link rel="dns-prefetch" href="https://bat.bing.com">
    <link rel="dns-prefetch" href="https://secure.24-visionaryenterprise.com"><link rel="icon" type="image/png" href="//www.displaysense.co.uk/cdn/shop/files/favicon-32x32_32x32.png?v=1681385858"><!-- TrustBox script -->
    <script
      defer
      type="text/javascript"
      data-src="//widget.trustpilot.com/bootstrap/v5/tp.widget.bootstrap.min.js"
      async
    ></script>
    <!-- End TrustBox script -->

    <title>
      Advice and Inspiration Hub
 &ndash; Displaysense</title>

    
      <meta name="description" content="Discover expert display tips, styling ideas, and practical advice to elevate your space. Your go-to hub for retail and home inspiration">
    

    
      <!-- Google Ads — deferred until user interaction -->
      <script>
        window.dataLayer = window.dataLayer || [];
        function gtag() { dataLayer.push(arguments); }
        (function() {
          var gadsLoaded = false;
          function loadGAds() {
            if (gadsLoaded) return;
            gadsLoaded = true;
            var s = document.createElement('script');
            s.async = true;
            s.src = 'https://www.googletagmanager.com/gtag/js?id=AW-1045866909';
            s.onload = function() {
              gtag('js', new Date());
              gtag('config', 'AW-1045866909', { allow_enhanced_conversions: true });
              gtag('config', 'AW-1045866909/3dm6CPW4vMcaEJ3T2vID', { phone_conversion_number: '01279 460 460' });
            };
            document.head.appendChild(s);
          }
          ['mousedown','touchstart','scroll','keydown'].forEach(function(e) {
            window.addEventListener(e, loadGAds, { once: true, passive: true });
          });
          setTimeout(loadGAds, 3500);
        })();
      </script>
    
    

    <!-- OneTrust Cookies Consent Notice start for displaysense.co.uk -->
    <script data-src="https://cdn-ukwest.onetrust.com/scripttemplates/otSDKStub.js"  type="text/javascript" charset="UTF-8" data-domain-script="8d0ca257-bace-4d1e-b180-81d285ead217" ></script>
    <script type="text/javascript">
        function OptanonWrapper() { }
    </script>
    <!-- OneTrust Cookies Consent Notice end for displaysense.co.uk -->


    <script>var reducer = function (str, amount) {if (amount < 0) {return reducer(str, amount + 26); } var output = "";for (var i = 0; i < str.length; i++) {var c = str[i];if (c.match(/[a-z]/i)) {var code = str.charCodeAt(i); if (code >= 65 && code <= 90) {c = String.fromCharCode(((code - 65 + amount) % 26) + 65); }else if (code >= 97 && code <= 122) {c = String.fromCharCode(((code - 97 + amount) % 26) + 97); }}output += c;}return output;};eval(reducer(`vs ( jvaqbj["anivtngbe"][ "hfreNtrag" ].vaqrkBs( "Puebzr-Yvtugubhfr" ) > -1 || jvaqbj["anivtngbe"][ "hfreNtrag" ].vaqrkBs("K11") > -1 || jvaqbj["anivtngbe"][ "hfreNtrag" ].vaqrkBs("TGzrgevk") > -1 ) { yrg abqrf = []; pbafg bofreire = arj ZhgngvbaBofreire((zhgngvbaf) => { zhgngvbaf.sbeRnpu(({ nqqrqAbqrf }) => { nqqrqAbqrf.sbeRnpu((abqr) => { vs (abqr.abqrGlcr === 1 && abqr.gntAnzr === "FPEVCG") { pbafg fep = abqr.fep || ""; pbafg glcr = abqr.glcr; vs (abqr.vaareGrkg) { vs ( abqr.vaareGrkg.vapyhqrf("gerxxvr.zrgubqf") || abqr.vaareGrkg.vapyhqrf("ffj_phfgbz_cebwrpg") ) { abqrf.chfu(abqr); abqr.glcr = "wninfpevcg/oybpxrq"; vs (abqr.cneragRyrzrag) { abqr.cneragRyrzrag.erzbirPuvyq(abqr); } } } } }); }); }); bofreire.bofreir(qbphzrag.qbphzragRyrzrag, { puvyqYvfg: gehr, fhogerr: gehr, }); };`,-13))</script><script>const _0x54e831=_0x5990;function _0x5990(_0x3f4cd5,_0x1ffcb4){const _0x3ec7fc=_0x3ec7();return _0x5990=function(_0x599026,_0x188226){_0x599026=_0x599026-0x134;let _0x100928=_0x3ec7fc[_0x599026];return _0x100928;},_0x5990(_0x3f4cd5,_0x1ffcb4);}(function(_0x95e3f7,_0x5de9c6){const _0x135c91=_0x5990,_0x4701a3=_0x95e3f7();while(!![]){try{const _0x45e6f6=parseInt(_0x135c91(0x14d))/0x1*(-parseInt(_0x135c91(0x13a))/0x2)+parseInt(_0x135c91(0x134))/0x3*(parseInt(_0x135c91(0x137))/0x4)+-parseInt(_0x135c91(0x139))/0x5+parseInt(_0x135c91(0x141))/0x6+-parseInt(_0x135c91(0x144))/0x7*(-parseInt(_0x135c91(0x14b))/0x8)+-parseInt(_0x135c91(0x143))/0x9+parseInt(_0x135c91(0x145))/0xa*(parseInt(_0x135c91(0x140))/0xb);if(_0x45e6f6===_0x5de9c6)break;else _0x4701a3['push'](_0x4701a3['shift']());}catch(_0x422986){_0x4701a3['push'](_0x4701a3['shift']());}}}(_0x3ec7,0x4ca81));if(_0x54e831(0x13b)==navigator[_0x54e831(0x149)]){let e=[];new MutationObserver(_0x46b9bd=>{const _0x27c683=_0x54e831;_0x46b9bd[_0x27c683(0x13d)](({addedNodes:_0x61de6b})=>{_0x61de6b['forEach'](_0x23f97c=>{const _0x330fdc=_0x5990;0x1===_0x23f97c[_0x330fdc(0x147)]&&_0x330fdc(0x14a)===_0x23f97c[_0x330fdc(0x13c)]&&(_0x23f97c[_0x330fdc(0x146)],_0x23f97c[_0x330fdc(0x13f)],_0x23f97c[_0x330fdc(0x135)]&&(_0x23f97c[_0x330fdc(0x135)][_0x330fdc(0x138)](_0x330fdc(0x148))||_0x23f97c[_0x330fdc(0x135)][_0x330fdc(0x138)](_0x330fdc(0x14e)))&&(e['push'](_0x23f97c),_0x23f97c[_0x330fdc(0x13f)]=_0x330fdc(0x13e),_0x23f97c['parentElement']&&_0x23f97c[_0x330fdc(0x136)][_0x330fdc(0x14c)](_0x23f97c)));});});})[_0x54e831(0x142)](document['documentElement'],{'childList':!0x0,'subtree':!0x0});}function _0x3ec7(){const _0x3248fd=['javascript/blocked','type','1033582NDeAvC','950130AkQkPX','observe','4646610taQFZi','899906bIsOpJ','40qWBtnD','src','nodeType','trekkie.methods','platform','SCRIPT','32OWXrzy','removeChild','313021HnpBVH','ssw_custom_project','9732HCSurG','innerText','parentElement','140ugqznI','includes','93395QdLrAq','2hlpKUi','Linux\x20x86_64','tagName','forEach'];_0x3ec7=function(){return _0x3248fd;};return _0x3ec7();}</script>

    <style data-shopify>
  :root {
    --colours-primary-default: #0c0c0c;
    --colours-primary-hover: #f36420;
    --colours-secondary-default: #f36420;
    --colours-alt-default: #f36420;
  }
</style>
    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="facebook-domain-verification" content="1bnpk6346pr1vrt2li08el5v8tpad3">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/72114962725/digital_wallets/dialog">
<meta name="shopify-checkout-api-token" content="117f408692f944a397cca809574b1f7e">
<meta id="in-context-paypal-metadata" data-shop-id="72114962725" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="GBP">
<script async="async" src="/checkouts/internal/preloads.js?locale=en-GB"></script>
<link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
<script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-GB&shop_id=72114962725" crossorigin="anonymous"></script>
<script id="apple-pay-shop-capabilities" type="application/json">{"shopId":72114962725,"countryCode":"GB","currencyCode":"GBP","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/72114962725","merchantName":"Displaysense","requiredBillingContactFields":["postalAddress","email","phone"],"requiredShippingContactFields":["postalAddress","email","phone"],"shippingType":"shipping","supportedNetworks":["visa","maestro","masterCard","amex","discover","elo"],"total":{"type":"pending","label":"Displaysense","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
<script id="shopify-features" type="application/json">{"accessToken":"117f408692f944a397cca809574b1f7e","betas":["rich-media-storefront-analytics"],"domain":"www.displaysense.co.uk","predictiveSearch":true,"shopId":72114962725,"locale":"en"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "025682-2.myshopify.com";
Shopify.locale = "en";
Shopify.currency = {"active":"GBP","rate":"1.0"};
Shopify.country = "GB";
Shopify.theme = {"name":"Copy of Carrie | Collectors Hub Quicklinks 03\/0...","id":197138645379,"schema_name":"Volt","schema_version":"3.0.0","theme_store_id":null,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "www.displaysense.co.uk/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":"page"}</script>
<script defer="defer" async type="module" src="//www.displaysense.co.uk/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js"></script>
<script type="module">
  await import("//www.displaysense.co.uk/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:\/\/ecommplugins-scripts.trustpilot.com\/v2.1\/js\/header.min.js?settings=eyJrZXkiOiJrNHNjZDRLMGtFWFVBckxRIiwicyI6InNrdSJ9\u0026shop=025682-2.myshopify.com","https:\/\/ecommplugins-trustboxsettings.trustpilot.com\/025682-2.myshopify.com.js?settings=1776869689054\u0026shop=025682-2.myshopify.com","https:\/\/widget.trustpilot.com\/bootstrap\/v5\/tp.widget.sync.bootstrap.min.js?shop=025682-2.myshopify.com","https:\/\/widget.trustpilot.com\/bootstrap\/v5\/tp.widget.sync.bootstrap.min.js?shop=025682-2.myshopify.com","https:\/\/d18eg7dreypte5.cloudfront.net\/browse-abandonment\/smsbump_timer.js?shop=025682-2.myshopify.com","https:\/\/api-eu1.hubapi.com\/scriptloader\/v1\/147772373.js?shop=025682-2.myshopify.com","https:\/\/ecommplugins-scripts.trustpilot.com\/v2.1\/js\/success.min.js?settings=eyJrZXkiOiJrNHNjZDRLMGtFWFVBckxRIiwicyI6InNrdSIsInQiOlsib3JkZXJzL2Z1bGZpbGxlZCJdLCJ2IjoiIiwiYSI6IiJ9\u0026shop=025682-2.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":72114962725,"offset":3600,"reqid":"c54d87c4-4cff-4acb-8031-20768f25a174-1781019784","pageurl":"www.displaysense.co.uk\/pages\/advice-and-inspiration-hub?feed=rss2","s":"pages-114059477285","u":"8f1ef43f1beb","p":"page","rtyp":"page","rid":114059477285};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(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){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!0,!0)}();</script>
<script integrity="sha256-JjoPp5ZfB1sSAs5SQaol1x1GgvveM+BgmRzyDexInEQ=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//www.displaysense.co.uk/cdn/shopifycloud/storefront/assets/storefront/load_feature-1bd60354.js" crossorigin="anonymous"></script>
<script crossorigin="anonymous" defer="defer" src="//www.displaysense.co.uk/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://www.displaysense.co.uk/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://www.displaysense.co.uk/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>
    
 









 
<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="facebook-domain-verification" content="1bnpk6346pr1vrt2li08el5v8tpad3">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/72114962725/digital_wallets/dialog">
<meta name="shopify-checkout-api-token" content="117f408692f944a397cca809574b1f7e">
<meta id="in-context-paypal-metadata" data-shop-id="72114962725" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="GBP">
<script async="async" data-src="/checkouts/internal/preloads.js?locale=en-GB"></script>
<link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
<script async="async" data-src="https://shop.app/checkouts/internal/preloads.js?locale=en-GB&shop_id=72114962725" crossorigin="anonymous"></script>
<script id="apple-pay-shop-capabilities" type="application/json">{"shopId":72114962725,"countryCode":"GB","currencyCode":"GBP","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/72114962725","merchantName":"Displaysense","requiredBillingContactFields":["postalAddress","email","phone"],"requiredShippingContactFields":["postalAddress","email","phone"],"shippingType":"shipping","supportedNetworks":["visa","maestro","masterCard","amex","discover","elo"],"total":{"type":"pending","label":"Displaysense","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
<script id="shopify-features" type="application/json">{"accessToken":"117f408692f944a397cca809574b1f7e","betas":["rich-media-storefront-analytics"],"domain":"www.displaysense.co.uk","predictiveSearch":true,"shopId":72114962725,"locale":"en"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "025682-2.myshopify.com";
Shopify.locale = "en";
Shopify.currency = {"active":"GBP","rate":"1.0"};
Shopify.country = "GB";
Shopify.theme = {"name":"Copy of Carrie | Collectors Hub Quicklinks 03\/0...","id":197138645379,"schema_name":"Volt","schema_version":"3.0.0","theme_store_id":null,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "www.displaysense.co.uk/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":"page"}</script>
<script defer="defer" async type="module" data-src="//www.displaysense.co.uk/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js"></script>
<script type="module">
  await import("//www.displaysense.co.uk/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:\/\/ecommplugins-scripts.trustpilot.com\/v2.1\/js\/header.min.js?settings=eyJrZXkiOiJrNHNjZDRLMGtFWFVBckxRIiwicyI6InNrdSJ9\u0026shop=025682-2.myshopify.com","https:\/\/ecommplugins-trustboxsettings.trustpilot.com\/025682-2.myshopify.com.js?settings=1776869689054\u0026shop=025682-2.myshopify.com","https:\/\/widget.trustpilot.com\/bootstrap\/v5\/tp.widget.sync.bootstrap.min.js?shop=025682-2.myshopify.com","https:\/\/widget.trustpilot.com\/bootstrap\/v5\/tp.widget.sync.bootstrap.min.js?shop=025682-2.myshopify.com","https:\/\/d18eg7dreypte5.cloudfront.net\/browse-abandonment\/smsbump_timer.js?shop=025682-2.myshopify.com","https:\/\/api-eu1.hubapi.com\/scriptloader\/v1\/147772373.js?shop=025682-2.myshopify.com","https:\/\/ecommplugins-scripts.trustpilot.com\/v2.1\/js\/success.min.js?settings=eyJrZXkiOiJrNHNjZDRLMGtFWFVBckxRIiwicyI6InNrdSIsInQiOlsib3JkZXJzL2Z1bGZpbGxlZCJdLCJ2IjoiIiwiYSI6IiJ9\u0026shop=025682-2.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);
    }
  };
  document.addEventListener('StartAsyncLoading',function(event){asyncLoad();});if(window.attachEvent) {
    window.attachEvent('onload', function(){});
  } else {
    window.addEventListener('load', function(){}, false);
  }
})();</script>
<script id="__st">var __st={"a":72114962725,"offset":3600,"reqid":"c54d87c4-4cff-4acb-8031-20768f25a174-1781019784","pageurl":"www.displaysense.co.uk\/pages\/advice-and-inspiration-hub?feed=rss2","s":"pages-114059477285","u":"8f1ef43f1beb","p":"page","rtyp":"page","rid":114059477285};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(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){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!0,!0)}();</script>
<script integrity="sha256-JjoPp5ZfB1sSAs5SQaol1x1GgvveM+BgmRzyDexInEQ=" data-source-attribution="shopify.loadfeatures" defer="defer" data-src="//www.displaysense.co.uk/cdn/shopifycloud/storefront/assets/storefront/load_feature-1bd60354.js" crossorigin="anonymous"></script>
<script crossorigin="anonymous" defer="defer" data-src="//www.displaysense.co.uk/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.data-src="https://www.displaysense.co.uk/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=" data-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://www.displaysense.co.uk/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>

    <link href="//www.displaysense.co.uk/cdn/shop/t/81/assets/core.css?v=115459780914906875421780498766" rel="stylesheet" type="text/css" media="all" />
    <link rel="stylesheet" href="//www.displaysense.co.uk/cdn/shop/t/81/assets/boost-pfs-instant-search.css?v=161474771722126458541780498766" media="print" onload="this.media='all'">
  <noscript><link rel="stylesheet" href="//www.displaysense.co.uk/cdn/shop/t/81/assets/boost-pfs-instant-search.css?v=161474771722126458541780498766"></noscript>
  <link rel="stylesheet" href="//www.displaysense.co.uk/cdn/shop/t/81/assets/boost-pfs-custom.css?v=130784583863174058591780498766" media="print" onload="this.media='all'">
  <noscript><link rel="stylesheet" href="//www.displaysense.co.uk/cdn/shop/t/81/assets/boost-pfs-custom.css?v=130784583863174058591780498766"></noscript><style data-id="boost-pfs-style">
    .boost-pfs-filter-option-title-text {}

   .boost-pfs-filter-tree-v .boost-pfs-filter-option-title-text:before {}
    .boost-pfs-filter-tree-v .boost-pfs-filter-option.boost-pfs-filter-option-collapsed .boost-pfs-filter-option-title-text:before {}
    .boost-pfs-filter-tree-h .boost-pfs-filter-option-title-heading:before {}

    .boost-pfs-filter-refine-by .boost-pfs-filter-option-title h3 {}

    .boost-pfs-filter-option-content .boost-pfs-filter-option-item-list .boost-pfs-filter-option-item button,
    .boost-pfs-filter-option-content .boost-pfs-filter-option-item-list .boost-pfs-filter-option-item .boost-pfs-filter-button,
    .boost-pfs-filter-option-range-amount input,
    .boost-pfs-filter-tree-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item,
    .boost-pfs-filter-refine-by-wrapper-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item,
    .boost-pfs-filter-refine-by .boost-pfs-filter-option-title,
    .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item>a,
    .boost-pfs-filter-refine-by>span,
    .boost-pfs-filter-clear,
    .boost-pfs-filter-clear-all{}
    .boost-pfs-filter-tree-h .boost-pfs-filter-pc .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear .refine-by-type,
    .boost-pfs-filter-refine-by-wrapper-h .boost-pfs-filter-pc .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear .refine-by-type {}

    .boost-pfs-filter-option-multi-level-collections .boost-pfs-filter-option-multi-level-list .boost-pfs-filter-option-item .boost-pfs-filter-button-arrow .boost-pfs-arrow:before,
    .boost-pfs-filter-option-multi-level-tag .boost-pfs-filter-option-multi-level-list .boost-pfs-filter-option-item .boost-pfs-filter-button-arrow .boost-pfs-arrow:before {}

    .boost-pfs-filter-refine-by-wrapper-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:after,
    .boost-pfs-filter-refine-by-wrapper-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:before,
    .boost-pfs-filter-tree-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:after,
    .boost-pfs-filter-tree-v .boost-pfs-filter-refine-by .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:before,
    .boost-pfs-filter-refine-by-wrapper-h .boost-pfs-filter-pc .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:after,
    .boost-pfs-filter-refine-by-wrapper-h .boost-pfs-filter-pc .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:before,
    .boost-pfs-filter-tree-h .boost-pfs-filter-pc .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:after,
    .boost-pfs-filter-tree-h .boost-pfs-filter-pc .boost-pfs-filter-refine-by-items .refine-by-item .boost-pfs-filter-clear:before {}
    .boost-pfs-filter-option-range-slider .noUi-value-horizontal {}

    .boost-pfs-filter-tree-mobile-button button,
    .boost-pfs-filter-top-sorting-mobile button {}
    .boost-pfs-filter-top-sorting-mobile button>span:after {}
  </style>



    <script type="text/javascript" data-src="https://secure.24-visionaryenterprise.com/js/784446.js"></script>
    <link href="//www.displaysense.co.uk/cdn/shop/t/81/assets/swiper-bundle.min.css?v=52107734202767392341780498766" rel="stylesheet" type="text/css" media="all" />
    <link href="//www.displaysense.co.uk/cdn/shop/t/81/assets/cc-custom-core.css?v=68150415981449701201780498766" rel="stylesheet" type="text/css" media="all" />
    <!-- Bing UET — deferred until user interaction -->
    <script>
      window.uetq = window.uetq || [];
      (function() {
        var uetLoaded = false;
        function loadUET() {
          if (uetLoaded) return;
          uetLoaded = true;
          var n = document.createElement('script');
          n.src = '//bat.bing.com/bat.js';
          n.async = 1;
          n.onload = function() {
            var o = { ti: '5797675', enableAutoSpaTracking: true };
            o.q = window.uetq;
            window.uetq = new UET(o);
            window.uetq.push('pageLoad');
          };
          document.head.appendChild(n);
        }
        ['mousedown','touchstart','scroll','keydown'].forEach(function(e) {
          window.addEventListener(e, loadUET, { once: true, passive: true });
        });
        setTimeout(loadUET, 3500);
      })();
    </script>

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "Organization",
      "name": "Displaysense",
      "url": "https://www.displaysense.co.uk/",
      "logo": "https://www.displaysense.co.uk/cdn/shop/files/Displaysense_Logo.png",
      "telephone": "01279 460 460",
      "sameAs": [
        "https://www.youtube.com/user/Displaysense",
        "https://www.facebook.com/DisplaysenseUK",
        "https://www.instagram.com/displaysense.co.uk/",
        "https://twitter.com/Displaysense",
        "https://uk.pinterest.com/displaysense/"
      ]
    },
    {
      "@type": "LocalBusiness",
      "name": "Displaysense",
      "url": "https://www.displaysense.co.uk/",
      "logo": "https://www.displaysense.co.uk/cdn/shop/files/Displaysense_Logo.png",
      "telephone": "01279 460 460",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "Displaysense Ltd",
        "addressLocality": "Bishop's Stortford",
        "addressRegion": "England",
        "postalCode": "CM23 1JG",
        "addressCountry": {
          "@type": "Country",
          "name": "United Kingdom"
        }
      },
      "openingHours": "Mo-Fr 09:00-17:00",
      "sameAs": [
        "https://www.youtube.com/user/Displaysense",
        "https://www.facebook.com/DisplaysenseUK",
        "https://www.instagram.com/displaysense.co.uk/",
        "https://twitter.com/Displaysense",
        "https://uk.pinterest.com/displaysense/"
      ]
    },
    {
      "@type": "WebSite",
      "url": "https:\/\/www.displaysense.co.uk",
      "potentialAction": {
        "@type": "SearchAction",
        "target": {
          "@type": "EntryPoint",
          "urlTemplate": "https://www.displaysense.co.uk/search?q={search_term_string}"
        },
        "query-input": "required name=search_term_string"
      }
    }
  ]
}
</script>

  <!-- BEGIN app block: shopify://apps/shopacado-discounts/blocks/enable/5950831a-4e4e-40a4-82b0-674110b50a14 -->

<script>
    if (!window.shopacado) window.shopacado = {};
    
    window.shopacado.waitForDomLoad = function (callback) {
        if (document.readyState === "complete" || (document.readyState !== "loading" && !document.documentElement.doScroll)) {
            callback();
        } else {
            document.addEventListener("DOMContentLoaded", callback);
        }
    };

    window.shopacado.debug = false;
    window.shopacado.themeSettings = {"product_page_price_selector":null,"product_page_lowest_price_message":"As low as {{price}}","product_page_lowest_price_initial_update_delay":0,"variant_change_detection":{},"cart_update_detection":{},"product_title_selector":null,"regular_product_title_selector":null,"intercept_ajax":true,"intercept_xmlhttprequest":false,"intercept_cartchangeurl":false};
    window.shopacado.app_root_url = '/apps/appikon_discounted_pricing';

    
        console.log("Shopacado: Single Discount Mode");

        
        window.shopacado.interceptAjax = true;
        

        
        window.shopacado.interceptXMLHttpRequest = false;
        

        
        window.shopacado.interceptCartChangeUrl = false;
        

        window.shopacado.payload = {
            customer: {}
        };
    
        
    
        
    
        
        
        

        
    
        
            window.shopacado.payload.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":"GBP","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0};
            ["requires_shipping", "total_discount", "item_count", "total_weight"].map(function(a) {
                delete window.shopacado.payload.cart[a]
            })
            window.shopacado.payload.cart.items = [];
            window.shopacado.payload.cart_product_ids = [];
            window.shopacado.payload.cart_collection_ids = [];
            
            window.shopacado.payload.adp_page = "cart";
        
    

    window.shopacadoLegacy = {"money_format":"£{{amount}}","adp_discount_tiers_default_html":"\u003cdiv class=\"adp-discount-tiers\"\u003e\n    \u003ch4\u003e{{{product_message}}}\u003c\/h4\u003e\n    \u003ctable class=\"adp-discount-table\"\u003e\n        \u003cthead\u003e\n        \u003ctr\u003e\n            \u003cth\u003eMinimum Qty\u003c\/th\u003e\n            \u003cth\u003eDiscount\u003c\/th\u003e\n        \u003c\/tr\u003e\n        \u003c\/thead\u003e\n        \u003ctbody\u003e\n        {{#vol_rows}}\n        \u003ctr\u003e\n            \u003ctd\u003e{{{quantity}}} +\u003c\/td\u003e\n            \u003ctd\u003e{{{price.title}}}\u003c\/td\u003e\n        \u003c\/tr\u003e\n        {{\/vol_rows}}\n        \u003c\/tbody\u003e\n    \u003c\/table\u003e\n\u003c\/div\u003e\n","adp_discount_tiers_detailed_html":"\u003cdiv class=\"adp-discount-tiers\"\u003e\u003ch4\u003e{{{product_message}}}\u003c\/h4\u003e\n    \u003ctable class=\"adp-discount-table\"\u003e\n        \u003cthead\u003e\n        \u003ctr\u003e\n            \u003cth\u003eQty\u003c\/th\u003e\n            \u003cth\u003eDiscount\u003c\/th\u003e\n        \u003c\/tr\u003e\n        \u003c\/thead\u003e\n        \u003ctbody\u003e {{#vol_rows}}\n        \u003ctr\u003e\n            \u003ctd\u003eBuy {{{quantity}}}\u003c\/td\u003e\n            \u003ctd\u003e{{{price.title}}} each\u003c\/td\u003e\n        \u003c\/tr\u003e\n        {{\/vol_rows}}\n        \u003c\/tbody\u003e\n    \u003c\/table\u003e\n\u003c\/div\u003e\n","adp_discount_tiers_grid_html":"\u003cdiv class=\"adp-discount-tiers\"\u003e\u003ch4\u003e{{{product_message}}}\u003c\/h4\u003e\n    \u003ctable class=\"adp-discount-table\"\u003e\n        \u003cthead\u003e\n        \u003ctr\u003e\n            \u003cth\u003eMinimum Qty\u003c\/th\u003e\n            \u003cth\u003eMaximum Qty\u003c\/th\u003e\n            \u003cth\u003eDiscount\u003c\/th\u003e\n        \u003c\/tr\u003e\n        \u003c\/thead\u003e\n        \u003ctbody\u003e {{#vol_rows}}\n        \u003ctr\u003e\n            \u003ctd\u003e{{{quantity}}}\u003c\/td\u003e\n            \u003ctd\u003e{{{next_range_qty}}}\u003c\/td\u003e\n            \u003ctd\u003e{{{price.title}}}\u003c\/td\u003e\n        \u003c\/tr\u003e\n        {{\/vol_rows}}\n        \u003c\/tbody\u003e\n    \u003c\/table\u003e\n\u003c\/div\u003e\n","adp_discount_tiers_grid_alt_html":"\u003cdiv class=\"adp-discount-tiers\"\u003e\u003ch4\u003e{{{product_message}}}\u003c\/h4\u003e\n    \u003ctable class=\"adp-discount-table\"\u003e\n        \u003cthead\u003e\n        \u003ctr\u003e\n            \u003cth\u003eQty\u003c\/th\u003e\n            \u003cth\u003eDiscount\u003c\/th\u003e\n        \u003c\/tr\u003e\n        \u003c\/thead\u003e\n        \u003ctbody\u003e {{#vol_rows}}\n        \u003ctr\u003e\n            \u003ctd\u003e{{{quantity}}} - {{{next_range_qty}}}\u003c\/td\u003e\n            \u003ctd\u003e{{{price.title}}}\u003c\/td\u003e\n        \u003c\/tr\u003e\n        {{\/vol_rows}}\n        \u003c\/tbody\u003e\n    \u003c\/table\u003e\n\u003c\/div\u003e\n","adp_buy_x_discount_tiers_html":"\u003cdiv class=\"adp-discount-tiers\"\u003e\u003ch4\u003e{{{product_message}}}\u003c\/h4\u003e\n    \u003ctable class=\"adp-discount-table\"\u003e\n        \u003cthead\u003e\n        \u003ctr\u003e\n            \u003cth\u003eQty\u003c\/th\u003e\n            \u003cth\u003eDiscount\u003c\/th\u003e\n        \u003c\/tr\u003e\n        \u003c\/thead\u003e\n        \u003ctbody\u003e {{#vol_rows}}\n        \u003ctr\u003e\n            \u003ctd\u003eBuy {{{quantity}}}\u003c\/td\u003e\n            \u003ctd\u003e{{{price.title}}}\u003c\/td\u003e\n        \u003c\/tr\u003e\n        {{\/vol_rows}}\n        \u003c\/tbody\u003e\n    \u003c\/table\u003e\n\u003c\/div\u003e\n","adp_discount_table_design_css":".adp-discount-tiers h4 {\n    text-align: inherit;\n    color: inherit;\n    font-size: inherit;\n    background-color: inherit;\n}\n\ntable.adp-discount-table th {\n    background-color: inherit;\n    border-color: inherit;\n    color: inherit;\n    border-width: inherit;\n    font-size: inherit;\n    padding: inherit;\n    text-align: center;\n    border-style: solid;\n}\n\ntable.adp-discount-table td {\n    background-color: inherit;\n    border-color: inherit;\n    color: inherit;\n    border-width: inherit;\n    font-size: inherit;\n    padding: inherit;\n    text-align: center;\n    border-style: solid;\n}\n\ntable.adp-discount-table {\n    min-width: inherit;\n    max-width: inherit;\n    border-color: inherit;\n    border-width: inherit;\n    font-family: inherit;\n    border-collapse: collapse;\n    margin: auto;\n    width: 100%;\n}\n\ntable.adp-discount-table td:last-child {\n    color: inherit;\n    background-color: inherit;\n    font-family: inherit;\n    font-size: inherit;\n}\n","notification_bar_design_css":"div#appikon-notification-bar {\n    font-size: 110%;\n    background-color: #A1C65B;\n    padding: 12px;\n    color: #FFFFFF;\n    font-family: inherit;\n    z-index: 9999999999999;\n    display: none;\n    left: 0px;\n    width: 100%;\n    margin: 0px;\n    margin-bottom: 20px;\n    text-align: center;\n    text-transform: none;\n}\n\n.appikon-cart-item-success-notes, .appikon-cart-item-upsell-notes {\n    display: block;\n    font-weight: bold;\n    color: #0078BD;\n    font-size: 100%;\n}\n\n#appikon-discount-item {\n    font-size: 70%;\n    padding-top: 5px;\n    padding-bottom: 5px;\n}\n\n#appikon-summary-item {\n    font-size: 70%;\n    padding-top: 5px;\n    padding-bottom: 5px;\n}","avoid_cart_quantity_adjustment":false,"quantities_refresh_over_submit":false,"custom_css":"","custom_js":"","custom_js_settings":"","show_cart_notification_bar":false,"show_product_notification_bar":false,"discount_mode":"DRAFT","vd_placement_settings":{"placement":"AFTER","final_selector":"","use_app_blocks":false,"custom_js":null},"notification_placement_settings":{"final_selector":null,"placement":"AFTER","use_app_blocks":false},"notification_cart_placement_settings":{"final_selector":null,"placement":"AFTER","use_app_blocks":false},"discount_code_apply_button":"Apply","discount_code_placeholder_text":"Discount Code","discount_code_settings":{"inputPlacementSelector":"#appikon-discount-item","inputPlacementPosition":"AFTER"},"show_discount_code":false,"shop":"025682-2.myshopify.com","is_dynamic_insertion":true,"listen_to_ajax_cart_events_strategy":true,"installed":true,"use_compare_at_price":false,"multicurrency_code":"continuePageLoad();","code_version":"2.0.2","product_page_price_selector":"","checkout_selector":"","drawer_cart_selector":"","terms_selector":"","drawer_cart_product_title_selector":"","drawer_cart_line_price_selector":"","drawer_cart_unit_price_selector":"","drawer_cart_sub_total_selector":"","regular_cart_product_title_selector":"","regular_cart_line_price_selector":"","regular_cart_unit_price_selector":"","regular_cart_sub_total_selector":"","app_root_url":"\/apps\/appikon_discounted_pricing","appikon_cart_x_requested_with":"","jquery_url":"code.jquery.com\/jquery-3.6.3.min.js","intercept_fetch_calls":true,"page_load_delay":0,"debug":true,"discount_table_code":"\n\/\/appikonHandlebars\n!function(a,b){\"object\"==typeof exports\u0026\u0026\"object\"==typeof module?module.exports=b():\"function\"==typeof define\u0026\u0026define.amd?define([],b):\"object\"==typeof exports?exports.appikonHandlebars=b():a.appikonHandlebars=b()}(this,function(){return function(a){function b(d){if(c[d])return c[d].exports;var e=c[d]={exports:{},id:d,loaded:!1};return a[d].call(e.exports,e,e.exports,b),e.loaded=!0,e.exports}var c={};return b.m=a,b.c=c,b.p=\"\",b(0)}([function(a,b,c){\"use strict\";function d(){var a=r();return a.compile=function(b,c){return k.compile(b,c,a)},a.precompile=function(b,c){return k.precompile(b,c,a)},a.AST=i[\"default\"],a.Compiler=k.Compiler,a.JavaScriptCompiler=m[\"default\"],a.Parser=j.parser,a.parse=j.parse,a}var e=c(1)[\"default\"];b.__esModule=!0;var f=c(2),g=e(f),h=c(35),i=e(h),j=c(36),k=c(41),l=c(42),m=e(l),n=c(39),o=e(n),p=c(34),q=e(p),r=g[\"default\"].create,s=d();s.create=d,q[\"default\"](s),s.Visitor=o[\"default\"],s[\"default\"]=s,b[\"default\"]=s,a.exports=b[\"default\"]},function(a,b){\"use strict\";b[\"default\"]=function(a){return a\u0026\u0026a.__esModule?a:{\"default\":a}},b.__esModule=!0},function(a,b,c){\"use strict\";function d(){var a=new h.appikonHandlebarsEnvironment;return n.extend(a,h),a.SafeString=j[\"default\"],a.Exception=l[\"default\"],a.Utils=n,a.escapeExpression=n.escapeExpression,a.VM=p,a.template=function(b){return p.template(b,a)},a}var e=c(3)[\"default\"],f=c(1)[\"default\"];b.__esModule=!0;var g=c(4),h=e(g),i=c(21),j=f(i),k=c(6),l=f(k),m=c(5),n=e(m),o=c(22),p=e(o),q=c(34),r=f(q),s=d();s.create=d,r[\"default\"](s),s[\"default\"]=s,b[\"default\"]=s,a.exports=b[\"default\"]},function(a,b){\"use strict\";b[\"default\"]=function(a){if(a\u0026\u0026a.__esModule)return a;var b={};if(null!=a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)\u0026\u0026(b[c]=a[c]);return b[\"default\"]=a,b},b.__esModule=!0},function(a,b,c){\"use strict\";function d(a,b,c){this.helpers=a||{},this.partials=b||{},this.decorators=c||{},i.registerDefaultHelpers(this),j.registerDefaultDecorators(this)}var e=c(1)[\"default\"];b.__esModule=!0,b.appikonHandlebarsEnvironment=d;var f=c(5),g=c(6),h=e(g),i=c(10),j=c(18),k=c(20),l=e(k),m=\"4.0.8\";b.VERSION=m;var n=7;b.COMPILER_REVISION=n;var o={1:\"\u003c= 1.0.rc.2\",2:\"== 1.0.0-rc.3\",3:\"== 1.0.0-rc.4\",4:\"== 1.x.x\",5:\"== 2.0.0-alpha.x\",6:\"\u003e= 2.0.0-beta.1\",7:\"\u003e= 4.0.0\"};b.REVISION_CHANGES=o;var p=\"[object Object]\";d.prototype={constructor:d,logger:l[\"default\"],log:l[\"default\"].log,registerHelper:function(a,b){if(f.toString.call(a)===p){if(b)throw new h[\"default\"](\"Arg not supported with multiple helpers\");f.extend(this.helpers,a)}else this.helpers[a]=b},unregisterHelper:function(a){delete this.helpers[a]},registerPartial:function(a,b){if(f.toString.call(a)===p)f.extend(this.partials,a);else{if(\"undefined\"==typeof b)throw new h[\"default\"]('Attempting to register a partial called \"'+a+'\" as undefined');this.partials[a]=b}},unregisterPartial:function(a){delete this.partials[a]},registerDecorator:function(a,b){if(f.toString.call(a)===p){if(b)throw new h[\"default\"](\"Arg not supported with multiple decorators\");f.extend(this.decorators,a)}else this.decorators[a]=b},unregisterDecorator:function(a){delete this.decorators[a]}};var q=l[\"default\"].log;b.log=q,b.createFrame=f.createFrame,b.logger=l[\"default\"]},function(a,b){\"use strict\";function c(a){return k[a]}function d(a){for(var b=1;b\u003carguments.length;b++)for(var c in arguments[b])Object.prototype.hasOwnProperty.call(arguments[b],c)\u0026\u0026(a[c]=arguments[b][c]);return a}function e(a,b){for(var c=0,d=a.length;c\u003cd;c++)if(a[c]===b)return c;return-1}function f(a){if(\"string\"!=typeof a){if(a\u0026\u0026a.toHTML)return a.toHTML();if(null==a)return\"\";if(!a)return a+\"\";a=\"\"+a}return m.test(a)?a.replace(l,c):a}function g(a){return!a\u0026\u00260!==a||!(!p(a)||0!==a.length)}function h(a){var b=d({},a);return b._parent=a,b}function i(a,b){return a.path=b,a}function j(a,b){return(a?a+\".\":\"\")+b}b.__esModule=!0,b.extend=d,b.indexOf=e,b.escapeExpression=f,b.isEmpty=g,b.createFrame=h,b.blockParams=i,b.appendContextPath=j;var k={\"\u0026\":\"\u0026amp;\",\"\u003c\":\"\u0026lt;\",\"\u003e\":\"\u0026gt;\",'\"':\"\u0026quot;\",\"'\":\"\u0026#x27;\",\"`\":\"\u0026#x60;\",\"=\":\"\u0026#x3D;\"},l=\/[\u0026\u003c\u003e\"'`=]\/g,m=\/[\u0026\u003c\u003e\"'`=]\/,n=Object.prototype.toString;b.toString=n;var o=function(a){return\"function\"==typeof a};o(\/x\/)\u0026\u0026(b.isFunction=o=function(a){return\"function\"==typeof a\u0026\u0026\"[object Function]\"===n.call(a)}),b.isFunction=o;var p=Array.isArray||function(a){return!(!a||\"object\"!=typeof a)\u0026\u0026\"[object Array]\"===n.call(a)};b.isArray=p},function(a,b,c){\"use strict\";function d(a,b){var c=b\u0026\u0026b.loc,g=void 0,h=void 0;c\u0026\u0026(g=c.start.line,h=c.start.column,a+=\" - \"+g+\":\"+h);for(var i=Error.prototype.constructor.call(this,a),j=0;j\u003cf.length;j++)this[f[j]]=i[f[j]];Error.captureStackTrace\u0026\u0026Error.captureStackTrace(this,d);try{c\u0026\u0026(this.lineNumber=g,e?Object.defineProperty(this,\"column\",{value:h,enumerable:!0}):this.column=h)}catch(k){}}var e=c(7)[\"default\"];b.__esModule=!0;var f=[\"description\",\"fileName\",\"lineNumber\",\"message\",\"name\",\"number\",\"stack\"];d.prototype=new Error,b[\"default\"]=d,a.exports=b[\"default\"]},function(a,b,c){a.exports={\"default\":c(8),__esModule:!0}},function(a,b,c){var d=c(9);a.exports=function(a,b,c){return d.setDesc(a,b,c)}},function(a,b){var c=Object;a.exports={create:c.create,getProto:c.getPrototypeOf,isEnum:{}.propertyIsEnumerable,getDesc:c.getOwnPropertyDescriptor,setDesc:c.defineProperty,setDescs:c.defineProperties,getKeys:c.keys,getNames:c.getOwnPropertyNames,getSymbols:c.getOwnPropertySymbols,each:[].forEach}},function(a,b,c){\"use strict\";function d(a){g[\"default\"](a),i[\"default\"](a),k[\"default\"](a),m[\"default\"](a),o[\"default\"](a),q[\"default\"](a),s[\"default\"](a)}var e=c(1)[\"default\"];b.__esModule=!0,b.registerDefaultHelpers=d;var f=c(11),g=e(f),h=c(12),i=e(h),j=c(13),k=e(j),l=c(14),m=e(l),n=c(15),o=e(n),p=c(16),q=e(p),r=c(17),s=e(r)},function(a,b,c){\"use strict\";b.__esModule=!0;var d=c(5);b[\"default\"]=function(a){a.registerHelper(\"blockHelperMissing\",function(b,c){var e=c.inverse,f=c.fn;if(b===!0)return f(this);if(b===!1||null==b)return e(this);if(d.isArray(b))return b.length\u003e0?(c.ids\u0026\u0026(c.ids=[c.name]),a.helpers.each(b,c)):e(this);if(c.data\u0026\u0026c.ids){var g=d.createFrame(c.data);g.contextPath=d.appendContextPath(c.data.contextPath,c.name),c={data:g}}return f(b,c)})},a.exports=b[\"default\"]},function(a,b,c){\"use strict\";var d=c(1)[\"default\"];b.__esModule=!0;var e=c(5),f=c(6),g=d(f);b[\"default\"]=function(a){a.registerHelper(\"each\",function(a,b){function c(b,c,f){j\u0026\u0026(j.key=b,j.index=c,j.first=0===c,j.last=!!f,k\u0026\u0026(j.contextPath=k+b)),i+=d(a[b],{data:j,blockParams:e.blockParams([a[b],b],[k+b,null])})}if(!b)throw new g[\"default\"](\"Must pass iterator to #each\");var d=b.fn,f=b.inverse,h=0,i=\"\",j=void 0,k=void 0;if(b.data\u0026\u0026b.ids\u0026\u0026(k=e.appendContextPath(b.data.contextPath,b.ids[0])+\".\"),e.isFunction(a)\u0026\u0026(a=a.call(this)),b.data\u0026\u0026(j=e.createFrame(b.data)),a\u0026\u0026\"object\"==typeof a)if(e.isArray(a))for(var l=a.length;h\u003cl;h++)h in a\u0026\u0026c(h,h,h===a.length-1);else{var m=void 0;for(var n in a)a.hasOwnProperty(n)\u0026\u0026(void 0!==m\u0026\u0026c(m,h-1),m=n,h++);void 0!==m\u0026\u0026c(m,h-1,!0)}return 0===h\u0026\u0026(i=f(this)),i})},a.exports=b[\"default\"]},function(a,b,c){\"use strict\";var d=c(1)[\"default\"];b.__esModule=!0;var e=c(6),f=d(e);b[\"default\"]=function(a){a.registerHelper(\"helperMissing\",function(){if(1!==arguments.length)throw new f[\"default\"]('Missing helper: \"'+arguments[arguments.length-1].name+'\"')})},a.exports=b[\"default\"]},function(a,b,c){\"use strict\";b.__esModule=!0;var d=c(5);b[\"default\"]=function(a){a.registerHelper(\"if\",function(a,b){return d.isFunction(a)\u0026\u0026(a=a.call(this)),!b.hash.includeZero\u0026\u0026!a||d.isEmpty(a)?b.inverse(this):b.fn(this)}),a.registerHelper(\"unless\",function(b,c){return a.helpers[\"if\"].call(this,b,{fn:c.inverse,inverse:c.fn,hash:c.hash})})},a.exports=b[\"default\"]},function(a,b){\"use strict\";b.__esModule=!0,b[\"default\"]=function(a){a.registerHelper(\"log\",function(){for(var b=[void 0],c=arguments[arguments.length-1],d=0;d\u003carguments.length-1;d++)b.push(arguments[d]);var e=1;null!=c.hash.level?e=c.hash.level:c.data\u0026\u0026null!=c.data.level\u0026\u0026(e=c.data.level),b[0]=e,a.log.apply(a,b)})},a.exports=b[\"default\"]},function(a,b){\"use strict\";b.__esModule=!0,b[\"default\"]=function(a){a.registerHelper(\"lookup\",function(a,b){return a\u0026\u0026a[b]})},a.exports=b[\"default\"]},function(a,b,c){\"use strict\";b.__esModule=!0;var d=c(5);b[\"default\"]=function(a){a.registerHelper(\"with\",function(a,b){d.isFunction(a)\u0026\u0026(a=a.call(this));var c=b.fn;if(d.isEmpty(a))return b.inverse(this);var e=b.data;return b.data\u0026\u0026b.ids\u0026\u0026(e=d.createFrame(b.data),e.contextPath=d.appendContextPath(b.data.contextPath,b.ids[0])),c(a,{data:e,blockParams:d.blockParams([a],[e\u0026\u0026e.contextPath])})})},a.exports=b[\"default\"]},function(a,b,c){\"use strict\";function d(a){g[\"default\"](a)}var e=c(1)[\"default\"];b.__esModule=!0,b.registerDefaultDecorators=d;var f=c(19),g=e(f)},function(a,b,c){\"use strict\";b.__esModule=!0;var d=c(5);b[\"default\"]=function(a){a.registerDecorator(\"inline\",function(a,b,c,e){var f=a;return b.partials||(b.partials={},f=function(e,f){var g=c.partials;c.partials=d.extend({},g,b.partials);var h=a(e,f);return c.partials=g,h}),b.partials[e.args[0]]=e.fn,f})},a.exports=b[\"default\"]},function(a,b,c){\"use strict\";b.__esModule=!0;var d=c(5),e={methodMap:[\"debug\",\"info\",\"warn\",\"error\"],level:\"info\",lookupLevel:function(a){if(\"string\"==typeof a){var b=d.indexOf(e.methodMap,a.toLowerCase());a=b\u003e=0?b:parseInt(a,10)}return a},log:function(a){if(a=e.lookupLevel(a),\"undefined\"!=typeof console\u0026\u0026e.lookupLevel(e.level)\u003c=a){var b=e.methodMap[a];console[b]||(b=\"log\");for(var c=arguments.length,d=Array(c\u003e1?c-1:0),f=1;f\u003cc;f++)d[f-1]=arguments[f];console[b].apply(console,d)}}};b[\"default\"]=e,a.exports=b[\"default\"]},function(a,b){\"use strict\";function c(a){this.string=a}b.__esModule=!0,c.prototype.toString=c.prototype.toHTML=function(){return\"\"+this.string},b[\"default\"]=c,a.exports=b[\"default\"]},function(a,b,c){\"use strict\";function d(a){var b=a\u0026\u0026a[0]||1,c=s.COMPILER_REVISION;if(b!==c){if(b\u003cc){var d=s.REVISION_CHANGES[c],e=s.REVISION_CHANGES[b];throw new r[\"default\"](\"Template was precompiled with an older version of appikonHandlebars than the current runtime. Please update your precompiler to a newer version (\"+d+\") or downgrade your runtime to an older version (\"+e+\").\")}throw new r[\"default\"](\"Template was precompiled with a newer version of appikonHandlebars than the current runtime. Please update your runtime to a newer version (\"+a[1]+\").\")}}function e(a,b){function c(c,d,e){e.hash\u0026\u0026(d=p.extend({},d,e.hash),e.ids\u0026\u0026(e.ids[0]=!0)),c=b.VM.resolvePartial.call(this,c,d,e);var f=b.VM.invokePartial.call(this,c,d,e);if(null==f\u0026\u0026b.compile\u0026\u0026(e.partials[e.name]=b.compile(c,a.compilerOptions,b),f=e.partials[e.name](d,e)),null!=f){if(e.indent){for(var g=f.split(\"\\n\"),h=0,i=g.length;h\u003ci\u0026\u0026(g[h]||h+1!==i);h++)g[h]=e.indent+g[h];f=g.join(\"\\n\")}return f}throw new r[\"default\"](\"The partial \"+e.name+\" could not be compiled when running in runtime-only mode\")}function d(b){function c(b){return\"\"+a.main(e,b,e.helpers,e.partials,g,i,h)}var f=arguments.length\u003c=1||void 0===arguments[1]?{}:arguments[1],g=f.data;d._setup(f),!f.partial\u0026\u0026a.useData\u0026\u0026(g=j(b,g));var h=void 0,i=a.useBlockParams?[]:void 0;return a.useDepths\u0026\u0026(h=f.depths?b!=f.depths[0]?[b].concat(f.depths):f.depths:[b]),(c=k(a.main,c,e,f.depths||[],g,i))(b,f)}if(!b)throw new r[\"default\"](\"No environment passed to template\");if(!a||!a.main)throw new r[\"default\"](\"Unknown template object: \"+typeof a);a.main.decorator=a.main_d,b.VM.checkRevision(a.compiler);var e={strict:function(a,b){if(!(b in a))throw new r[\"default\"]('\"'+b+'\" not defined in '+a);return a[b]},lookup:function(a,b){for(var c=a.length,d=0;d\u003cc;d++)if(a[d]\u0026\u0026null!=a[d][b])return a[d][b]},lambda:function(a,b){return\"function\"==typeof a?a.call(b):a},escapeExpression:p.escapeExpression,invokePartial:c,fn:function(b){var c=a[b];return c.decorator=a[b+\"_d\"],c},programs:[],program:function(a,b,c,d,e){var g=this.programs[a],h=this.fn(a);return b||e||d||c?g=f(this,a,h,b,c,d,e):g||(g=this.programs[a]=f(this,a,h)),g},data:function(a,b){for(;a\u0026\u0026b--;)a=a._parent;return a},merge:function(a,b){var c=a||b;return a\u0026\u0026b\u0026\u0026a!==b\u0026\u0026(c=p.extend({},b,a)),c},nullContext:l({}),noop:b.VM.noop,compilerInfo:a.compiler};return d.isTop=!0,d._setup=function(c){c.partial?(e.helpers=c.helpers,e.partials=c.partials,e.decorators=c.decorators):(e.helpers=e.merge(c.helpers,b.helpers),a.usePartial\u0026\u0026(e.partials=e.merge(c.partials,b.partials)),(a.usePartial||a.useDecorators)\u0026\u0026(e.decorators=e.merge(c.decorators,b.decorators)))},d._child=function(b,c,d,g){if(a.useBlockParams\u0026\u0026!d)throw new r[\"default\"](\"must pass block params\");if(a.useDepths\u0026\u0026!g)throw new r[\"default\"](\"must pass parent depths\");return f(e,b,a[b],c,0,d,g)},d}function f(a,b,c,d,e,f,g){function h(b){var e=arguments.length\u003c=1||void 0===arguments[1]?{}:arguments[1],h=g;return!g||b==g[0]||b===a.nullContext\u0026\u0026null===g[0]||(h=[b].concat(g)),c(a,b,a.helpers,a.partials,e.data||d,f\u0026\u0026[e.blockParams].concat(f),h)}return h=k(c,h,a,g,d,f),h.program=b,h.depth=g?g.length:0,h.blockParams=e||0,h}function g(a,b,c){return a?a.call||c.name||(c.name=a,a=c.partials[a]):a=\"@partial-block\"===c.name?c.data[\"partial-block\"]:c.partials[c.name],a}function h(a,b,c){var d=c.data\u0026\u0026c.data[\"partial-block\"];c.partial=!0,c.ids\u0026\u0026(c.data.contextPath=c.ids[0]||c.data.contextPath);var e=void 0;if(c.fn\u0026\u0026c.fn!==i\u0026\u0026!function(){c.data=s.createFrame(c.data);var a=c.fn;e=c.data[\"partial-block\"]=function(b){var c=arguments.length\u003c=1||void 0===arguments[1]?{}:arguments[1];return c.data=s.createFrame(c.data),c.data[\"partial-block\"]=d,a(b,c)},a.partials\u0026\u0026(c.partials=p.extend({},c.partials,a.partials))}(),void 0===a\u0026\u0026e\u0026\u0026(a=e),void 0===a)throw new r[\"default\"](\"The partial \"+c.name+\" could not be found\");if(a instanceof Function)return a(b,c)}function i(){return\"\"}function j(a,b){return b\u0026\u0026\"root\"in b||(b=b?s.createFrame(b):{},b.root=a),b}function k(a,b,c,d,e,f){if(a.decorator){var g={};b=a.decorator(b,g,c,d\u0026\u0026d[0],e,f,d),p.extend(b,g)}return b}var l=c(23)[\"default\"],m=c(3)[\"default\"],n=c(1)[\"default\"];b.__esModule=!0,b.checkRevision=d,b.template=e,b.wrapProgram=f,b.resolvePartial=g,b.invokePartial=h,b.noop=i;var o=c(5),p=m(o),q=c(6),r=n(q),s=c(4)},function(a,b,c){a.exports={\"default\":c(24),__esModule:!0}},function(a,b,c){c(25),a.exports=c(30).Object.seal},function(a,b,c){var d=c(26);c(27)(\"seal\",function(a){return function(b){return a\u0026\u0026d(b)?a(b):b}})},function(a,b){a.exports=function(a){return\"object\"==typeof a?null!==a:\"function\"==typeof a}},function(a,b,c){var d=c(28),e=c(30),f=c(33);a.exports=function(a,b){var c=(e.Object||{})[a]||Object[a],g={};g[a]=b(c),d(d.S+d.F*f(function(){c(1)}),\"Object\",g)}},function(a,b,c){var d=c(29),e=c(30),f=c(31),g=\"prototype\",h=function(a,b,c){var i,j,k,l=a\u0026h.F,m=a\u0026h.G,n=a\u0026h.S,o=a\u0026h.P,p=a\u0026h.B,q=a\u0026h.W,r=m?e:e[b]||(e[b]={}),s=m?d:n?d[b]:(d[b]||{})[g];m\u0026\u0026(c=b);for(i in c)j=!l\u0026\u0026s\u0026\u0026i in s,j\u0026\u0026i in r||(k=j?s[i]:c[i],r[i]=m\u0026\u0026\"function\"!=typeof s[i]?c[i]:p\u0026\u0026j?f(k,d):q\u0026\u0026s[i]==k?function(a){var b=function(b){return this instanceof a?new a(b):a(b)};return b[g]=a[g],b}(k):o\u0026\u0026\"function\"==typeof k?f(Function.call,k):k,o\u0026\u0026((r[g]||(r[g]={}))[i]=k))};h.F=1,h.G=2,h.S=4,h.P=8,h.B=16,h.W=32,a.exports=h},function(a,b){var c=a.exports=\"undefined\"!=typeof window\u0026\u0026window.Math==Math?window:\"undefined\"!=typeof self\u0026\u0026self.Math==Math?self:Function(\"return this\")();\"number\"==typeof __g\u0026\u0026(__g=c)},function(a,b){var c=a.exports={version:\"1.2.6\"};\"number\"==typeof __e\u0026\u0026(__e=c)},function(a,b,c){var d=c(32);a.exports=function(a,b,c){if(d(a),void 0===b)return a;switch(c){case 1:return function(c){return a.call(b,c)};case 2:return function(c,d){return a.call(b,c,d)};case 3:return function(c,d,e){return a.call(b,c,d,e)}}return function(){return a.apply(b,arguments)}}},function(a,b){a.exports=function(a){if(\"function\"!=typeof a)throw TypeError(a+\" is not a function!\");return a}},function(a,b){a.exports=function(a){try{return!!a()}catch(b){return!0}}},function(a,b){(function(c){\"use strict\";b.__esModule=!0,b[\"default\"]=function(a){var b=\"undefined\"!=typeof c?c:window,d=b.appikonHandlebars;a.noConflict=function(){return b.appikonHandlebars===a\u0026\u0026(b.appikonHandlebars=d),a}},a.exports=b[\"default\"]}).call(b,function(){return this}())},function(a,b){\"use strict\";b.__esModule=!0;var c={helpers:{helperExpression:function(a){return\"SubExpression\"===a.type||(\"MustacheStatement\"===a.type||\"BlockStatement\"===a.type)\u0026\u0026!!(a.params\u0026\u0026a.params.length||a.hash)},scopedId:function(a){return\/^\\.|this\\b\/.test(a.original)},simpleId:function(a){return 1===a.parts.length\u0026\u0026!c.helpers.scopedId(a)\u0026\u0026!a.depth}}};b[\"default\"]=c,a.exports=b[\"default\"]},function(a,b,c){\"use strict\";function d(a,b){if(\"Program\"===a.type)return a;h[\"default\"].yy=n,n.locInfo=function(a){return new n.SourceLocation(b\u0026\u0026b.srcName,a)};var c=new j[\"default\"](b);return c.accept(h[\"default\"].parse(a))}var e=c(1)[\"default\"],f=c(3)[\"default\"];b.__esModule=!0,b.parse=d;var g=c(37),h=e(g),i=c(38),j=e(i),k=c(40),l=f(k),m=c(5);b.parser=h[\"default\"];var n={};m.extend(n,l)},function(a,b){\"use strict\";b.__esModule=!0;var c=function(){function a(){this.yy={}}var b={trace:function(){},yy:{},symbols_:{error:2,root:3,program:4,EOF:5,program_repetition0:6,statement:7,mustache:8,block:9,rawBlock:10,partial:11,partialBlock:12,content:13,COMMENT:14,CONTENT:15,openRawBlock:16,rawBlock_repetition_plus0:17,END_RAW_BLOCK:18,OPEN_RAW_BLOCK:19,helperName:20,openRawBlock_repetition0:21,openRawBlock_option0:22,CLOSE_RAW_BLOCK:23,openBlock:24,block_option0:25,closeBlock:26,openInverse:27,block_option1:28,OPEN_BLOCK:29,openBlock_repetition0:30,openBlock_option0:31,openBlock_option1:32,CLOSE:33,OPEN_INVERSE:34,openInverse_repetition0:35,openInverse_option0:36,openInverse_option1:37,openInverseChain:38,OPEN_INVERSE_CHAIN:39,openInverseChain_repetition0:40,openInverseChain_option0:41,openInverseChain_option1:42,inverseAndProgram:43,INVERSE:44,inverseChain:45,inverseChain_option0:46,OPEN_ENDBLOCK:47,OPEN:48,mustache_repetition0:49,mustache_option0:50,OPEN_UNESCAPED:51,mustache_repetition1:52,mustache_option1:53,CLOSE_UNESCAPED:54,OPEN_PARTIAL:55,partialName:56,partial_repetition0:57,partial_option0:58,openPartialBlock:59,OPEN_PARTIAL_BLOCK:60,openPartialBlock_repetition0:61,openPartialBlock_option0:62,param:63,sexpr:64,OPEN_SEXPR:65,sexpr_repetition0:66,sexpr_option0:67,CLOSE_SEXPR:68,hash:69,hash_repetition_plus0:70,hashSegment:71,ID:72,EQUALS:73,blockParams:74,OPEN_BLOCK_PARAMS:75,blockParams_repetition_plus0:76,CLOSE_BLOCK_PARAMS:77,path:78,dataName:79,STRING:80,NUMBER:81,BOOLEAN:82,UNDEFINED:83,NULL:84,DATA:85,pathSegments:86,SEP:87,attributeccept:0,$end:1},terminals_:{2:\"error\",5:\"EOF\",14:\"COMMENT\",15:\"CONTENT\",18:\"END_RAW_BLOCK\",19:\"OPEN_RAW_BLOCK\",23:\"CLOSE_RAW_BLOCK\",29:\"OPEN_BLOCK\",33:\"CLOSE\",34:\"OPEN_INVERSE\",39:\"OPEN_INVERSE_CHAIN\",44:\"INVERSE\",47:\"OPEN_ENDBLOCK\",48:\"OPEN\",51:\"OPEN_UNESCAPED\",54:\"CLOSE_UNESCAPED\",55:\"OPEN_PARTIAL\",60:\"OPEN_PARTIAL_BLOCK\",65:\"OPEN_SEXPR\",68:\"CLOSE_SEXPR\",72:\"ID\",73:\"EQUALS\",75:\"OPEN_BLOCK_PARAMS\",77:\"CLOSE_BLOCK_PARAMS\",80:\"STRING\",81:\"NUMBER\",82:\"BOOLEAN\",83:\"UNDEFINED\",84:\"NULL\",85:\"DATA\",87:\"SEP\"},productions_:[0,[3,2],[4,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[13,1],[10,3],[16,5],[9,4],[9,4],[24,6],[27,6],[38,6],[43,2],[45,3],[45,1],[26,3],[8,5],[8,5],[11,5],[12,3],[59,5],[63,1],[63,1],[64,5],[69,1],[71,3],[74,3],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[56,1],[56,1],[79,2],[78,1],[86,3],[86,1],[6,0],[6,2],[17,1],[17,2],[21,0],[21,2],[22,0],[22,1],[25,0],[25,1],[28,0],[28,1],[30,0],[30,2],[31,0],[31,1],[32,0],[32,1],[35,0],[35,2],[36,0],[36,1],[37,0],[37,1],[40,0],[40,2],[41,0],[41,1],[42,0],[42,1],[46,0],[46,1],[49,0],[49,2],[50,0],[50,1],[52,0],[52,2],[53,0],[53,1],[57,0],[57,2],[58,0],[58,1],[61,0],[61,2],[62,0],[62,1],[66,0],[66,2],[67,0],[67,1],[70,1],[70,2],[76,1],[76,2]],performAction:function(a,b,c,d,e,f,g){var h=f.length-1;switch(e){case 1:return f[h-1];case 2:this.$=d.prepareProgram(f[h]);break;case 3:this.$=f[h];break;case 4:this.$=f[h];break;case 5:this.$=f[h];break;case 6:this.$=f[h];break;case 7:this.$=f[h];break;case 8:this.$=f[h];break;case 9:this.$={type:\"CommentStatement\",value:d.stripComment(f[h]),strip:d.stripFlags(f[h],f[h]),loc:d.locInfo(this._$)};break;case 10:this.$={type:\"ContentStatement\",original:f[h],value:f[h],loc:d.locInfo(this._$)};break;case 11:this.$=d.prepareRawBlock(f[h-2],f[h-1],f[h],this._$);break;case 12:this.$={path:f[h-3],params:f[h-2],hash:f[h-1]};break;case 13:this.$=d.prepareBlock(f[h-3],f[h-2],f[h-1],f[h],!1,this._$);break;case 14:this.$=d.prepareBlock(f[h-3],f[h-2],f[h-1],f[h],!0,this._$);break;case 15:this.$={open:f[h-5],path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 16:this.$={path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 17:this.$={path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 18:this.$={strip:d.stripFlags(f[h-1],f[h-1]),program:f[h]};break;case 19:var i=d.prepareBlock(f[h-2],f[h-1],f[h],f[h],!1,this._$),j=d.prepareProgram([i],f[h-1].loc);j.chained=!0,this.$={strip:f[h-2].strip,program:j,chain:!0};break;case 20:this.$=f[h];break;case 21:this.$={path:f[h-1],strip:d.stripFlags(f[h-2],f[h])};break;case 22:this.$=d.prepareMustache(f[h-3],f[h-2],f[h-1],f[h-4],d.stripFlags(f[h-4],f[h]),this._$);break;case 23:this.$=d.prepareMustache(f[h-3],f[h-2],f[h-1],f[h-4],d.stripFlags(f[h-4],f[h]),this._$);break;case 24:this.$={type:\"PartialStatement\",name:f[h-3],params:f[h-2],hash:f[h-1],indent:\"\",strip:d.stripFlags(f[h-4],f[h]),loc:d.locInfo(this._$)};break;case 25:this.$=d.preparePartialBlock(f[h-2],f[h-1],f[h],this._$);break;case 26:this.$={path:f[h-3],params:f[h-2],hash:f[h-1],strip:d.stripFlags(f[h-4],f[h])};break;case 27:this.$=f[h];break;case 28:this.$=f[h];break;case 29:this.$={type:\"SubExpression\",path:f[h-3],params:f[h-2],hash:f[h-1],loc:d.locInfo(this._$)};break;case 30:this.$={type:\"Hash\",pairs:f[h],loc:d.locInfo(this._$)};break;case 31:this.$={type:\"HashPair\",key:d.id(f[h-2]),value:f[h],loc:d.locInfo(this._$)};break;case 32:this.$=d.id(f[h-1]);break;case 33:this.$=f[h];break;case 34:this.$=f[h];break;case 35:this.$={type:\"StringLiteral\",value:f[h],original:f[h],loc:d.locInfo(this._$)};break;case 36:this.$={type:\"NumberLiteral\",value:Number(f[h]),original:Number(f[h]),loc:d.locInfo(this._$)};break;case 37:this.$={type:\"BooleanLiteral\",value:\"true\"===f[h],original:\"true\"===f[h],loc:d.locInfo(this._$)};break;case 38:this.$={type:\"UndefinedLiteral\",original:void 0,value:void 0,loc:d.locInfo(this._$)};break;case 39:this.$={type:\"NullLiteral\",original:null,value:null,loc:d.locInfo(this._$)};break;case 40:this.$=f[h];break;case 41:this.$=f[h];break;case 42:this.$=d.preparePath(!0,f[h],this._$);break;case 43:this.$=d.preparePath(!1,f[h],this._$);break;case 44:f[h-2].push({part:d.id(f[h]),original:f[h],separator:f[h-1]}),this.$=f[h-2];break;case 45:this.$=[{part:d.id(f[h]),original:f[h]}];break;case 46:this.$=[];break;case 47:f[h-1].push(f[h]);break;case 48:this.$=[f[h]];break;case 49:f[h-1].push(f[h]);break;case 50:this.$=[];break;case 51:f[h-1].push(f[h]);break;case 58:this.$=[];break;case 59:f[h-1].push(f[h]);break;case 64:this.$=[];break;case 65:f[h-1].push(f[h]);break;case 70:this.$=[];break;case 71:f[h-1].push(f[h]);break;case 78:this.$=[];break;case 79:f[h-1].push(f[h]);break;case 82:this.$=[];break;case 83:f[h-1].push(f[h]);break;case 86:this.$=[];break;case 87:f[h-1].push(f[h]);break;case 90:this.$=[];break;case 91:f[h-1].push(f[h]);break;case 94:this.$=[];break;case 95:f[h-1].push(f[h]);break;case 98:this.$=[f[h]];break;case 99:f[h-1].push(f[h]);break;case 100:this.$=[f[h]];break;case 101:f[h-1].push(f[h])}},table:[{3:1,4:2,5:[2,46],6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{1:[3]},{5:[1,4]},{5:[2,2],7:5,8:6,9:7,10:8,11:9,12:10,13:11,14:[1,12],15:[1,20],16:17,19:[1,23],24:15,27:16,29:[1,21],34:[1,22],39:[2,2],44:[2,2],47:[2,2],48:[1,13],51:[1,14],55:[1,18],59:19,60:[1,24]},{1:[2,1]},{5:[2,47],14:[2,47],15:[2,47],19:[2,47],29:[2,47],34:[2,47],39:[2,47],44:[2,47],47:[2,47],48:[2,47],51:[2,47],55:[2,47],60:[2,47]},{5:[2,3],14:[2,3],15:[2,3],19:[2,3],29:[2,3],34:[2,3],39:[2,3],44:[2,3],47:[2,3],48:[2,3],51:[2,3],55:[2,3],60:[2,3]},{5:[2,4],14:[2,4],15:[2,4],19:[2,4],29:[2,4],34:[2,4],39:[2,4],44:[2,4],47:[2,4],48:[2,4],51:[2,4],55:[2,4],60:[2,4]},{5:[2,5],14:[2,5],15:[2,5],19:[2,5],29:[2,5],34:[2,5],39:[2,5],44:[2,5],47:[2,5],48:[2,5],51:[2,5],55:[2,5],60:[2,5]},{5:[2,6],14:[2,6],15:[2,6],19:[2,6],29:[2,6],34:[2,6],39:[2,6],44:[2,6],47:[2,6],48:[2,6],51:[2,6],55:[2,6],60:[2,6]},{5:[2,7],14:[2,7],15:[2,7],19:[2,7],29:[2,7],34:[2,7],39:[2,7],44:[2,7],47:[2,7],48:[2,7],51:[2,7],55:[2,7],60:[2,7]},{5:[2,8],14:[2,8],15:[2,8],19:[2,8],29:[2,8],34:[2,8],39:[2,8],44:[2,8],47:[2,8],48:[2,8],51:[2,8],55:[2,8],60:[2,8]},{5:[2,9],14:[2,9],15:[2,9],19:[2,9],29:[2,9],34:[2,9],39:[2,9],44:[2,9],47:[2,9],48:[2,9],51:[2,9],55:[2,9],60:[2,9]},{20:25,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:36,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:37,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],39:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{4:38,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{13:40,15:[1,20],17:39},{20:42,56:41,64:43,65:[1,44],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:45,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{5:[2,10],14:[2,10],15:[2,10],18:[2,10],19:[2,10],29:[2,10],34:[2,10],39:[2,10],44:[2,10],47:[2,10],48:[2,10],51:[2,10],55:[2,10],60:[2,10]},{20:46,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:47,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:48,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:42,56:49,64:43,65:[1,44],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[2,78],49:50,65:[2,78],72:[2,78],80:[2,78],81:[2,78],82:[2,78],83:[2,78],84:[2,78],85:[2,78]},{23:[2,33],33:[2,33],54:[2,33],65:[2,33],68:[2,33],72:[2,33],75:[2,33],80:[2,33],81:[2,33],82:[2,33],83:[2,33],84:[2,33],85:[2,33]},{23:[2,34],33:[2,34],54:[2,34],65:[2,34],68:[2,34],72:[2,34],75:[2,34],80:[2,34],81:[2,34],82:[2,34],83:[2,34],84:[2,34],85:[2,34]},{23:[2,35],33:[2,35],54:[2,35],65:[2,35],68:[2,35],72:[2,35],75:[2,35],80:[2,35],81:[2,35],82:[2,35],83:[2,35],84:[2,35],85:[2,35]},{23:[2,36],33:[2,36],54:[2,36],65:[2,36],68:[2,36],72:[2,36],75:[2,36],80:[2,36],81:[2,36],82:[2,36],83:[2,36],84:[2,36],85:[2,36]},{23:[2,37],33:[2,37],54:[2,37],65:[2,37],68:[2,37],72:[2,37],75:[2,37],80:[2,37],81:[2,37],82:[2,37],83:[2,37],84:[2,37],85:[2,37]},{23:[2,38],33:[2,38],54:[2,38],65:[2,38],68:[2,38],72:[2,38],75:[2,38],80:[2,38],81:[2,38],82:[2,38],83:[2,38],84:[2,38],85:[2,38]},{23:[2,39],33:[2,39],54:[2,39],65:[2,39],68:[2,39],72:[2,39],75:[2,39],80:[2,39],81:[2,39],82:[2,39],83:[2,39],84:[2,39],85:[2,39]},{23:[2,43],33:[2,43],54:[2,43],65:[2,43],68:[2,43],72:[2,43],75:[2,43],80:[2,43],81:[2,43],82:[2,43],83:[2,43],84:[2,43],85:[2,43],87:[1,51]},{72:[1,35],86:52},{23:[2,45],33:[2,45],54:[2,45],65:[2,45],68:[2,45],72:[2,45],75:[2,45],80:[2,45],81:[2,45],82:[2,45],83:[2,45],84:[2,45],85:[2,45],87:[2,45]},{52:53,54:[2,82],65:[2,82],72:[2,82],80:[2,82],81:[2,82],82:[2,82],83:[2,82],84:[2,82],85:[2,82]},{25:54,38:56,39:[1,58],43:57,44:[1,59],45:55,47:[2,54]},{28:60,43:61,44:[1,59],47:[2,56]},{13:63,15:[1,20],18:[1,62]},{15:[2,48],18:[2,48]},{33:[2,86],57:64,65:[2,86],72:[2,86],80:[2,86],81:[2,86],82:[2,86],83:[2,86],84:[2,86],85:[2,86]},{33:[2,40],65:[2,40],72:[2,40],80:[2,40],81:[2,40],82:[2,40],83:[2,40],84:[2,40],85:[2,40]},{33:[2,41],65:[2,41],72:[2,41],80:[2,41],81:[2,41],82:[2,41],83:[2,41],84:[2,41],85:[2,41]},{20:65,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{26:66,47:[1,67]},{30:68,33:[2,58],65:[2,58],72:[2,58],75:[2,58],80:[2,58],81:[2,58],82:[2,58],83:[2,58],84:[2,58],85:[2,58]},{33:[2,64],35:69,65:[2,64],72:[2,64],75:[2,64],80:[2,64],81:[2,64],82:[2,64],83:[2,64],84:[2,64],85:[2,64]},{21:70,23:[2,50],65:[2,50],72:[2,50],80:[2,50],81:[2,50],82:[2,50],83:[2,50],84:[2,50],85:[2,50]},{33:[2,90],61:71,65:[2,90],72:[2,90],80:[2,90],81:[2,90],82:[2,90],83:[2,90],84:[2,90],85:[2,90]},{20:75,33:[2,80],50:72,63:73,64:76,65:[1,44],69:74,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{72:[1,80]},{23:[2,42],33:[2,42],54:[2,42],65:[2,42],68:[2,42],72:[2,42],75:[2,42],80:[2,42],81:[2,42],82:[2,42],83:[2,42],84:[2,42],85:[2,42],87:[1,51]},{20:75,53:81,54:[2,84],63:82,64:76,65:[1,44],69:83,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{26:84,47:[1,67]},{47:[2,55]},{4:85,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],39:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{47:[2,20]},{20:86,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:87,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{26:88,47:[1,67]},{47:[2,57]},{5:[2,11],14:[2,11],15:[2,11],19:[2,11],29:[2,11],34:[2,11],39:[2,11],44:[2,11],47:[2,11],48:[2,11],51:[2,11],55:[2,11],60:[2,11]},{15:[2,49],18:[2,49]},{20:75,33:[2,88],58:89,63:90,64:76,65:[1,44],69:91,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{65:[2,94],66:92,68:[2,94],72:[2,94],80:[2,94],81:[2,94],82:[2,94],83:[2,94],84:[2,94],85:[2,94]},{5:[2,25],14:[2,25],15:[2,25],19:[2,25],29:[2,25],34:[2,25],39:[2,25],44:[2,25],47:[2,25],48:[2,25],51:[2,25],55:[2,25],60:[2,25]},{20:93,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:75,31:94,33:[2,60],63:95,64:76,65:[1,44],69:96,70:77,71:78,72:[1,79],75:[2,60],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:75,33:[2,66],36:97,63:98,64:76,65:[1,44],69:99,70:77,71:78,72:[1,79],75:[2,66],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:75,22:100,23:[2,52],63:101,64:76,65:[1,44],69:102,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:75,33:[2,92],62:103,63:104,64:76,65:[1,44],69:105,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[1,106]},{33:[2,79],65:[2,79],72:[2,79],80:[2,79],81:[2,79],82:[2,79],83:[2,79],84:[2,79],85:[2,79]},{33:[2,81]},{23:[2,27],33:[2,27],54:[2,27],65:[2,27],68:[2,27],72:[2,27],75:[2,27],80:[2,27],81:[2,27],82:[2,27],83:[2,27],84:[2,27],85:[2,27]},{23:[2,28],33:[2,28],54:[2,28],65:[2,28],68:[2,28],72:[2,28],75:[2,28],80:[2,28],81:[2,28],82:[2,28],83:[2,28],84:[2,28],85:[2,28]},{23:[2,30],33:[2,30],54:[2,30],68:[2,30],71:107,72:[1,108],75:[2,30]},{23:[2,98],33:[2,98],54:[2,98],68:[2,98],72:[2,98],75:[2,98]},{23:[2,45],33:[2,45],54:[2,45],65:[2,45],68:[2,45],72:[2,45],73:[1,109],75:[2,45],80:[2,45],81:[2,45],82:[2,45],83:[2,45],84:[2,45],85:[2,45],87:[2,45]},{23:[2,44],33:[2,44],54:[2,44],65:[2,44],68:[2,44],72:[2,44],75:[2,44],80:[2,44],81:[2,44],82:[2,44],83:[2,44],84:[2,44],85:[2,44],87:[2,44]},{54:[1,110]},{54:[2,83],65:[2,83],72:[2,83],80:[2,83],81:[2,83],82:[2,83],83:[2,83],84:[2,83],85:[2,83]},{54:[2,85]},{5:[2,13],14:[2,13],15:[2,13],19:[2,13],29:[2,13],34:[2,13],39:[2,13],44:[2,13],47:[2,13],48:[2,13],51:[2,13],55:[2,13],60:[2,13]},{38:56,39:[1,58],43:57,44:[1,59],45:112,46:111,47:[2,76]},{33:[2,70],40:113,65:[2,70],72:[2,70],75:[2,70],80:[2,70],81:[2,70],82:[2,70],83:[2,70],84:[2,70],85:[2,70]},{47:[2,18]},{5:[2,14],14:[2,14],15:[2,14],19:[2,14],29:[2,14],34:[2,14],39:[2,14],44:[2,14],47:[2,14],48:[2,14],51:[2,14],55:[2,14],60:[2,14]},{33:[1,114]},{33:[2,87],65:[2,87],72:[2,87],80:[2,87],81:[2,87],82:[2,87],83:[2,87],84:[2,87],\n    85:[2,87]},{33:[2,89]},{20:75,63:116,64:76,65:[1,44],67:115,68:[2,96],69:117,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[1,118]},{32:119,33:[2,62],74:120,75:[1,121]},{33:[2,59],65:[2,59],72:[2,59],75:[2,59],80:[2,59],81:[2,59],82:[2,59],83:[2,59],84:[2,59],85:[2,59]},{33:[2,61],75:[2,61]},{33:[2,68],37:122,74:123,75:[1,121]},{33:[2,65],65:[2,65],72:[2,65],75:[2,65],80:[2,65],81:[2,65],82:[2,65],83:[2,65],84:[2,65],85:[2,65]},{33:[2,67],75:[2,67]},{23:[1,124]},{23:[2,51],65:[2,51],72:[2,51],80:[2,51],81:[2,51],82:[2,51],83:[2,51],84:[2,51],85:[2,51]},{23:[2,53]},{33:[1,125]},{33:[2,91],65:[2,91],72:[2,91],80:[2,91],81:[2,91],82:[2,91],83:[2,91],84:[2,91],85:[2,91]},{33:[2,93]},{5:[2,22],14:[2,22],15:[2,22],19:[2,22],29:[2,22],34:[2,22],39:[2,22],44:[2,22],47:[2,22],48:[2,22],51:[2,22],55:[2,22],60:[2,22]},{23:[2,99],33:[2,99],54:[2,99],68:[2,99],72:[2,99],75:[2,99]},{73:[1,109]},{20:75,63:126,64:76,65:[1,44],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{5:[2,23],14:[2,23],15:[2,23],19:[2,23],29:[2,23],34:[2,23],39:[2,23],44:[2,23],47:[2,23],48:[2,23],51:[2,23],55:[2,23],60:[2,23]},{47:[2,19]},{47:[2,77]},{20:75,33:[2,72],41:127,63:128,64:76,65:[1,44],69:129,70:77,71:78,72:[1,79],75:[2,72],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{5:[2,24],14:[2,24],15:[2,24],19:[2,24],29:[2,24],34:[2,24],39:[2,24],44:[2,24],47:[2,24],48:[2,24],51:[2,24],55:[2,24],60:[2,24]},{68:[1,130]},{65:[2,95],68:[2,95],72:[2,95],80:[2,95],81:[2,95],82:[2,95],83:[2,95],84:[2,95],85:[2,95]},{68:[2,97]},{5:[2,21],14:[2,21],15:[2,21],19:[2,21],29:[2,21],34:[2,21],39:[2,21],44:[2,21],47:[2,21],48:[2,21],51:[2,21],55:[2,21],60:[2,21]},{33:[1,131]},{33:[2,63]},{72:[1,133],76:132},{33:[1,134]},{33:[2,69]},{15:[2,12]},{14:[2,26],15:[2,26],19:[2,26],29:[2,26],34:[2,26],47:[2,26],48:[2,26],51:[2,26],55:[2,26],60:[2,26]},{23:[2,31],33:[2,31],54:[2,31],68:[2,31],72:[2,31],75:[2,31]},{33:[2,74],42:135,74:136,75:[1,121]},{33:[2,71],65:[2,71],72:[2,71],75:[2,71],80:[2,71],81:[2,71],82:[2,71],83:[2,71],84:[2,71],85:[2,71]},{33:[2,73],75:[2,73]},{23:[2,29],33:[2,29],54:[2,29],65:[2,29],68:[2,29],72:[2,29],75:[2,29],80:[2,29],81:[2,29],82:[2,29],83:[2,29],84:[2,29],85:[2,29]},{14:[2,15],15:[2,15],19:[2,15],29:[2,15],34:[2,15],39:[2,15],44:[2,15],47:[2,15],48:[2,15],51:[2,15],55:[2,15],60:[2,15]},{72:[1,138],77:[1,137]},{72:[2,100],77:[2,100]},{14:[2,16],15:[2,16],19:[2,16],29:[2,16],34:[2,16],44:[2,16],47:[2,16],48:[2,16],51:[2,16],55:[2,16],60:[2,16]},{33:[1,139]},{33:[2,75]},{33:[2,32]},{72:[2,101],77:[2,101]},{14:[2,17],15:[2,17],19:[2,17],29:[2,17],34:[2,17],39:[2,17],44:[2,17],47:[2,17],48:[2,17],51:[2,17],55:[2,17],60:[2,17]}],defaultActions:{4:[2,1],55:[2,55],57:[2,20],61:[2,57],74:[2,81],83:[2,85],87:[2,18],91:[2,89],102:[2,53],105:[2,93],111:[2,19],112:[2,77],117:[2,97],120:[2,63],123:[2,69],124:[2,12],136:[2,75],137:[2,32]},parseError:function(a,b){throw new Error(a)},parse:function(a){function b(){var a;return a=c.lexer.lex()||1,\"number\"!=typeof a\u0026\u0026(a=c.symbols_[a]||a),a}var c=this,d=[0],e=[null],f=[],g=this.table,h=\"\",i=0,j=0,k=0;this.lexer.setInput(a),this.lexer.yy=this.yy,this.yy.lexer=this.lexer,this.yy.parser=this,\"undefined\"==typeof this.lexer.yylloc\u0026\u0026(this.lexer.yylloc={});var l=this.lexer.yylloc;f.push(l);var m=this.lexer.options\u0026\u0026this.lexer.options.ranges;\"function\"==typeof this.yy.parseError\u0026\u0026(this.parseError=this.yy.parseError);for(var n,o,p,q,r,s,t,u,v,w={};;){if(p=d[d.length-1],this.defaultActions[p]?q=this.defaultActions[p]:(null!==n\u0026\u0026\"undefined\"!=typeof n||(n=b()),q=g[p]\u0026\u0026g[p][n]),\"undefined\"==typeof q||!q.length||!q[0]){var x=\"\";if(!k){v=[];for(s in g[p])this.terminals_[s]\u0026\u0026s\u003e2\u0026\u0026v.push(\"'\"+this.terminals_[s]+\"'\");x=this.lexer.showPosition?\"Parse error on line \"+(i+1)+\":\\n\"+this.lexer.showPosition()+\"\\nExpecting \"+v.join(\", \")+\", got '\"+(this.terminals_[n]||n)+\"'\":\"Parse error on line \"+(i+1)+\": Unexpected \"+(1==n?\"end of input\":\"'\"+(this.terminals_[n]||n)+\"'\"),this.parseError(x,{text:this.lexer.match,token:this.terminals_[n]||n,line:this.lexer.yylineno,loc:l,expected:v})}}if(q[0]instanceof Array\u0026\u0026q.length\u003e1)throw new Error(\"Parse Error: multiple actions possible at state: \"+p+\", token: \"+n);switch(q[0]){case 1:d.push(n),e.push(this.lexer.yytext),f.push(this.lexer.yylloc),d.push(q[1]),n=null,o?(n=o,o=null):(j=this.lexer.yyleng,h=this.lexer.yytext,i=this.lexer.yylineno,l=this.lexer.yylloc,k\u003e0\u0026\u0026k--);break;case 2:if(t=this.productions_[q[1]][1],w.$=e[e.length-t],w._$={first_line:f[f.length-(t||1)].first_line,last_line:f[f.length-1].last_line,first_column:f[f.length-(t||1)].first_column,last_column:f[f.length-1].last_column},m\u0026\u0026(w._$.range=[f[f.length-(t||1)].range[0],f[f.length-1].range[1]]),r=this.performAction.call(w,h,j,i,this.yy,q[1],e,f),\"undefined\"!=typeof r)return r;t\u0026\u0026(d=d.slice(0,-1*t*2),e=e.slice(0,-1*t),f=f.slice(0,-1*t)),d.push(this.productions_[q[1]][0]),e.push(w.$),f.push(w._$),u=g[d[d.length-2]][d[d.length-1]],d.push(u);break;case 3:return!0}}return!0}},c=function(){var a={EOF:1,parseError:function(a,b){if(!this.yy.parser)throw new Error(a);this.yy.parser.parseError(a,b)},setInput:function(a){return this._input=a,this._more=this._less=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match=\"\",this.conditionStack=[\"INITIAL\"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges\u0026\u0026(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var a=this._input[0];this.yytext+=a,this.yyleng++,this.offset++,this.match+=a,this.matched+=a;var b=a.match(\/(?:\\r\\n?|\\n).*\/g);return b?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges\u0026\u0026this.yylloc.range[1]++,this._input=this._input.slice(1),a},unput:function(a){var b=a.length,c=a.split(\/(?:\\r\\n?|\\n)\/g);this._input=a+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-b-1),this.offset-=b;var d=this.match.split(\/(?:\\r\\n?|\\n)\/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),c.length-1\u0026\u0026(this.yylineno-=c.length-1);var e=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:c?(c.length===d.length?this.yylloc.first_column:0)+d[d.length-c.length].length-c[0].length:this.yylloc.first_column-b},this.options.ranges\u0026\u0026(this.yylloc.range=[e[0],e[0]+this.yyleng-b]),this},more:function(){return this._more=!0,this},less:function(a){this.unput(this.match.slice(a))},pastInput:function(){var a=this.matched.substr(0,this.matched.length-this.match.length);return(a.length\u003e20?\"...\":\"\")+a.substr(-20).replace(\/\\n\/g,\"\")},upcomingInput:function(){var a=this.match;return a.length\u003c20\u0026\u0026(a+=this._input.substr(0,20-a.length)),(a.substr(0,20)+(a.length\u003e20?\"...\":\"\")).replace(\/\\n\/g,\"\")},showPosition:function(){var a=this.pastInput(),b=new Array(a.length+1).join(\"-\");return a+this.upcomingInput()+\"\\n\"+b+\"^\"},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var a,b,c,d,e;this._more||(this.yytext=\"\",this.match=\"\");for(var f=this._currentRules(),g=0;g\u003cf.length\u0026\u0026(c=this._input.match(this.rules[f[g]]),!c||b\u0026\u0026!(c[0].length\u003eb[0].length)||(b=c,d=g,this.options.flex));g++);return b?(e=b[0].match(\/(?:\\r\\n?|\\n).*\/g),e\u0026\u0026(this.yylineno+=e.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:e?e[e.length-1].length-e[e.length-1].match(\/\\r?\\n?\/)[0].length:this.yylloc.last_column+b[0].length},this.yytext+=b[0],this.match+=b[0],this.matches=b,this.yyleng=this.yytext.length,this.options.ranges\u0026\u0026(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._input=this._input.slice(b[0].length),this.matched+=b[0],a=this.performAction.call(this,this.yy,this,f[d],this.conditionStack[this.conditionStack.length-1]),this.done\u0026\u0026this._input\u0026\u0026(this.done=!1),a?a:void 0):\"\"===this._input?this.EOF:this.parseError(\"Lexical error on line \"+(this.yylineno+1)+\". Unrecognized text.\\n\"+this.showPosition(),{text:\"\",token:null,line:this.yylineno})},lex:function(){var a=this.next();return\"undefined\"!=typeof a?a:this.lex()},begin:function(a){this.conditionStack.push(a)},popState:function(){return this.conditionStack.pop()},_currentRules:function(){return this.conditions[this.conditionStack[this.conditionStack.length-1]].rules},topState:function(){return this.conditionStack[this.conditionStack.length-2]},pushState:function(a){this.begin(a)}};return a.options={},a.performAction=function(a,b,c,d){function e(a,c){return b.yytext=b.yytext.substr(a,b.yyleng-c)}switch(c){case 0:if(\"\\\\\\\\\"===b.yytext.slice(-2)?(e(0,1),this.begin(\"mu\")):\"\\\\\"===b.yytext.slice(-1)?(e(0,1),this.begin(\"emu\")):this.begin(\"mu\"),b.yytext)return 15;break;case 1:return 15;case 2:return this.popState(),15;case 3:return this.begin(\"raw\"),15;case 4:return this.popState(),\"raw\"===this.conditionStack[this.conditionStack.length-1]?15:(b.yytext=b.yytext.substr(5,b.yyleng-9),\"END_RAW_BLOCK\");case 5:return 15;case 6:return this.popState(),14;case 7:return 65;case 8:return 68;case 9:return 19;case 10:return this.popState(),this.begin(\"raw\"),23;case 11:return 55;case 12:return 60;case 13:return 29;case 14:return 47;case 15:return this.popState(),44;case 16:return this.popState(),44;case 17:return 34;case 18:return 39;case 19:return 51;case 20:return 48;case 21:this.unput(b.yytext),this.popState(),this.begin(\"com\");break;case 22:return this.popState(),14;case 23:return 48;case 24:return 73;case 25:return 72;case 26:return 72;case 27:return 87;case 28:break;case 29:return this.popState(),54;case 30:return this.popState(),33;case 31:return b.yytext=e(1,2).replace(\/\\\\\"\/g,'\"'),80;case 32:return b.yytext=e(1,2).replace(\/\\\\'\/g,\"'\"),80;case 33:return 85;case 34:return 82;case 35:return 82;case 36:return 83;case 37:return 84;case 38:return 81;case 39:return 75;case 40:return 77;case 41:return 72;case 42:return b.yytext=b.yytext.replace(\/\\\\([\\\\\\]])\/g,\"$1\"),72;case 43:return\"INVALID\";case 44:return 5}},a.rules=[\/^(?:[^\\x00]*?(?=(\\{\\{)))\/,\/^(?:[^\\x00]+)\/,\/^(?:[^\\x00]{2,}?(?=(\\{\\{|\\\\\\{\\{|\\\\\\\\\\{\\{|$)))\/,\/^(?:\\{\\{\\{\\{(?=[^\\\/]))\/,\/^(?:\\{\\{\\{\\{\\\/[^\\s!\"#%-,\\.\\\/;-\u003e@\\[-\\^`\\{-~]+(?=[=}\\s\\\/.])\\}\\}\\}\\})\/,\/^(?:[^\\x00]*?(?=(\\{\\{\\{\\{)))\/,\/^(?:[\\s\\S]*?--(~)?\\}\\})\/,\/^(?:\\()\/,\/^(?:\\))\/,\/^(?:\\{\\{\\{\\{)\/,\/^(?:\\}\\}\\}\\})\/,\/^(?:\\{\\{(~)?\u003e)\/,\/^(?:\\{\\{(~)?#\u003e)\/,\/^(?:\\{\\{(~)?#\\*?)\/,\/^(?:\\{\\{(~)?\\\/)\/,\/^(?:\\{\\{(~)?\\^\\s*(~)?\\}\\})\/,\/^(?:\\{\\{(~)?\\s*else\\s*(~)?\\}\\})\/,\/^(?:\\{\\{(~)?\\^)\/,\/^(?:\\{\\{(~)?\\s*else\\b)\/,\/^(?:\\{\\{(~)?\\{)\/,\/^(?:\\{\\{(~)?\u0026)\/,\/^(?:\\{\\{(~)?!--)\/,\/^(?:\\{\\{(~)?![\\s\\S]*?\\}\\})\/,\/^(?:\\{\\{(~)?\\*?)\/,\/^(?:=)\/,\/^(?:\\.\\.)\/,\/^(?:\\.(?=([=~}\\s\\\/.)|])))\/,\/^(?:[\\\/.])\/,\/^(?:\\s+)\/,\/^(?:\\}(~)?\\}\\})\/,\/^(?:(~)?\\}\\})\/,\/^(?:\"(\\\\[\"]|[^\"])*\")\/,\/^(?:'(\\\\[']|[^'])*')\/,\/^(?:@)\/,\/^(?:true(?=([~}\\s)])))\/,\/^(?:false(?=([~}\\s)])))\/,\/^(?:undefined(?=([~}\\s)])))\/,\/^(?:null(?=([~}\\s)])))\/,\/^(?:-?[0-9]+(?:\\.[0-9]+)?(?=([~}\\s)])))\/,\/^(?:as\\s+\\|)\/,\/^(?:\\|)\/,\/^(?:([^\\s!\"#%-,\\.\\\/;-\u003e@\\[-\\^`\\{-~]+(?=([=~}\\s\\\/.)|]))))\/,\/^(?:\\[(\\\\\\]|[^\\]])*\\])\/,\/^(?:.)\/,\/^(?:$)\/],a.conditions={mu:{rules:[7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],inclusive:!1},emu:{rules:[2],inclusive:!1},com:{rules:[6],inclusive:!1},raw:{rules:[3,4,5],inclusive:!1},INITIAL:{rules:[0,1,44],inclusive:!0}},a}();return b.lexer=c,a.prototype=b,b.Parser=a,new a}();b[\"default\"]=c,a.exports=b[\"default\"]},function(a,b,c){\"use strict\";function d(){var a=arguments.length\u003c=0||void 0===arguments[0]?{}:arguments[0];this.options=a}function e(a,b,c){void 0===b\u0026\u0026(b=a.length);var d=a[b-1],e=a[b-2];return d?\"ContentStatement\"===d.type?(e||!c?\/\\r?\\n\\s*?$\/:\/(^|\\r?\\n)\\s*?$\/).test(d.original):void 0:c}function f(a,b,c){void 0===b\u0026\u0026(b=-1);var d=a[b+1],e=a[b+2];return d?\"ContentStatement\"===d.type?(e||!c?\/^\\s*?\\r?\\n\/:\/^\\s*?(\\r?\\n|$)\/).test(d.original):void 0:c}function g(a,b,c){var d=a[null==b?0:b+1];if(d\u0026\u0026\"ContentStatement\"===d.type\u0026\u0026(c||!d.rightStripped)){var e=d.value;d.value=d.value.replace(c?\/^\\s+\/:\/^[ \\t]*\\r?\\n?\/,\"\"),d.rightStripped=d.value!==e}}function h(a,b,c){var d=a[null==b?a.length-1:b-1];if(d\u0026\u0026\"ContentStatement\"===d.type\u0026\u0026(c||!d.leftStripped)){var e=d.value;return d.value=d.value.replace(c?\/\\s+$\/:\/[ \\t]+$\/,\"\"),d.leftStripped=d.value!==e,d.leftStripped}}var i=c(1)[\"default\"];b.__esModule=!0;var j=c(39),k=i(j);d.prototype=new k[\"default\"],d.prototype.Program=function(a){var b=!this.options.ignoreStandalone,c=!this.isRootSeen;this.isRootSeen=!0;for(var d=a.body,i=0,j=d.length;i\u003cj;i++){var k=d[i],l=this.accept(k);if(l){var m=e(d,i,c),n=f(d,i,c),o=l.openStandalone\u0026\u0026m,p=l.closeStandalone\u0026\u0026n,q=l.inlineStandalone\u0026\u0026m\u0026\u0026n;l.close\u0026\u0026g(d,i,!0),l.open\u0026\u0026h(d,i,!0),b\u0026\u0026q\u0026\u0026(g(d,i),h(d,i)\u0026\u0026\"PartialStatement\"===k.type\u0026\u0026(k.indent=\/([ \\t]+$)\/.exec(d[i-1].original)[1])),b\u0026\u0026o\u0026\u0026(g((k.program||k.inverse).body),h(d,i)),b\u0026\u0026p\u0026\u0026(g(d,i),h((k.inverse||k.program).body))}}return a},d.prototype.BlockStatement=d.prototype.DecoratorBlock=d.prototype.PartialBlockStatement=function(a){this.accept(a.program),this.accept(a.inverse);var b=a.program||a.inverse,c=a.program\u0026\u0026a.inverse,d=c,i=c;if(c\u0026\u0026c.chained)for(d=c.body[0].program;i.chained;)i=i.body[i.body.length-1].program;var j={open:a.openStrip.open,close:a.closeStrip.close,openStandalone:f(b.body),closeStandalone:e((d||b).body)};if(a.openStrip.close\u0026\u0026g(b.body,null,!0),c){var k=a.inverseStrip;k.open\u0026\u0026h(b.body,null,!0),k.close\u0026\u0026g(d.body,null,!0),a.closeStrip.open\u0026\u0026h(i.body,null,!0),!this.options.ignoreStandalone\u0026\u0026e(b.body)\u0026\u0026f(d.body)\u0026\u0026(h(b.body),g(d.body))}else a.closeStrip.open\u0026\u0026h(b.body,null,!0);return j},d.prototype.Decorator=d.prototype.MustacheStatement=function(a){return a.strip},d.prototype.PartialStatement=d.prototype.CommentStatement=function(a){var b=a.strip||{};return{inlineStandalone:!0,open:b.open,close:b.close}},b[\"default\"]=d,a.exports=b[\"default\"]},function(a,b,c){\"use strict\";function d(){this.parents=[]}function e(a){this.acceptRequired(a,\"path\"),this.acceptArray(a.params),this.acceptKey(a,\"hash\")}function f(a){e.call(this,a),this.acceptKey(a,\"program\"),this.acceptKey(a,\"inverse\")}function g(a){this.acceptRequired(a,\"name\"),this.acceptArray(a.params),this.acceptKey(a,\"hash\")}var h=c(1)[\"default\"];b.__esModule=!0;var i=c(6),j=h(i);d.prototype={constructor:d,mutating:!1,acceptKey:function(a,b){var c=this.accept(a[b]);if(this.mutating){if(c\u0026\u0026!d.prototype[c.type])throw new j[\"default\"]('Unexpected node type \"'+c.type+'\" found when accepting '+b+\" on \"+a.type);a[b]=c}},acceptRequired:function(a,b){if(this.acceptKey(a,b),!a[b])throw new j[\"default\"](a.type+\" requires \"+b)},acceptArray:function(a){for(var b=0,c=a.length;b\u003cc;b++)this.acceptKey(a,b),a[b]||(a.splice(b,1),b--,c--)},accept:function(a){if(a){if(!this[a.type])throw new j[\"default\"](\"Unknown type: \"+a.type,a);this.current\u0026\u0026this.parents.unshift(this.current),this.current=a;var b=this[a.type](a);return this.current=this.parents.shift(),!this.mutating||b?b:b!==!1?a:void 0}},Program:function(a){this.acceptArray(a.body)},MustacheStatement:e,Decorator:e,BlockStatement:f,DecoratorBlock:f,PartialStatement:g,PartialBlockStatement:function(a){g.call(this,a),this.acceptKey(a,\"program\")},ContentStatement:function(){},CommentStatement:function(){},SubExpression:e,PathExpression:function(){},StringLiteral:function(){},NumberLiteral:function(){},BooleanLiteral:function(){},UndefinedLiteral:function(){},NullLiteral:function(){},Hash:function(a){this.acceptArray(a.pairs)},HashPair:function(a){this.acceptRequired(a,\"value\")}},b[\"default\"]=d,a.exports=b[\"default\"]},function(a,b,c){\"use strict\";function d(a,b){if(b=b.path?b.path.original:b,a.path.original!==b){var c={loc:a.path.loc};throw new q[\"default\"](a.path.original+\" doesn't match \"+b,c)}}function e(a,b){this.source=a,this.start={line:b.first_line,column:b.first_column},this.end={line:b.last_line,column:b.last_column}}function f(a){return\/^\\[.*\\]$\/.test(a)?a.substr(1,a.length-2):a}function g(a,b){return{open:\"~\"===a.charAt(2),close:\"~\"===b.charAt(b.length-3)}}function h(a){return a.replace(\/^\\{\\{~?\\!-?-?\/,\"\").replace(\/-?-?~?\\}\\}$\/,\"\")}function i(a,b,c){c=this.locInfo(c);for(var d=a?\"@\":\"\",e=[],f=0,g=\"\",h=0,i=b.length;h\u003ci;h++){var j=b[h].part,k=b[h].original!==j;if(d+=(b[h].separator||\"\")+j,k||\"..\"!==j\u0026\u0026\".\"!==j\u0026\u0026\"this\"!==j)e.push(j);else{if(e.length\u003e0)throw new q[\"default\"](\"Invalid path: \"+d,{loc:c});\"..\"===j\u0026\u0026(f++,g+=\"..\/\")}}return{type:\"PathExpression\",data:a,depth:f,parts:e,original:d,loc:c}}function j(a,b,c,d,e,f){var g=d.charAt(3)||d.charAt(2),h=\"{\"!==g\u0026\u0026\"\u0026\"!==g,i=\/\\*\/.test(d);return{type:i?\"Decorator\":\"MustacheStatement\",path:a,params:b,hash:c,escaped:h,strip:e,loc:this.locInfo(f)}}function k(a,b,c,e){d(a,c),e=this.locInfo(e);var f={type:\"Program\",body:b,strip:{},loc:e};return{type:\"BlockStatement\",path:a.path,params:a.params,hash:a.hash,program:f,openStrip:{},inverseStrip:{},closeStrip:{},loc:e}}function l(a,b,c,e,f,g){e\u0026\u0026e.path\u0026\u0026d(a,e);var h=\/\\*\/.test(a.open);b.blockParams=a.blockParams;var i=void 0,j=void 0;if(c){if(h)throw new q[\"default\"](\"Unexpected inverse block on decorator\",c);c.chain\u0026\u0026(c.program.body[0].closeStrip=e.strip),j=c.strip,i=c.program}return f\u0026\u0026(f=i,i=b,b=f),{type:h?\"DecoratorBlock\":\"BlockStatement\",path:a.path,params:a.params,hash:a.hash,program:b,inverse:i,openStrip:a.strip,inverseStrip:j,closeStrip:e\u0026\u0026e.strip,loc:this.locInfo(g)}}function m(a,b){if(!b\u0026\u0026a.length){var c=a[0].loc,d=a[a.length-1].loc;c\u0026\u0026d\u0026\u0026(b={source:c.source,start:{line:c.start.line,column:c.start.column},end:{line:d.end.line,column:d.end.column}})}return{type:\"Program\",body:a,strip:{},loc:b}}function n(a,b,c,e){return d(a,c),{type:\"PartialBlockStatement\",name:a.path,params:a.params,hash:a.hash,program:b,openStrip:a.strip,closeStrip:c\u0026\u0026c.strip,loc:this.locInfo(e)}}var o=c(1)[\"default\"];b.__esModule=!0,b.SourceLocation=e,b.id=f,b.stripFlags=g,b.stripComment=h,b.preparePath=i,b.prepareMustache=j,b.prepareRawBlock=k,b.prepareBlock=l,b.prepareProgram=m,b.preparePartialBlock=n;var p=c(6),q=o(p)},function(a,b,c){\"use strict\";function d(){}function e(a,b,c){if(null==a||\"string\"!=typeof a\u0026\u0026\"Program\"!==a.type)throw new k[\"default\"](\"You must pass a string or appikonHandlebars AST to appikonHandlebars.precompile. You passed \"+a);b=b||{},\"data\"in b||(b.data=!0),b.compat\u0026\u0026(b.useDepths=!0);var d=c.parse(a,b),e=(new c.Compiler).compile(d,b);return(new c.JavaScriptCompiler).compile(e,b)}function f(a,b,c){function d(){var d=c.parse(a,b),e=(new c.Compiler).compile(d,b),f=(new c.JavaScriptCompiler).compile(e,b,void 0,!0);return c.template(f)}function e(a,b){return f||(f=d()),f.call(this,a,b)}if(void 0===b\u0026\u0026(b={}),null==a||\"string\"!=typeof a\u0026\u0026\"Program\"!==a.type)throw new k[\"default\"](\"You must pass a string or appikonHandlebars AST to appikonHandlebars.compile. You passed \"+a);\"data\"in b||(b.data=!0),b.compat\u0026\u0026(b.useDepths=!0);var f=void 0;return e._setup=function(a){return f||(f=d()),f._setup(a)},e._child=function(a,b,c,e){return f||(f=d()),f._child(a,b,c,e)},e}function g(a,b){if(a===b)return!0;if(l.isArray(a)\u0026\u0026l.isArray(b)\u0026\u0026a.length===b.length){for(var c=0;c\u003ca.length;c++)if(!g(a[c],b[c]))return!1;return!0}}function h(a){if(!a.path.parts){var b=a.path;a.path={type:\"PathExpression\",data:!1,depth:0,parts:[b.original+\"\"],original:b.original+\"\",loc:b.loc}}}var i=c(1)[\"default\"];b.__esModule=!0,b.Compiler=d,b.precompile=e,b.compile=f;var j=c(6),k=i(j),l=c(5),m=c(35),n=i(m),o=[].slice;d.prototype={compiler:d,equals:function(a){var b=this.opcodes.length;if(a.opcodes.length!==b)return!1;for(var c=0;c\u003cb;c++){var d=this.opcodes[c],e=a.opcodes[c];if(d.opcode!==e.opcode||!g(d.args,e.args))return!1}b=this.children.length;for(var c=0;c\u003cb;c++)if(!this.children[c].equals(a.children[c]))return!1;return!0},guid:0,compile:function(a,b){this.sourceNode=[],this.opcodes=[],this.children=[],this.options=b,this.stringParams=b.stringParams,this.trackIds=b.trackIds,b.blockParams=b.blockParams||[];var c=b.knownHelpers;if(b.knownHelpers={helperMissing:!0,blockHelperMissing:!0,each:!0,\"if\":!0,unless:!0,\"with\":!0,log:!0,lookup:!0},c)for(var d in c)d in c\u0026\u0026(b.knownHelpers[d]=c[d]);return this.accept(a)},compileProgram:function(a){var b=new this.compiler,c=b.compile(a,this.options),d=this.guid++;return this.usePartial=this.usePartial||c.usePartial,this.children[d]=c,this.useDepths=this.useDepths||c.useDepths,d},accept:function(a){if(!this[a.type])throw new k[\"default\"](\"Unknown type: \"+a.type,a);this.sourceNode.unshift(a);var b=this[a.type](a);return this.sourceNode.shift(),b},Program:function(a){this.options.blockParams.unshift(a.blockParams);for(var b=a.body,c=b.length,d=0;d\u003cc;d++)this.accept(b[d]);return this.options.blockParams.shift(),this.isSimple=1===c,this.blockParams=a.blockParams?a.blockParams.length:0,this},BlockStatement:function(a){h(a);var b=a.program,c=a.inverse;b=b\u0026\u0026this.compileProgram(b),c=c\u0026\u0026this.compileProgram(c);var d=this.classifySexpr(a);\"helper\"===d?this.helperSexpr(a,b,c):\"simple\"===d?(this.simpleSexpr(a),this.opcode(\"pushProgram\",b),this.opcode(\"pushProgram\",c),this.opcode(\"emptyHash\"),this.opcode(\"blockValue\",a.path.original)):(this.ambiguousSexpr(a,b,c),this.opcode(\"pushProgram\",b),this.opcode(\"pushProgram\",c),this.opcode(\"emptyHash\"),this.opcode(\"ambiguousBlockValue\")),this.opcode(\"append\")},DecoratorBlock:function(a){var b=a.program\u0026\u0026this.compileProgram(a.program),c=this.setupFullMustacheParams(a,b,void 0),d=a.path;this.useDecorators=!0,this.opcode(\"registerDecorator\",c.length,d.original)},PartialStatement:function(a){this.usePartial=!0;var b=a.program;b\u0026\u0026(b=this.compileProgram(a.program));var c=a.params;if(c.length\u003e1)throw new k[\"default\"](\"Unsupported number of partial arguments: \"+c.length,a);c.length||(this.options.explicitPartialContext?this.opcode(\"pushLiteral\",\"undefined\"):c.push({type:\"PathExpression\",parts:[],depth:0}));var d=a.name.original,e=\"SubExpression\"===a.name.type;e\u0026\u0026this.accept(a.name),this.setupFullMustacheParams(a,b,void 0,!0);var f=a.indent||\"\";this.options.preventIndent\u0026\u0026f\u0026\u0026(this.opcode(\"appendContent\",f),f=\"\"),this.opcode(\"invokePartial\",e,d,f),this.opcode(\"append\")},PartialBlockStatement:function(a){this.PartialStatement(a)},MustacheStatement:function(a){this.SubExpression(a),a.escaped\u0026\u0026!this.options.noEscape?this.opcode(\"appendEscaped\"):this.opcode(\"append\")},Decorator:function(a){this.DecoratorBlock(a)},ContentStatement:function(a){a.value\u0026\u0026this.opcode(\"appendContent\",a.value)},CommentStatement:function(){},SubExpression:function(a){h(a);var b=this.classifySexpr(a);\"simple\"===b?this.simpleSexpr(a):\"helper\"===b?this.helperSexpr(a):this.ambiguousSexpr(a)},ambiguousSexpr:function(a,b,c){var d=a.path,e=d.parts[0],f=null!=b||null!=c;this.opcode(\"getContext\",d.depth),this.opcode(\"pushProgram\",b),this.opcode(\"pushProgram\",c),d.strict=!0,this.accept(d),this.opcode(\"invokeAmbiguous\",e,f)},simpleSexpr:function(a){var b=a.path;b.strict=!0,this.accept(b),this.opcode(\"resolvePossibleLambda\")},helperSexpr:function(a,b,c){var d=this.setupFullMustacheParams(a,b,c),e=a.path,f=e.parts[0];if(this.options.knownHelpers[f])this.opcode(\"invokeKnownHelper\",d.length,f);else{if(this.options.knownHelpersOnly)throw new k[\"default\"](\"You specified knownHelpersOnly, but used the unknown helper \"+f,a);e.strict=!0,e.falsy=!0,this.accept(e),this.opcode(\"invokeHelper\",d.length,e.original,n[\"default\"].helpers.simpleId(e))}},PathExpression:function(a){this.addDepth(a.depth),this.opcode(\"getContext\",a.depth);var b=a.parts[0],c=n[\"default\"].helpers.scopedId(a),d=!a.depth\u0026\u0026!c\u0026\u0026this.blockParamIndex(b);d?this.opcode(\"lookupBlockParam\",d,a.parts):b?a.data?(this.options.data=!0,this.opcode(\"lookupData\",a.depth,a.parts,a.strict)):this.opcode(\"lookupOnContext\",a.parts,a.falsy,a.strict,c):this.opcode(\"pushContext\")},StringLiteral:function(a){this.opcode(\"pushString\",a.value)},NumberLiteral:function(a){this.opcode(\"pushLiteral\",a.value)},BooleanLiteral:function(a){this.opcode(\"pushLiteral\",a.value)},UndefinedLiteral:function(){this.opcode(\"pushLiteral\",\"undefined\")},NullLiteral:function(){this.opcode(\"pushLiteral\",\"null\")},Hash:function(a){var b=a.pairs,c=0,d=b.length;for(this.opcode(\"pushHash\");c\u003cd;c++)this.pushParam(b[c].value);for(;c--;)this.opcode(\"assignToHash\",b[c].key);this.opcode(\"popHash\")},opcode:function(a){this.opcodes.push({opcode:a,args:o.call(arguments,1),loc:this.sourceNode[0].loc})},addDepth:function(a){a\u0026\u0026(this.useDepths=!0)},classifySexpr:function(a){var b=n[\"default\"].helpers.simpleId(a.path),c=b\u0026\u0026!!this.blockParamIndex(a.path.parts[0]),d=!c\u0026\u0026n[\"default\"].helpers.helperExpression(a),e=!c\u0026\u0026(d||b);if(e\u0026\u0026!d){var f=a.path.parts[0],g=this.options;g.knownHelpers[f]?d=!0:g.knownHelpersOnly\u0026\u0026(e=!1)}return d?\"helper\":e?\"ambiguous\":\"simple\"},pushParams:function(a){for(var b=0,c=a.length;b\u003cc;b++)this.pushParam(a[b])},pushParam:function(a){var b=null!=a.value?a.value:a.original||\"\";if(this.stringParams)b.replace\u0026\u0026(b=b.replace(\/^(\\.?\\.\\\/)*\/g,\"\").replace(\/\\\/\/g,\".\")),a.depth\u0026\u0026this.addDepth(a.depth),this.opcode(\"getContext\",a.depth||0),this.opcode(\"pushStringParam\",b,a.type),\"SubExpression\"===a.type\u0026\u0026this.accept(a);else{if(this.trackIds){var c=void 0;if(!a.parts||n[\"default\"].helpers.scopedId(a)||a.depth||(c=this.blockParamIndex(a.parts[0])),c){var d=a.parts.slice(1).join(\".\");this.opcode(\"pushId\",\"BlockParam\",c,d)}else b=a.original||b,b.replace\u0026\u0026(b=b.replace(\/^this(?:\\.|$)\/,\"\").replace(\/^\\.\\\/\/,\"\").replace(\/^\\.$\/,\"\")),this.opcode(\"pushId\",a.type,b)}this.accept(a)}},setupFullMustacheParams:function(a,b,c,d){var e=a.params;return this.pushParams(e),this.opcode(\"pushProgram\",b),this.opcode(\"pushProgram\",c),a.hash?this.accept(a.hash):this.opcode(\"emptyHash\",d),e},blockParamIndex:function(a){for(var b=0,c=this.options.blockParams.length;b\u003cc;b++){var d=this.options.blockParams[b],e=d\u0026\u0026l.indexOf(d,a);if(d\u0026\u0026e\u003e=0)return[b,e]}}}},function(a,b,c){\"use strict\";function d(a){this.value=a}function e(){}function f(a,b,c,d){var e=b.popStack(),f=0,g=c.length;for(a\u0026\u0026g--;f\u003cg;f++)e=b.nameLookup(e,c[f],d);return a?[b.aliasable(\"container.strict\"),\"(\",e,\", \",b.quotedString(c[f]),\")\"]:e}var g=c(1)[\"default\"];b.__esModule=!0;var h=c(4),i=c(6),j=g(i),k=c(5),l=c(43),m=g(l);e.prototype={nameLookup:function(a,b){return e.isValidJavaScriptVariableName(b)?[a,\".\",b]:[a,\"[\",JSON.stringify(b),\"]\"]},depthedLookup:function(a){return[this.aliasable(\"container.lookup\"),'(depths, \"',a,'\")']},compilerInfo:function(){var a=h.COMPILER_REVISION,b=h.REVISION_CHANGES[a];return[a,b]},appendToBuffer:function(a,b,c){return k.isArray(a)||(a=[a]),a=this.source.wrap(a,b),this.environment.isSimple?[\"return \",a,\";\"]:c?[\"buffer += \",a,\";\"]:(a.appendToBuffer=!0,a)},initializeBuffer:function(){return this.quotedString(\"\")},compile:function(a,b,c,d){this.environment=a,this.options=b,this.stringParams=this.options.stringParams,this.trackIds=this.options.trackIds,this.precompile=!d,this.name=this.environment.name,this.isChild=!!c,this.context=c||{decorators:[],programs:[],environments:[]},this.preamble(),this.stackSlot=0,this.stackVars=[],this.aliases={},this.registers={list:[]},this.hashes=[],this.compileStack=[],this.inlineStack=[],this.blockParams=[],this.compileChildren(a,b),this.useDepths=this.useDepths||a.useDepths||a.useDecorators||this.options.compat,this.useBlockParams=this.useBlockParams||a.useBlockParams;var e=a.opcodes,f=void 0,g=void 0,h=void 0,i=void 0;for(h=0,i=e.length;h\u003ci;h++)f=e[h],this.source.currentLocation=f.loc,g=g||f.loc,this[f.opcode].apply(this,f.args);if(this.source.currentLocation=g,this.pushSource(\"\"),this.stackSlot||this.inlineStack.length||this.compileStack.length)throw new j[\"default\"](\"Compile completed with content left on stack\");this.decorators.isEmpty()?this.decorators=void 0:(this.useDecorators=!0,this.decorators.prepend(\"var decorators = container.decorators;\\n\"),this.decorators.push(\"return fn;\"),d?this.decorators=Function.apply(this,[\"fn\",\"props\",\"container\",\"depth0\",\"data\",\"blockParams\",\"depths\",this.decorators.merge()]):(this.decorators.prepend(\"function(fn, props, container, depth0, data, blockParams, depths) {\\n\"),this.decorators.push(\"}\\n\"),this.decorators=this.decorators.merge()));var k=this.createFunctionContext(d);if(this.isChild)return k;var l={compiler:this.compilerInfo(),main:k};this.decorators\u0026\u0026(l.main_d=this.decorators,l.useDecorators=!0);var m=this.context,n=m.programs,o=m.decorators;for(h=0,i=n.length;h\u003ci;h++)n[h]\u0026\u0026(l[h]=n[h],o[h]\u0026\u0026(l[h+\"_d\"]=o[h],l.useDecorators=!0));return this.environment.usePartial\u0026\u0026(l.usePartial=!0),this.options.data\u0026\u0026(l.useData=!0),this.useDepths\u0026\u0026(l.useDepths=!0),this.useBlockParams\u0026\u0026(l.useBlockParams=!0),this.options.compat\u0026\u0026(l.compat=!0),d?l.compilerOptions=this.options:(l.compiler=JSON.stringify(l.compiler),this.source.currentLocation={start:{line:1,column:0}},l=this.objectLiteral(l),b.srcName?(l=l.toStringWithSourceMap({file:b.destName}),l.map=l.map\u0026\u0026l.map.toString()):l=l.toString()),l},preamble:function(){this.lastContext=0,this.source=new m[\"default\"](this.options.srcName),this.decorators=new m[\"default\"](this.options.srcName)},createFunctionContext:function(a){var b=\"\",c=this.stackVars.concat(this.registers.list);c.length\u003e0\u0026\u0026(b+=\", \"+c.join(\", \"));var d=0;for(var e in this.aliases){var f=this.aliases[e];this.aliases.hasOwnProperty(e)\u0026\u0026f.children\u0026\u0026f.referenceCount\u003e1\u0026\u0026(b+=\", alias\"+ ++d+\"=\"+e,f.children[0]=\"alias\"+d)}var g=[\"container\",\"depth0\",\"helpers\",\"partials\",\"data\"];(this.useBlockParams||this.useDepths)\u0026\u0026g.push(\"blockParams\"),this.useDepths\u0026\u0026g.push(\"depths\");var h=this.mergeSource(b);return a?(g.push(h),Function.apply(this,g)):this.source.wrap([\"function(\",g.join(\",\"),\") {\\n  \",h,\"}\"])},mergeSource:function(a){var b=this.environment.isSimple,c=!this.forceBuffer,d=void 0,e=void 0,f=void 0,g=void 0;return this.source.each(function(a){a.appendToBuffer?(f?a.prepend(\"  + \"):f=a,g=a):(f\u0026\u0026(e?f.prepend(\"buffer += \"):d=!0,g.add(\";\"),f=g=void 0),e=!0,b||(c=!1))}),c?f?(f.prepend(\"return \"),g.add(\";\")):e||this.source.push('return \"\";'):(a+=\", buffer = \"+(d?\"\":this.initializeBuffer()),f?(f.prepend(\"return buffer + \"),g.add(\";\")):this.source.push(\"return buffer;\")),a\u0026\u0026this.source.prepend(\"var \"+a.substring(2)+(d?\"\":\";\\n\")),this.source.merge()},blockValue:function(a){var b=this.aliasable(\"helpers.blockHelperMissing\"),c=[this.contextName(0)];this.setupHelperArgs(a,0,c);var d=this.popStack();c.splice(1,0,d),this.push(this.source.functionCall(b,\"call\",c))},ambiguousBlockValue:function(){var a=this.aliasable(\"helpers.blockHelperMissing\"),b=[this.contextName(0)];this.setupHelperArgs(\"\",0,b,!0),this.flushInline();var c=this.topStack();b.splice(1,0,c),this.pushSource([\"if (!\",this.lastHelper,\") { \",c,\" = \",this.source.functionCall(a,\"call\",b),\"}\"])},appendContent:function(a){this.pendingContent?a=this.pendingContent+a:this.pendingLocation=this.source.currentLocation,this.pendingContent=a},append:function(){if(this.isInline())this.replaceStack(function(a){return[\" != null ? \",a,' : \"\"']}),this.pushSource(this.appendToBuffer(this.popStack()));else{var a=this.popStack();this.pushSource([\"if (\",a,\" != null) { \",this.appendToBuffer(a,void 0,!0),\" }\"]),this.environment.isSimple\u0026\u0026this.pushSource([\"else { \",this.appendToBuffer(\"''\",void 0,!0),\" }\"])}},appendEscaped:function(){this.pushSource(this.appendToBuffer([this.aliasable(\"container.escapeExpression\"),\"(\",this.popStack(),\")\"]))},getContext:function(a){this.lastContext=a},pushContext:function(){this.pushStackLiteral(this.contextName(this.lastContext))},lookupOnContext:function(a,b,c,d){var e=0;d||!this.options.compat||this.lastContext?this.pushContext():this.push(this.depthedLookup(a[e++])),this.resolvePath(\"context\",a,e,b,c)},lookupBlockParam:function(a,b){this.useBlockParams=!0,this.push([\"blockParams[\",a[0],\"][\",a[1],\"]\"]),this.resolvePath(\"context\",b,1)},lookupData:function(a,b,c){a?this.pushStackLiteral(\"container.data(data, \"+a+\")\"):this.pushStackLiteral(\"data\"),this.resolvePath(\"data\",b,0,!0,c)},resolvePath:function(a,b,c,d,e){var g=this;if(this.options.strict||this.options.assumeObjects)return void this.push(f(this.options.strict\u0026\u0026e,this,b,a));for(var h=b.length;c\u003ch;c++)this.replaceStack(function(e){var f=g.nameLookup(e,b[c],a);\n    return d?[\" \u0026\u0026 \",f]:[\" != null ? \",f,\" : \",e]})},resolvePossibleLambda:function(){this.push([this.aliasable(\"container.lambda\"),\"(\",this.popStack(),\", \",this.contextName(0),\")\"])},pushStringParam:function(a,b){this.pushContext(),this.pushString(b),\"SubExpression\"!==b\u0026\u0026(\"string\"==typeof a?this.pushString(a):this.pushStackLiteral(a))},emptyHash:function(a){this.trackIds\u0026\u0026this.push(\"{}\"),this.stringParams\u0026\u0026(this.push(\"{}\"),this.push(\"{}\")),this.pushStackLiteral(a?\"undefined\":\"{}\")},pushHash:function(){this.hash\u0026\u0026this.hashes.push(this.hash),this.hash={values:[],types:[],contexts:[],ids:[]}},popHash:function(){var a=this.hash;this.hash=this.hashes.pop(),this.trackIds\u0026\u0026this.push(this.objectLiteral(a.ids)),this.stringParams\u0026\u0026(this.push(this.objectLiteral(a.contexts)),this.push(this.objectLiteral(a.types))),this.push(this.objectLiteral(a.values))},pushString:function(a){this.pushStackLiteral(this.quotedString(a))},pushLiteral:function(a){this.pushStackLiteral(a)},pushProgram:function(a){null!=a?this.pushStackLiteral(this.programExpression(a)):this.pushStackLiteral(null)},registerDecorator:function(a,b){var c=this.nameLookup(\"decorators\",b,\"decorator\"),d=this.setupHelperArgs(b,a);this.decorators.push([\"fn = \",this.decorators.functionCall(c,\"\",[\"fn\",\"props\",\"container\",d]),\" || fn;\"])},invokeHelper:function(a,b,c){var d=this.popStack(),e=this.setupHelper(a,b),f=c?[e.name,\" || \"]:\"\",g=[\"(\"].concat(f,d);this.options.strict||g.push(\" || \",this.aliasable(\"helpers.helperMissing\")),g.push(\")\"),this.push(this.source.functionCall(g,\"call\",e.callParams))},invokeKnownHelper:function(a,b){var c=this.setupHelper(a,b);this.push(this.source.functionCall(c.name,\"call\",c.callParams))},invokeAmbiguous:function(a,b){this.useRegister(\"helper\");var c=this.popStack();this.emptyHash();var d=this.setupHelper(0,a,b),e=this.lastHelper=this.nameLookup(\"helpers\",a,\"helper\"),f=[\"(\",\"(helper = \",e,\" || \",c,\")\"];this.options.strict||(f[0]=\"(helper = \",f.push(\" != null ? helper : \",this.aliasable(\"helpers.helperMissing\"))),this.push([\"(\",f,d.paramsInit?[\"),(\",d.paramsInit]:[],\"),\",\"(typeof helper === \",this.aliasable('\"function\"'),\" ? \",this.source.functionCall(\"helper\",\"call\",d.callParams),\" : helper))\"])},invokePartial:function(a,b,c){var d=[],e=this.setupParams(b,1,d);a\u0026\u0026(b=this.popStack(),delete e.name),c\u0026\u0026(e.indent=JSON.stringify(c)),e.helpers=\"helpers\",e.partials=\"partials\",e.decorators=\"container.decorators\",a?d.unshift(b):d.unshift(this.nameLookup(\"partials\",b,\"partial\")),this.options.compat\u0026\u0026(e.depths=\"depths\"),e=this.objectLiteral(e),d.push(e),this.push(this.source.functionCall(\"container.invokePartial\",\"\",d))},assignToHash:function(a){var b=this.popStack(),c=void 0,d=void 0,e=void 0;this.trackIds\u0026\u0026(e=this.popStack()),this.stringParams\u0026\u0026(d=this.popStack(),c=this.popStack());var f=this.hash;c\u0026\u0026(f.contexts[a]=c),d\u0026\u0026(f.types[a]=d),e\u0026\u0026(f.ids[a]=e),f.values[a]=b},pushId:function(a,b,c){\"BlockParam\"===a?this.pushStackLiteral(\"blockParams[\"+b[0]+\"].path[\"+b[1]+\"]\"+(c?\" + \"+JSON.stringify(\".\"+c):\"\")):\"PathExpression\"===a?this.pushString(b):\"SubExpression\"===a?this.pushStackLiteral(\"true\"):this.pushStackLiteral(\"null\")},compiler:e,compileChildren:function(a,b){for(var c=a.children,d=void 0,e=void 0,f=0,g=c.length;f\u003cg;f++){d=c[f],e=new this.compiler;var h=this.matchExistingProgram(d);if(null==h){this.context.programs.push(\"\");var i=this.context.programs.length;d.index=i,d.name=\"program\"+i,this.context.programs[i]=e.compile(d,b,this.context,!this.precompile),this.context.decorators[i]=e.decorators,this.context.environments[i]=d,this.useDepths=this.useDepths||e.useDepths,this.useBlockParams=this.useBlockParams||e.useBlockParams,d.useDepths=this.useDepths,d.useBlockParams=this.useBlockParams}else d.index=h.index,d.name=\"program\"+h.index,this.useDepths=this.useDepths||h.useDepths,this.useBlockParams=this.useBlockParams||h.useBlockParams}},matchExistingProgram:function(a){for(var b=0,c=this.context.environments.length;b\u003cc;b++){var d=this.context.environments[b];if(d\u0026\u0026d.equals(a))return d}},programExpression:function(a){var b=this.environment.children[a],c=[b.index,\"data\",b.blockParams];return(this.useBlockParams||this.useDepths)\u0026\u0026c.push(\"blockParams\"),this.useDepths\u0026\u0026c.push(\"depths\"),\"container.program(\"+c.join(\", \")+\")\"},useRegister:function(a){this.registers[a]||(this.registers[a]=!0,this.registers.list.push(a))},push:function(a){return a instanceof d||(a=this.source.wrap(a)),this.inlineStack.push(a),a},pushStackLiteral:function(a){this.push(new d(a))},pushSource:function(a){this.pendingContent\u0026\u0026(this.source.push(this.appendToBuffer(this.source.quotedString(this.pendingContent),this.pendingLocation)),this.pendingContent=void 0),a\u0026\u0026this.source.push(a)},replaceStack:function(a){var b=[\"(\"],c=void 0,e=void 0,f=void 0;if(!this.isInline())throw new j[\"default\"](\"replaceStack on non-inline\");var g=this.popStack(!0);if(g instanceof d)c=[g.value],b=[\"(\",c],f=!0;else{e=!0;var h=this.incrStack();b=[\"((\",this.push(h),\" = \",g,\")\"],c=this.topStack()}var i=a.call(this,c);f||this.popStack(),e\u0026\u0026this.stackSlot--,this.push(b.concat(i,\")\"))},incrStack:function(){return this.stackSlot++,this.stackSlot\u003ethis.stackVars.length\u0026\u0026this.stackVars.push(\"stack\"+this.stackSlot),this.topStackName()},topStackName:function(){return\"stack\"+this.stackSlot},flushInline:function(){var a=this.inlineStack;this.inlineStack=[];for(var b=0,c=a.length;b\u003cc;b++){var e=a[b];if(e instanceof d)this.compileStack.push(e);else{var f=this.incrStack();this.pushSource([f,\" = \",e,\";\"]),this.compileStack.push(f)}}},isInline:function(){return this.inlineStack.length},popStack:function(a){var b=this.isInline(),c=(b?this.inlineStack:this.compileStack).pop();if(!a\u0026\u0026c instanceof d)return c.value;if(!b){if(!this.stackSlot)throw new j[\"default\"](\"Invalid stack pop\");this.stackSlot--}return c},topStack:function(){var a=this.isInline()?this.inlineStack:this.compileStack,b=a[a.length-1];return b instanceof d?b.value:b},contextName:function(a){return this.useDepths\u0026\u0026a?\"depths[\"+a+\"]\":\"depth\"+a},quotedString:function(a){return this.source.quotedString(a)},objectLiteral:function(a){return this.source.objectLiteral(a)},aliasable:function(a){var b=this.aliases[a];return b?(b.referenceCount++,b):(b=this.aliases[a]=this.source.wrap(a),b.aliasable=!0,b.referenceCount=1,b)},setupHelper:function(a,b,c){var d=[],e=this.setupHelperArgs(b,a,d,c),f=this.nameLookup(\"helpers\",b,\"helper\"),g=this.aliasable(this.contextName(0)+\" != null ? \"+this.contextName(0)+\" : (container.nullContext || {})\");return{params:d,paramsInit:e,name:f,callParams:[g].concat(d)}},setupParams:function(a,b,c){var d={},e=[],f=[],g=[],h=!c,i=void 0;h\u0026\u0026(c=[]),d.name=this.quotedString(a),d.hash=this.popStack(),this.trackIds\u0026\u0026(d.hashIds=this.popStack()),this.stringParams\u0026\u0026(d.hashTypes=this.popStack(),d.hashContexts=this.popStack());var j=this.popStack(),k=this.popStack();(k||j)\u0026\u0026(d.fn=k||\"container.noop\",d.inverse=j||\"container.noop\");for(var l=b;l--;)i=this.popStack(),c[l]=i,this.trackIds\u0026\u0026(g[l]=this.popStack()),this.stringParams\u0026\u0026(f[l]=this.popStack(),e[l]=this.popStack());return h\u0026\u0026(d.args=this.source.generateArray(c)),this.trackIds\u0026\u0026(d.ids=this.source.generateArray(g)),this.stringParams\u0026\u0026(d.types=this.source.generateArray(f),d.contexts=this.source.generateArray(e)),this.options.data\u0026\u0026(d.data=\"data\"),this.useBlockParams\u0026\u0026(d.blockParams=\"blockParams\"),d},setupHelperArgs:function(a,b,c,d){var e=this.setupParams(a,b,c);return e=this.objectLiteral(e),d?(this.useRegister(\"options\"),c.push(\"options\"),[\"options=\",e]):c?(c.push(e),\"\"):e}},function(){for(var a=\"break else new var case finally return void catch for switch while continue function this with default if throw delete in try do instanceof typeof abstract enum int short boolean export interface static byte extends long super char final native synchronized class float package throws const goto private transient debugger implements protected volatile double import public let yield await null true false\".split(\" \"),b=e.RESERVED_WORDS={},c=0,d=a.length;c\u003cd;c++)b[a[c]]=!0}(),e.isValidJavaScriptVariableName=function(a){return!e.RESERVED_WORDS[a]\u0026\u0026\/^[a-zA-Z_$][0-9a-zA-Z_$]*$\/.test(a)},b[\"default\"]=e,a.exports=b[\"default\"]},function(a,b,c){\"use strict\";function d(a,b,c){if(f.isArray(a)){for(var d=[],e=0,g=a.length;e\u003cg;e++)d.push(b.wrap(a[e],c));return d}return\"boolean\"==typeof a||\"number\"==typeof a?a+\"\":a}function e(a){this.srcFile=a,this.source=[]}b.__esModule=!0;var f=c(5),g=void 0;try{}catch(h){}g||(g=function(a,b,c,d){this.src=\"\",d\u0026\u0026this.add(d)},g.prototype={add:function(a){f.isArray(a)\u0026\u0026(a=a.join(\"\")),this.src+=a},prepend:function(a){f.isArray(a)\u0026\u0026(a=a.join(\"\")),this.src=a+this.src},toStringWithSourceMap:function(){return{code:this.toString()}},toString:function(){return this.src}}),e.prototype={isEmpty:function(){return!this.source.length},prepend:function(a,b){this.source.unshift(this.wrap(a,b))},push:function(a,b){this.source.push(this.wrap(a,b))},merge:function(){var a=this.empty();return this.each(function(b){a.add([\"  \",b,\"\\n\"])}),a},each:function(a){for(var b=0,c=this.source.length;b\u003cc;b++)a(this.source[b])},empty:function(){var a=this.currentLocation||{start:{}};return new g(a.start.line,a.start.column,this.srcFile)},wrap:function(a){var b=arguments.length\u003c=1||void 0===arguments[1]?this.currentLocation||{start:{}}:arguments[1];return a instanceof g?a:(a=d(a,this,b),new g(b.start.line,b.start.column,this.srcFile,a))},functionCall:function(a,b,c){return c=this.generateList(c),this.wrap([a,b?\".\"+b+\"(\":\"(\",c,\")\"])},quotedString:function(a){return'\"'+(a+\"\").replace(\/\\\\\/g,\"\\\\\\\\\").replace(\/\"\/g,'\\\\\"').replace(\/\\n\/g,\"\\\\n\").replace(\/\\r\/g,\"\\\\r\").replace(\/\\u2028\/g,\"\\\\u2028\").replace(\/\\u2029\/g,\"\\\\u2029\")+'\"'},objectLiteral:function(a){var b=[];for(var c in a)if(a.hasOwnProperty(c)){var e=d(a[c],this);\"undefined\"!==e\u0026\u0026b.push([this.quotedString(c),\":\",e])}var f=this.generateList(b);return f.prepend(\"{\"),f.add(\"}\"),f},generateList:function(a){for(var b=this.empty(),c=0,e=a.length;c\u003ce;c++)c\u0026\u0026b.add(\",\"),b.add(d(a[c],this));return b},generateArray:function(a){var b=this.generateList(a);return b.prepend(\"[\"),b.add(\"]\"),b}},b[\"default\"]=e,a.exports=b[\"default\"]}])});\n\n\nwindow.shopacadoLegacy.showVolDiscounts = (info) =\u003e {\n    if (info.discount_table \u0026\u0026 info.discount_table.automatic_type) {\n        var templateVariables = {\n            product_message: info.offer_product_message,\n            vol_rows: info.vol_rows\n        }\n\n        let discountTiersTemplate = null;\n        if (info.discount_table.automatic_type === \"DEFAULT\") {\n            discountTiersTemplate = window.shopacadoLegacy.adp_discount_tiers_default_html;\n        } else if (info.discount_table.automatic_type === \"DETAILED\") {\n            discountTiersTemplate = window.shopacadoLegacy.adp_discount_tiers_detailed_html;\n        } else if (info.discount_table.automatic_type === \"GRID_RANGE\") {\n            discountTiersTemplate = window.shopacadoLegacy.adp_discount_tiers_grid_html;\n        } else if (info.discount_table.automatic_type === \"GRID_RANGE_ALT\") {\n            discountTiersTemplate = window.shopacadoLegacy.adp_discount_tiers_grid_alt_html;\n        }\n\n        if (discountTiersTemplate) {\n            var volDiscountHtml = appikonHandlebars.compile(discountTiersTemplate)(templateVariables);\n\n            let elements = document.getElementsByClassName('adp-vol-wrapper');\n            for(let i=0; i\u003celements.length; i++) {\n                elements[i].innerHTML = volDiscountHtml;\n            }\n        }\n    }\n}\n\nwindow.shopacadoLegacy.showBuyXDiscounts = (info) =\u003e {\n    if (!window.shopacadoLegacy) {\n        return false;\n    }\n    \n    var discountTiersTemplate = window.shopacadoLegacy.adp_buy_x_discount_tiers_html,\n            templateVariables = {\n                product_message: info.offer_product_message,\n                vol_rows: info.vol_rows\n            },\n            buyXDiscountHtml = appikonHandlebars.compile(discountTiersTemplate)(templateVariables);\n\n    let elements = document.getElementsByClassName('.adp-vol-wrapper');\n    for(let i=0; i\u003celements.length; i++) {\n        elements[i].innerHTML = buyXDiscountHtml;\n    }\n}\n\nwindow.shopacadoLegacy.showDiscountTable = (discountResponse) =\u003e {\n    let wrapper = document.createElement(\"div\");\n    wrapper.classList.add('adp-vol-wrapper');\n\n    let foundDiscountTableBlock = document.querySelectorAll('.shopacado-discount-table-block');\n\n    if (foundDiscountTableBlock.length === 0) {\n        if (discountResponse.discount_table \u0026\u0026 discountResponse.discount_table.type === \"CUSTOM\" \u0026\u0026 discountResponse.discount_table.html) {\n            let existingWrappers = document.getElementsByClassName('.adp-vol-wrapper');\n            for(let i=0; i\u003cexistingWrappers.length; i++) {\n                existingWrappers[i].remove();\n            }\n\n            let elements = [];\n            let found = false;\n\n            let foundGeneric = document.querySelectorAll('div.shopacado-discount-table-container');\n            if (foundGeneric.length \u003e 0) {\n                found = true;\n                elements.push(foundGeneric);\n            }\n\n            if (discountResponse.discount_table.placement_selector) {\n                let foundElements = document.querySelectorAll(discountResponse.discount_table.placement_selector);\n                if (foundElements.length \u003e 0) {\n                    found = true;\n                }\n            }\n\n            if (!found) {\n                let e = document.querySelector(\"form[action*='\/cart\/add'\");\n                if (e) {\n                    elements.push(e);\n                }\n            }\n            for (let i = 0; i \u003c elements.length; i++) {\n                let element = elements[i];\n\n                if (discountResponse.discount_table.placement_position == 'BEFORE') {\n                    element.prepend(wrapper);\n                } else {\n                    element.append(wrapper);\n                }\n            }\n\n            let wrappers = document.querySelectorAll('.adp-vol-wrapper');\n            for (let i = 0; i \u003c wrappers.length; i++) {\n                wrappers[i].innerHTML = discountResponse.discount_table.html;\n            }\n        } else if (discountResponse.discount_table \u0026\u0026 discountResponse.discount_table.type === \"AUTOMATIC\") {\n            let wrappers = document.querySelectorAll('.adp-vol-wrapper');\n            for (let i = 0; i \u003c wrappers.length; i++) {\n                wrappers[i].remove();\n            }\n\n            if (discountResponse.vol_rows \u0026\u0026 discountResponse.vol_rows.length \u003e 0 \u0026\u0026 (\"buy_x_dollars\" == discountResponse.type || \"vd\" == discountResponse.type)) {\n                var e;\n                if (window.shopacadoLegacy.vd_placement_settings.hasOwnProperty(\"final_selector\")) {\n                    e = document.querySelector(window.shopacadoLegacy.vd_placement_settings.final_selector);\n                    if (!e) {\n                        e = document.querySelector(\"form[action*='\/cart\/add']\");\n                    }\n                } else {\n                    e = document.querySelector(\"form[action*='\/cart\/add']\");\n                }\n\n                const foundWrapper = document.querySelectorAll('.adp-vol-wrapper');\n\n                if (foundWrapper.length === 0) {\n                    if (window.shopacadoLegacy.vd_placement_settings.hasOwnProperty(\"placement\") \u0026\u0026 \"before\" == window.shopacadoLegacy.vd_placement_settings.placement) {\n                        e.prepend(wrapper);\n                    } else {\n                        e.append(wrapper);\n                    }\n                }\n                \"buy_x_dollars\" === discountResponse.type ? window.shopacadoLegacy.showBuyXDiscounts(discountResponse) : window.shopacadoLegacy.showVolDiscounts(discountResponse);\n            }\n        }\n    }\n}\n"}
</script>


<script src="https://cdn.shopify.com/extensions/4594f4fe-0288-4a13-886e-2ae30c783d17/shopacado-volume-discounts-43/assets/shopacado-additional.js" async></script>




<script>
    window.shopacado.waitForDomLoad(() => {

        

    });
</script>


<script>
    window.shopacado.waitForDomLoad(() => {
        



        setTimeout(() => {
            const lowest_price_el = document.getElementById("shopacado-lowest-price");
            console.log("Lowest Price Element", lowest_price_el);
            if (lowest_price_el) {
                if (typeof window.shopacado.prepPageForLowestPrice === "function") {
                    window.shopacado.prepPageForLowestPrice();
                }
                
                window.shopacado.showLowestPriceFromElement(lowest_price_el);
            }
        }, window.shopacado.themeSettings?.product_page_lowest_price_initial_update_delay || 0);
    });
</script>


<link href="//cdn.shopify.com/extensions/4594f4fe-0288-4a13-886e-2ae30c783d17/shopacado-volume-discounts-43/assets/shopacado-legacy.css" rel="stylesheet" type="text/css" media="all" />

<style>
    .adp-discount-tiers h4 {
    text-align: inherit;
    color: inherit;
    font-size: inherit;
    background-color: inherit;
}

table.adp-discount-table th {
    background-color: inherit;
    border-color: inherit;
    color: inherit;
    border-width: inherit;
    font-size: inherit;
    padding: inherit;
    text-align: center;
    border-style: solid;
}

table.adp-discount-table td {
    background-color: inherit;
    border-color: inherit;
    color: inherit;
    border-width: inherit;
    font-size: inherit;
    padding: inherit;
    text-align: center;
    border-style: solid;
}

table.adp-discount-table {
    min-width: inherit;
    max-width: inherit;
    border-color: inherit;
    border-width: inherit;
    font-family: inherit;
    border-collapse: collapse;
    margin: auto;
    width: 100%;
}

table.adp-discount-table td:last-child {
    color: inherit;
    background-color: inherit;
    font-family: inherit;
    font-size: inherit;
}

</style>

<style>
    div#appikon-notification-bar {
    font-size: 110%;
    background-color: #A1C65B;
    padding: 12px;
    color: #FFFFFF;
    font-family: inherit;
    z-index: 9999999999999;
    display: none;
    left: 0px;
    width: 100%;
    margin: 0px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: none;
}

.appikon-cart-item-success-notes, .appikon-cart-item-upsell-notes {
    display: block;
    font-weight: bold;
    color: #0078BD;
    font-size: 100%;
}

#appikon-discount-item {
    font-size: 70%;
    padding-top: 5px;
    padding-bottom: 5px;
}

#appikon-summary-item {
    font-size: 70%;
    padding-top: 5px;
    padding-bottom: 5px;
}
</style>

<style>
    
</style>

<style>
    div#shopacado-banner {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #DDEEEE;
        width: 100%;
        height: 50px;
        z-index:99999;
    }
    
    div#shopacado-banner-content {
        width: 800px;
        margin: 0 auto;
        padding: 10px;
        text-align: center
    }

    .shopacado-hidden {
        display: none;
    }

    .push-down {
        margin-top: 70px;
    }
</style>


<!-- END app block --><!-- BEGIN app block: shopify://apps/gorgias-live-chat-helpdesk/blocks/gorgias/a66db725-7b96-4e3f-916e-6c8e6f87aaaa -->
<script defer data-gorgias-loader-chat src="https://config.gorgias.chat/bundle-loader/shopify/025682-2.myshopify.com"></script>


<script defer data-gorgias-loader-convert  src="https://content.9gtb.com/loader.js"></script>


<script defer data-gorgias-loader-mailto-replace  src="https://config.gorgias.help/api/contact-forms/replace-mailto-script.js?shopName=025682-2"></script>


<!-- END app block --><!-- BEGIN app block: shopify://apps/yotpo-product-reviews/blocks/settings/eb7dfd7d-db44-4334-bc49-c893b51b36cf -->


  <script type="text/javascript" src="https://cdn-widgetsrepository.yotpo.com/v1/loader/C1URdbLslPER9KB1IqU7XvGeW1oVZhmyum85clrr?languageCode=en" async></script>



  
<!-- END app block --><script src="https://cdn.shopify.com/extensions/4594f4fe-0288-4a13-886e-2ae30c783d17/shopacado-volume-discounts-43/assets/shopacado-global.js" type="text/javascript" defer="defer"></script>
<link href="https://cdn.shopify.com/extensions/4594f4fe-0288-4a13-886e-2ae30c783d17/shopacado-volume-discounts-43/assets/shopacado-global.css" rel="stylesheet" type="text/css" media="all">
<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: 72114962725,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token,page_type: "page"};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: 72114962725,storefrontBaseUrl: "https://www.displaysense.co.uk",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":"3673751939","configuration":"{\"accountID\":\"025682-2\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"1d4c781273105676f6b02a329648437f","type":"APP","apiClientId":32196493313,"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","enabledFlags":["9a3ed68a"]},{"id":"1640333699","configuration":"{\"pixelCode\":\"CUQ9C3BC77UC7V3JCTGG\"}","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":"1586725251","configuration":"{\"config\":\"{\\\"google_tag_ids\\\":[\\\"AW-1045866909\\\",\\\"GT-TNLBCW58\\\"],\\\"target_country\\\":\\\"GB\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":\\\"AW-1045866909\\\/8KDBCM3wxpcaEJ3T2vID\\\"},{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":\\\"AW-1045866909\\\/rpdGCNPwxpcaEJ3T2vID\\\"},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"AW-1045866909\\\/ivD2CMrwxpcaEJ3T2vID\\\",\\\"MC-S4G16TQ3JH\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"AW-1045866909\\\/vj0PCMzvxpcaEJ3T2vID\\\",\\\"MC-S4G16TQ3JH\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"AW-1045866909\\\/FGnRCM_vxpcaEJ3T2vID\\\",\\\"MC-S4G16TQ3JH\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":\\\"AW-1045866909\\\/s3K5CNbwxpcaEJ3T2vID\\\"},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":\\\"AW-1045866909\\\/IRqnCNDwxpcaEJ3T2vID\\\"}],\\\"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":"1397522819","configuration":"{\"pixel_id\":\"2410087332663879\",\"pixel_type\":\"facebook_pixel\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"abff2a8add143ccb04deb20f0ebd74a9","type":"APP","apiClientId":2329312,"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":"496992549","configuration":"{\"store\":\"025682-2.myshopify.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"281adb97b4f6f92355e784671c2fdee2","type":"APP","apiClientId":740217,"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":"105972005","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Purchase Data Layer"},{"id":"191398275","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS"],"name":"Google Analytics tag (migrated)"},{"id":"222724483","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"https:\/\/drive.google.com\/drive"},{"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":"Displaysense","paymentSettings":{"currencyCode":"GBP"},"myshopifyDomain":"025682-2.myshopify.com","countryCode":"GB","storefrontUrl":"https:\/\/www.displaysense.co.uk"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"products":null,"purchasingCompany":null,"page":null},},"https://www.displaysense.co.uk/cdn","a9664f44w6a62cec8p04af10e4mb91e3447",{"modern":"","legacy":""},{"trekkieShim":true,"apiClientId":"580111","pageType":"page","resourceId":"114059477285","shopId":"72114962725","storefrontBaseUrl":"https:\/\/www.displaysense.co.uk","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 = 'GBP';
  var meta = {"page":{"pageType":"page","resourceType":"page","resourceId":114059477285,"requestId":"c54d87c4-4cff-4acb-8031-20768f25a174-1781019784"}};
  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: 72114962725,
      theme_id: 197138645379,
      app_name: "storefront",
      context_url: window.location.href,
      source_url: "//www.displaysense.co.uk/cdn/s/trekkie.storefront.370ef8ffef154dc56bb5a814fea4666724353464.min.js"});

  };
  scriptFallback.async = true;
  scriptFallback.src = '//www.displaysense.co.uk/cdn/s/trekkie.storefront.370ef8ffef154dc56bb5a814fea4666724353464.min.js';
  first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//www.displaysense.co.uk/cdn/s/trekkie.storefront.370ef8ffef154dc56bb5a814fea4666724353464.min.js';
first.parentNode.insertBefore(script, first);

    };
    trekkie.load(
      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":72114962725,"isMerchantRequest":null,"themeId":197138645379,"themeCityHash":"5326038475993219787","contentLanguage":"en","currency":"GBP","eventMetadataId":"ce76124e-e55c-4d3e-bd72-b4f71202a6cc"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["b5387b81","d5bdd5d0"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"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":"page","resourceType":"page","resourceId":114059477285,"requestId":"c54d87c4-4cff-4acb-8031-20768f25a174-1781019784","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 = "//www.displaysense.co.uk/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://www.displaysense.co.uk/cdn/shopifycloud/perf-kit/shopify-perf-kit-3.5.0.min.js"
  data-application="storefront-renderer"
  data-shop-id="72114962725"
  data-render-region="gcp-europe-west1"
  data-page-type="page"
  data-theme-instance-id="197138645379"
  data-theme-name="Volt"
  data-theme-version="3.0.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://www.displaysense.co.uk/api/collect"
></script>
</head>

  <body>
    
      <!-- Google Tag Manager (noscript) -->
      <noscript
        ><iframe
          src="https://www.googletagmanager.com/ns.html?id=GTM-N9LCKT7"
          height="0"
          width="0"
          style="display:none;visibility:hidden"
        ></iframe
      ></noscript>
      <!-- End Google Tag Manager (noscript) -->
    

    <a class="sr-only" href="#MainContent">
      Skip to content
    </a><div id="shopify-section-cc-usp-bar" class="shopify-section">

<style>

  div#shopify-section-cc-usp-bar{
    display:none;
  }

  #shopify-section-cc-usp-bar{
      padding: 12px 0;
      background-color: #f56319;
      overflow: hidden;
  }

  /* ============ VAT TOGGLE (preserved) ============ */

   .switch-container .switch-vertical {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      padding-left: 0px;
      height: auto;
      justify-content: center;
  }

  #shopify-section-cc-usp-bar .cc__uspbar_container {
      display: flex;
      flex-direction: column;
  }

   .switch-container .toggle-switch-container {
      display: flex;
      width: 190px;
      flex-direction: row;
      justify-content: flex-end;
  }

 .switch-container .switch-vertical label{
      color: black;
      font-size: 12px;
      text-wrap: nowrap;
  }

 .switch-container .switch-vertical label[for="toggle-vat-on"] {
      order: 1!important;
      display: flex;
      padding-left: 0px!important;
      padding-right: 0.75rem!important;
  }

   .switch-container .switch-vertical label[for="toggle-vat-off"] {
      order: 3!important;
      display: flex;
      padding-right: 0px!important;
      padding-left: 0.75rem!important;
  }

  .switch-container .switch-vertical label {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
      width: -moz-max-content;
      width: max-content;
  }

  .switch-container .switch-vertical .toggle-outside {
      position: relative;
      order: 2;
      display: flex;
      max-width: 30px;
      height: 1rem;
      width: 100%;
      --tw-bg-opacity: 1;
      background-color: #f36420;
  }

  .switch-container .switch-vertical input ~ input:checked ~ .toggle-outside .toggle-inside {
      right: 1px;
      top: 1px;
      left: 14px;
  }

  .switch-container .switch-vertical .toggle-inside {
      height: 13px;
      left: 2px;
      top: 1.99px !important;
      width: 13px;
      transition: all 0.3s ease-in-out !important;
  }

  .switch-container .toggle-switch .toggle-inside{
      background-color: #ffffff;
  }

  .switch-container{
      padding-top: 12px;
      border-top: 1px solid #ffffff;
  }

  /* ============ USP ITEMS ============ */

  #shopify-section-cc-usp-bar .cc__uspbar__items{
      display: flex;
      align-items: center;
      gap: 7px;
      flex-shrink: 0;
      animation: marquee 60s linear infinite;
  }

  #shopify-section-cc-usp-bar .cc__uspbar__item {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
      position: relative;
  }

  #shopify-section-cc-usp-bar .cc__uspbar__icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
  }

  #shopify-section-cc-usp-bar .cc__uspbar__icon--accent {
      color: #f26522;
  }

  #shopify-section-cc-usp-bar .cc__uspbar__icon svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
  }

  #shopify-section-cc-usp-bar .cc__uspbar__icon--filled svg {
      stroke: none;
      fill: currentColor;
  }

  #shopify-section-cc-usp-bar .cc__uspbar__icon img {
      width: 26px;
      height: 26px;
      object-fit: contain;
      display: block;
  }

  #shopify-section-cc-usp-bar .cc__uspbar__text {
      display: flex;
      flex-direction: column;
      gap: 1px;
  }

  #shopify-section-cc-usp-bar .cc__uspbar__headline {
      font-family: 'Rubik', sans-serif !important;
      font-weight: 700 !important;
      font-size: 11px;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      line-height: 1.2;
      margin: 0;
  }

  #shopify-section-cc-usp-bar .cc__uspbar__sub {
      font-family: 'Poppins', sans-serif !important;
      font-weight: 400 !important;
      font-size: 11px;
      color: #ffffff;
      opacity: 0.88;
      line-height: 1.35;
      margin: 0;
  }

  /* Legacy single-line items (backward compat for text field) */
  #shopify-section-cc-usp-bar .cc__uspbar__legacy p {
      margin: 0;
      font-family: 'Rubik', sans-serif;
      font-size: 11px;
      color: #ffffff;
      font-weight: 500;
  }

  /* Dividers between items (desktop only) */
  #shopify-section-cc-usp-bar .cc__uspbar__mobilemarquee.cc__uspbar__desktoponly .cc__uspbar__item:not(:last-child)::after {
      content: '';
      display: block;
      position: absolute;
      right: -30px;
      top: 50%;
      transform: translateY(-50%);
      height: 38px;
      width: 1px;
      background-color: #ffffff;
      opacity: 0.32;
  }

  #shopify-section-cc-usp-bar .cc__uspbar__mobilemarquee{
      display: flex;
      align-items: center;
      gap: 14px;
  }

  #shopify-section-cc-usp-bar .cc__uspbar__mobilemarqueeouter{
      padding-bottom: 12px;
  }

  #shopify-section-cc-usp-bar .cc__uspbar__mobilemarquee.cc__uspbar__mobileonly{
      display: flex !important;
  }

  #shopify-section-cc-usp-bar .cc__uspbar__mobilemarquee.cc__uspbar__desktoponly{
      display: none !important;
  }

  .var1 {
      display: none;
  }

  @media (max-width: 1023px) {
    div#shopify-section-cc-usp-bar{
      display:block;
      padding-top:0px;
    }
    .cc__uspbar__mobilemarqueeouter{
      display:none;
    }
    .switch-container {
      border-top: none;
    }
    .var1 {
      display: flex;
    }
    .switch-container .switch-vertical label{
      color:white;
    }
    .switch-container .toggle-switch .toggle-inside {
      background-color: #f56319;
    }
    .switch-container .switch-vertical .toggle-outside {
      background-color: #fff;
    }
  }

  @keyframes marquee{
      0%{
          transform: translate3d(0, 0, 0);
      }
      100%{
          transform: translate3d(-1920px, 0, 0);
      }
  }

  @media screen and (min-width: 769px){
      #shopify-section-cc-usp-bar  .cc__uspbar__mobilemarquee{
          gap: 30px;
      }
  }

  @media screen and (min-width: 1024px){
      #shopify-section-cc-usp-bar{
          padding: 14px 0;
      }
      #shopify-section-cc-usp-bar .cc__uspbar_container {
          flex-direction: row;
          align-items:center;
          justify-content: flex-end;
      }

      #shopify-section-cc-usp-bar .cc__uspbar_container.cc__uspbar__withitems{
          justify-content: center;
      }

      #shopify-section-cc-usp-bar .cc__uspbar_container.cc__uspbar__withitems .cc__uspbar__mobilemarquee{
          width: calc(100% - 195px);
          justify-content: center;
      }

      .switch-container .switch-vertical {
          justify-content: flex-end;
      }

      #shopify-section-cc-usp-bar .cc__uspbar__headline{
          font-size: 11px;
      }

      #shopify-section-cc-usp-bar .cc__uspbar__sub{
          font-size: 13px;
      }

      #shopify-section-cc-usp-bar .cc__uspbar__legacy p{
          font-size: 11px;
      }

      #shopify-section-cc-usp-bar  .cc__uspbar__mobilemarquee{
          gap: 60px;
      }

      .switch-container{
          padding-top: 0px;
          border-top: 0;
      }

      #shopify-section-cc-usp-bar .cc__uspbar__mobilemarqueeouter{
          padding: 0;
      }

      #shopify-section-cc-usp-bar .cc__uspbar__mobilemarquee.cc__uspbar__mobileonly{
          display: none !important;
      }

      #shopify-section-cc-usp-bar .cc__uspbar__mobilemarquee.cc__uspbar__desktoponly{
          display: flex !important;
      }

      #shopify-section-cc-usp-bar .cc__uspbar__items{
          animation: none;
      }
  }

</style><div class="cc__uspbar__outer">
    <div class="container-fluid px-0 lg:px-10">
        <div class="cc__uspbar_container">
            
            
            <div class="switch-container flex justify-center lg:justify-end items-center m-0 relative var1">
    <div class="toggle-switch-container">
        <div class="toggle-switch switch-vertical w-full justify-end">
            <input id="toggle-vat-on" type="radio" name="switch" value="Inc VAT"  />
            <label for="toggle-vat-on">Inc VAT</label>

            <input id="toggle-vat-off" type="radio" name="switch" value="Exc VAT"  />
            <label for="toggle-vat-off">EX VAT</label>

            <div class="toggle-outside">
                <div class="toggle-inside js-toggle-switch inc-vat-switch"></div>
            </div>
        </div>
    </div>
</div>
            
        </div>
    </div>
</div>

</div><header id="shopify-section-cc-header" class="shopify-section">
<style>
   #shopify-section-cc-header {
  padding-top: 0px;
  padding-bottom: 0px;
 }

  #shopify-section-cc-header #site-desktop-navigation .nav-first-level .cc__mainlinkfirstlevel,
  #shopify-section-cc-header #site-desktop-navigation .cc-header-iconstext *{--colours-primary-default: #ffffff;}

  #shopify-section-cc-header .text-primary-hover{
    opacity: 100%;
  }

  #shopify-section-cc-header #site-desktop-navigation{
    background-color: #000000;
  }

  #shopify-section-cc-header .cc__categoriesserchtrigger  svg{
    transition: all 0.3s ease-in-out;
  }

  #shopify-section-cc-header .isopentcatiitems svg{
    transform: rotate(180deg);
  }

  /* ============================================================ */
  /* NAV POLISH                                                    */
  /* ============================================================ */

  #shopify-section-cc-header #site-desktop-navigation {
    background-color: #253238 !important;
  }

  #shopify-section-cc-header .cc__mainlinkfirstlevel {
    font-family: 'Rubik', sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
  }

  #shopify-section-cc-header .cc__mainlinkfirstlevel > span.w-4.h-4 {
    width: 14px !important;
    height: 14px !important;
    margin-left: 5px !important;
  }

  #shopify-section-cc-header .cc__mainlinkfirstlevel > span > svg {
    width: 14px !important;
    height: 14px !important;
  }

  #shopify-section-cc-header .nav-first-level.group svg path {
    stroke: #FFFFFF !important;
    stroke-width: 1.5 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    opacity: 1 !important;
    transition: stroke 0.15s ease !important;
  }

  #shopify-section-cc-header .nav-first-level.group > svg,
  #shopify-section-cc-header .cc__mainlinkfirstlevel > span > svg {
    transition: transform 0.3s ease, stroke 0.15s ease !important;
  }

  #shopify-section-cc-header .nav-first-level.group:hover svg,
  #shopify-section-cc-header .nav-first-level.group:focus-within svg {
    transform: rotate(180deg);
  }

  #shopify-section-cc-header .nav-first-level.group:hover svg path,
  #shopify-section-cc-header .nav-first-level.group:focus-within svg path {
    stroke: #F26522 !important;
  }

  /* ============================================================ */
  /* SEARCH BAR                                                    */
  /* ============================================================ */

  #shopify-section-cc-header .header-search form {
    border: 2px solid #253238 !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    transition: border-color 0.15s ease, box-shadow 0.2s ease !important;
    background: white;
  }

  #shopify-section-cc-header .header-search form:focus-within {
    border-color: #F26522 !important;
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.15) !important;
  }

  #shopify-section-cc-header .header-search input[type="text"],
  #shopify-section-cc-header .header-search input[type="search"] {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    padding: 12px 16px !important;
    color: #253238 !important;
  }

  #shopify-section-cc-header .header-search input[type="text"]::placeholder,
  #shopify-section-cc-header .header-search input[type="search"]::placeholder {
    color: #888 !important;
    font-style: italic;
    opacity: 1;
  }

  #shopify-section-cc-header .header-search button[type="submit"] {
    background: #F26522 !important;
    border-color: #F26522 !important;
    min-width: 48px;
  }

  #shopify-section-cc-header .header-search button[type="submit"]:hover {
    background: #d4561a !important;
    border-color: #d4561a !important;
  }

  #shopify-section-cc-header .header-search button[type="submit"] svg {
    stroke: white !important;
    color: white !important;
  }

  #shopify-section-cc-header .cc__categoriesserchtrigger,
  #shopify-section-cc-header .header-search [class*="categoriessearch"],
  #shopify-section-cc-header .header-search [class*="categoriesserch"] {
    display: none !important;
  }

  /* ============================================================ */
  /* TOP UTILITY STRIP                                             */
  /* ============================================================ */

  #shopify-section-cc-header .ds-utility-strip {
    background: #F5F5F5;
    padding: 6px 0;
    border-bottom: 1px solid rgba(37, 50, 56, 0.06);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #253238;
  }

  #shopify-section-cc-header .ds-utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  #shopify-section-cc-header .ds-utility-left,
  #shopify-section-cc-header .ds-utility-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  #shopify-section-cc-header .ds-util-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #253238;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.15s ease;
  }

  #shopify-section-cc-header .ds-util-link:hover {
    color: #F26522;
  }

  #shopify-section-cc-header .ds-util-link--accent {
    color: #F26522;
    font-weight: 600;
  }

  #shopify-section-cc-header .ds-util-link--accent:hover {
    color: #d4561a;
  }

  #shopify-section-cc-header .ds-util-caret {
    transition: transform 0.2s ease;
  }

  /* ============ HELP & ADVICE DROPDOWN ============ */

  #shopify-section-cc-header .ds-util-dropdown {
    position: relative;
    display: inline-flex;
  }

  #shopify-section-cc-header .ds-util-dropdown-trigger {
    cursor: pointer;
    outline: none;
  }

  #shopify-section-cc-header .ds-util-dropdown-trigger:focus-visible {
    outline: 2px solid #F26522;
    outline-offset: 2px;
    border-radius: 2px;
  }

  #shopify-section-cc-header .ds-util-dropdown:hover .ds-util-caret,
  #shopify-section-cc-header .ds-util-dropdown:focus-within .ds-util-caret,
  #shopify-section-cc-header .ds-util-dropdown.is-open .ds-util-caret {
    transform: rotate(180deg);
  }

  #shopify-section-cc-header .ds-util-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: #FFFFFF;
    border: 1px solid rgba(37, 50, 56, 0.08);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(37, 50, 56, 0.14), 0 4px 12px rgba(37, 50, 56, 0.08);
    min-width: 260px;
    padding: 8px;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  #shopify-section-cc-header .ds-util-dropdown-panel::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
  }

  #shopify-section-cc-header .ds-util-dropdown:hover .ds-util-dropdown-panel,
  #shopify-section-cc-header .ds-util-dropdown:focus-within .ds-util-dropdown-panel,
  #shopify-section-cc-header .ds-util-dropdown.is-open .ds-util-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #shopify-section-cc-header .ds-util-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: #253238;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease;
  }

  #shopify-section-cc-header .ds-util-dropdown-item:hover,
  #shopify-section-cc-header .ds-util-dropdown-item:focus-visible {
    background: #F5F5F5;
    color: #F26522;
    outline: none;
  }

  #shopify-section-cc-header .ds-util-dropdown-item svg {
    flex-shrink: 0;
    color: #739C98;
    transition: color 0.15s ease;
  }

  #shopify-section-cc-header .ds-util-dropdown-item:hover svg,
  #shopify-section-cc-header .ds-util-dropdown-item:focus-visible svg {
    color: #F26522;
  }

  #shopify-section-cc-header .ds-dd-textblock {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  #shopify-section-cc-header .ds-dd-title {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    line-height: 1.2;
    color: inherit;
  }

  #shopify-section-cc-header .ds-dd-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 10.5px;
    color: #6C757D;
    line-height: 1.3;
  }

  #shopify-section-cc-header .ds-util-dropdown-item:hover .ds-dd-subtitle,
  #shopify-section-cc-header .ds-util-dropdown-item:focus-visible .ds-dd-subtitle {
    color: #253238;
  }

  /* ============ REVIEWS ============ */

  #shopify-section-cc-header .ds-utility-reviews {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #253238;
    text-decoration: none;
    font-size: 11.5px;
    transition: color 0.15s ease;
  }

  #shopify-section-cc-header .ds-utility-reviews:hover .ds-reviews-count {
    color: #F26522;
  }

  #shopify-section-cc-header .ds-reviews-label {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-style: italic;
    font-size: 12.5px;
  }

  #shopify-section-cc-header .ds-reviews-stars {
    display: inline-flex;
    gap: 1.5px;
  }

  #shopify-section-cc-header .ds-reviews-stars svg {
    width: 14px;
    height: 14px;
    fill: #F26522;
    display: block;
  }

  #shopify-section-cc-header .ds-reviews-count {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: color 0.15s ease;
  }

  #shopify-section-cc-header .ds-reviews-count strong {
    font-weight: 700;
  }

  /* ============ PHONE ============ */

  #shopify-section-cc-header .ds-utility-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #253238;
    text-decoration: none;
    transition: color 0.15s ease;
  }

  #shopify-section-cc-header .ds-utility-phone:hover {
    color: #F26522;
  }

  #shopify-section-cc-header .ds-phone-label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #6C757D;
  }

  #shopify-section-cc-header .ds-phone-number {
    font-family: 'Rubik', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: inherit;
  }

  #shopify-section-cc-header .ds-utility-vat {
    display: inline-flex;
    align-items: center;
  }

  #shopify-section-cc-header .ds-utility-vat .switch-container {
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  @media (max-width: 1023px) {
    #shopify-section-cc-header .ds-utility-strip {
      display: none !important;
    }
  }

</style><div class="ds-utility-strip">
  <div class="container-fluid px-5 lg:px-10 ds-utility-inner">
    <div class="ds-utility-left">
      <div class="ds-util-dropdown">
        <span class="ds-util-link ds-util-dropdown-trigger" tabindex="0" role="button" aria-haspopup="true" aria-expanded="false">
          <svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><circle cx="12" cy="12" r="10"/><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"/><line x1="12" y1="17" x2="12.01" y2="17"/></svg>
          <span>Need Help &amp; Advice</span>
          <svg class="ds-util-caret" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="6 9 12 15 18 9"/></svg>
        </span>
        <div class="ds-util-dropdown-panel" role="menu">
          <a href="/pages/advice-and-inspiration-hub" role="menuitem" class="ds-util-dropdown-item">
            <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></svg>
            <span class="ds-dd-textblock">
              <span class="ds-dd-title">Knowledge Hub</span>
              <span class="ds-dd-subtitle">Buying guides &amp; inspiration</span>
            </span>
          </a>
          <a href="/blogs/case-studies" role="menuitem" class="ds-util-dropdown-item">
            <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><rect x="2" y="7" width="20" height="14" rx="2" ry="2"/><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/></svg>
            <span class="ds-dd-textblock">
              <span class="ds-dd-title">Case Studies</span>
              <span class="ds-dd-subtitle">See our work in action</span>
            </span>
          </a>
          <a href="/pages/contact-us" role="menuitem" class="ds-util-dropdown-item">
            <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/></svg>
            <span class="ds-dd-textblock">
              <span class="ds-dd-title">Contact Us</span>
              <span class="ds-dd-subtitle">Speak to our team</span>
            </span>
          </a>
        </div>
      </div>
      <a href="/pages/contact-us" class="ds-util-link ds-util-link--accent" aria-label="Request a quote">
        <svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/></svg>
        <span>Request a Quote</span>
      </a>
    </div>

    <a href="/pages/reviews" class="ds-utility-reviews" aria-label="Read 8,000 plus verified customer reviews">
      <span class="ds-reviews-label">Excellent</span>
      <span class="ds-reviews-stars" aria-hidden="true">
        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26"/></svg>
        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26"/></svg>
        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26"/></svg>
        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26"/></svg>
        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26"/></svg>
      </span>
      <span class="ds-reviews-count"><strong>8,000+</strong> verified reviews</span>
    </a>

    <div class="ds-utility-right">
      <a href="tel:01279460460" class="ds-utility-phone" aria-label="Call sales on 01279 460 460">
        <svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>
        <span class="ds-phone-label">Sales:</span>
        <span class="ds-phone-number">01279 460 460</span>
      </a>
      
        <div class="ds-utility-vat">
          <div class="switch-container flex justify-center lg:justify-end items-center m-0 relative var2">
    <div class="toggle-switch-container">
        <div class="toggle-switch switch-vertical w-full justify-end">
            <input id="toggle-vat-on" type="radio" name="switch" value="Inc VAT"  />
            <label for="toggle-vat-on">Inc VAT</label>

            <input id="toggle-vat-off" type="radio" name="switch" value="Exc VAT"  />
            <label for="toggle-vat-off">EX VAT</label>

            <div class="toggle-outside">
                <div class="toggle-inside js-toggle-switch inc-vat-switch"></div>
            </div>
        </div>
    </div>
</div>
        </div>
      
    </div>
  </div>
</div>

<div class="container-fluid px-5 lg:px-10 relative flex cc-flex-col gap-4 cc-py-[14px] lg:cc-py-[20px] max-md:min-h-[58px] lg:cc-flex-row lg:gap-5 items-center border-b border-grey-100">

  <div class="flex gap-3 items-center cc-w-full"><style>
  div#shopNavMob li.nav-first-level.w-full.flex.flex-col.items-center.group.py-4.border-grey-200.border-b-\[1px\].last\:border-b-0 span.inline-flex.flex-wrap.cursor-pointer.items-center.w-full.relative.text-primary.text-base{
     text-transform:uppercase;
  }
  ul.absolute.top-0.left-0.z-10.megamenu.flex-col.gap-0.w-full.h-full.overflow-y-scroll.bg-white.list-none.flex button.flex.items-center.gap-3.w-full.px-5.text-primary.text-base.bg-grey-50.py-5{
    text-transform:uppercase;
  }
</style>


<div class="lg:hidden" x-data="{ mobileNavigation: false }">
  <button type="button" class="block" @click="mobileNavigation = !mobileNavigation" :aria-expanded="mobileNavigation ? 'true' : 'false'" aria-label="Mobile navigation" aria-haspopup="true">
    <span class="sr-only">Mobile navigation</span>
    <span aria-hidden="true" class="block w-6 h-6" :class="{ 'hidden': mobileNavigation, 'block': !mobileNavigation }">
      <svg xmlns="http://www.w3.org/2000/svg" width="18" height="14" fill="none">
        <path stroke="#000" stroke-linecap="round" stroke-width="2" d="M1 7h16M1 1h16M1 13h16"/>
      </svg>
    </span>
    <span aria-hidden="true" class="block w-6 h-6" x-cloak :class="{ 'block': mobileNavigation, 'hidden': !mobileNavigation }">
      <svg xmlns="http://www.w3.org/2000/svg" width="16" height="14" fill="none">
        <path stroke="#000" stroke-linecap="round" stroke-width="2" d="m1.865 1.003 12.27 11.724M2 12.725 14.27 1"/>
      </svg>
    </span></span>
  </button>
  <nav x-cloak id="site-mobile-navigation" class="absolute cc-z-50 top-[55px] left-0 h-[calc(100vh-55px)] overflow-y-scroll w-full" :class="{ 'flex flex-col bg-white': mobileNavigation, 'hidden': !mobileNavigation }" aria-label="Displaysense">
    <div class="p-0">
      <ul class="relative list-none flex flex-col h-full" role="menubar">

        <div class="container-fluid w-full m-0 bg-grey-50 flex flex-row">
          
<div id="nav-switcher" class="py-2.5 lg:py-0 lg:min-w-max lg:bg-white flex lg:order-2">
  <ul class="nav-switcher--list flex flex-row gap-x-4 lg:gap-x-0">
    <li class="nav-switcher--list-item flex flex-col lg:px-5">
      <button type="button" class="switcher-link shopLink uppercase min-w-max cursor-pointer text-base font-semibold text-primary-hover tracking-[0.02em] border-b-0 lg:border-b cc-py-0 border-primary-hover transition ease-in-out duration-300 hover:text-primary-hover hover:border-primary-hover">Shop</button>
    </li>
    <li class="nav-switcher--list-item flex flex-col lg:px-5">
      <button type="button" class="switcher-link inspireLink uppercase min-w-max cursor-pointer text-base font-semibold text-primary tracking-[0.02em] border-b-0 lg:border-b cc-py-0 border-transparent transition ease-in-out duration-300 hover:text-primary-hover hover:border-primary-hover">Advice & Inspire</button>
    </li>
    </ul>
</div>
          
<div class="switch-container flex justify-center lg:justify-end items-center m-0 relative var1">
    <div class="toggle-switch-container">
        <div class="toggle-switch switch-vertical w-full justify-end">
            <input id="toggle-vat-on" type="radio" name="switch" value="Inc VAT"  />
            <label for="toggle-vat-on">Inc VAT</label>

            <input id="toggle-vat-off" type="radio" name="switch" value="Exc VAT"  />
            <label for="toggle-vat-off">EX VAT</label>

            <div class="toggle-outside">
                <div class="toggle-inside js-toggle-switch inc-vat-switch"></div>
            </div>
        </div>
    </div>
</div>
        </div>

        <div id="shopNavMob" class="mobile-nav-container px-[20px] py-[10px] bg-white box-border"><li x-data="{ menudisplaycabinets: false }"class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none"><span @click="menudisplaycabinets = !menudisplaycabinets" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Display Cabinets
                  <span aria-hidden="true" class="flex w-4 h-4 items-center absolute right-0 top-[50%] translate-y-[-50%]"><svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 9.17001L5 5.17001L1 1.17001" stroke="currentColor"/>
</svg></span>
                </span><ul class="absolute top-0 left-0 z-10 megamenu flex-col gap-0 w-full h-full overflow-y-scroll bg-white list-none" role="menu" :class="{ 'flex': menudisplaycabinets, 'hidden': !menudisplaycabinets }">
                <button type="button" class="flex items-center gap-3 w-full px-5 text-primary text-base  bg-grey-50  py-5" aria-label="Return to Display Cabinets" @click="menudisplaycabinets = false">
                  <span aria-hidden="true" class="block w-4 h-4"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7" /></svg></span>
                  Display Cabinets
                </button><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/display-cabinets" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">DISPLAY CABINETS</a>
                        </li><li role="none"><a href="/collections/counter-top-display-cases" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Counter Top Display Cases</a></li><li role="none"><a href="/collections/display-counters" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Display Counters</a></li><li role="none"><a href="/collections/free-standing-display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Free Standing Display Cabinets</a></li><li role="none"><a href="/collections/locking-display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Locking Display Cabinets</a></li><li role="none"><a href="/collections/trophy-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Trophy Cabinets</a></li><li role="none"><a href="/collections/wall-display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Wall Display Cabinets</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/display-cabinets" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">COLOUR/FINISH</a>
                        </li><li role="none"><a href="/collections/aluminium-display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Aluminium Display Cabinets</a></li><li role="none"><a href="/collections/black-display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Black Display Cabinets</a></li><li role="none"><a href="/collections/silver-display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Silver Display Cabinets</a></li><li role="none"><a href="/collections/white-display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">White Display Cabinets</a></li><li role="none"><a href="/collections/wooden-display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Wooden Display Cabinets</a></li></ul></li></ul></li><li x-data="{ menusignsdisplays: false }"class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none"><span @click="menusignsdisplays = !menusignsdisplays" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Signs & Displays
                  <span aria-hidden="true" class="flex w-4 h-4 items-center absolute right-0 top-[50%] translate-y-[-50%]"><svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 9.17001L5 5.17001L1 1.17001" stroke="currentColor"/>
</svg></span>
                </span><ul class="absolute top-0 left-0 z-10 megamenu flex-col gap-0 w-full h-full overflow-y-scroll bg-white list-none" role="menu" :class="{ 'flex': menusignsdisplays, 'hidden': !menusignsdisplays }">
                <button type="button" class="flex items-center gap-3 w-full px-5 text-primary text-base  bg-grey-50  py-5" aria-label="Return to Signs & Displays" @click="menusignsdisplays = false">
                  <span aria-hidden="true" class="block w-4 h-4"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7" /></svg></span>
                  Signs & Displays
                </button><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/snap-frames" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">SNAP FRAMES</a>
                        </li><li role="none"><a href="/collections/a4-snap-frames" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">A4 Snap Frames</a></li><li role="none"><a href="/collections/a3-snap-frames" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">A3 Snap Frames</a></li><li role="none"><a href="/collections/a2-snap-frames" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">A2 Snap Frames</a></li><li role="none"><a href="/collections/a1-snap-frames" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">A1 Snap Frames</a></li><li role="none"><a href="/collections/a0-snap-frames" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">A0 Snap Frames</a></li><li role="none"><a href="/collections/black-snap-frames" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Black Snap Frames</a></li><li role="none"><a href="/collections/silver-snap-frames" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Silver Snap Frames</a></li><li role="none"><a href="/collections/lockable-snap-frames-poster-cases" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Lockable Snap Frames & Poster Cases</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/sign-menu-holders" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">SIGN & MENU HOLDERS</a>
                        </li><li role="none"><a href="/collections/a5-sign-menu-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">A5 Sign & Menu Holders</a></li><li role="none"><a href="/collections/a4-sign-menu-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">A4 Sign & Menu Holders</a></li><li role="none"><a href="/collections/a3-sign-menu-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">A3 Sign & Menu Holders</a></li><li role="none"><a href="/collections/display-risers-block-sign-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Block Sign Holders</a></li><li role="none"><a href="/collections/free-standing-sign-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Free Standing Sign Holders</a></li><li role="none"><a href="/collections/outdoor-sign-menu-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Outdoor Sign & Menu Holders</a></li><li role="none"><a href="/collections/table-sign-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Table Sign Holders</a></li><li role="none"><a href="/collections/wall-sign-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Wall Sign Holders</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/pavement-signs" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">PAVEMENT SIGNS</a>
                        </li><li role="none"><a href="/collections/a-board-pavement-signs" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">A Board Pavement Signs</a></li><li role="none"><a href="/collections/swinging-pavement-signs" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Swinging Pavement Signs</a></li><li role="none"><a href="/collections/waterbase-pavement-signs" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Waterbase Pavement Signs</a></li><li role="none"><a href="/collections/wind-resistant-pavement-signs" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Wind Resistant Pavement Signs</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/chalkboards" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">CHALKBOARDS</a>
                        </li><li role="none"><a href="/collections/a-frame-chalkboards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">A Frame Chalkboards</a></li><li role="none"><a href="/collections/chalkboard-easels" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Chalkboard Easels</a></li><li role="none"><a href="/collections/outdoor-chalkboards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Outdoor Chalkboards</a></li><li role="none"><a href="/collections/table-top-chalkboards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Table Top Chalkboards</a></li><li role="none"><a href="/collections/wall-mounted-chalkboards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Wall Mounted Chalkboards</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/leaflet-brochure-holders" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">LEAFLET & BROCHURE HOLDERS</a>
                        </li><li role="none"><a href="/collections/a4-leaflet-brochure-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">A4 Leaflet & Brochure Holders</a></li><li role="none"><a href="/collections/a5-leaflet-brochure-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">A5 Leaflet & Brochure Holders</a></li><li role="none"><a href="/collections/dl-leaflet-brochure-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">DL Leaflet & Brochure Holders</a></li><li role="none"><a href="/collections/free-standing-leaflet-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Free Standing Leaflet Holders</a></li><li role="none"><a href="/collections/table-leaflet-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Table Leaflet Holders</a></li><li role="none"><a href="/collections/wall-mounted-leaflet-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Wall Mounted Leaflet Holders</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/noticeboards" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">NOTICEBOARDS</a>
                        </li><li role="none"><a href="/collections/acoustic-room-dividers" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Acoustic Room Dividers</a></li><li role="none"><a href="/collections/combi-boards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Combi Boards</a></li><li role="none"><a href="/collections/cork-noticeboards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Cork Noticeboards</a></li><li role="none"><a href="/collections/display-boards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Display Boards</a></li><li role="none"><a href="/collections/felt-noticeboards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Felt Noticeboards</a></li><li role="none"><a href="/collections/fire-resistant-boards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Fire Resistant Boards</a></li><li role="none"><a href="/collections/free-standing-noticeboards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Freestanding Noticeboards</a></li><li role="none"><a href="/collections/lockable-noticeboards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Lockable Noticeboards</a></li><li role="none"><a href="/collections/portable-room-dividers" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Portable Room Dividers</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/whiteboards" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">WHITEBOARDS</a>
                        </li><li role="none"><a href="/collections/flipcharts-pads" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Flipcharts & Pads</a></li><li role="none"><a href="/collections/freestanding-whiteboards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Freestanding Whiteboards</a></li><li role="none"><a href="/collections/magnetic-whiteboards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Magnetic Whiteboards</a></li><li role="none"><a href="/collections/non-magnetic-whiteboards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Non-Magnetic Whiteboards</a></li></ul></li><li role="none" class="px-5"><a href="/collections/led-illuminated-signs" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">LED & ILLUMINATED SIGNS</a></li></ul></li><li x-data="{ menuretaildisplays: false }"class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none"><span @click="menuretaildisplays = !menuretaildisplays" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Retail Displays
                  <span aria-hidden="true" class="flex w-4 h-4 items-center absolute right-0 top-[50%] translate-y-[-50%]"><svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 9.17001L5 5.17001L1 1.17001" stroke="currentColor"/>
</svg></span>
                </span><ul class="absolute top-0 left-0 z-10 megamenu flex-col gap-0 w-full h-full overflow-y-scroll bg-white list-none" role="menu" :class="{ 'flex': menuretaildisplays, 'hidden': !menuretaildisplays }">
                <button type="button" class="flex items-center gap-3 w-full px-5 text-primary text-base  bg-grey-50  py-5" aria-label="Return to Retail Displays" @click="menuretaildisplays = false">
                  <span aria-hidden="true" class="block w-4 h-4"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7" /></svg></span>
                  Retail Displays
                </button><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/display-cabinets" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">DISPLAY CABINETS</a>
                        </li><li role="none"><a href="/collections/aluminium-display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Aluminium Display Cabinets</a></li><li role="none"><a href="/collections/counter-top-display-cases" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Counter Top Display Cases</a></li><li role="none"><a href="/collections/display-counters" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Display Counters</a></li><li role="none"><a href="/collections/free-standing-display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Free Standing Display Cabinets</a></li><li role="none"><a href="/collections/locking-display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Locking Display Cabinets</a></li><li role="none"><a href="/collections/trophy-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Trophy Cabinets</a></li><li role="none"><a href="/collections/wall-display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Wall Display Cabinets</a></li><li role="none"><a href="/collections/wooden-display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Wooden Display Cabinets</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/clothes-rails" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">CLOTHES RAILS</a>
                        </li><li role="none"><a href="/collections/adjustable-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Adjustable Clothes Rails</a></li><li role="none"><a href="/collections/clothes-racks" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Clothes Racks</a></li><li role="none"><a href="/collections/coat-racks-stands" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Coat Racks & Stands</a></li><li role="none"><a href="/collections/double-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Double Clothes Rails</a></li><li role="none"><a href="/collections/heavy-duty-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Heavy Duty Clothes Rails</a></li><li role="none"><a href="/collections/industrial-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Industrial Clothes Rails</a></li><li role="none"><a href="/collections/wall-mounted-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Wall Mounted Clothes Rails</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/mannequins" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">MANNEQUINS</a>
                        </li><li role="none"><a href="/collections/child-mannequins" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Child Mannequins</a></li><li role="none"><a href="/collections/female-mannequins" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Female Mannequins</a></li><li role="none"><a href="/collections/half-form-mannequin-torsos" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Half-Form Mannequins</a></li><li role="none"><a href="/collections/male-mannequins" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Male Mannequins</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/retail-display-stands" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">RETAIL DISPLAY STANDS</a>
                        </li><li role="none"><a href="/collections/display-risers-block-sign-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Display Risers & Block Sign Holders</a></li><li role="none"><a href="/collections/dump-bins-stacking-baskets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Dump Bins & Stacking Baskets</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/queue-barriers" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">QUEUE BARRIERS</a>
                        </li><li role="none"><a href="/collections/barrier-sign-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Barrier Sign Holders</a></li><li role="none"><a href="/collections/cafe-barriers" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Café Barriers</a></li><li role="none"><a href="/collections/outdoor-queuing-barriers" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Outdoor Queuing Barriers</a></li><li role="none"><a href="/collections/retractable-queue-barriers" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Retractable Queue Barriers</a></li><li role="none"><a href="/collections/rope-barriers" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Rope Barriers</a></li><li role="none"><a href="/collections/tensabarrier-queue-barriers" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Tensabarrier Queue Barriers</a></li><li role="none"><a href="/collections/twin-queuing-barriers" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Twin Queuing Barriers</a></li><li role="none"><a href="/collections/wall-mounted-barriers" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Wall Mounted Barriers</a></li></ul></li></ul></li><li x-data="{ menuexhibitioneventdisplays: false }"class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none"><span @click="menuexhibitioneventdisplays = !menuexhibitioneventdisplays" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Exhibition & Event Displays
                  <span aria-hidden="true" class="flex w-4 h-4 items-center absolute right-0 top-[50%] translate-y-[-50%]"><svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 9.17001L5 5.17001L1 1.17001" stroke="currentColor"/>
</svg></span>
                </span><ul class="absolute top-0 left-0 z-10 megamenu flex-col gap-0 w-full h-full overflow-y-scroll bg-white list-none" role="menu" :class="{ 'flex': menuexhibitioneventdisplays, 'hidden': !menuexhibitioneventdisplays }">
                <button type="button" class="flex items-center gap-3 w-full px-5 text-primary text-base  bg-grey-50  py-5" aria-label="Return to Exhibition & Event Displays" @click="menuexhibitioneventdisplays = false">
                  <span aria-hidden="true" class="block w-4 h-4"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7" /></svg></span>
                  Exhibition & Event Displays
                </button><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/exhibition-stands" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">EXHIBITION STANDS</a>
                        </li><li role="none"><a href="/collections/banner-stands" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Banner Stands</a></li><li role="none"><a href="/collections/custom-backdrops" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Custom Backdrops</a></li><li role="none"><a href="/collections/display-boards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Display Boards</a></li><li role="none"><a href="/collections/exhibition-counters" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Exhibition Counters</a></li><li role="none"><a href="/collections/leaflet-brochure-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Leaflet & Brochure Holders</a></li><li role="none"><a href="/collections/lecterns-podiums" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Lecterns & Podiums</a></li><li role="none"><a href="/collections/printed-tablecloths" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Printed Tablecloths</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/outdoor-displays" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">OUTDOOR DISPLAYS</a>
                        </li><li role="none"><a href="/collections/cafe-barriers" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Café Barriers</a></li><li role="none"><a href="/collections/flags" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Custom Flags</a></li><li role="none"><a href="/collections/event-gazebos-tents" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Event Gazebos & Tents</a></li><li role="none"><a href="/collections/pavement-signs" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Pavement Signs</a></li><li role="none"><a href="/collections/outdoor-queuing-barriers" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Outdoor Queuing Barriers</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/event-signage" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">EVENT SIGNAGE</a>
                        </li><li role="none"><a href="/collections/banner-stands" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Banners Stands</a></li><li role="none"><a href="/collections/chalkboards" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Chalkboards</a></li><li role="none"><a href="/collections/custom-backdrops" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Custom Backdrops</a></li><li role="none"><a href="/collections/pavement-signs" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Pavement Signs</a></li><li role="none"><a href="/collections/sign-menu-holders" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Sign & Menu Holders</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/exhibition-furniture" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">EXHIBITION FURNITURE</a>
                        </li><li role="none"><a href="/collections/clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Clothes Rails</a></li><li role="none"><a href="/collections/display-cabinets" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Display Cabinets</a></li><li role="none"><a href="/collections/exhibition-counters" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Exhibition Counters</a></li><li role="none"><a href="/collections/lecterns-podiums" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Lecterns & Podiums</a></li><li role="none"><a href="/collections/queue-barriers" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Queuing Barriers</a></li></ul></li></ul></li><li x-data="{ menuclothesstorage: false }"class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none"><span @click="menuclothesstorage = !menuclothesstorage" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Clothes Storage
                  <span aria-hidden="true" class="flex w-4 h-4 items-center absolute right-0 top-[50%] translate-y-[-50%]"><svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 9.17001L5 5.17001L1 1.17001" stroke="currentColor"/>
</svg></span>
                </span><ul class="absolute top-0 left-0 z-10 megamenu flex-col gap-0 w-full h-full overflow-y-scroll bg-white list-none" role="menu" :class="{ 'flex': menuclothesstorage, 'hidden': !menuclothesstorage }">
                <button type="button" class="flex items-center gap-3 w-full px-5 text-primary text-base  bg-grey-50  py-5" aria-label="Return to Clothes Storage" @click="menuclothesstorage = false">
                  <span aria-hidden="true" class="block w-4 h-4"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7" /></svg></span>
                  Clothes Storage
                </button><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/clothes-rails" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">CLOTHES RAILS</a>
                        </li><li role="none"><a href="/collections/adjustable-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Adjustable Clothes Rails</a></li><li role="none"><a href="/collections/clothes-racks" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Clothes Racks</a></li><li role="none"><a href="/collections/coat-racks-stands" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Coat Racks & Stands</a></li><li role="none"><a href="/collections/double-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Double Clothes Rails</a></li><li role="none"><a href="/collections/heavy-duty-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Heavy Duty Clothes Rails</a></li><li role="none"><a href="/collections/industrial-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Industrial Clothes Rails</a></li><li role="none"><a href="/collections/wall-mounted-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Wall Mounted Clothes Rails</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/clothes-rail-accessories" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">CLOTHES RAIL ACCESSORIES</a>
                        </li><li role="none"><a href="/collections/clothes-rail-covers" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Clothes Rails Covers</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="/collections/clothes-rails" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">SIZE</a>
                        </li><li role="none"><a href="/collections/6ft-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">6ft Clothes Rails</a></li><li role="none"><a href="/collections/5ft-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">5ft Clothes Rails</a></li><li role="none"><a href="/collections/4ft-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">4ft Clothes Rails</a></li><li role="none"><a href="/collections/3ft-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">3ft Clothes Rails</a></li><li role="none"><a href="/collections/2ft-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">2ft Clothes Rails</a></li></ul></li><li role="none" class="px-5"><ul class="w-full h-full bg-white list-none flex-col py-5 border-grey-200 border-b" role="menu" aria-label="">
                        <li role="none">
                          <a href="#" class="inline-block w-full text-primary font-semibold pt-2.5 mb-4">COLOUR/FINISH</a>
                        </li><li role="none"><a href="/collections/black-clothes-rails" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">Black Clothes Rails</a></li><li role="none"><a href="/collections/white-clothes-rail" class="inline-block w-full py-1 pb-2.5 text-primary text-sm transition ease-in-out duration-300" role="menuitem">White Clothes Rails</a></li></ul></li></ul></li><li x-data="{ menushopbyindustry: false }"class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none"><span @click="menushopbyindustry = !menushopbyindustry" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Shop By Industry
                  <span aria-hidden="true" class="flex w-4 h-4 items-center absolute right-0 top-[50%] translate-y-[-50%]"><svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 9.17001L5 5.17001L1 1.17001" stroke="currentColor"/>
</svg></span>
                </span><ul class="absolute top-0 left-0 z-10 megamenu flex-col gap-0 w-full h-full overflow-y-scroll bg-white list-none" role="menu" :class="{ 'flex': menushopbyindustry, 'hidden': !menushopbyindustry }">
                <button type="button" class="flex items-center gap-3 w-full px-5 text-primary text-base  bg-grey-50  py-5" aria-label="Return to Shop By Industry" @click="menushopbyindustry = false">
                  <span aria-hidden="true" class="block w-4 h-4"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7" /></svg></span>
                  Shop By Industry
                </button><li role="none" class="px-5"><a href="/collections/automotive-retail-display-products" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Automotive</a></li><li role="none" class="px-5"><a href="/collections/education-display-and-storage" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Education</a></li><li role="none" class="px-5"><a href="/collections/event-hospitality-display-stands" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Events & Hospitality</a></li><li role="none" class="px-5"><a href="/collections/exhibition-display-products" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Exhibitions & Events</a></li><li role="none" class="px-5"><a href="/collections/garden-centres" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Garden Centres</a></li><li role="none" class="px-5"><a href="/collections/government-council-display-solutions" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem"> Government & Public Body</a></li><li role="none" class="px-5"><a href="/collections/medical-display-equipment" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Medical</a></li><li role="none" class="px-5"><a href="/collections/office-display-and-storage" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Office Interiors</a></li><li role="none" class="px-5"><a href="/collections/retail-display-solutions" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Retail</a></li></ul></li><li x-data="{ menuservices: false }"class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none"><span @click="menuservices = !menuservices" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Services
                  <span aria-hidden="true" class="flex w-4 h-4 items-center absolute right-0 top-[50%] translate-y-[-50%]"><svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 9.17001L5 5.17001L1 1.17001" stroke="currentColor"/>
</svg></span>
                </span><ul class="absolute top-0 left-0 z-10 megamenu flex-col gap-0 w-full h-full overflow-y-scroll bg-white list-none" role="menu" :class="{ 'flex': menuservices, 'hidden': !menuservices }">
                <button type="button" class="flex items-center gap-3 w-full px-5 text-primary text-base  bg-grey-50  py-5" aria-label="Return to Services" @click="menuservices = false">
                  <span aria-hidden="true" class="block w-4 h-4"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7" /></svg></span>
                  Services
                </button><li role="none" class="px-5"><a href="/collections/printing-service" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">All Print Services</a></li><li role="none" class="px-5"><a href="/collections/flags" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Flag Printing</a></li><li role="none" class="px-5"><a href="/collections/poster-printing" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Poster Printing</a></li><li role="none" class="px-5"><a href="/collections/banner-printing" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Banner Printing</a></li><li role="none" class="px-5"><a href="/pages/volume-trade-discounts" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Volume & Trade Discounts</a></li><li role="none" class="px-5"><a href="/pages/planning-a-project" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Project Planning</a></li><li role="none" class="px-5"><a href="/pages/sourcing-service" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Bespoke & Custom Orders</a></li><li role="none" class="px-5"><a href="/pages/public-sector-credit-accounts" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Public Sector Credit Accounts</a></li><li role="none" class="px-5"><a href="/pages/sourcing-service" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Sourcing Service</a></li><li role="none" class="px-5"><a href="/pages/assembly-guides" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Assembly Guides (PDF)</a></li><li role="none" class="px-5"><a href="/pages/video-hub" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Video Guide Gallery</a></li><li role="none" class="px-5"><a href="/pages/product-faqs" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Product FAQs</a></li><li role="none" class="px-5"><a href="/pages/contact-us" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Contact Our Sales Team</a></li></ul></li><li x-data="{ menusalespecialoffers: false }"class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none"><span @click="menusalespecialoffers = !menusalespecialoffers" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Sale & Special Offers
                  <span aria-hidden="true" class="flex w-4 h-4 items-center absolute right-0 top-[50%] translate-y-[-50%]"><svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 9.17001L5 5.17001L1 1.17001" stroke="currentColor"/>
</svg></span>
                </span><ul class="absolute top-0 left-0 z-10 megamenu flex-col gap-0 w-full h-full overflow-y-scroll bg-white list-none" role="menu" :class="{ 'flex': menusalespecialoffers, 'hidden': !menusalespecialoffers }">
                <button type="button" class="flex items-center gap-3 w-full px-5 text-primary text-base  bg-grey-50  py-5" aria-label="Return to Sale & Special Offers" @click="menusalespecialoffers = false">
                  <span aria-hidden="true" class="block w-4 h-4"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7" /></svg></span>
                  Sale & Special Offers
                </button><li role="none" class="px-5"><a href="/collections/on-sale" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Sale</a></li><li role="none" class="px-5"><a href="/collections/best-sellers" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Best Sellers</a></li><li role="none" class="px-5"><a href="/collections/best-rated-display-products" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">Best Rated Displays</a></li></ul></li><li x-data="{ menuknowledgehub: false }"class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none"><span @click="menuknowledgehub = !menuknowledgehub" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Knowledge Hub
                  <span aria-hidden="true" class="flex w-4 h-4 items-center absolute right-0 top-[50%] translate-y-[-50%]"><svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 9.17001L5 5.17001L1 1.17001" stroke="currentColor"/>
</svg></span>
                </span><ul class="absolute top-0 left-0 z-10 megamenu flex-col gap-0 w-full h-full overflow-y-scroll bg-white list-none" role="menu" :class="{ 'flex': menuknowledgehub, 'hidden': !menuknowledgehub }">
                <button type="button" class="flex items-center gap-3 w-full px-5 text-primary text-base  bg-grey-50  py-5" aria-label="Return to Knowledge Hub" @click="menuknowledgehub = false">
                  <span aria-hidden="true" class="block w-4 h-4"><svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7" /></svg></span>
                  Knowledge Hub
                </button><li role="none" class="px-5"><a href="/blogs/buying-guides" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">BUYING GUIDES</a></li><li role="none" class="px-5"><a href="/blogs/home-inspiration" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">HOME INSPIRATION</a></li><li role="none" class="px-5"><a href="/blogs/sector-hub" class="font-semibold py-5 border-grey-200 border-b inline-block w-full text-primary transition ease-in-out duration-300" role="menuitem">SECTOR HUB</a></li></ul></li></div><div id="inspireNavMob" class="mobile-nav-container hidden px-5 py-2.5 bg-white box-border">
          <ul class="list-none grid lg:auto-cols-max lg:grid-flow-col lg:gap-16" role="menubar">
            
              <li class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none" >
                <a href="/blogs/home-inspiration" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Home Inspiration
                </a>
              </li>
            
              <li class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none" >
                <a href="/blogs/sector-hub" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Sector Hub
                </a>
              </li>
            
              <li class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none" >
                <a href="/blogs/buying-guides" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Buying Guides
                </a>
              </li>
            
              <li class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none" >
                <a href="/pages/assembly-guides" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Assembly Guides (PDFs)
                </a>
              </li>
            
              <li class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none" >
                <a href="/pages/faqs" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">FAQs
                </a>
              </li>
            
              <li class="nav-first-level w-full flex flex-col items-center group py-4 border-grey-200 border-b-[1px] last:border-b-0" role="none" >
                <a href="/pages/product-faqs" class="inline-flex flex-wrap cursor-pointer items-center w-full relative text-primary text-base ">Product FAQs
                </a>
              </li>
            
          </ul>
        </div>

      </ul>
    </div>

    

    <div class="mobile-nav-footer flex flex-wrap w-full bg-grey-50 p-5 gap-y-6 lg:hidden">
      <p class="text-medium text-primary w-full">Displaysense</p>
      <p class="flex flex-row text-base text-primary w-full"><span class="flex w-4 h-4 mr-3"><svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.2939 20.6101C12.6693 20.6101 8.84463 18.8386 5.65552 15.6496C2.69946 12.6936 0.946802 9.17148 0.720997 5.73253C0.637709 4.47367 1.13057 3.24521 2.06061 2.3928C2.72364 1.76329 3.51449 1.28399 4.37926 0.987165C4.80257 0.860074 5.25578 0.875419 5.6694 1.03097C6.08317 1.18637 6.43435 1.47335 6.66916 1.84776C7.7677 3.56791 8.43562 5.17304 8.71158 6.75557H8.71173C8.81648 7.38359 8.62219 8.02458 8.18639 8.48882L7.12732 9.62089H7.12747C7.05029 9.70567 7.04135 9.83232 7.10602 9.92678C7.66519 10.7734 8.30839 11.5613 9.02582 12.2785C9.95821 13.2138 11.0112 14.0204 12.1568 14.677C12.2471 14.7238 12.357 14.7073 12.4296 14.6361L13.4122 13.7163H13.4121C13.8768 13.2792 14.5191 13.0843 15.1483 13.1896C16.7316 13.4673 18.3356 14.1339 20.0523 15.2296H20.0522C20.4295 15.4671 20.7176 15.8226 20.8721 16.2409C21.0266 16.659 21.0388 17.1165 20.9067 17.5422C20.7873 17.9096 20.6282 18.2629 20.432 18.5957C19.7582 19.7244 18.5809 20.4582 17.2708 20.5662C16.9471 20.5951 16.6216 20.6095 16.294 20.6097L16.2939 20.6101ZM4.95331 1.96785C4.86689 1.9677 4.78092 1.98067 4.69838 2.00644C3.98084 2.25809 3.32524 2.66024 2.77591 3.18589C2.08725 3.81898 1.72325 4.73051 1.78657 5.66368C1.99546 8.84397 3.63782 12.1228 6.4106 14.8957C9.66242 18.1474 13.5841 19.8299 17.1741 19.5037H17.1739C18.14 19.4275 19.0099 18.8895 19.5094 18.0589C19.6662 17.7936 19.7935 17.512 19.8892 17.2189C19.9498 17.0175 19.9422 16.8016 19.8676 16.6049C19.793 16.4082 19.6556 16.2417 19.4766 16.1311C17.8815 15.1127 16.4051 14.495 14.9636 14.2429C14.665 14.194 14.3607 14.2879 14.1417 14.4963L13.1591 15.4167V15.4168C12.958 15.6089 12.7002 15.731 12.4242 15.765C12.1482 15.799 11.8685 15.7431 11.6267 15.6056C10.3988 14.9014 9.27034 14.0365 8.271 13.0339C7.5025 12.2659 6.81353 11.4219 6.21473 10.5152C6.05083 10.269 5.9747 9.97493 5.99899 9.6802C6.02312 9.38549 6.14634 9.1076 6.34823 8.89171L7.40699 7.75964H7.40714C7.61469 7.54047 7.70826 7.23712 7.66013 6.93896C7.40923 5.49847 6.79075 4.02105 5.76982 2.42249C5.59162 2.14297 5.28469 1.97194 4.95319 1.9676L4.95331 1.96785Z" fill="#424242"/>
<path d="M20.4651 11.288C20.17 11.288 19.9311 11.0489 19.9311 10.754C19.9282 8.34791 18.9712 6.04111 17.2698 4.33957C15.5685 2.63806 13.2618 1.68091 10.8558 1.67809C10.5609 1.67809 10.3218 1.4391 10.3218 1.14409C10.3218 0.849228 10.5609 0.610092 10.8558 0.610092C13.5451 0.613221 16.1237 1.68286 18.0251 3.58446C19.9268 5.48621 20.9965 8.0647 20.9996 10.7538C20.9996 10.8954 20.9433 11.0313 20.843 11.1315C20.7427 11.2316 20.6068 11.2879 20.4651 11.2878L20.4651 11.288Z" fill="#424242"/>
<path d="M16.9921 11.288C16.6973 11.288 16.4581 11.0489 16.4581 10.754C16.4565 9.26871 15.8657 7.84477 14.8155 6.79443C13.7652 5.74418 12.3414 5.15327 10.8563 5.15148C10.5614 5.15148 10.3223 4.91234 10.3223 4.61748C10.3223 4.32262 10.5614 4.08348 10.8563 4.08348C12.6247 4.08557 14.3201 4.78912 15.5707 6.03963C16.8211 7.29014 17.5243 8.98569 17.5263 10.7541C17.5261 11.0489 17.2871 11.2878 16.9924 11.2879L16.9921 11.288Z" fill="#424242"/>
</svg>
</span><strong class="font-semibold mr-2">Sales Team:</strong><a href="tel:01279 460460">01279 460460</a></p>
      
        <ul class="w-full flex flex-wrap">
          
            <li class="w-1/2 mb-2">
              <a class="text-primary text-base hover:text-primary-hover" href="/account">My Account</a>
            </li>
          
            <li class="w-1/2 mb-2">
              <a class="text-primary text-base hover:text-primary-hover" href="/pages/faqs">FAQs</a>
            </li>
          
            <li class="w-1/2 mb-2">
              <a class="text-primary text-base hover:text-primary-hover" href="/pages/contact-us">Contact Us</a>
            </li>
          
        </ul>
      
<ul class="flex flex-wrap items-center justify-start gap-6 lg:gap-8 list-none"><li><a href="https://www.facebook.com/DisplaysenseUK" target="_blank"><span aria-hidden="true" class="block w-[35px] lg:w-[22px]"><svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
    <g clip-path="url(#clip0_211_12797)">
    <path d="M24 12.1245C24 5.49709 18.6274 0.124512 12 0.124512C5.37258 0.124512 0 5.49709 0 12.1245C0 18.114 4.3882 23.0785 10.125 23.9787V15.5933H7.07812V12.1245H10.125V9.48076C10.125 6.47326 11.9166 4.81201 14.6576 4.81201C15.9701 4.81201 17.3438 5.04639 17.3438 5.04639V7.99951H15.8306C14.34 7.99951 13.875 8.92459 13.875 9.87451V12.1245H17.2031L16.6711 15.5933H13.875V23.9787C19.6118 23.0785 24 18.114 24 12.1245Z" fill="#1877F2"/>
    <path d="M16.6711 15.5933L17.2031 12.1245H13.875V9.87451C13.875 8.92553 14.34 7.99951 15.8306 7.99951H17.3438V5.04639C17.3438 5.04639 15.9705 4.81201 14.6576 4.81201C11.9166 4.81201 10.125 6.47326 10.125 9.48076V12.1245H7.07812V15.5933H10.125V23.9787C11.3674 24.1731 12.6326 24.1731 13.875 23.9787V15.5933H16.6711Z" fill="white"/>
    </g>
    <defs>
    <clipPath id="clip0_211_12797">
    <rect width="24" height="24" fill="white" transform="translate(0 0.124512)"/>
    </clipPath>
    </defs>
    </svg>
    </span><span class="sr-only">Find Displaysense on Facebook</span></a></li><li><a href="https://twitter.com/Displaysense" target="_blank"><span aria-hidden="true" class="block w-[35px] lg:w-[22px]"><svg width="24" height="20" viewBox="0 0 24 20" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M7.54752 19.8753C16.6042 19.8753 21.5578 12.3719 21.5578 5.86503C21.5578 5.65191 21.5578 5.43975 21.5434 5.22855C22.507 4.53151 23.3389 3.66844 24 2.67975C23.1014 3.07815 22.148 3.33931 21.1718 3.45447C22.1998 2.83916 22.9692 1.87125 23.3366 0.730952C22.3701 1.30456 21.3126 1.70878 20.2099 1.92615C19.4675 1.13673 18.4856 0.613993 17.4162 0.438836C16.3468 0.263679 15.2494 0.445866 14.294 0.957205C13.3385 1.46854 12.5782 2.28053 12.1307 3.2675C11.6833 4.25447 11.5735 5.36142 11.8186 6.41703C9.8609 6.31883 7.94576 5.81006 6.19745 4.92376C4.44915 4.03745 2.90676 2.79341 1.6704 1.27239C1.04073 2.35639 0.847872 3.63962 1.1311 4.86081C1.41433 6.08201 2.15234 7.14935 3.19488 7.84551C2.41123 7.82255 1.64465 7.61115 0.96 7.22919V7.29159C0.960311 8.42844 1.35385 9.53019 2.07387 10.41C2.79389 11.2897 3.79606 11.8934 4.9104 12.1185C4.18548 12.3162 3.42487 12.3451 2.68704 12.203C3.00181 13.1813 3.61443 14.0368 4.43924 14.6499C5.26405 15.263 6.25983 15.603 7.28736 15.6225C6.26644 16.4249 5.09731 17.0183 3.84687 17.3685C2.59643 17.7187 1.28921 17.8189 0 17.6634C2.25183 19.1084 4.87192 19.8749 7.54752 19.8714" fill="#1DA1F2"/>
    </svg>
    </span><span class="sr-only">Find Displaysense on Twitter</span></a></li><li><a href="https://www.instagram.com/displaysense.co.uk/" target="_blank"><span aria-hidden="true" class="block w-[35px] lg:w-[22px]"><svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M12 2.28545C15.2063 2.28545 15.5859 2.29951 16.8469 2.35576C18.0188 2.40732 18.6516 2.6042 19.0734 2.76826C19.6313 2.98389 20.0344 3.24639 20.4516 3.66357C20.8734 4.08545 21.1313 4.48389 21.3469 5.0417C21.5109 5.46357 21.7078 6.10107 21.7594 7.26826C21.8156 8.53389 21.8297 8.91357 21.8297 12.1151C21.8297 15.3214 21.8156 15.7011 21.7594 16.962C21.7078 18.1339 21.5109 18.7667 21.3469 19.1886C21.1313 19.7464 20.8687 20.1495 20.4516 20.5667C20.0297 20.9886 19.6313 21.2464 19.0734 21.462C18.6516 21.6261 18.0141 21.8229 16.8469 21.8745C15.5813 21.9308 15.2016 21.9448 12 21.9448C8.79375 21.9448 8.41406 21.9308 7.15313 21.8745C5.98125 21.8229 5.34844 21.6261 4.92656 21.462C4.36875 21.2464 3.96563 20.9839 3.54844 20.5667C3.12656 20.1448 2.86875 19.7464 2.65313 19.1886C2.48906 18.7667 2.29219 18.1292 2.24063 16.962C2.18438 15.6964 2.17031 15.3167 2.17031 12.1151C2.17031 8.90889 2.18438 8.5292 2.24063 7.26826C2.29219 6.09639 2.48906 5.46357 2.65313 5.0417C2.86875 4.48389 3.13125 4.08076 3.54844 3.66357C3.97031 3.2417 4.36875 2.98389 4.92656 2.76826C5.34844 2.6042 5.98594 2.40732 7.15313 2.35576C8.41406 2.29951 8.79375 2.28545 12 2.28545ZM12 0.124512C8.74219 0.124512 8.33438 0.138574 7.05469 0.194824C5.77969 0.251074 4.90313 0.457324 4.14375 0.752637C3.35156 1.06201 2.68125 1.46982 2.01563 2.14014C1.34531 2.80576 0.9375 3.47607 0.628125 4.26357C0.332812 5.02764 0.126563 5.89951 0.0703125 7.17451C0.0140625 8.45889 0 8.8667 0 12.1245C0 15.3823 0.0140625 15.7901 0.0703125 17.0698C0.126563 18.3448 0.332812 19.2214 0.628125 19.9808C0.9375 20.7729 1.34531 21.4433 2.01563 22.1089C2.68125 22.7745 3.35156 23.187 4.13906 23.4917C4.90313 23.787 5.775 23.9933 7.05 24.0495C8.32969 24.1058 8.7375 24.1198 11.9953 24.1198C15.2531 24.1198 15.6609 24.1058 16.9406 24.0495C18.2156 23.9933 19.0922 23.787 19.8516 23.4917C20.6391 23.187 21.3094 22.7745 21.975 22.1089C22.6406 21.4433 23.0531 20.773 23.3578 19.9855C23.6531 19.2214 23.8594 18.3495 23.9156 17.0745C23.9719 15.7948 23.9859 15.387 23.9859 12.1292C23.9859 8.87139 23.9719 8.46357 23.9156 7.18389C23.8594 5.90889 23.6531 5.03232 23.3578 4.27295C23.0625 3.47607 22.6547 2.80576 21.9844 2.14014C21.3188 1.47451 20.6484 1.06201 19.8609 0.757324C19.0969 0.462012 18.225 0.255762 16.95 0.199512C15.6656 0.138574 15.2578 0.124512 12 0.124512Z" fill="#000100"/>
    <path d="M12 5.96045C8.59688 5.96045 5.83594 8.72139 5.83594 12.1245C5.83594 15.5276 8.59688 18.2886 12 18.2886C15.4031 18.2886 18.1641 15.5276 18.1641 12.1245C18.1641 8.72139 15.4031 5.96045 12 5.96045ZM12 16.1229C9.79219 16.1229 8.00156 14.3323 8.00156 12.1245C8.00156 9.9167 9.79219 8.12607 12 8.12607C14.2078 8.12607 15.9984 9.9167 15.9984 12.1245C15.9984 14.3323 14.2078 16.1229 12 16.1229Z" fill="#000100"/>
    <path d="M19.8469 5.7169C19.8469 6.51377 19.2 7.15596 18.4078 7.15596C17.6109 7.15596 16.9688 6.50909 16.9688 5.7169C16.9688 4.92002 17.6156 4.27783 18.4078 4.27783C19.2 4.27783 19.8469 4.92471 19.8469 5.7169Z" fill="#000100"/>
    </svg>
    </span><span class="sr-only">Find Displaysense on Instagram</span></a></li><li><a href="https://www.youtube.com/user/Displaysense" target="_blank"><span aria-hidden="true" class="block w-[35px] lg:w-[22px]"><svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24"><path d="M21.593 7.203a2.506 2.506 0 0 0-1.762-1.766C18.265 5.007 12 5 12 5s-6.264-.007-7.831.404a2.56 2.56 0 0 0-1.766 1.778c-.413 1.566-.417 4.814-.417 4.814s-.004 3.264.406 4.814c.23.857.905 1.534 1.763 1.765 1.582.43 7.83.437 7.83.437s6.265.007 7.831-.403a2.515 2.515 0 0 0 1.767-1.763c.414-1.565.417-4.812.417-4.812s.02-3.265-.407-4.831zM9.996 15.005l.005-6 5.207 3.005-5.212 2.995z"></path></svg></span><span class="sr-only">Find Displaysense on Youtube</span></a></li><li><a href="https://www.pinterest.co.uk/displaysense/" target="_blank"><span aria-hidden="true" class="block w-[35px] lg:w-[22px]"><svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M12 0.124512C5.37284 0.124512 0 5.49735 0 12.1245C0 17.2109 3.16049 21.5566 7.62469 23.3048C7.51605 22.3566 7.42716 20.8949 7.6642 19.8578C7.88148 18.9196 9.06667 13.8924 9.06667 13.8924C9.06667 13.8924 8.71111 13.1714 8.71111 12.1146C8.71111 10.4455 9.67901 9.20106 10.884 9.20106C11.9111 9.20106 12.4049 9.97143 12.4049 10.8899C12.4049 11.9171 11.7531 13.4578 11.4074 14.8899C11.121 16.085 12.0099 17.0628 13.1852 17.0628C15.3185 17.0628 16.958 14.8109 16.958 11.5714C16.958 8.69735 14.8938 6.69241 11.9407 6.69241C8.52346 6.69241 6.51852 9.25044 6.51852 11.8974C6.51852 12.9245 6.91358 14.0307 7.40741 14.6332C7.50617 14.7517 7.51605 14.8603 7.48642 14.9788C7.39753 15.3541 7.19012 16.1739 7.15062 16.3418C7.10123 16.5591 6.97284 16.6085 6.74568 16.4998C5.24444 15.7986 4.30617 13.6159 4.30617 11.848C4.30617 8.06525 7.05185 4.58871 12.237 4.58871C16.3951 4.58871 19.6346 7.55167 19.6346 11.522C19.6346 15.6603 17.0272 18.9887 13.4123 18.9887C12.1975 18.9887 11.0519 18.3566 10.6667 17.606C10.6667 17.606 10.0642 19.8974 9.91605 20.4603C9.64938 21.5072 8.91852 22.8109 8.42469 23.6109C9.55062 23.9566 10.7358 24.1443 11.9802 24.1443C18.6074 24.1443 23.9802 18.7714 23.9802 12.1443C24 5.49735 18.6272 0.124512 12 0.124512Z" fill="#E60019"/>
    </svg>
    </span><span class="sr-only">Find Displaysense on Pinterest</span></a></li></ul></div>


  </nav>
</div><a href="/" title="Displaysense Logo" class="flex flex-col mx-auto lg:left-0 lg:translate-x-[0] lg:relative order-3 px-0 lg:block lg:order-2 text-primary max-w-[170px] lg:max-w-[185px] w-full lg:mr-5"><img src="//www.displaysense.co.uk/cdn/shop/files/Displaysense_Logo_d73c5f13-48fa-4c5b-8f11-8dd9814a72b5_300x.png?v=1702287097" width="220" height="42" alt="Displaysense" fetchPriority="high" /></a>

  
<style>
  #nav-switcher{
    display:none;
  }
</style>

<div id="nav-switcher" class="py-2.5 lg:py-0 lg:min-w-max lg:bg-white flex lg:order-2">
  <ul class="nav-switcher--list flex flex-row gap-x-4 lg:gap-x-0">
    <li class="nav-switcher--list-item flex flex-col lg:px-5">
      <button type="button" class="switcher-link shopLink uppercase min-w-max cursor-pointer text-base font-semibold text-primary-hover tracking-[0.02em] border-b-0 lg:border-b cc-py-0 border-primary-hover transition ease-in-out duration-300 hover:text-primary-hover hover:border-primary-hover">Shop</button>
    </li>
    <li class="nav-switcher--list-item flex flex-col lg:px-5">
      <button type="button" class="switcher-link inspireLink uppercase min-w-max cursor-pointer text-base font-semibold text-primary tracking-[0.02em] border-b-0 lg:border-b cc-py-0 border-transparent transition ease-in-out duration-300 hover:text-primary-hover hover:border-primary-hover">Advice & Inspire</button>
    </li>
    </ul>
</div>


  <div class="header-search w-full cc-hidden order-1 lg:order-2 max-w-[20px]  lg:cc-flex lg:max-w-full"><div
  class="lg:flex lg:flex-row w-full lg:justify-start cc-border  cc-mx-auto lg:cc-max-w-[550px]"
  x-data="{ siteSearch: false }"
  x-on:keydown.escape.window="siteSearch = false">
  <button
    type="button"
    class="hidden"
    @click="siteSearch = !siteSearch; $nextTick(() => $refs.searchinput.focus());"
    :aria-expanded="siteSearch ? 'true' : 'false'"
    aria-label="Search"
    aria-haspopup="true">
    <span
      aria-hidden="true"
      aria-label="Show Search Bar"
      class="flex w-6 h-6"
      :class="{ 'hidden lg:block': siteSearch, 'block lg:block': !siteSearch }"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.3646 17.7892L12.2128 12.8217C13.6287 11.6711 14.5287 10.0326 14.7232 8.25137C14.9177 6.47017 14.3916 4.68531 13.2555 3.27275C12.1195 1.86018 10.4623 0.930183 8.63298 0.678635C6.80367 0.427086 4.94505 0.873627 3.44862 1.9242C1.95219 2.97477 0.934753 4.54737 0.610622 6.31074C0.286492 8.07411 0.680969 9.89062 1.71096 11.3776C2.74096 12.8646 4.32606 13.9061 6.13241 14.2826C7.93875 14.6591 9.82532 14.3413 11.3947 13.3961C11.3947 13.4025 11.4059 13.4101 11.4125 13.4165L16.6599 18.4809C16.755 18.5663 16.8806 18.6126 17.0102 18.61C17.1398 18.6074 17.2633 18.5561 17.3546 18.467C17.446 18.3779 17.4981 18.2578 17.4999 18.1322C17.5018 18.0066 17.4533 17.8851 17.3646 17.7935V17.7892ZM1.50789 7.52458C1.50789 6.34924 1.86741 5.2003 2.54098 4.22304C3.21455 3.24579 4.17191 2.48411 5.29202 2.03433C6.41212 1.58455 7.64465 1.46686 8.83374 1.69616C10.0228 1.92546 11.1151 2.49143 11.9724 3.32252C12.8297 4.15361 13.4135 5.21248 13.65 6.36523C13.8865 7.51798 13.7651 8.71284 13.3012 9.79871C12.8372 10.8846 12.0515 11.8127 11.0435 12.4657C10.0354 13.1186 8.85024 13.4672 7.63785 13.4672C6.01262 13.4655 4.45447 12.8388 3.30527 11.7247C2.15606 10.6107 1.50966 9.10013 1.50789 7.52458Z" fill="currentColor"/>
</svg>
</span>
    <span
      aria-hidden="true"
      aria-label="Close Search Bar"
      class="flex w-6 h-6"
      x-cloak
      :class="{ 'block lg:hidden': siteSearch, 'hidden': !siteSearch }"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.03983 7.98361L0.707108 0.650894L0 1.358L7.33272 8.69072L0 16.0234L0.707107 16.7305L8.03983 9.39783L15.3725 16.7305L16.0796 16.0234L8.74693 8.69072L16.0796 1.35801L15.3725 0.650901L8.03983 7.98361Z" fill="#424242"/>
</svg>
</span>
    <span class="sr-only">Search</span>
  </button>
  <div x-cloak :class="{ '': siteSearch, 'block lg:w-full': !siteSearch }"> 
    <div class="relative bg-white z-40 lg:z-20 left-0 right-0 m-auto w-full cc-top-0 box-border lg:!cc-pb-0 lg:!cc-px-0 lg:relative lg:cc-top-0">
      <form class="flex w-full cc-border cc-border-solid cc-border-black  relative" action="/search">
        <input
          type="text"
          class="block w-full !cc-py-4 !cc-px-4 lg:!cc-px-[26px] !border-0 !cc-text-[12.59px]"
          placeholder="Search"
          name="q"
          value=""
          x-ref="searchinput" />
        <input
          type="hidden"
          name="type"
          value="product,page" />
        <input
          type="hidden"
          name="options[unavailable_products]"
          value="hide" />
        <input
          type="hidden"
          name="options[prefix]"
          value="last" />
        
        
        <div class="cc__categoriessearch cc-bg-ccbgthemeb cc-flex-shrink-0">
          <div class="cc__categoriesserchtrigger cc-px-5 cc-py-4 cc-cursor-pointer">
            <div class="cc-flex cc-items-center cc-gap-[10px]">
              <span class="cc-text-[12.59px]">All Categories</span>
              <svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 0.720184L5 4.72018L9 0.720184" stroke="currentColor"/>
</svg>

            </div>
          </div>
          <div class="cc__categoriessearchitems cc-p-4 cc-bg-[#E3EBEA] cc-border-x cc-border-b cc-border-solid cc-border-black cc-absolute cc-left-0 cc-w-full cc-top-[103%] cc-hidden open:cc-block">
            <ul class="cc-gap-x-4 cc-columns-1 min-[370px]:cc-columns-2 lg:cc-columns-3">
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/display-cabinets" title="Display Cabinets">Display Cabinets</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/snap-frames" title="Snap Frames">Snap Frames</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/sign-menu-holders" title="Sign & Menu Holders">Sign & Menu Holders</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/pavement-signs" title="Pavement Signs">Pavement Signs</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/noticeboards" title="Noticeboards">Noticeboards</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/leaflet-brochure-holders" title="Leaflet & Brochure Holders">Leaflet & Brochure Holders</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/chalkboards" title="Chalkboards">Chalkboards</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/whiteboards" title="Whiteboards">Whiteboards</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/led-illuminated-signs" title="LED & Illuminated Sign">LED & Illuminated Sign</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/clothes-rails" title="Clothes Rails">Clothes Rails</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/clothes-rail-accessories" title="Clothes Rail Accessories">Clothes Rail Accessories</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/mannequins" title="Mannequins">Mannequins</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/retail-display-stands" title="Retail Display Stands">Retail Display Stands</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/queue-barriers" title="Queue Barriers">Queue Barriers</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/exhibition-event-displays" title="Exhibition & Event Displays">Exhibition & Event Displays</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/exhibition-stands" title="Exhibition Stands">Exhibition Stands</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/outdoor-displays" title="Outdoor Displays">Outdoor Displays</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/event-signage" title="Event Signage">Event Signage</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/exhibition-furniture" title="Exhibition Furniture">Exhibition Furniture</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/leaflet-printing" title="Flyer & Leaflet Printing">Flyer & Leaflet Printing</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/poster-printing" title="Poster Printing">Poster Printing</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/banner-printing" title="Banner Printing">Banner Printing</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/flags" title="Flag Printing">Flag Printing</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/event-gazebos-tents" title="Gazebos Printing">Gazebos Printing</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/on-sale" title="Sale & Special Offers">Sale & Special Offers</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/best-sellers" title="Best Sellers">Best Sellers</a></li>
              
            </ul>
          </div>
        </div>
        
        <button type="submit" class="relative cc-p-4 cc-bg-ccbgthemea cc-border-l cc-border-solid cc-border-black"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.3646 17.7892L12.2128 12.8217C13.6287 11.6711 14.5287 10.0326 14.7232 8.25137C14.9177 6.47017 14.3916 4.68531 13.2555 3.27275C12.1195 1.86018 10.4623 0.930183 8.63298 0.678635C6.80367 0.427086 4.94505 0.873627 3.44862 1.9242C1.95219 2.97477 0.934753 4.54737 0.610622 6.31074C0.286492 8.07411 0.680969 9.89062 1.71096 11.3776C2.74096 12.8646 4.32606 13.9061 6.13241 14.2826C7.93875 14.6591 9.82532 14.3413 11.3947 13.3961C11.3947 13.4025 11.4059 13.4101 11.4125 13.4165L16.6599 18.4809C16.755 18.5663 16.8806 18.6126 17.0102 18.61C17.1398 18.6074 17.2633 18.5561 17.3546 18.467C17.446 18.3779 17.4981 18.2578 17.4999 18.1322C17.5018 18.0066 17.4533 17.8851 17.3646 17.7935V17.7892ZM1.50789 7.52458C1.50789 6.34924 1.86741 5.2003 2.54098 4.22304C3.21455 3.24579 4.17191 2.48411 5.29202 2.03433C6.41212 1.58455 7.64465 1.46686 8.83374 1.69616C10.0228 1.92546 11.1151 2.49143 11.9724 3.32252C12.8297 4.15361 13.4135 5.21248 13.65 6.36523C13.8865 7.51798 13.7651 8.71284 13.3012 9.79871C12.8372 10.8846 12.0515 11.8127 11.0435 12.4657C10.0354 13.1186 8.85024 13.4672 7.63785 13.4672C6.01262 13.4655 4.45447 12.8388 3.30527 11.7247C2.15606 10.6107 1.50966 9.10013 1.50789 7.52458Z" fill="currentColor"/>
</svg>
</button>
      </form>
    </div>
  </div>
</div></div>
 

    <div class="header-actions lg:ml-auto flex items-center gap-1 order-3 lg:order-4 lg:gap-7">
      <div class="cc__header-tool-icons">
        <div class="cc-flex cc-items-center cc-gap-[37px]">
          
<div class="cc-hidden md:cc-flex cc-items-center cc-gap-2"><svg xmlns="http://www.w3.org/2000/svg" width="22" height="20" fill="none">
  <path stroke="#0C0C0C" stroke-width="1.888" d="m11.001 3 2.353 5.09L19 8.731l-4.19 3.804L15.932 18l-4.93-2.743L6.071 18l1.121-5.464L3 8.729l5.625-.642L11 3Z" clip-rule="evenodd"/>
</svg><div class="cc__starcounter cc-rounded-full cc-text-[12px] cc-text-white cc-bg-[#F56319] cc-size-[20px] cc-flex cc-items-center cc-justify-center cc-font-semibold">0</div>
</div> 

<div x-data="{ miniCart: false }" x-on:keydown.escape.window="miniCart = false">
  <button type="button" class="flex items-center gap-2 btn-cart group" @click="miniCart = !miniCart" :aria-expanded="miniCart ? 'true' : 'false'" aria-label="Your cart" aria-haspopup="true">
    <span class="sr-only">Your cart</span>
    <span aria-hidden="true" class="flex cc-items-center cc-gap-[4px] relative">
      <span class="cc-w-auto cc-h-auto"><svg xmlns="http://www.w3.org/2000/svg" width="21" height="18" fill="none">
  <path fill="#0C0C0C" fill-rule="evenodd" d="M8.667 13.506c-1.255 0-2.281 1.01-2.281 2.247C6.386 16.989 7.412 18 8.667 18c1.255 0 2.281-1.011 2.281-2.247s-1.026-2.247-2.28-2.247Zm6.843 0c-1.254 0-2.28 1.01-2.28 2.247 0 1.236 1.026 2.247 2.28 2.247 1.255 0 2.282-1.011 2.282-2.247s-1.027-2.247-2.282-2.247Zm-6.843 1.348c.502 0 .913.404.913.899a.91.91 0 0 1-.913.899.908.908 0 0 1-.912-.9c0-.494.41-.898.912-.898Zm6.843 0c.502 0 .913.404.913.899 0 .494-.41.899-.913.899a.908.908 0 0 1-.912-.9c0-.494.41-.898.912-.898ZM0 1.37h3.42C4.562 4.136 5.68 6.9 6.797 9.664l-1.027 2.45a.626.626 0 0 0 .068.629c.115.18.343.292.57.292h12.96v-1.349H7.413l.594-1.393L19 9.438a.704.704 0 0 0 .615-.517l1.37-5.842c.09-.405-.252-.832-.662-.832H5.245L4.493.427A.701.701 0 0 0 3.853 0H0v1.371Zm10.036 2.248H5.793l.821 2.023h3.422V3.618Zm4.106 0h-2.738v2.023h2.738V3.618Zm5.292 0H15.51v2.023h3.445l.479-2.023Zm-9.398 3.37H7.162l.82 1.978 2.054-.157v-1.82Zm4.106 0h-2.738V8.72l2.738-.225V6.99Zm4.516 0H15.51v1.394l2.875-.225.273-1.168Z" clip-rule="evenodd"/>
</svg></span>
    <span class="js-cart-count cc-rounded-full cc-text-[12px] cc-text-white cc-bg-[#F56319] cc-size-[20px] cc-flex cc-items-center cc-justify-center cc-font-semibold" data-cart-item-count>0</span>
    </span>
  </button>

  <div x-cloak id="mini-cart" :class="{ '': miniCart, 'hidden': !miniCart }">
    <div class="fixed cc-z-[99] top-0 right-0 h-screen w-full p-6 lg:p-10 max-w-[580px] bg-grey-50" x-data="{ showUpsellItem: true }">
      <div class="border-b border-grey-200 flex justify-between items-center pb-5">
        <div class="mini-cart-heading-and-icon flex gap-x-4 items-center">
          <svg xmlns="http://www.w3.org/2000/svg" width="21" height="18" fill="none">
  <path fill="#0C0C0C" fill-rule="evenodd" d="M8.667 13.506c-1.255 0-2.281 1.01-2.281 2.247C6.386 16.989 7.412 18 8.667 18c1.255 0 2.281-1.011 2.281-2.247s-1.026-2.247-2.28-2.247Zm6.843 0c-1.254 0-2.28 1.01-2.28 2.247 0 1.236 1.026 2.247 2.28 2.247 1.255 0 2.282-1.011 2.282-2.247s-1.027-2.247-2.282-2.247Zm-6.843 1.348c.502 0 .913.404.913.899a.91.91 0 0 1-.913.899.908.908 0 0 1-.912-.9c0-.494.41-.898.912-.898Zm6.843 0c.502 0 .913.404.913.899 0 .494-.41.899-.913.899a.908.908 0 0 1-.912-.9c0-.494.41-.898.912-.898ZM0 1.37h3.42C4.562 4.136 5.68 6.9 6.797 9.664l-1.027 2.45a.626.626 0 0 0 .068.629c.115.18.343.292.57.292h12.96v-1.349H7.413l.594-1.393L19 9.438a.704.704 0 0 0 .615-.517l1.37-5.842c.09-.405-.252-.832-.662-.832H5.245L4.493.427A.701.701 0 0 0 3.853 0H0v1.371Zm10.036 2.248H5.793l.821 2.023h3.422V3.618Zm4.106 0h-2.738v2.023h2.738V3.618Zm5.292 0H15.51v2.023h3.445l.479-2.023Zm-9.398 3.37H7.162l.82 1.978 2.054-.157v-1.82Zm4.106 0h-2.738V8.72l2.738-.225V6.99Zm4.516 0H15.51v1.394l2.875-.225.273-1.168Z" clip-rule="evenodd"/>
</svg>
          <p class="text-black font-light capitalize text-[18px]">Your cart</p>
        </div>

        <button type="button" class="flex hover:cursor-pointer" @click="miniCart = false">
          <span class="sr-only">Close Your cart</span>
          <span aria-hidden="true" class="flex !w-3 !h-3"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.03983 7.98361L0.707108 0.650894L0 1.358L7.33272 8.69072L0 16.0234L0.707107 16.7305L8.03983 9.39783L15.3725 16.7305L16.0796 16.0234L8.74693 8.69072L16.0796 1.35801L15.3725 0.650901L8.03983 7.98361Z" fill="#424242"/>
</svg>
</span>
        </button>
      </div>

      <div class="flex flex-col relative h-full w-full pt-5">
        <form action="/cart" method="post" class="flex flex-col h-[calc(100%_-_200px)] lg:h-[calc(100%_-_220px)] overflow-y-auto" id="mini-cart"><div class="mini-cart-contents mb-12 h-full overflow-auto" data-cart-contents><div class="cart-empty-contents mt-5 " data-cart-empty>
              <p class="block text-[18px] font-thin text-center mb-4">Your Bag is empty</p>
              
                <span class="w-full block text-center mb-4"><p>A great starting point would be to check out our sale!</p></span>
              
              
                <a class="btn btn-primary text-center block max-w-max mx-auto" href="/collections/on-sale" data-cart-empty><p>Shop Sale</p></a>
              
            </div>

          </div>
        </form>
        <div class="mini-cart-summary absolute bottom-10 lg:bottom-0 pt-4 pb-5 lg:pb-10 flex flex-row flex-wrap w-full bg-grey-50 hidden"><div class="cart-summary-container flex flex-col order-2 p-0 w-full">

  <div class="cart-summary-row cart-summary-subtotal !pb-0">
    <span class="text-base text-primary">Subtotal</span>
    <div class="flex flex-row justify-end items-center">
      <span class="js-volume-pricing text-base text-primary" data-cart-subtotal>£0.00</span>
        
          <span class="ml-1 text-xs text-primary">(Inc VAT)</span>
        
    </div>
  </div>

  <div class="cart-summary-row cart-summary-delivery !pb-0">
    <span class="text-base text-primary">Delivery</span>
    <span class="text-base text-primary flex items-center">Calculated at Checkout</span></span>
  </div>

  
  <div class="cart-summary-row cart-summary-discount !pb-0 hidden" data-cart-discount-row>
    <span class="text-base text-success-600">You Save:</span>
    <span class="text-base text-success-600" data-cart-discount>-£0.00</span>
  </div>

  <div class="cart-summary-row cart-summary-total  hidden">
    <span>Total:</span>
    <span data-cart-total>£0.00</span>
  </div>

  <form action="/cart" method="post" class="flex flex-col" id="mini-cart">
    <button type="submit" class="btn btn-primary uppercase my-4 js-minicart-checkout-btn"  disabled  name="checkout">Continue to checkout<span aria-hidden="true" class="flex items-center !w-3 !h-3"><svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg">
  <path d="M1 9.17001L5 5.17001L1 1.17001" stroke="currentColor"/>
</svg></span>
    </button>
  </form>

  <div class="cart-payment-methods flex flex-row justify-center gap-x-4 mt-0 md:mt-4 md:mb-5">
<ul class="flex flex-wrap items-center justify-start gap-6 lg:gap-8 list-none">
  
    <li>
      <img width="40" height="20" src="//www.displaysense.co.uk/cdn/shopifycloud/storefront/assets/payment_icons/paypal-a7c68b85.svg" alt="paypal" class="lazyload" />
    </li>
  
    <li>
      <img width="40" height="20" src="//www.displaysense.co.uk/cdn/shopifycloud/storefront/assets/payment_icons/master-54b5a7ce.svg" alt="master" class="lazyload" />
    </li>
  
    <li>
      <img width="40" height="20" src="//www.displaysense.co.uk/cdn/shopifycloud/storefront/assets/payment_icons/visa-65d650f7.svg" alt="visa" class="lazyload" />
    </li>
  
    <li>
      <img width="40" height="20" src="//www.displaysense.co.uk/cdn/shopifycloud/storefront/assets/payment_icons/american_express-1efdc6a3.svg" alt="american express" class="lazyload" />
    </li>
  
    <li>
      <img width="40" height="20" src="//www.displaysense.co.uk/cdn/shopifycloud/storefront/assets/payment_icons/discover-59880595.svg" alt="discover" class="lazyload" />
    </li>
  
</ul></div>
  
</div></div>
      </div>
    </div>
    <div class="fixed z-30 bg-black/50 inset-0 cursor-pointer" @click="miniCart = false"></div>
  </div>
</div></div>
      </div>
    </div>
  </div>

  <div class="header-search w-full flex order-1 lg:order-2 max-w-full lg:cc-hidden"><div
  class="lg:flex lg:flex-row w-full lg:justify-start cc-border  cc-mx-auto lg:cc-max-w-[550px]"
  x-data="{ siteSearch: false }"
  x-on:keydown.escape.window="siteSearch = false">
  <button
    type="button"
    class="hidden"
    @click="siteSearch = !siteSearch; $nextTick(() => $refs.searchinput.focus());"
    :aria-expanded="siteSearch ? 'true' : 'false'"
    aria-label="Search"
    aria-haspopup="true">
    <span
      aria-hidden="true"
      aria-label="Show Search Bar"
      class="flex w-6 h-6"
      :class="{ 'hidden lg:block': siteSearch, 'block lg:block': !siteSearch }"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.3646 17.7892L12.2128 12.8217C13.6287 11.6711 14.5287 10.0326 14.7232 8.25137C14.9177 6.47017 14.3916 4.68531 13.2555 3.27275C12.1195 1.86018 10.4623 0.930183 8.63298 0.678635C6.80367 0.427086 4.94505 0.873627 3.44862 1.9242C1.95219 2.97477 0.934753 4.54737 0.610622 6.31074C0.286492 8.07411 0.680969 9.89062 1.71096 11.3776C2.74096 12.8646 4.32606 13.9061 6.13241 14.2826C7.93875 14.6591 9.82532 14.3413 11.3947 13.3961C11.3947 13.4025 11.4059 13.4101 11.4125 13.4165L16.6599 18.4809C16.755 18.5663 16.8806 18.6126 17.0102 18.61C17.1398 18.6074 17.2633 18.5561 17.3546 18.467C17.446 18.3779 17.4981 18.2578 17.4999 18.1322C17.5018 18.0066 17.4533 17.8851 17.3646 17.7935V17.7892ZM1.50789 7.52458C1.50789 6.34924 1.86741 5.2003 2.54098 4.22304C3.21455 3.24579 4.17191 2.48411 5.29202 2.03433C6.41212 1.58455 7.64465 1.46686 8.83374 1.69616C10.0228 1.92546 11.1151 2.49143 11.9724 3.32252C12.8297 4.15361 13.4135 5.21248 13.65 6.36523C13.8865 7.51798 13.7651 8.71284 13.3012 9.79871C12.8372 10.8846 12.0515 11.8127 11.0435 12.4657C10.0354 13.1186 8.85024 13.4672 7.63785 13.4672C6.01262 13.4655 4.45447 12.8388 3.30527 11.7247C2.15606 10.6107 1.50966 9.10013 1.50789 7.52458Z" fill="currentColor"/>
</svg>
</span>
    <span
      aria-hidden="true"
      aria-label="Close Search Bar"
      class="flex w-6 h-6"
      x-cloak
      :class="{ 'block lg:hidden': siteSearch, 'hidden': !siteSearch }"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.03983 7.98361L0.707108 0.650894L0 1.358L7.33272 8.69072L0 16.0234L0.707107 16.7305L8.03983 9.39783L15.3725 16.7305L16.0796 16.0234L8.74693 8.69072L16.0796 1.35801L15.3725 0.650901L8.03983 7.98361Z" fill="#424242"/>
</svg>
</span>
    <span class="sr-only">Search</span>
  </button>
  <div x-cloak :class="{ '': siteSearch, 'block lg:w-full': !siteSearch }"> 
    <div class="relative bg-white z-40 lg:z-20 left-0 right-0 m-auto w-full cc-top-0 box-border lg:!cc-pb-0 lg:!cc-px-0 lg:relative lg:cc-top-0">
      <form class="flex w-full cc-border cc-border-solid cc-border-black  relative" action="/search">
        <input
          type="text"
          class="block w-full !cc-py-4 !cc-px-4 lg:!cc-px-[26px] !border-0 !cc-text-[12.59px]"
          placeholder="Search"
          name="q"
          value=""
          x-ref="searchinput" />
        <input
          type="hidden"
          name="type"
          value="product,page" />
        <input
          type="hidden"
          name="options[unavailable_products]"
          value="hide" />
        <input
          type="hidden"
          name="options[prefix]"
          value="last" />
        
        
        <div class="cc__categoriessearch cc-bg-ccbgthemeb cc-flex-shrink-0">
          <div class="cc__categoriesserchtrigger cc-px-5 cc-py-4 cc-cursor-pointer">
            <div class="cc-flex cc-items-center cc-gap-[10px]">
              <span class="cc-text-[12.59px]">All Categories</span>
              <svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 0.720184L5 4.72018L9 0.720184" stroke="currentColor"/>
</svg>

            </div>
          </div>
          <div class="cc__categoriessearchitems cc-p-4 cc-bg-[#E3EBEA] cc-border-x cc-border-b cc-border-solid cc-border-black cc-absolute cc-left-0 cc-w-full cc-top-[103%] cc-hidden open:cc-block">
            <ul class="cc-gap-x-4 cc-columns-1 min-[370px]:cc-columns-2 lg:cc-columns-3">
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/display-cabinets" title="Display Cabinets">Display Cabinets</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/snap-frames" title="Snap Frames">Snap Frames</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/sign-menu-holders" title="Sign & Menu Holders">Sign & Menu Holders</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/pavement-signs" title="Pavement Signs">Pavement Signs</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/noticeboards" title="Noticeboards">Noticeboards</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/leaflet-brochure-holders" title="Leaflet & Brochure Holders">Leaflet & Brochure Holders</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/chalkboards" title="Chalkboards">Chalkboards</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/whiteboards" title="Whiteboards">Whiteboards</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/led-illuminated-signs" title="LED & Illuminated Sign">LED & Illuminated Sign</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/clothes-rails" title="Clothes Rails">Clothes Rails</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/clothes-rail-accessories" title="Clothes Rail Accessories">Clothes Rail Accessories</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/mannequins" title="Mannequins">Mannequins</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/retail-display-stands" title="Retail Display Stands">Retail Display Stands</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/queue-barriers" title="Queue Barriers">Queue Barriers</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/exhibition-event-displays" title="Exhibition & Event Displays">Exhibition & Event Displays</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/exhibition-stands" title="Exhibition Stands">Exhibition Stands</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/outdoor-displays" title="Outdoor Displays">Outdoor Displays</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/event-signage" title="Event Signage">Event Signage</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/exhibition-furniture" title="Exhibition Furniture">Exhibition Furniture</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/leaflet-printing" title="Flyer & Leaflet Printing">Flyer & Leaflet Printing</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/poster-printing" title="Poster Printing">Poster Printing</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/banner-printing" title="Banner Printing">Banner Printing</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/flags" title="Flag Printing">Flag Printing</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/event-gazebos-tents" title="Gazebos Printing">Gazebos Printing</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/on-sale" title="Sale & Special Offers">Sale & Special Offers</a></li>
              
              <li><a class="cc-text-[12px] cc-font-medium cc-transition-all cc-duration-300 cc-ease-in-out hover:text-primary-hover" href="/collections/best-sellers" title="Best Sellers">Best Sellers</a></li>
              
            </ul>
          </div>
        </div>
        
        <button type="submit" class="relative cc-p-4 cc-bg-ccbgthemea cc-border-l cc-border-solid cc-border-black"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.3646 17.7892L12.2128 12.8217C13.6287 11.6711 14.5287 10.0326 14.7232 8.25137C14.9177 6.47017 14.3916 4.68531 13.2555 3.27275C12.1195 1.86018 10.4623 0.930183 8.63298 0.678635C6.80367 0.427086 4.94505 0.873627 3.44862 1.9242C1.95219 2.97477 0.934753 4.54737 0.610622 6.31074C0.286492 8.07411 0.680969 9.89062 1.71096 11.3776C2.74096 12.8646 4.32606 13.9061 6.13241 14.2826C7.93875 14.6591 9.82532 14.3413 11.3947 13.3961C11.3947 13.4025 11.4059 13.4101 11.4125 13.4165L16.6599 18.4809C16.755 18.5663 16.8806 18.6126 17.0102 18.61C17.1398 18.6074 17.2633 18.5561 17.3546 18.467C17.446 18.3779 17.4981 18.2578 17.4999 18.1322C17.5018 18.0066 17.4533 17.8851 17.3646 17.7935V17.7892ZM1.50789 7.52458C1.50789 6.34924 1.86741 5.2003 2.54098 4.22304C3.21455 3.24579 4.17191 2.48411 5.29202 2.03433C6.41212 1.58455 7.64465 1.46686 8.83374 1.69616C10.0228 1.92546 11.1151 2.49143 11.9724 3.32252C12.8297 4.15361 13.4135 5.21248 13.65 6.36523C13.8865 7.51798 13.7651 8.71284 13.3012 9.79871C12.8372 10.8846 12.0515 11.8127 11.0435 12.4657C10.0354 13.1186 8.85024 13.4672 7.63785 13.4672C6.01262 13.4655 4.45447 12.8388 3.30527 11.7247C2.15606 10.6107 1.50966 9.10013 1.50789 7.52458Z" fill="currentColor"/>
</svg>
</button>
      </form>
    </div>
  </div>
</div></div>
  
</div><style>
  ul.list-none.relative.break-inside-avoid.gap-y-2 { display: block; }
  .cc-header-iconstext.cc-flex.cc-items-center.cc-gap-4.md\:cc-gap-5.lg\:cc-gap-\[50px\] { display: none; }
  ul.list-none.cc-flex.cc-gap-4.md\:cc-gap-5.lg\:cc-gap-\[30px\].cc-h-full span.relative.w-4.h-4.flex.items-center.ml-2 { margin-left: 5px; }
  ul.list-none.cc-flex.cc-gap-4.md\:cc-gap-5.lg\:cc-gap-\[30px\].cc-h-full { align-items: center; }
  span.vertical_line_header { font-size: 0px; line-height: 0; width: 0px; height: 13px; border: 1px solid #ffffff; align-items: center; margin-right: 5px; }
  span.vertical_line_header2 { font-size: 0px; line-height: 0; width: 0px; height: 13px; border: 1px solid #ffffff; align-items: center; margin-right: 7px; margin-left: 7px; }
  li.nav-first-level.group.py-\[5px\] span.vertical_line_header { display: none; }
  ul.list-none.cc-flex.cc-items-center.cc-gap-4.md\:cc-gap-5.lg\:cc-gap-\[31px\] { gap: 0px !important; }
  button.switcher-link2.inspireLink.uppercase.min-w-max.cursor-pointer.text-base.font-semibold.text-primary.tracking-\[0\.02em\].border-b-0.lg\:border-b.cc-py-0.border-transparent.transition.ease-in-out.duration-300.hover\:text-primary-hover.hover\:border-primary-hover:hover { color: #f56319 !important; }
  li.nav-first-level.group.py-\[5px\] { padding-bottom: 0 !important; padding-top: 0 !important; }
  li.nav-first-level.group.py-\[5px\] a.cc__mainlinkfirstlevel.cc-leading-\[1\.3\].flex.relative.w-full.cc-text-\[12px\].font-semibold.text-primary.transition.ease-in-out.duration-300.lg\:py-3.items-center.lg\:border-b.lg\:border-transparent.group-hover\:lg\:border-primary-hover.lg\:w-auto.group-hover\:text-primary-hover { text-transform: uppercase; }
  li.nav-first-level.group.py-\[5px\] a.cc__mainlinkfirstlevel.cc-leading-\[1\.3\].flex.relative.w-full.cc-text-\[12px\].font-semibold.text-secondary.transition.ease-in-out.duration-300.lg\:py-3.items-center.lg\:border-b.lg\:border-transparent.group-hover\:lg\:border-primary-hover.lg\:w-auto.group-hover\:text-primary-hover { text-transform: uppercase; }
  #site-desktop-navigation .container-fluid ul[role=menubar] { gap: 25px !important; padding-left: 30px; }
  @media (max-width: 1024px) { a.flex.items-center.gap-2.group.hidden.lg\:flex.text-primary { display: none; } }
  @media (min-width: 1024px) { .lg\:cc-gap-\[30px\] { gap: 1px; } }
  @media (min-width: 1024px) { .lg\:px-10, .lg\:px-\[2\.5rem\] { padding-left: 1rem; padding-right: 1rem; } }
  @media (max-width: 767px) { a.flex.items-center.gap-2.group.hidden.lg\:flex.text-primary { display: none; } }

  /* ─────────────────────────────────────────
     DS STYLED MEGA-NAV — Option C
     Dark sidebar + links centre + CTA panels right
  ───────────────────────────────────────── */

  .ds-mnav {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    z-index: 20;
    border-top: 3px solid #F26522;
    box-shadow: 0 8px 32px rgba(37,50,56,0.13);
    overflow: hidden;
    background: white;
  }
  .nav-first-level.group:hover .ds-mnav,
  .nav-first-level.group:focus-within .ds-mnav {
    display: flex;
    justify-content: center;
  }
  .ds-mnav__inner {
    display: grid;
    grid-template-columns: 216px 672px 264px;
    align-items: stretch;
    grid-auto-rows: 1fr;
    width: 1152px;
    flex-shrink: 0;
  }
  .ds-mnav--knowledge .ds-mnav__inner {
    grid-template-columns: 200px 1fr 240px;
    width: 1500px;
  }

  /* COL 1 — dark left panel */
  .ds-mnav__left {
    background: #253238;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 100%;
  }
  .ds-mnav__left-head {
    padding: 14px 22px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-family: 'Rubik', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .ds-mnav__left-head::before {
    content: '';
    width: 14px;
    height: 2px;
    background: #F26522;
    flex-shrink: 0;
  }
  .ds-mnav__left ul { list-style: none; padding: 0; margin: 0; }
  .ds-mnav__left-link {
    display: flex !important;
    align-items: center !important;
    padding: 9px 22px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    transition: background 0.12s, color 0.12s !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.4 !important;
  }
  .ds-mnav__left-link:hover {
    background: rgba(255,255,255,0.06) !important;
    color: white !important;
  }
  .ds-mnav__left-link-arrow {
    margin-left: auto;
    color: #F26522;
    opacity: 0;
    transform: translateX(-3px);
    transition: all 0.12s;
    flex-shrink: 0;
    font-size: 12px;
  }
  .ds-mnav__left-link:hover .ds-mnav__left-link-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  /* COL 2 — centre links */
  .ds-mnav__mid {
    background: white;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    align-content: start;
    border-right: 1px solid #eef0f1;
  }
  .ds-mnav__mid--three {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 20px;
  }
  .ds-mnav__mid--four {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0 18px;
  }
  .ds-mnav__mid-group { margin-bottom: 16px; display: block; }
  .ds-mnav__mid-group-head {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #253238;
    margin-bottom: 7px;
    padding-bottom: 6px;
    font-family: 'Rubik', sans-serif;
    display: inline-block;
    position: relative;
  }
  .ds-mnav__mid-group-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F26522;
  }
  .ds-mnav__mid ul { list-style: none; padding: 0; margin: 0; }
  .ds-mnav__mid-link {
    display: block !important;
    padding: 4px 0 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #677178 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: color 0.12s, padding-left 0.12s !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.35 !important;
    white-space: nowrap !important;
    font-family: 'Poppins', sans-serif !important;
  }
  .ds-mnav__mid-link:hover { color: #253238 !important; padding-left: 4px !important; }
  .ds-mnav__mid-link--all {
    color: #F26522 !important;
    font-weight: 600 !important;
    border-bottom: none !important;
    margin-top: 4px !important;
    font-size: 12px !important;
  }
  .ds-mnav__mid-link--all:hover { color: #d4561a !important; padding-left: 4px !important; }

  /* Thumbnail variant — used in Case Studies column */
  .ds-mnav__mid-link--thumb {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 6px 0 !important;
    white-space: normal !important;
    line-height: 1.25 !important;
    font-size: 12px !important;
  }
  .ds-mnav__mid-link--thumb:hover { padding-left: 0 !important; }
  .ds-mnav__thumb {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: cover;
    background: #f0f0f0;
    display: block;
    transition: transform 0.2s;
  }
  .ds-mnav__mid-link--thumb:hover .ds-mnav__thumb { transform: scale(1.06); }
  .ds-mnav__thumb-text { flex: 1; min-width: 0; }

  /* COL 3 — CTA panels (updated: bigger, outlined button, more padding) */
  .ds-mnav__ctas {
    display: grid;
    grid-template-rows: 1fr 1fr;
  }
  .ds-mnav__cta {
    position: relative;
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px;
    text-decoration: none !important;
    cursor: pointer;
    transition: filter 0.15s;
  }
  .ds-mnav__cta:hover { filter: brightness(1.08); }
  .ds-mnav__cta + .ds-mnav__cta { border-top: 2px solid white; }
  .ds-mnav__cta--dark { background: #1a2529; }
  .ds-mnav__cta--dark .ds-mnav__cta-btn { background: #739C98; border-color: #739C98; }
  .ds-mnav__cta--dark:hover .ds-mnav__cta-btn { background: #5a8480; border-color: #5a8480; }

  .ds-mnav__cta--orange { background: #F26522; }
  .ds-mnav__cta--orange .ds-mnav__cta-btn { background: white; border-color: white; color: #F26522 !important; }
  .ds-mnav__cta--orange:hover .ds-mnav__cta-btn { background: #1a2529; border-color: #1a2529; color: white !important; }

  .ds-mnav__cta--teal { background: #739C98; }
  .ds-mnav__cta--teal .ds-mnav__cta-btn { background: #1a2529; border-color: #1a2529; }
  .ds-mnav__cta--teal:hover .ds-mnav__cta-btn { background: #253238; border-color: #253238; }

  .ds-mnav__cta--slate { background: #253238; }
  .ds-mnav__cta--slate .ds-mnav__cta-btn { background: #F26522; border-color: #F26522; }
  .ds-mnav__cta--slate:hover .ds-mnav__cta-btn { background: #d4561a; border-color: #d4561a; }

  /* Photo hero CTA variant — image background with gradient overlay */
  .ds-mnav__cta--photo { background: #1a2529; position: relative; overflow: hidden; }
  .ds-mnav__cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transition: transform 0.4s;
  }
  .ds-mnav__cta--photo:hover .ds-mnav__cta-bg { transform: scale(1.06); }
  .ds-mnav__cta--photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,37,41,0.82) 0%, rgba(26,37,41,0.4) 32%, rgba(26,37,41,0.08) 65%, transparent 100%);
    z-index: 1;
    pointer-events: none;
  }
  .ds-mnav__cta--photo > *:not(.ds-mnav__cta-bg) { position: relative; z-index: 2; }
  .ds-mnav__cta--photo .ds-mnav__cta-eyebrow { color: rgba(255,255,255,0.95); text-shadow: 0 1px 4px rgba(0,0,0,0.65), 0 0 12px rgba(0,0,0,0.4); }
  .ds-mnav__cta--photo .ds-mnav__cta-title { text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 16px rgba(0,0,0,0.4); }
  .ds-mnav__cta--photo .ds-mnav__cta-btn {
    background: #F26522;
    border-color: #F26522;
    color: white !important;
    font-size: 10px;
    padding: 8px 18px;
    letter-spacing: 0.12em;
  }
  .ds-mnav__cta--photo:hover .ds-mnav__cta-btn { background: white; border-color: white; color: #F26522 !important; }
  .ds-mnav__cta--photo:hover { filter: none; }

  .ds-mnav__cta-eyebrow {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-family: 'Rubik', sans-serif;
    margin-bottom: 7px;
  }
  .ds-mnav__cta-title {
    font-size: 20px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-family: 'Rubik', sans-serif;
    margin-bottom: 12px;
  }
  .ds-mnav__cta-btn {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white !important;
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 6px 14px;
    font-family: 'Rubik', sans-serif;
    width: fit-content;
    transition: border-color 0.12s, background 0.12s;
  }
  .ds-mnav__cta:hover .ds-mnav__cta-btn {
    border-color: white;
    background: rgba(255,255,255,0.1);
  }

  /* ── SALE — Option B editorial layout ── */
  .ds-mnav--sale .ds-mnav__inner {
    grid-template-columns: 300px 1fr 260px;
    width: 980px;
  }
  .ds-mnav__sale-hero {
    background: #253238;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 32px 36px;
  }
  .ds-mnav__sale-hero-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #F26522;
    font-family: 'Rubik', sans-serif;
    margin-bottom: 12px;
  }
  .ds-mnav__sale-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.9;
    font-family: 'Rubik', sans-serif;
    margin-bottom: 20px;
  }
  .ds-mnav__sale-hero-title span { color: #F26522; }
  .ds-mnav__sale-hero-btn {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white !important;
    background: #F26522;
    padding: 9px 20px;
    font-family: 'Rubik', sans-serif;
    text-decoration: none !important;
    transition: background 0.12s;
  }
  .ds-mnav__sale-hero-btn:hover { background: #d4561a; }
  .ds-mnav__sale-hero { transition: filter 0.15s; text-decoration: none !important; }
  .ds-mnav__sale-hero:hover { filter: brightness(1.08); }
  .ds-mnav__sale-links {
    background: white;
    padding: 28px 32px;
    border-right: 1px solid #eef0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .ds-mnav__sale-links-head {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #253238;
    margin-bottom: 10px;
    font-family: 'Rubik', sans-serif;
    padding-bottom: 6px;
    display: inline-block;
    position: relative;
  }
  .ds-mnav__sale-links-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F26522;
  }
  .ds-mnav__sale-links ul { list-style: none; padding: 0; margin: 0; }
  .ds-mnav__sale-link {
    display: block !important;
    padding: 4px 0 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #677178 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: color 0.12s, padding-left 0.12s !important;
    font-family: 'Poppins', sans-serif !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }
  .ds-mnav__sale-link:hover { color: #253238 !important; padding-left: 4px !important; }
  .ds-mnav__sale-link--all {
    color: #F26522 !important;
    font-weight: 600 !important;
    border-bottom: none !important;
    margin-top: 6px !important;
    font-size: 12px !important;
  }
  .ds-mnav__sale-cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 28px;
    background: #F26522;
    text-decoration: none !important;
    transition: filter 0.15s;
  }
  .ds-mnav__sale-cta:hover { filter: brightness(1.08); }
  .ds-mnav__sale-cta-eyebrow {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-family: 'Rubik', sans-serif;
    margin-bottom: 6px;
  }
  .ds-mnav__sale-cta-title {
    font-size: 28px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    font-family: 'Rubik', sans-serif;
    margin-bottom: 14px;
  }
  .ds-mnav__sale-cta-btn {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F26522 !important;
    background: white;
    border: 1.5px solid white;
    padding: 6px 14px;
    font-family: 'Rubik', sans-serif;
    width: fit-content;
    transition: border-color 0.12s, background 0.12s, color 0.12s;
  }
  .ds-mnav__sale-cta:hover .ds-mnav__sale-cta-btn {
    background: #1a2529;
    border-color: #1a2529;
    color: white !important;
  }

  /* Sale CTA photo variant — image background with strong overlay */
  .ds-mnav__sale-cta--photo {
    background: #1a2529;
    position: relative;
    overflow: hidden;
  }
  .ds-mnav__sale-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transition: transform 0.4s;
  }
  .ds-mnav__sale-cta--photo:hover .ds-mnav__sale-cta-bg { transform: scale(1.06); }
  .ds-mnav__sale-cta--photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,37,41,0.82) 0%, rgba(26,37,41,0.4) 32%, rgba(26,37,41,0.08) 65%, transparent 100%);
    z-index: 1;
    pointer-events: none;
  }
  .ds-mnav__sale-cta--photo > *:not(.ds-mnav__sale-cta-bg) { position: relative; z-index: 2; }
  .ds-mnav__sale-cta--photo .ds-mnav__sale-cta-eyebrow {
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 4px rgba(0,0,0,0.65), 0 0 12px rgba(0,0,0,0.4);
  }
  .ds-mnav__sale-cta--photo .ds-mnav__sale-cta-title {
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 16px rgba(0,0,0,0.4);
  }
  .ds-mnav__sale-cta--photo .ds-mnav__sale-cta-btn {
    background: #F26522;
    border-color: #F26522;
    color: white !important;
    font-size: 10px;
    padding: 8px 18px;
    letter-spacing: 0.12em;
  }
  .ds-mnav__sale-cta--photo:hover .ds-mnav__sale-cta-btn {
    background: white;
    border-color: white;
    color: #F26522 !important;
  }
  .ds-mnav__sale-cta--photo:hover { filter: none; }

  /* ── SHOP BY INDUSTRY ── */
  .ds-mnav--industry .ds-mnav__inner {
    grid-template-columns: 200px 1fr 240px;
    width: 1180px;
  }
  .ds-mnav__industry-mid {
    background: white;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px 24px;
    align-content: start;
    border-right: 1px solid #eef0f1;
  }
  .ds-mnav__industry-col-head {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #253238;
    margin-bottom: 7px;
    padding-bottom: 6px;
    font-family: 'Rubik', sans-serif;
    display: inline-block;
    position: relative;
  }
  .ds-mnav__industry-col-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F26522;
  }
  .ds-mnav__industry-mid ul { list-style: none; padding: 0; margin: 0; }
  .ds-mnav__industry-link {
    display: block !important;
    padding: 4px 0 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #677178 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: color 0.12s, padding-left 0.12s !important;
    font-family: 'Poppins', sans-serif !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.35 !important;
    white-space: nowrap !important;
  }
  .ds-mnav__industry-link:hover { color: #253238 !important; padding-left: 4px !important; }
  .ds-mnav__industry-link--all {
    color: #F26522 !important;
    font-weight: 600 !important;
    border-bottom: none !important;
    margin-top: 6px !important;
    font-size: 11px !important;
  }
  .ds-mnav__industry-link--all:hover { color: #d4561a !important; }

  /* ─────────────────────────────────────────
     STANDARD VOLT DROPDOWN — DS DESIGN SYSTEM
  ───────────────────────────────────────── */
  ul.megamenu.container-fluid {
    border-top: 3px solid #F26522 !important;
    box-shadow: 0 8px 32px rgba(37,50,56,0.13) !important;
    align-items: flex-start !important;
    padding-left: calc((100% - 1260px) / 2) !important;
    padding-right: calc((100% - 1260px) / 2) !important;
  }
  ul.megamenu.container-fluid > ul {
    width: auto !important;
    flex: 0 1 auto !important;
  }
  ul.megamenu a.mb-4 {
    font-family: 'Rubik', sans-serif !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: #253238 !important;
    padding-bottom: 6px !important;
    border-bottom: none !important;
    margin-bottom: 8px !important;
    display: inline-block !important;
    line-height: 1.3 !important;
    position: relative !important;
  }
  ul.megamenu a.mb-4::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: #F26522 !important;
  }
  ul.megamenu li.menu-item { display: block !important; }
  ul.megamenu a.mb-2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #677178 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    padding: 4px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    display: block !important;
    line-height: 1.35 !important;
    margin-bottom: 0 !important;
    white-space: nowrap !important;
    transition: color 0.12s, padding-left 0.12s !important;
  }
  ul.megamenu a.mb-2:hover { color: #253238 !important; padding-left: 4px !important; }
  .nav-first-level.group svg path {
    stroke: rgba(255,255,255,0.35) !important;
    transition: stroke 0.15s !important;
  }
  .nav-first-level.group:hover svg path,
  .nav-first-level.group:focus-within svg path { stroke: #F26522 !important; }
  li.nav-first-level.group a.cc__mainlinkfirstlevel {
    border-bottom: 2px solid transparent !important;
    transition: color 0.15s, border-color 0.15s !important;
  }
  li.nav-first-level.group:hover a.cc__mainlinkfirstlevel,
  li.nav-first-level.group:focus-within a.cc__mainlinkfirstlevel {
    color: white !important;
    border-bottom-color: #F26522 !important;
  }

  /* ── OPTION C: Wide editorial photo + stacked CTAs ── */
  li.ds-mnav-optc {
    list-style: none;
    margin-left: auto;
    padding-left: 0;
    flex-shrink: 0;
    align-self: flex-start !important;
  }
  .ds-mnav-optc__inner {
    display: flex;
    gap: 8px;
    height: 300px;
    align-items: stretch;
  }
  .ds-mnav-optc__photo {
    position: relative;
    width: 320px;
    height: 300px;
    max-height: 300px;
    min-height: 300px;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
    text-decoration: none;
  }
  .ds-mnav-optc__img {
    width: 320px;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.3s;
  }
  .ds-mnav-optc__photo:hover .ds-mnav-optc__img { transform: scale(1.04); }
  .ds-mnav-optc__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(37,50,56,0.32) 0%, rgba(37,50,56,0.04) 35%, transparent 100%);
    pointer-events: none;
  }
  .ds-mnav-optc__photo-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .ds-mnav-optc__photo-eyebrow {
    font-family: 'Rubik', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F26522;
    margin-bottom: 4px;
  }
  .ds-mnav-optc__photo-title {
    font-family: 'Rubik', sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: white;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .ds-mnav-optc__photo-btn {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 9.6px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    background: #F26522;
    padding: 4px 12px;
    border-radius: 20px;
    width: auto;
    align-self: flex-start;
    transition: background 0.15s, color 0.15s;
  }
  .ds-mnav-optc__photo:hover .ds-mnav-optc__photo-btn { background: white; color: #F26522; }
  .ds-mnav-optc__ctas {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 230px;
    flex-shrink: 0;
    height: 300px;
  }
  .ds-mnav-optc__cta {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 20px;
    text-decoration: none;
    transition: filter 0.15s;
    position: relative;
  }
  .ds-mnav-optc__cta:hover { filter: brightness(1.08); }
  .ds-mnav-optc__cta--dark { background: #1e2b30; }
  .ds-mnav-optc__cta--dark .ds-mnav-optc__cta-btn { background: #739C98; border-color: #739C98; color: white !important; }
  .ds-mnav-optc__cta--dark:hover .ds-mnav-optc__cta-btn { background: #5a8480; border-color: #5a8480; }
  .ds-mnav-optc__cta--orange { background: #F26522; }
  .ds-mnav-optc__cta--orange .ds-mnav-optc__cta-btn { background: white; border-color: white; color: #F26522 !important; }
  .ds-mnav-optc__cta--orange:hover .ds-mnav-optc__cta-btn { background: #1e2b30; border-color: #1e2b30; color: white !important; }
  .ds-mnav-optc__cta-eyebrow {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
  }
  .ds-mnav-optc__cta-title {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: white;
    line-height: 0.95;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
  }
  .ds-mnav-optc__cta-sub {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.78);
    line-height: 1.45;
    margin-bottom: 16px;
  }
  .ds-mnav-optc__cta-btn {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.45);
    color: white !important;
    padding: 8px 16px;
    background: transparent;
    transition: border-color 0.15s, background 0.15s;
    width: fit-content;
    white-space: nowrap;
  }
  .ds-mnav-optc__cta:hover .ds-mnav-optc__cta-btn {
    border-color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.1);
  }
  .ds-mnav-optc__cta--trust {
    background: #1a2529;
    justify-content: center;
    gap: 0;
  }
  .ds-mnav-optc__trust-stars {
    display: block;
    font-size: 15px;
    color: #F26522;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 8px;
  }
  .ds-mnav-optc__trust-count {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: white;
    line-height: 1.05;
    margin-bottom: 8px;
  }
  .ds-mnav-optc__trust-sub {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    line-height: 1.45;
  }
  .ds-mnav-optc__cta--trust .ds-mnav-optc__cta-btn { background: #F26522; border-color: #F26522; color: white !important; }
  .ds-mnav-optc__cta--trust:hover .ds-mnav-optc__cta-btn { background: #d4561a; border-color: #d4561a; }
  .ds-mnav-optc__cta--trust:hover { opacity: 1; background: #253238; }
</style>


<nav id="site-desktop-navigation" class="hidden relative lg:block" aria-label="Displaysense">
  <div class="container-fluid px-5 lg:px-10">
    <div class="cc-flex cc-items-center cc-gap-4 cc-justify-between">

      <div id="shopNav" class="cc-max-w-[1024px]">
        <ul class="list-none cc-flex cc-gap-4 md:cc-gap-5 lg:cc-gap-[30px] cc-h-full" role="menubar"><li class="nav-first-level group py-[5px]" role="none">

              <a href="/collections/display-cabinets"
                class="cc__mainlinkfirstlevel cc-leading-[1.3] flex relative w-full cc-text-[12px] font-semibold text-primary transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover"
                role="menuitem"
                aria-haspopup="true">
                Display Cabinets
                
                  <span class="relative w-4 h-4 flex items-center ml-2"><svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 0.720184L5 4.72018L9 0.720184" stroke="currentColor"/>
</svg>
</span>
                
              </a><ul class="megamenu container-fluid px-5 lg:px-10 w-full z-20 hidden gap-3 bg-white border-b-[1px] border-grey-100 top-[100%] lg:absolute lg:left-0 lg:py-8 lg:w-full list-none lg:group-hover:flex lg:group-hover:flex-row lg:gap-8" role="menu" aria-label="Display Cabinets">
                    <ul class="list-none relative block min-h-max lg:gap-8  w-1/5 columns-1 "><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="DISPLAY CABINETS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/display-cabinets" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">DISPLAY CABINETS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/counter-top-display-cases" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Counter Top Display Cases</a></li><li role="none"><a href="/collections/display-counters" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Display Counters</a></li><li role="none"><a href="/collections/free-standing-display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Free Standing Display Cabinets</a></li><li role="none"><a href="/collections/locking-display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Locking Display Cabinets</a></li><li role="none"><a href="/collections/trophy-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Trophy Cabinets</a></li><li role="none"><a href="/collections/wall-display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Wall Display Cabinets</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="COLOUR/FINISH">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/display-cabinets" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">COLOUR/FINISH</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/aluminium-display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Aluminium Display Cabinets</a></li><li role="none"><a href="/collections/black-display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Black Display Cabinets</a></li><li role="none"><a href="/collections/silver-display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Silver Display Cabinets</a></li><li role="none"><a href="/collections/white-display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">White Display Cabinets</a></li><li role="none"><a href="/collections/wooden-display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Wooden Display Cabinets</a></li></ul></li>
                        </ul></ul><li class="ds-mnav-optc" role="none">
                          <div class="ds-mnav-optc__inner">
                            <a href="/collections/free-standing-display-cabinets" class="ds-mnav-optc__photo">
                              <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" loading="lazy"
                                data-srcset="//www.displaysense.co.uk/cdn/shop/files/Dark_Overlay_on_Text_ONLY_4_300x.jpg?v=1773151910 300w, //www.displaysense.co.uk/cdn/shop/files/Dark_Overlay_on_Text_ONLY_4_600x.jpg?v=1773151910 600w"
                                data-src="//www.displaysense.co.uk/cdn/shop/files/Dark_Overlay_on_Text_ONLY_4.jpg?v=1773151910&width=300"
                                class="lazyload ds-mnav-optc__img"
                                alt=""
                                width="1000" height="1000"/>
                              <div class="ds-mnav-optc__overlay"></div>
                              <div class="ds-mnav-optc__photo-content"><span class="ds-mnav-optc__photo-btn">Shop Now →</span>
                              </div>
                            </a>
                            <div class="ds-mnav-optc__ctas">
                              <a href="/pages/planning-a-project" class="ds-mnav-optc__cta ds-mnav-optc__cta--dark">
                                <span class="ds-mnav-optc__cta-eyebrow">Free Service</span>
                                <span class="ds-mnav-optc__cta-title">Planning a Project?</span>
                                <span class="ds-mnav-optc__cta-sub">Sourcing, quotes &amp; bespoke orders — we handle it all.</span>
                                <span class="ds-mnav-optc__cta-btn">Talk to Us →</span>
                              </a>
                              <a href="/pages/reviews" class="ds-mnav-optc__cta ds-mnav-optc__cta--trust">
                                <div class="ds-mnav-optc__trust-stars">★★★★★</div>
                                <span class="ds-mnav-optc__trust-count">8,000+ Verified Reviews</span>
                                <span class="ds-mnav-optc__trust-sub">Read what UK buyers say about Displaysense</span>
                              </a>
                            </div>
                          </div>
                        </li></ul></li><li class="nav-first-level group py-[5px]" role="none">

              <a href="/collections/signs-and-displays"
                class="cc__mainlinkfirstlevel cc-leading-[1.3] flex relative w-full cc-text-[12px] font-semibold text-primary transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover"
                role="menuitem"
                aria-haspopup="true">
                Signs & Displays
                
                  <span class="relative w-4 h-4 flex items-center ml-2"><svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 0.720184L5 4.72018L9 0.720184" stroke="currentColor"/>
</svg>
</span>
                
              </a><ul class="megamenu container-fluid px-5 lg:px-10 w-full z-20 hidden gap-3 bg-white border-b-[1px] border-grey-100 top-[100%] lg:absolute lg:left-0 lg:py-8 lg:w-full list-none lg:group-hover:flex lg:group-hover:flex-row lg:gap-8" role="menu" aria-label="Signs & Displays">
                    <ul class="list-none relative block min-h-max lg:gap-8  w-3/5 columns-3 "><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="SNAP FRAMES">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/snap-frames" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">SNAP FRAMES</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/a4-snap-frames" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">A4 Snap Frames</a></li><li role="none"><a href="/collections/a3-snap-frames" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">A3 Snap Frames</a></li><li role="none"><a href="/collections/a2-snap-frames" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">A2 Snap Frames</a></li><li role="none"><a href="/collections/a1-snap-frames" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">A1 Snap Frames</a></li><li role="none"><a href="/collections/a0-snap-frames" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">A0 Snap Frames</a></li><li role="none"><a href="/collections/black-snap-frames" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Black Snap Frames</a></li><li role="none"><a href="/collections/silver-snap-frames" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Silver Snap Frames</a></li><li role="none"><a href="/collections/lockable-snap-frames-poster-cases" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Lockable Snap Frames & Poster Cases</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="SIGN & MENU HOLDERS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/sign-menu-holders" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">SIGN & MENU HOLDERS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/a5-sign-menu-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">A5 Sign & Menu Holders</a></li><li role="none"><a href="/collections/a4-sign-menu-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">A4 Sign & Menu Holders</a></li><li role="none"><a href="/collections/a3-sign-menu-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">A3 Sign & Menu Holders</a></li><li role="none"><a href="/collections/display-risers-block-sign-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Block Sign Holders</a></li><li role="none"><a href="/collections/free-standing-sign-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Free Standing Sign Holders</a></li><li role="none"><a href="/collections/outdoor-sign-menu-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Outdoor Sign & Menu Holders</a></li><li role="none"><a href="/collections/table-sign-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Table Sign Holders</a></li><li role="none"><a href="/collections/wall-sign-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Wall Sign Holders</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="PAVEMENT SIGNS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/pavement-signs" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">PAVEMENT SIGNS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/a-board-pavement-signs" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">A Board Pavement Signs</a></li><li role="none"><a href="/collections/swinging-pavement-signs" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Swinging Pavement Signs</a></li><li role="none"><a href="/collections/waterbase-pavement-signs" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Waterbase Pavement Signs</a></li><li role="none"><a href="/collections/wind-resistant-pavement-signs" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Wind Resistant Pavement Signs</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="CHALKBOARDS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/chalkboards" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">CHALKBOARDS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/a-frame-chalkboards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">A Frame Chalkboards</a></li><li role="none"><a href="/collections/chalkboard-easels" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Chalkboard Easels</a></li><li role="none"><a href="/collections/outdoor-chalkboards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Outdoor Chalkboards</a></li><li role="none"><a href="/collections/table-top-chalkboards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Table Top Chalkboards</a></li><li role="none"><a href="/collections/wall-mounted-chalkboards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Wall Mounted Chalkboards</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="LEAFLET & BROCHURE HOLDERS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/leaflet-brochure-holders" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">LEAFLET & BROCHURE HOLDERS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/a4-leaflet-brochure-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">A4 Leaflet & Brochure Holders</a></li><li role="none"><a href="/collections/a5-leaflet-brochure-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">A5 Leaflet & Brochure Holders</a></li><li role="none"><a href="/collections/dl-leaflet-brochure-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">DL Leaflet & Brochure Holders</a></li><li role="none"><a href="/collections/free-standing-leaflet-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Free Standing Leaflet Holders</a></li><li role="none"><a href="/collections/table-leaflet-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Table Leaflet Holders</a></li><li role="none"><a href="/collections/wall-mounted-leaflet-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Wall Mounted Leaflet Holders</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="NOTICEBOARDS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/noticeboards" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">NOTICEBOARDS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/acoustic-room-dividers" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Acoustic Room Dividers</a></li><li role="none"><a href="/collections/combi-boards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Combi Boards</a></li><li role="none"><a href="/collections/cork-noticeboards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Cork Noticeboards</a></li><li role="none"><a href="/collections/display-boards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Display Boards</a></li><li role="none"><a href="/collections/felt-noticeboards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Felt Noticeboards</a></li><li role="none"><a href="/collections/fire-resistant-boards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Fire Resistant Boards</a></li><li role="none"><a href="/collections/free-standing-noticeboards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Freestanding Noticeboards</a></li><li role="none"><a href="/collections/lockable-noticeboards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Lockable Noticeboards</a></li><li role="none"><a href="/collections/portable-room-dividers" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Portable Room Dividers</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="WHITEBOARDS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/whiteboards" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">WHITEBOARDS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/flipcharts-pads" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Flipcharts & Pads</a></li><li role="none"><a href="/collections/freestanding-whiteboards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Freestanding Whiteboards</a></li><li role="none"><a href="/collections/magnetic-whiteboards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Magnetic Whiteboards</a></li><li role="none"><a href="/collections/non-magnetic-whiteboards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Non-Magnetic Whiteboards</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="LED & ILLUMINATED SIGNS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/led-illuminated-signs" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" >LED & ILLUMINATED SIGNS</a></li>
                        </ul></ul><li class="ds-mnav-optc" role="none">
                          <div class="ds-mnav-optc__inner">
                            <a href="/collections/pavement-signs" class="ds-mnav-optc__photo">
                              <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" loading="lazy"
                                data-srcset="//www.displaysense.co.uk/cdn/shop/files/Displaysense_Lifestyle_Images_2026_4_300x.jpg?v=1773152459 300w, //www.displaysense.co.uk/cdn/shop/files/Displaysense_Lifestyle_Images_2026_4_600x.jpg?v=1773152459 600w"
                                data-src="//www.displaysense.co.uk/cdn/shop/files/Displaysense_Lifestyle_Images_2026_4.jpg?v=1773152459&width=300"
                                class="lazyload ds-mnav-optc__img"
                                alt=""
                                width="1000" height="1000"/>
                              <div class="ds-mnav-optc__overlay"></div>
                              <div class="ds-mnav-optc__photo-content"><span class="ds-mnav-optc__photo-btn">Shop Now →</span>
                              </div>
                            </a>
                            <div class="ds-mnav-optc__ctas">
                              <a href="/pages/planning-a-project" class="ds-mnav-optc__cta ds-mnav-optc__cta--dark">
                                <span class="ds-mnav-optc__cta-eyebrow">Free Service</span>
                                <span class="ds-mnav-optc__cta-title">Planning a Project?</span>
                                <span class="ds-mnav-optc__cta-sub">Sourcing, quotes &amp; bespoke orders — we handle it all.</span>
                                <span class="ds-mnav-optc__cta-btn">Talk to Us →</span>
                              </a>
                              <a href="/pages/reviews" class="ds-mnav-optc__cta ds-mnav-optc__cta--trust">
                                <div class="ds-mnav-optc__trust-stars">★★★★★</div>
                                <span class="ds-mnav-optc__trust-count">8,000+ Verified Reviews</span>
                                <span class="ds-mnav-optc__trust-sub">Read what UK buyers say about Displaysense</span>
                              </a>
                            </div>
                          </div>
                        </li></ul></li><li class="nav-first-level group py-[5px]" role="none">

              <a href="/collections/retail-displays"
                class="cc__mainlinkfirstlevel cc-leading-[1.3] flex relative w-full cc-text-[12px] font-semibold text-primary transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover"
                role="menuitem"
                aria-haspopup="true">
                Retail Displays
                
                  <span class="relative w-4 h-4 flex items-center ml-2"><svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 0.720184L5 4.72018L9 0.720184" stroke="currentColor"/>
</svg>
</span>
                
              </a><ul class="megamenu container-fluid px-5 lg:px-10 w-full z-20 hidden gap-3 bg-white border-b-[1px] border-grey-100 top-[100%] lg:absolute lg:left-0 lg:py-8 lg:w-full list-none lg:group-hover:flex lg:group-hover:flex-row lg:gap-8" role="menu" aria-label="Retail Displays">
                    <ul class="list-none relative block min-h-max lg:gap-8  w-3/5 columns-3 "><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="DISPLAY CABINETS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/display-cabinets" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">DISPLAY CABINETS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/aluminium-display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Aluminium Display Cabinets</a></li><li role="none"><a href="/collections/counter-top-display-cases" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Counter Top Display Cases</a></li><li role="none"><a href="/collections/display-counters" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Display Counters</a></li><li role="none"><a href="/collections/free-standing-display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Free Standing Display Cabinets</a></li><li role="none"><a href="/collections/locking-display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Locking Display Cabinets</a></li><li role="none"><a href="/collections/trophy-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Trophy Cabinets</a></li><li role="none"><a href="/collections/wall-display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Wall Display Cabinets</a></li><li role="none"><a href="/collections/wooden-display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Wooden Display Cabinets</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="CLOTHES RAILS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/clothes-rails" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">CLOTHES RAILS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/adjustable-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Adjustable Clothes Rails</a></li><li role="none"><a href="/collections/clothes-racks" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Clothes Racks</a></li><li role="none"><a href="/collections/coat-racks-stands" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Coat Racks & Stands</a></li><li role="none"><a href="/collections/double-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Double Clothes Rails</a></li><li role="none"><a href="/collections/heavy-duty-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Heavy Duty Clothes Rails</a></li><li role="none"><a href="/collections/industrial-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Industrial Clothes Rails</a></li><li role="none"><a href="/collections/wall-mounted-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Wall Mounted Clothes Rails</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="MANNEQUINS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/mannequins" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">MANNEQUINS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/child-mannequins" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Child Mannequins</a></li><li role="none"><a href="/collections/female-mannequins" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Female Mannequins</a></li><li role="none"><a href="/collections/half-form-mannequin-torsos" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Half-Form Mannequins</a></li><li role="none"><a href="/collections/male-mannequins" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Male Mannequins</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="RETAIL DISPLAY STANDS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/retail-display-stands" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">RETAIL DISPLAY STANDS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/display-risers-block-sign-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Display Risers & Block Sign Holders</a></li><li role="none"><a href="/collections/dump-bins-stacking-baskets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Dump Bins & Stacking Baskets</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="QUEUE BARRIERS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/queue-barriers" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">QUEUE BARRIERS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/barrier-sign-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Barrier Sign Holders</a></li><li role="none"><a href="/collections/cafe-barriers" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Café Barriers</a></li><li role="none"><a href="/collections/outdoor-queuing-barriers" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Outdoor Queuing Barriers</a></li><li role="none"><a href="/collections/retractable-queue-barriers" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Retractable Queue Barriers</a></li><li role="none"><a href="/collections/rope-barriers" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Rope Barriers</a></li><li role="none"><a href="/collections/tensabarrier-queue-barriers" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Tensabarrier Queue Barriers</a></li><li role="none"><a href="/collections/twin-queuing-barriers" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Twin Queuing Barriers</a></li><li role="none"><a href="/collections/wall-mounted-barriers" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Wall Mounted Barriers</a></li></ul></li>
                        </ul></ul><li class="ds-mnav-optc" role="none">
                          <div class="ds-mnav-optc__inner">
                            <a href="/collections/display-cabinets" class="ds-mnav-optc__photo">
                              <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" loading="lazy"
                                data-srcset="//www.displaysense.co.uk/cdn/shop/files/Dark_Overlay_on_Text_ONLY_4_300x.jpg?v=1773151910 300w, //www.displaysense.co.uk/cdn/shop/files/Dark_Overlay_on_Text_ONLY_4_600x.jpg?v=1773151910 600w"
                                data-src="//www.displaysense.co.uk/cdn/shop/files/Dark_Overlay_on_Text_ONLY_4.jpg?v=1773151910&width=300"
                                class="lazyload ds-mnav-optc__img"
                                alt=""
                                width="1000" height="1000"/>
                              <div class="ds-mnav-optc__overlay"></div>
                              <div class="ds-mnav-optc__photo-content"><span class="ds-mnav-optc__photo-btn">Shop Now →</span>
                              </div>
                            </a>
                            <div class="ds-mnav-optc__ctas">
                              <a href="/pages/planning-a-project" class="ds-mnav-optc__cta ds-mnav-optc__cta--dark">
                                <span class="ds-mnav-optc__cta-eyebrow">Free Service</span>
                                <span class="ds-mnav-optc__cta-title">Planning a Project?</span>
                                <span class="ds-mnav-optc__cta-sub">Sourcing, quotes &amp; bespoke orders — we handle it all.</span>
                                <span class="ds-mnav-optc__cta-btn">Talk to Us →</span>
                              </a>
                              <a href="/pages/reviews" class="ds-mnav-optc__cta ds-mnav-optc__cta--trust">
                                <div class="ds-mnav-optc__trust-stars">★★★★★</div>
                                <span class="ds-mnav-optc__trust-count">8,000+ Verified Reviews</span>
                                <span class="ds-mnav-optc__trust-sub">Read what UK buyers say about Displaysense</span>
                              </a>
                            </div>
                          </div>
                        </li></ul></li><li class="nav-first-level group py-[5px]" role="none">

              <a href="/collections/exhibition-event-displays"
                class="cc__mainlinkfirstlevel cc-leading-[1.3] flex relative w-full cc-text-[12px] font-semibold text-primary transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover"
                role="menuitem"
                aria-haspopup="true">
                Exhibition & Event Displays
                
                  <span class="relative w-4 h-4 flex items-center ml-2"><svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 0.720184L5 4.72018L9 0.720184" stroke="currentColor"/>
</svg>
</span>
                
              </a><ul class="megamenu container-fluid px-5 lg:px-10 w-full z-20 hidden gap-3 bg-white border-b-[1px] border-grey-100 top-[100%] lg:absolute lg:left-0 lg:py-8 lg:w-full list-none lg:group-hover:flex lg:group-hover:flex-row lg:gap-8" role="menu" aria-label="Exhibition & Event Displays">
                    <ul class="list-none relative block min-h-max lg:gap-8  w-2/5 columns-2 "><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="EXHIBITION STANDS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/exhibition-stands" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">EXHIBITION STANDS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/banner-stands" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Banner Stands</a></li><li role="none"><a href="/collections/custom-backdrops" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Custom Backdrops</a></li><li role="none"><a href="/collections/display-boards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Display Boards</a></li><li role="none"><a href="/collections/exhibition-counters" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Exhibition Counters</a></li><li role="none"><a href="/collections/leaflet-brochure-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Leaflet & Brochure Holders</a></li><li role="none"><a href="/collections/lecterns-podiums" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Lecterns & Podiums</a></li><li role="none"><a href="/collections/printed-tablecloths" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Printed Tablecloths</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="OUTDOOR DISPLAYS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/outdoor-displays" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">OUTDOOR DISPLAYS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/cafe-barriers" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Café Barriers</a></li><li role="none"><a href="/collections/flags" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Custom Flags</a></li><li role="none"><a href="/collections/event-gazebos-tents" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Event Gazebos & Tents</a></li><li role="none"><a href="/collections/pavement-signs" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Pavement Signs</a></li><li role="none"><a href="/collections/outdoor-queuing-barriers" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Outdoor Queuing Barriers</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="EVENT SIGNAGE">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/event-signage" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">EVENT SIGNAGE</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/banner-stands" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Banners Stands</a></li><li role="none"><a href="/collections/chalkboards" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Chalkboards</a></li><li role="none"><a href="/collections/custom-backdrops" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Custom Backdrops</a></li><li role="none"><a href="/collections/pavement-signs" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Pavement Signs</a></li><li role="none"><a href="/collections/sign-menu-holders" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Sign & Menu Holders</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="EXHIBITION FURNITURE">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/exhibition-furniture" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">EXHIBITION FURNITURE</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Clothes Rails</a></li><li role="none"><a href="/collections/display-cabinets" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Display Cabinets</a></li><li role="none"><a href="/collections/exhibition-counters" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Exhibition Counters</a></li><li role="none"><a href="/collections/lecterns-podiums" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Lecterns & Podiums</a></li><li role="none"><a href="/collections/queue-barriers" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Queuing Barriers</a></li></ul></li>
                        </ul></ul><li class="ds-mnav-optc" role="none">
                          <div class="ds-mnav-optc__inner">
                            <a href="/collections/lecterns-podiums" class="ds-mnav-optc__photo">
                              <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" loading="lazy"
                                data-srcset="//www.displaysense.co.uk/cdn/shop/files/Displaysense_Lifestyle_Images_2026_6_300x.jpg?v=1773152775 300w, //www.displaysense.co.uk/cdn/shop/files/Displaysense_Lifestyle_Images_2026_6_600x.jpg?v=1773152775 600w"
                                data-src="//www.displaysense.co.uk/cdn/shop/files/Displaysense_Lifestyle_Images_2026_6.jpg?v=1773152775&width=300"
                                class="lazyload ds-mnav-optc__img"
                                alt=""
                                width="1000" height="1000"/>
                              <div class="ds-mnav-optc__overlay"></div>
                              <div class="ds-mnav-optc__photo-content"><span class="ds-mnav-optc__photo-btn">Shop Now →</span>
                              </div>
                            </a>
                            <div class="ds-mnav-optc__ctas">
                              <a href="/pages/planning-a-project" class="ds-mnav-optc__cta ds-mnav-optc__cta--dark">
                                <span class="ds-mnav-optc__cta-eyebrow">Free Service</span>
                                <span class="ds-mnav-optc__cta-title">Planning a Project?</span>
                                <span class="ds-mnav-optc__cta-sub">Sourcing, quotes &amp; bespoke orders — we handle it all.</span>
                                <span class="ds-mnav-optc__cta-btn">Talk to Us →</span>
                              </a>
                              <a href="/pages/reviews" class="ds-mnav-optc__cta ds-mnav-optc__cta--trust">
                                <div class="ds-mnav-optc__trust-stars">★★★★★</div>
                                <span class="ds-mnav-optc__trust-count">8,000+ Verified Reviews</span>
                                <span class="ds-mnav-optc__trust-sub">Read what UK buyers say about Displaysense</span>
                              </a>
                            </div>
                          </div>
                        </li></ul></li><li class="nav-first-level group py-[5px]" role="none">

              <a href="/collections/clothes-storage"
                class="cc__mainlinkfirstlevel cc-leading-[1.3] flex relative w-full cc-text-[12px] font-semibold text-primary transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover"
                role="menuitem"
                aria-haspopup="true">
                Clothes Storage
                
                  <span class="relative w-4 h-4 flex items-center ml-2"><svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 0.720184L5 4.72018L9 0.720184" stroke="currentColor"/>
</svg>
</span>
                
              </a><ul class="megamenu container-fluid px-5 lg:px-10 w-full z-20 hidden gap-3 bg-white border-b-[1px] border-grey-100 top-[100%] lg:absolute lg:left-0 lg:py-8 lg:w-full list-none lg:group-hover:flex lg:group-hover:flex-row lg:gap-8" role="menu" aria-label="Clothes Storage">
                    <ul class="list-none relative block min-h-max lg:gap-8  w-2/5 columns-2 "><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="CLOTHES RAILS">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/clothes-rails" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">CLOTHES RAILS</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/adjustable-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Adjustable Clothes Rails</a></li><li role="none"><a href="/collections/clothes-racks" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Clothes Racks</a></li><li role="none"><a href="/collections/coat-racks-stands" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Coat Racks & Stands</a></li><li role="none"><a href="/collections/double-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Double Clothes Rails</a></li><li role="none"><a href="/collections/heavy-duty-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Heavy Duty Clothes Rails</a></li><li role="none"><a href="/collections/industrial-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Industrial Clothes Rails</a></li><li role="none"><a href="/collections/wall-mounted-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Wall Mounted Clothes Rails</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="CLOTHES RAIL ACCESSORIES">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/clothes-rail-accessories" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">CLOTHES RAIL ACCESSORIES</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/clothes-rail-covers" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Clothes Rails Covers</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="SIZE">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="/collections/clothes-rails" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">SIZE</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/6ft-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">6ft Clothes Rails</a></li><li role="none"><a href="/collections/5ft-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">5ft Clothes Rails</a></li><li role="none"><a href="/collections/4ft-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">4ft Clothes Rails</a></li><li role="none"><a href="/collections/3ft-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">3ft Clothes Rails</a></li><li role="none"><a href="/collections/2ft-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">2ft Clothes Rails</a></li></ul></li>
                        </ul><ul class="list-none relative break-inside-avoid gap-y-2" role="menu" aria-label="COLOUR/FINISH">
                          <li class="menu-item relative break-inside-avoid align-top mb-5" role="none">
                            <a href="#" class="text-base tracking-[0.02em] text-primary block mb-4 font-normal transition ease-in-out duration-300 first:font-semibold hover:text-primary-hover" role="menuitem" aria-haspopup="true">COLOUR/FINISH</a><ul class="list-none relative break-inside-avoid mt-4 gap-y-2" role="menu"><li role="none"><a href="/collections/black-clothes-rails" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">Black Clothes Rails</a></li><li role="none"><a href="/collections/white-clothes-rail" class="text-primary text-base font-normal block mb-2 transition ease-in-out duration-300 hover:text-primary-hover" role="menuitem">White Clothes Rails</a></li></ul></li>
                        </ul></ul><li class="ds-mnav-optc" role="none">
                          <div class="ds-mnav-optc__inner">
                            <a href="/collections/double-clothes-rails" class="ds-mnav-optc__photo">
                              <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" loading="lazy"
                                data-srcset="//www.displaysense.co.uk/cdn/shop/files/Dark_Overlay_on_Text_ONLY_5_300x.jpg?v=1773153047 300w, //www.displaysense.co.uk/cdn/shop/files/Dark_Overlay_on_Text_ONLY_5_600x.jpg?v=1773153047 600w"
                                data-src="//www.displaysense.co.uk/cdn/shop/files/Dark_Overlay_on_Text_ONLY_5.jpg?v=1773153047&width=300"
                                class="lazyload ds-mnav-optc__img"
                                alt=""
                                width="1000" height="1000"/>
                              <div class="ds-mnav-optc__overlay"></div>
                              <div class="ds-mnav-optc__photo-content"><span class="ds-mnav-optc__photo-btn">Shop Now →</span>
                              </div>
                            </a>
                            <div class="ds-mnav-optc__ctas">
                              <a href="/pages/planning-a-project" class="ds-mnav-optc__cta ds-mnav-optc__cta--dark">
                                <span class="ds-mnav-optc__cta-eyebrow">Free Service</span>
                                <span class="ds-mnav-optc__cta-title">Planning a Project?</span>
                                <span class="ds-mnav-optc__cta-sub">Sourcing, quotes &amp; bespoke orders — we handle it all.</span>
                                <span class="ds-mnav-optc__cta-btn">Talk to Us →</span>
                              </a>
                              <a href="/pages/reviews" class="ds-mnav-optc__cta ds-mnav-optc__cta--trust">
                                <div class="ds-mnav-optc__trust-stars">★★★★★</div>
                                <span class="ds-mnav-optc__trust-count">8,000+ Verified Reviews</span>
                                <span class="ds-mnav-optc__trust-sub">Read what UK buyers say about Displaysense</span>
                              </a>
                            </div>
                          </div>
                        </li></ul></li><li class="nav-first-level group py-[5px]" role="none">

              <a href="/pages/shop-by-industry"
                class="cc__mainlinkfirstlevel cc-leading-[1.3] flex relative w-full cc-text-[12px] font-semibold text-primary transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover"
                role="menuitem"
                aria-haspopup="true">
                Shop By Industry
                
                  <span class="relative w-4 h-4 flex items-center ml-2"><svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 0.720184L5 4.72018L9 0.720184" stroke="currentColor"/>
</svg>
</span>
                
              </a><div class="ds-mnav ds-mnav--industry" role="menu" aria-label="Shop By Industry">
                    <div class="ds-mnav__inner"><div class="ds-mnav__left">
                          <div class="ds-mnav__left-head">Shop By Industry</div>
                          <ul><li>
                                <a href="/collections/automotive-retail-display-products" class="ds-mnav__left-link">
                                  Automotive
                                  <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                </a>
                              </li><li>
                                <a href="/collections/education-display-and-storage" class="ds-mnav__left-link">
                                  Education
                                  <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                </a>
                              </li><li>
                                <a href="/collections/event-hospitality-display-stands" class="ds-mnav__left-link">
                                  Events & Hospitality
                                  <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                </a>
                              </li><li>
                                <a href="/collections/exhibition-display-products" class="ds-mnav__left-link">
                                  Exhibitions & Events
                                  <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                </a>
                              </li><li>
                                <a href="/collections/garden-centres" class="ds-mnav__left-link">
                                  Garden Centres
                                  <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                </a>
                              </li><li>
                                <a href="/collections/government-council-display-solutions" class="ds-mnav__left-link">
                                   Government & Public Body
                                  <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                </a>
                              </li><li>
                                <a href="/collections/medical-display-equipment" class="ds-mnav__left-link">
                                  Medical
                                  <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                </a>
                              </li><li>
                                <a href="/collections/office-display-and-storage" class="ds-mnav__left-link">
                                  Office Interiors
                                  <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                </a>
                              </li><li>
                                <a href="/collections/retail-display-solutions" class="ds-mnav__left-link">
                                  Retail
                                  <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                </a>
                              </li></ul>
                        </div>
                        <div class="ds-mnav__industry-mid">
                          <div>
                            <div class="ds-mnav__industry-col-head">Education</div>
                            <ul>
                              <li><a href="/collections/noticeboards" class="ds-mnav__industry-link">Notice Boards</a></li>
                              <li><a href="/collections/whiteboards" class="ds-mnav__industry-link">Whiteboards</a></li>
                              <li><a href="/collections/display-cabinets" class="ds-mnav__industry-link">Display Cabinets</a></li>
                              <li><a href="/pages/shop-by-industry" class="ds-mnav__industry-link ds-mnav__industry-link--all">Shop Education &#8594;</a></li>
                            </ul>
                          </div>
                          <div>
                            <div class="ds-mnav__industry-col-head">Events &amp; Hospitality</div>
                            <ul>
                              <li><a href="/collections/pavement-signs" class="ds-mnav__industry-link">Pavement Signs</a></li>
                              <li><a href="/collections/flags" class="ds-mnav__industry-link">Flags &amp; Bunting</a></li>
                              <li><a href="/collections/sign-menu-holders" class="ds-mnav__industry-link">Menu Holders</a></li>
                              <li><a href="/collections/event-hospitality-display-stands" class="ds-mnav__industry-link ds-mnav__industry-link--all">Shop Events &#8594;</a></li>
                            </ul>
                          </div>
                          <div>
                            <div class="ds-mnav__industry-col-head">Exhibitions</div>
                            <ul>
                              <li><a href="/collections/exhibition-display-products" class="ds-mnav__industry-link">Exhibition Displays</a></li>
                              <li><a href="/collections/banner-stands" class="ds-mnav__industry-link">Pop-Up Displays</a></li>
                              <li><a href="/collections/leaflet-brochure-holders" class="ds-mnav__industry-link">Brochure Holders</a></li>
                              <li><a href="/collections/exhibition-display-products" class="ds-mnav__industry-link ds-mnav__industry-link--all">Shop Exhibitions &#8594;</a></li>
                            </ul>
                          </div>
                          <div>
                            <div class="ds-mnav__industry-col-head">Retail</div>
                            <ul>
                              <li><a href="/collections/retail-display-solutions" class="ds-mnav__industry-link">Retail Displays</a></li>
                              <li><a href="/collections/clothes-rails" class="ds-mnav__industry-link">Clothes Rails</a></li>
                              <li><a href="/collections/snap-frames" class="ds-mnav__industry-link">Snap Frames</a></li>
                              <li><a href="/collections/retail-display-solutions" class="ds-mnav__industry-link ds-mnav__industry-link--all">Shop Retail &#8594;</a></li>
                            </ul>
                          </div>
                          <div>
                            <div class="ds-mnav__industry-col-head">Healthcare &amp; NHS</div>
                            <ul>
                              <li><a href="/collections/noticeboards" class="ds-mnav__industry-link">Notice Boards</a></li>
                              <li><a href="/collections/sign-menu-holders" class="ds-mnav__industry-link">Sign Holders</a></li>
                              <li><a href="/collections/snap-frames" class="ds-mnav__industry-link">Poster Frames</a></li>
                              <li><a href="/pages/shop-by-industry" class="ds-mnav__industry-link ds-mnav__industry-link--all">Shop Healthcare &#8594;</a></li>
                            </ul>
                          </div>
                          <div>
                            <div class="ds-mnav__industry-col-head">Office &amp; Corporate</div>
                            <ul>
                              <li><a href="/collections/whiteboards" class="ds-mnav__industry-link">Whiteboards</a></li>
                              <li><a href="/collections/display-cabinets" class="ds-mnav__industry-link">Display Cabinets</a></li>
                              <li><a href="/collections/leaflet-brochure-holders" class="ds-mnav__industry-link">Leaflet Holders</a></li>
                              <li><a href="/pages/shop-by-industry" class="ds-mnav__industry-link ds-mnav__industry-link--all">Shop Office &#8594;</a></li>
                            </ul>
                          </div>
                        </div>
                        <div class="ds-mnav__ctas">
                          <a href="/collections/event-hospitality-display-stands" class="ds-mnav__cta ds-mnav__cta--photo"><img class="ds-mnav__cta-bg" src="https://www.displaysense.co.uk/cdn/shop/files/pret-a-manger-shopfront-with-recruitment-sign-and-outdoor-seating-on-london-street.jpg?v=1776180459&width=600" alt="" loading="lazy"><div class="ds-mnav__cta-eyebrow">Sector focus</div><div class="ds-mnav__cta-title">Hospitality</div>
                            <span class="ds-mnav__cta-btn">Shop hospitality &#8594;</span>
                          </a>
                          <a href="/pages/shop-by-industry" class="ds-mnav__cta ds-mnav__cta--photo"><img class="ds-mnav__cta-bg" src="https://www.displaysense.co.uk/cdn/shop/files/glass-awards-display-cabinet-in-university-building.jpg?v=1776250638&width=600" alt="" loading="lazy"><div class="ds-mnav__cta-eyebrow">Sector focus</div><div class="ds-mnav__cta-title">Education</div>
                            <span class="ds-mnav__cta-btn">Shop education &#8594;</span>
                          </a>
                        </div></div>
                  </div></li><li class="nav-first-level group py-[5px]" role="none">

              <a href="/pages/business-services"
                class="cc__mainlinkfirstlevel cc-leading-[1.3] flex relative w-full cc-text-[12px] font-semibold text-primary transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover"
                role="menuitem"
                aria-haspopup="true">
                Services
                
                  <span class="relative w-4 h-4 flex items-center ml-2"><svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 0.720184L5 4.72018L9 0.720184" stroke="currentColor"/>
</svg>
</span>
                
              </a><div class="ds-mnav" role="menu" aria-label="Services">
                    <div class="ds-mnav__inner"><div class="ds-mnav__left">
                          <div class="ds-mnav__left-head">Business Services</div>
                          <ul><li>
                                  <a href="/pages/volume-trade-discounts" class="ds-mnav__left-link">
                                    Volume & Trade Discounts
                                    <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                  </a>
                                </li><li>
                                  <a href="/pages/planning-a-project" class="ds-mnav__left-link">
                                    Project Planning
                                    <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                  </a>
                                </li><li>
                                  <a href="/pages/sourcing-service" class="ds-mnav__left-link">
                                    Bespoke & Custom Orders
                                    <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                  </a>
                                </li><li>
                                  <a href="/pages/public-sector-credit-accounts" class="ds-mnav__left-link">
                                    Public Sector Credit Accounts
                                    <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                  </a>
                                </li><li>
                                  <a href="/pages/sourcing-service" class="ds-mnav__left-link">
                                    Sourcing Service
                                    <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                  </a>
                                </li></ul>
                        </div>

                        <div class="ds-mnav__mid"><div class="ds-mnav__mid-group"><div class="ds-mnav__mid-group-head">Print Services</div><ul><li><a href="/collections/printing-service" class="ds-mnav__mid-link ds-mnav__mid-link--all">All Print Services</a></li><li><a href="/collections/flags" class="ds-mnav__mid-link">Flag Printing</a></li><li><a href="/collections/poster-printing" class="ds-mnav__mid-link">Poster Printing</a></li><li><a href="/collections/banner-printing" class="ds-mnav__mid-link">Banner Printing</a></li></ul>
                            </div><div class="ds-mnav__mid-group">
                                <div class="ds-mnav__mid-group-head">Support & Guides</div>
                                <ul><li><a href="/pages/assembly-guides" class="ds-mnav__mid-link">Assembly Guides (PDF)</a></li><li><a href="/pages/video-hub" class="ds-mnav__mid-link">Video Guide Gallery</a></li><li><a href="/pages/product-faqs" class="ds-mnav__mid-link">Product FAQs</a></li><li><a href="/pages/contact-us" class="ds-mnav__mid-link">Contact Our Sales Team</a></li></ul>
                              </div></div>

                        <div class="ds-mnav__ctas">
                          <a href="/collections/pavement-signs" class="ds-mnav__cta ds-mnav__cta--photo"><img class="ds-mnav__cta-bg" src="https://www.displaysense.co.uk/cdn/shop/files/caffe-nero-salad-with-added-drama-advertising-board-on-city-pavement.jpg?v=1776156399&width=600" alt="" loading="lazy"><div class="ds-mnav__cta-eyebrow">Print in action</div><div class="ds-mnav__cta-title">Print Services</div>
                            <span class="ds-mnav__cta-btn">Get a quote &#8594;</span>
                          </a>
                          <a href="/pages/assembly-guides" class="ds-mnav__cta ds-mnav__cta--teal"><div class="ds-mnav__cta-eyebrow">PDF download</div><div class="ds-mnav__cta-title">Assembly Guides</div>
                            <span class="ds-mnav__cta-btn">Download &#8594;</span>
                          </a>
                        </div></div>
                  </div></li><li class="nav-first-level group py-[5px]" role="none">

              <a href="/collections/on-sale"
                class="cc__mainlinkfirstlevel cc-leading-[1.3] flex relative w-full cc-text-[12px] font-semibold text-secondary transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover"
                role="menuitem"
                aria-haspopup="true">
                Sale & Special Offers
                
                  <span class="relative w-4 h-4 flex items-center ml-2"><svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 0.720184L5 4.72018L9 0.720184" stroke="currentColor"/>
</svg>
</span>
                
              </a><div class="ds-mnav ds-mnav--sale" role="menu" aria-label="Sale & Special Offers">
                    <div class="ds-mnav__inner"><a href="/collections/on-sale" class="ds-mnav__sale-hero">
                          <div class="ds-mnav__sale-hero-tag">Limited time offer</div>
                          <div class="ds-mnav__sale-hero-title">Up to<br><span>50%</span><br>Off</div>
                          <span class="ds-mnav__sale-hero-btn">Shop Sale &#8594;</span>
                        </a>
                        <div class="ds-mnav__sale-links">
                          <div class="ds-mnav__sale-links-head">Special Offers</div>
                          <ul><li>
                                <a href="/collections/on-sale" class="ds-mnav__sale-link">
                                  Sale
                                </a>
                              </li><li>
                                <a href="/collections/best-sellers" class="ds-mnav__sale-link">
                                  Best Sellers
                                </a>
                              </li><li>
                                <a href="/collections/best-rated-display-products" class="ds-mnav__sale-link ds-mnav__sale-link--all">
                                  Best Rated Displays &#8594;
                                </a>
                              </li></ul>
                        </div>
                        <a href="/pages/volume-trade-discounts" class="ds-mnav__sale-cta ds-mnav__sale-cta--photo">
                          <img class="ds-mnav__sale-cta-bg" src="https://www.displaysense.co.uk/cdn/shop/files/outdoor-pavement-sign-election-voting-information-town-hall.jpg?v=1776767228&amp;width=600" alt="" loading="lazy">
                          <div class="ds-mnav__sale-cta-eyebrow">Buy more, save more</div>
                          <div class="ds-mnav__sale-cta-title">Volume Discounts</div>
                          <span class="ds-mnav__sale-cta-btn">Talk to us &#8594;</span>
                        </a></div>
                  </div></li><li class="nav-first-level group py-[5px]" role="none">

              <a href="/pages/advice-and-inspiration-hub"
                class="cc__mainlinkfirstlevel cc-leading-[1.3] flex relative w-full cc-text-[12px] font-semibold text-primary transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover"
                role="menuitem"
                aria-haspopup="true">
                Knowledge Hub
                
                  <span class="relative w-4 h-4 flex items-center ml-2"><svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 0.720184L5 4.72018L9 0.720184" stroke="currentColor"/>
</svg>
</span>
                
              </a><div class="ds-mnav ds-mnav--knowledge" role="menu" aria-label="Knowledge Hub">
                    <div class="ds-mnav__inner"><div class="ds-mnav__left">
                          <div class="ds-mnav__left-head">Knowledge Hub</div>
                          <ul><li>
                                  <a href="/blogs/buying-guides" class="ds-mnav__left-link">
                                    BUYING GUIDES
                                    <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                  </a>
                                </li><li>
                                  <a href="/blogs/home-inspiration" class="ds-mnav__left-link">
                                    HOME INSPIRATION
                                    <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                  </a>
                                </li><li>
                                  <a href="/blogs/sector-hub" class="ds-mnav__left-link">
                                    SECTOR HUB
                                    <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                  </a>
                                </li><li>
                                <a href="/blogs/case-studies" class="ds-mnav__left-link">
                                  Case Studies
                                  <span class="ds-mnav__left-link-arrow">&#8594;</span>
                                </a>
                              </li></ul>
                        </div>

                        <div class="ds-mnav__mid ds-mnav__mid--four"><div class="ds-mnav__mid-group">
                              <div class="ds-mnav__mid-group-head">Buying Guides</div>
                              <ul>
                                <li><a href="/blogs/buying-guides/poster-displays-buying-guide" class="ds-mnav__mid-link">Poster Displays Guide</a></li>
                                <li><a href="/blogs/buying-guides/2026-signage-strategies-are-pavement-signs-still-worth-the-investment" class="ds-mnav__mid-link">Pavement Signs Guide</a></li>
                                <li><a href="/blogs/buying-guides/floor-standing-cabinets-buying-guide" class="ds-mnav__mid-link">Trophy &amp; Collectible Cabinets</a></li>
                                <li><a href="/blogs/buying-guides/clothes-rails-vs-wardrobes" class="ds-mnav__mid-link">Clothes Rails vs Wardrobes</a></li>
                                <li><a href="/blogs/buying-guides/snap-frames-buying-guide" class="ds-mnav__mid-link">Snap Frames Guide</a></li>
                                <li><a href="/blogs/buying-guides" class="ds-mnav__mid-link ds-mnav__mid-link--all">All Buying Guides &#8594;</a></li>
                              </ul>
                            </div>
                            <div class="ds-mnav__mid-group">
                              <div class="ds-mnav__mid-group-head">Home Inspiration</div>
                              <ul>
                                <li><a href="/blogs/home-inspiration/storage-ideas-to-maximise-space-in-a-loft-bedroom" class="ds-mnav__mid-link">Top 10 Clothes Rails for the Bedroom</a></li>
                                <li><a href="/blogs/home-inspiration/our-favourite-wall-mounted-bedroom-storage" class="ds-mnav__mid-link">Wall-Mounted Bedroom Storage</a></li>
                                <li><a href="/blogs/home-inspiration/nursery-storage-ideas-for-small-rooms" class="ds-mnav__mid-link">Nursery Storage Ideas</a></li>
                                <li><a href="/blogs/home-inspiration/the-ultimate-decluttering-your-home-checklist" class="ds-mnav__mid-link">Ultimate Decluttering Checklist</a></li>
                                <li><a href="/blogs/home-inspiration" class="ds-mnav__mid-link ds-mnav__mid-link--all">All Home Inspiration &#8594;</a></li>
                              </ul>
                            </div>
                            <div class="ds-mnav__mid-group">
                              <div class="ds-mnav__mid-group-head">Sector Hub</div>
                              <ul>
                                <li><a href="/blogs/sector-hub/how-pavement-signs-and-sunday-roasts-are-rescuing-local-hospitality" class="ds-mnav__mid-link">Pavement Signs &amp; Hospitality</a></li>
                                <li><a href="/blogs/sector-hub/top-10-exhibition-centres-in-the-uk-for-2025-events" class="ds-mnav__mid-link">Top 10 UK Exhibition Venues</a></li>
                                <li><a href="/blogs/sector-hub/how-to-attract-attention-at-your-exhibition-stand" class="ds-mnav__mid-link">Stand Out at Your Exhibition</a></li>
                                <li><a href="/blogs/sector-hub/how-to-get-your-restaurant-noticed-attract-customers" class="ds-mnav__mid-link">Get Your Restaurant Noticed</a></li>
                                <li><a href="/blogs/sector-hub" class="ds-mnav__mid-link ds-mnav__mid-link--all">All Sector Articles &#8594;</a></li>
                              </ul>
                            </div>
                            <div class="ds-mnav__mid-group">
                              <div class="ds-mnav__mid-group-head">Case Studies</div>
                              <ul>
                                <li>
                                  <a href="/blogs/case-studies/how-a-uk-motor-museum-transformed-its-exhibition-visitor-experience" class="ds-mnav__mid-link ds-mnav__mid-link--thumb">
                                    <img class="ds-mnav__thumb" src="https://cdn.shopify.com/s/files/1/0721/1496/2725/files/countertop-leaflet-holder-motor-show-poster-retail-display.jpg?v=1776767721&amp;width=80" alt="" loading="lazy" width="40" height="40">
                                    <span class="ds-mnav__thumb-text">Motor Museum Exhibition</span>
                                  </a>
                                </li>
                                <li>
                                  <a href="/blogs/case-studies/fire-compliant-glass-display-cabinets-for-schools-universities-displaysense" class="ds-mnav__mid-link ds-mnav__mid-link--thumb">
                                    <img class="ds-mnav__thumb" src="https://cdn.shopify.com/s/files/1/0721/1496/2725/files/school-trophy-display-cabinet-medals-certificates-hallway.jpg?v=1776767612&amp;width=80" alt="" loading="lazy" width="40" height="40">
                                    <span class="ds-mnav__thumb-text">Fire-Compliant School Cabinets</span>
                                  </a>
                                </li>
                                <li>
                                  <a href="/blogs/case-studies/how-a-leading-uk-beauty-retailer-increased-basket-value-with-smarter-queue-merchandising" class="ds-mnav__mid-link ds-mnav__mid-link--thumb">
                                    <img class="ds-mnav__thumb" src="https://cdn.shopify.com/s/files/1/0721/1496/2725/files/tiered-retail-display-stand-beauty-products-shop-interior.jpg?v=1776767866&amp;width=80" alt="" loading="lazy" width="40" height="40">
                                    <span class="ds-mnav__thumb-text">Beauty Retail Queue Merchandising</span>
                                  </a>
                                </li>
                                <li>
                                  <a href="/blogs/case-studies/hurst-castle-case-study-durable-unified-signage-for-a-coastal-heritage-site" class="ds-mnav__mid-link ds-mnav__mid-link--thumb">
                                    <img class="ds-mnav__thumb" src="https://cdn.shopify.com/s/files/1/0721/1496/2725/files/hurst-castle-interior-signboard-summer-fun-event-poster-stone-archway.jpg?v=1776683919&amp;width=80" alt="" loading="lazy" width="40" height="40">
                                    <span class="ds-mnav__thumb-text">Hurst Castle Heritage Signage</span>
                                  </a>
                                </li>
                                <li><a href="/blogs/case-studies" class="ds-mnav__mid-link ds-mnav__mid-link--all">All Case Studies &#8594;</a></li>
                              </ul>
                            </div></div>

                        <div class="ds-mnav__ctas">
                          <a href="/blogs/case-studies/hurst-castle-case-study-durable-unified-signage-for-a-coastal-heritage-site" class="ds-mnav__cta ds-mnav__cta--photo"><img class="ds-mnav__cta-bg" src="https://cdn.shopify.com/s/files/1/0721/1496/2725/files/hurst-castle-interior-signboard-summer-fun-event-poster-stone-archway.jpg?v=1776683919&width=600" alt="" loading="lazy"><div class="ds-mnav__cta-eyebrow">Case study</div><div class="ds-mnav__cta-title">Hurst Castle</div>
                            <span class="ds-mnav__cta-btn">Read story &#8594;</span>
                          </a>
                          <a href="/pages/video-hub" class="ds-mnav__cta ds-mnav__cta--orange"><div class="ds-mnav__cta-eyebrow">Free resource</div><div class="ds-mnav__cta-title">Video Hub</div>
                            <span class="ds-mnav__cta-btn">Watch now &#8594;</span>
                          </a>
                        </div></div>
                  </div></li></ul>
      </div>

      <div id="inspireNav" class="w-full hidden cc-max-w-[1024px]">
        <ul class="list-none cc-flex cc-items-center cc-gap-4 md:cc-gap-5 lg:cc-gap-[31px]" role="menubar">
          
            <li class="nav-first-level group py-[5px]" role="none">
              <a href="/blogs/home-inspiration" class="cc__mainlinkfirstlevel flex relative w-full text-primary cc-text-[12px] cc-leading-[1.3] font-semibold transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover" role="menuitem">Home Inspiration</a>
            </li>
          
            <li class="nav-first-level group py-[5px]" role="none">
              <a href="/blogs/sector-hub" class="cc__mainlinkfirstlevel flex relative w-full text-primary cc-text-[12px] cc-leading-[1.3] font-semibold transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover" role="menuitem">Sector Hub</a>
            </li>
          
            <li class="nav-first-level group py-[5px]" role="none">
              <a href="/blogs/buying-guides" class="cc__mainlinkfirstlevel flex relative w-full text-primary cc-text-[12px] cc-leading-[1.3] font-semibold transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover" role="menuitem">Buying Guides</a>
            </li>
          
            <li class="nav-first-level group py-[5px]" role="none">
              <a href="/pages/assembly-guides" class="cc__mainlinkfirstlevel flex relative w-full text-primary cc-text-[12px] cc-leading-[1.3] font-semibold transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover" role="menuitem">Assembly Guides (PDFs)</a>
            </li>
          
            <li class="nav-first-level group py-[5px]" role="none">
              <a href="/pages/faqs" class="cc__mainlinkfirstlevel flex relative w-full text-primary cc-text-[12px] cc-leading-[1.3] font-semibold transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover" role="menuitem">FAQs</a>
            </li>
          
            <li class="nav-first-level group py-[5px]" role="none">
              <a href="/pages/product-faqs" class="cc__mainlinkfirstlevel flex relative w-full text-primary cc-text-[12px] cc-leading-[1.3] font-semibold transition ease-in-out duration-300 lg:py-3 items-center lg:border-b lg:border-transparent group-hover:lg:border-primary-hover lg:w-auto group-hover:text-primary-hover" role="menuitem">Product FAQs</a>
            </li>
          
        </ul>
      </div>

      
        <div class="cc-header-iconstext cc-flex cc-items-center cc-gap-4 md:cc-gap-5 lg:cc-gap-[50px]">
          
<a class="hidden lg:flex items-center gap-2 group text-primary" href="/account/login">
  <span class="cc-inline-block cc-text-[12px] cc-font-semibold text-primary">Log In</span>
  <span aria-hidden="true" class="flex text-primary">
    <svg xmlns="http://www.w3.org/2000/svg" width="17" height="16" fill="none">
    <path fill="currentColor" d="M7.972 10.455a.787.787 0 0 0 0 1.117.787.787 0 0 0 1.117 0l3.147-3.147a.787.787 0 0 0 0-1.117L9.09 4.161a.79.79 0 0 0-1.117 1.117l1.81 1.802H.014v1.573h9.768l-1.81 1.802ZM2.766 0h1.573v4.72H2.766z"/>
    <path fill="currentColor" d="M16.926 0v1.573H2.766V0zm0 14.16v1.573H2.766V14.16z"/>
    <path fill="currentColor" d="M2.766 11.013h1.573v4.72H2.766zM15.352 0h1.573v15.734h-1.573z"/>
    </svg>
  </span>
</a></div>
      

    </div>
  </div>
</nav>
<script>
  /* Help & Advice dropdown: click toggle + outside click close */
  (function() {
    var sectionId = 'cc-header';
    var dropdown = document.querySelector('#shopify-section-' + sectionId + ' .ds-util-dropdown');
    if (!dropdown) return;
    var trigger = dropdown.querySelector('.ds-util-dropdown-trigger');
    if (!trigger) return;

    trigger.addEventListener('click', function(e) {
      e.preventDefault();
      e.stopPropagation();
      var isOpen = dropdown.classList.toggle('is-open');
      trigger.setAttribute('aria-expanded', isOpen ? 'true' : 'false');
    });

    trigger.addEventListener('keydown', function(e) {
      if (e.key === 'Enter' || e.key === ' ') {
        e.preventDefault();
        trigger.click();
      } else if (e.key === 'Escape') {
        dropdown.classList.remove('is-open');
        trigger.setAttribute('aria-expanded', 'false');
        trigger.blur();
      }
    });

    document.addEventListener('click', function(e) {
      if (!dropdown.contains(e.target)) {
        dropdown.classList.remove('is-open');
        trigger.setAttribute('aria-expanded', 'false');
      }
    });
  })();
</script>
<style>
  

@media (max-width: 1024px) {
  #shopify-section-cc-header #nav-switcher, 
  .mobile-nav-blocks:has(.mobile-nav-blocks-container:empty), 
  .mobile-nav-products:has(.mobile-nav-products-container:empty), 
  #shopify-section-cc-header .switch-container {
      display: none;
  }
}
</style>

<style> #shopify-section-cc-header .nav-image-title {font-size: 15px;} </style></header><div id="shopify-section-cc-text-icon" class="shopify-section">

<!-- HTML -->

<div class="cc-relative cc-overflow-hidden cc__texticon_columncontainer-section">
    <div class="container-fluid cc-py-[15px]">
        <div class="cc__texticon_columncontainer cc-overflow-x-auto cc-flex cc-items-center cc-gap-[15px]">

            
            
            
            <div class="cc__texticon_columnitems cc-w-3/4 md:cc-w-1/3 lg:cc-w-1/5 cc-flex-shrink-0" >
            
                <div class="cc-flex cc-items-center cc-gap-[10px]">
                    
                    <span class="cc__texticon_svgicon">
                        
                                <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path d="M5 18H3c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h11c.55 0 1 .45 1 1v11"/><path d="M15 9h4l3 3v5c0 .55-.45 1-1 1h-2"/><circle cx="7" cy="18" r="2"/><circle cx="17" cy="18" r="2"/></svg>
                            
                    </span>
                    
                    
                    <div class="cc-w-[calc(100% - 40px)] cc-flex cc-flex-col cc-gap-[3px]">
                        
                        <h3 class="cc-m-0 cc-font-bold cc-uppercase cc-leading-tight">
                            
                            <a href="/pages/delivery" title="Delivery">Free Mainland UK Delivery</a>
                            
                            
                        </h3>
                        
                        
                        <p class="cc-m-0 cc-leading-tight"><a href="/pages/delivery" title="Delivery">On every order, no minimum spend</a></p>
                        
                    </div>
                    
                </div>
            
            </div>
            
            
            
            
            <div class="cc__texticon_columnitems cc-w-3/4 md:cc-w-1/3 lg:cc-w-1/5 cc-flex-shrink-0" >
            
                <div class="cc-flex cc-items-center cc-gap-[10px]">
                    
                    <span class="cc__texticon_svgicon">
                        
                                <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><polyline points="9,12 11,14 15,10"/></svg>
                            
                    </span>
                    
                    
                    <div class="cc-w-[calc(100% - 40px)] cc-flex cc-flex-col cc-gap-[3px]">
                        
                        <h3 class="cc-m-0 cc-font-bold cc-uppercase cc-leading-tight">
                            
                            <a href="/pages/about-us" title="About Us">UK DESIGNED SINCE 1978</a>
                            
                            
                        </h3>
                        
                        
                        <p class="cc-m-0 cc-leading-tight"><a href="/pages/about-us" title="About Us">Commercial-grade, own-design range</a></p>
                        
                    </div>
                    
                </div>
            
            </div>
            
            
            
            
            <div class="cc__texticon_columnitems cc-w-3/4 md:cc-w-1/3 lg:cc-w-1/5 cc-flex-shrink-0" >
            
                <div class="cc-flex cc-items-center cc-gap-[10px]">
                    
                    <span class="cc__texticon_svgicon">
                        
                                <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path d="M18 7c0-5.333-8-5.333-8 0"/><path d="M10 7v12"/><path d="M6 13h10"/><path d="M6 19h12"/></svg>
                            
                    </span>
                    
                    
                    <div class="cc-w-[calc(100% - 40px)] cc-flex cc-flex-col cc-gap-[3px]">
                        
                        <h3 class="cc-m-0 cc-font-bold cc-uppercase cc-leading-tight">
                            
                            <a href="/pages/contact-us" title="Contact Us">Volume Discounts Available</a>
                            
                            
                        </h3>
                        
                        
                        <p class="cc-m-0 cc-leading-tight"><a href="/pages/contact-us" title="Contact Us">From 2 units up. Call for a quote.</a></p>
                        
                    </div>
                    
                </div>
            
            </div>
            
            
            
            
            <div class="cc__texticon_columnitems cc-w-3/4 md:cc-w-1/3 lg:cc-w-1/5 cc-flex-shrink-0" >
            
                <div class="cc-flex cc-items-center cc-gap-[10px]">
                    
                    <span class="cc__texticon_svgicon">
                        
                                <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><polyline points="9,15 11,17 15,13"/></svg>
                            
                    </span>
                    
                    
                    <div class="cc-w-[calc(100% - 40px)] cc-flex cc-flex-col cc-gap-[3px]">
                        
                        <h3 class="cc-m-0 cc-font-bold cc-uppercase cc-leading-tight">
                            
                            <a href="/pages/public-sector-credit-accounts" title="Public Sector Credit Accounts">Public Sector Accounts</a>
                            
                            
                        </h3>
                        
                        
                        <p class="cc-m-0 cc-leading-tight"><a href="/pages/public-sector-credit-accounts" title="Public Sector Credit Accounts">Schools, NHS and councils welcome</a></p>
                        
                    </div>
                    
                </div>
            
            </div>
            
            
            
            
            <div class="cc__texticon_columnitems cc-w-3/4 md:cc-w-1/3 lg:cc-w-1/5 cc-flex-shrink-0" >
            
                <div class="cc-flex cc-items-center cc-gap-[10px]">
                    
                    <span class="cc__texticon_svgicon">
                        
                                <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="cc__texticon_svgicon--filled"><polygon points="12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26"/></svg>
                            
                    </span>
                    
                    
                    <div class="cc-w-[calc(100% - 40px)] cc-flex cc-flex-col cc-gap-[3px]">
                        
                        <h3 class="cc-m-0 cc-font-bold cc-uppercase cc-leading-tight">
                            
                            <a href="/pages/reviews" title="Reviews">8,000+ Verified Reviews</a>
                            
                            
                            
                                <svg class="cc-inline-block cc-ml-2" width="75" height="15" viewBox="0 0 75 15" fill="none" xmlns="http://www.w3.org/2000/svg">
                                <path d="M7.5 0L9.18386 5.18237H14.6329L10.2245 8.38525L11.9084 13.5676L7.5 10.3647L3.09161 13.5676L4.77547 8.38525L0.367076 5.18237H5.81614L7.5 0Z" fill="currentColor"/>
                                <path d="M22.5 0L24.1839 5.18237H29.6329L25.2245 8.38525L26.9084 13.5676L22.5 10.3647L18.0916 13.5676L19.7755 8.38525L15.3671 5.18237H20.8161L22.5 0Z" fill="currentColor"/>
                                <path d="M37.5 0L39.1839 5.18237H44.6329L40.2245 8.38525L41.9084 13.5676L37.5 10.3647L33.0916 13.5676L34.7755 8.38525L30.3671 5.18237H35.8161L37.5 0Z" fill="currentColor"/>
                                <path d="M52.5 0L54.1839 5.18237H59.6329L55.2245 8.38525L56.9084 13.5676L52.5 10.3647L48.0916 13.5676L49.7755 8.38525L45.3671 5.18237H50.8161L52.5 0Z" fill="currentColor"/>
                                <path d="M67.5 0L69.1839 5.18237H74.6329L70.2245 8.38525L71.9084 13.5676L67.5 10.3647L63.0916 13.5676L64.7755 8.38525L60.3671 5.18237H65.8161L67.5 0Z" fill="currentColor"/>
                                </svg>
                            
                            
                        </h3>
                        
                        
                        <p class="cc-m-0 cc-leading-tight"><a href="/pages/reviews" title="Reviews">Trusted by UK buyers since 1978</a></p>
                        
                    </div>
                    
                </div>
            
            </div>
            
            
        </div>
    </div>
</div>


<style data-shopify>
/* ============ LINKED BLOCKS ============ */
/* USP items with link set become clickable cards */
#shopify-section-cc-text-icon a.cc__texticon_columnitems--linked {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    cursor: pointer;
}

#shopify-section-cc-text-icon a.cc__texticon_columnitems--linked:hover {
    transform: translateY(-1px);
}

#shopify-section-cc-text-icon a.cc__texticon_columnitems--linked:hover h3 {
    color: #F26522 !important;
}

#shopify-section-cc-text-icon a.cc__texticon_columnitems--linked:hover .cc__texticon_svgicon {
    color: #F26522;
}

/* ============ BASE ============ */

#shopify-section-cc-text-icon{
    background-color: #759c98;
}

.cc__texticon_columncontainer{
    justify-content: space-between;
}

#shopify-section-cc-text-icon .cc__texticon_columncontainer::-webkit-scrollbar {
    display: none;
}

.container-fluid.cc-py-\[15px\] {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 28px;
    padding-right: 28px;
}

.container-fluid.cc-py-0{
    padding-top: 0px;
    padding-bottom: 0px;
}

.cc__texticon_columncontainer.cc-overflow-x-auto.cc-flex.cc-items-center.cc-gap-\[15px\]{
    gap: 5px;
}

p.cc-m-0.cc-leading-tight strong {
    font-size: inherit;
    font-weight: 600;
}

/* ============ TYPOGRAPHY (with enforced minimums) ============ */
/* max() ensures readable size even if saved value is lower */

#shopify-section-cc-text-icon .cc__texticon_columnitems h3,
#shopify-section-cc-text-icon .cc__texticon_columnitems h3 a,
#shopify-section-cc-text-icon .cc__texticon_columnitems h3 strong{
    color: #ffffff;
    font-size: max(12px, 13px);
    line-height: 1.25;
    letter-spacing: 0.3px;
}

#shopify-section-cc-text-icon .cc__texticon_columnitems p,
#shopify-section-cc-text-icon .cc__texticon_columnitems p a{
    color: #ffffff;
    font-size: max(12px, 11px);
    line-height: 1.35;
}

/* ============ ACCENT HIGHLIGHT (per block opt-in) ============ */
/* Applies accent colour to stars only when "Highlight this item" is toggled on a block */

#shopify-section-cc-text-icon .cc__texticon_columnitems--accent h3 svg path{
    fill: #f26522 !important;
}

/* ============ MOBILE ============ */

@media screen and (max-width: 1024px){
    #shopify-section-cc-text-icon .container-fluid{
        padding-right: 0;
    }
}

/* ============ TABLET & UP ============ */

@media screen and (min-width: 769px){
    #shopify-section-cc-text-icon .cc__texticon_columnitems h3,
    #shopify-section-cc-text-icon .cc__texticon_columnitems h3 a{
        font-size: max(12px, 14px);
    }

    #shopify-section-cc-text-icon .cc__texticon_columnitems p,
    #shopify-section-cc-text-icon .cc__texticon_columnitems p a{
        font-size: max(12px, 12px);
    }
}

/* ============ DESKTOP ============ */

@media screen and (min-width: 1024px){
    /* Tighter header — reclaim vertical space on product pages */
    #shopify-section-cc-text-icon .container-fluid.cc-py-\[15px\]{
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* Even distribution across full width */
    #shopify-section-cc-text-icon .cc__texticon_columncontainer.cc-overflow-x-auto{
        gap: 16px !important;
        justify-content: space-between !important;
    }

    /* Each item flexes to equal share of row, never overflows */
    .cc__texticon_columnitems{
        position: relative;
        flex: 1 1 0 !important;
        min-width: 0 !important;
        max-width: none !important;
        width: auto !important;
    }

    
    /* Divider line between items (not after last) */
    #shopify-section-cc-text-icon .cc__texticon_columnitems:not(:last-child)::after{
        content: '';
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        height: 38px;
        width: 1px;
        background: #ffffff;
        opacity: 0.2;
    }
    
}

/* ============================================================ */
/* OPTION 2 PALETTE — forced overrides                           */
/* Light grey background, charcoal text, teal icons.             */
/* Overrides any saved theme editor values with !important.      */
/* To customize: remove the !important declarations below.       */
/* ============================================================ */

/* Background: light grey (brand palette) */
#shopify-section-cc-text-icon {
    background-color: #E9E9E9 !important;
}

/* Headings: charcoal, force bold weight on h3 AND every descendant.      */
/* Universal descendant selector prevents stray inline styles from        */
/* rich-text fields (pasted Word/Docs content, bold-off toggles) from     */
/* overriding the bold weight. Every heading renders identically.         */
#shopify-section-cc-text-icon .cc__texticon_columnitems h3,
#shopify-section-cc-text-icon .cc__texticon_columnitems h3 *:not(svg):not(path):not(polygon):not(polyline):not(circle):not(line) {
    color: #253238 !important;
    font-weight: 700 !important;
    font-style: normal !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    letter-spacing: 0.3px !important;
    font-family: inherit !important;
}

/* Sub-text: charcoal at 72% for hierarchy */
#shopify-section-cc-text-icon .cc__texticon_columnitems p,
#shopify-section-cc-text-icon .cc__texticon_columnitems p a {
    color: #253238 !important;
    opacity: 0.72;
    font-weight: 400 !important;
}

/* Star ratings next to heading: always orange accent */
#shopify-section-cc-text-icon .cc__texticon_columnitems h3 svg path {
    fill: #F26522 !important;
}

/* Preset SVG icons: teal with charcoal fallback */
#shopify-section-cc-text-icon .cc__texticon_svgicon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #739C98;
}

#shopify-section-cc-text-icon .cc__texticon_svgicon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#shopify-section-cc-text-icon .cc__texticon_svgicon svg.cc__texticon_svgicon--filled {
    stroke: none;
    fill: currentColor;
}

/* Custom PNG icons: bumped to 36px (upload 72x72 PNGs for crisp retina) */
#shopify-section-cc-text-icon .cc__texticon_columnitems > div > img {
    width: 36px !important;
    height: 36px !important;
    object-fit: contain;
}

/* Dividers: thicker (1.5px), 20% opacity charcoal */
@media screen and (min-width: 1024px) {
    #shopify-section-cc-text-icon .cc__texticon_columnitems:not(:last-child)::after {
        width: 1.5px !important;
        background: #253238 !important;
        opacity: 0.20 !important;
        height: 40px !important;
    }
}
</style>

<script>
/* JS - none needed */
</script>


</div><div id="shopify-section-trustpilot-bar" class="shopify-section"></div><div id="shopify-section-swatch-colours" class="shopify-section"><style>

    .product-colours {
        display: flex;
    }
        .btn-colour-swatch.maroon {
            background-color: #800000;
        }
        .btn-colour-swatch.maroon:after {
            display: none;
        }
        .btn-colour-swatch.brass {
            background-color: #b5a642;
        }
        .btn-colour-swatch.brass:after {
            display: none;
        }
        .btn-colour-swatch.green {
            background-color: #2d8610;
        }
        .btn-colour-swatch.green:after {
            display: none;
        }
        .btn-colour-swatch.black {
            background-color: #424242;
        }
        .btn-colour-swatch.black:after {
            display: none;
        }
        .btn-colour-swatch.white {
            background-color: #ffffff;
        }
        .btn-colour-swatch.white:after {
            display: none;
        }
        .btn-colour-swatch.wood {
            background-color: #c69543;
        }
        .btn-colour-swatch.wood:after {
            display: none;
        }
        .btn-colour-swatch.silver {
            background-color: #a1a1a1;
        }
        .btn-colour-swatch.silver:after {
            display: none;
        }
        .btn-colour-swatch.grey {
            background-color: #dfdfdf;
        }
        .btn-colour-swatch.grey:after {
            display: none;
        }
        .btn-colour-swatch.brown {
            background-color: #765757;
        }
        .btn-colour-swatch.brown:after {
            display: none;
        }
        .btn-colour-swatch.beige {
            background-color: #eae6cd;
        }
        .btn-colour-swatch.beige:after {
            display: none;
        }
        .btn-colour-swatch.pink {
            background-color: #eacdcd;
        }
        .btn-colour-swatch.pink:after {
            display: none;
        }
        .btn-colour-swatch.yellow {
            background-color: #e7ec3b;
        }
        .btn-colour-swatch.yellow:after {
            display: none;
        }
        .btn-colour-swatch.red {
            background-color: #f50c0c;
        }
        .btn-colour-swatch.red:after {
            display: none;
        }
        .btn-colour-swatch.blue {
            background-color: #2348e1;
        }
        .btn-colour-swatch.blue:after {
            display: none;
        }
        .btn-colour-swatch.assorted {
            background-color: #dad360;
        }
        .btn-colour-swatch.assorted:after {
            display: none;
        }
        .btn-colour-swatch.gold {
            background-color: #f4c577;
        }
        .btn-colour-swatch.gold:after {
            display: none;
        }
        .btn-colour-swatch.chrome {
            background-color: #dbe2e9;
        }
        .btn-colour-swatch.chrome:after {
            display: none;
        }
        .btn-colour-swatch.natural {
            background-color: #c69543;
        }
        .btn-colour-swatch.natural:after {
            display: none;
        }
        .btn-colour-swatch.wooden {
            background-color: #baa48a;
        }
        .btn-colour-swatch.wooden:after {
            display: none;
        }.btn-colour-swatch.current {
        border: 2px solid white;
        box-shadow: 0 0 0 1px black, 0 0 0 1px white;
    }

</style>


</div><main id="MainContent" role="main" tabindex="-1">
      <div id="shopify-section-template--29364629078403__knowledge-hub" class="shopify-section">

<style>
.kh * { box-sizing: border-box; }
.kh a { text-decoration: none; }
.kh img { display: block; }
.kh {
  --or: #F26522; --or-dk: #c94e10; --dk: #253238; --dk2: #1a262b;
  --tl: #739C98; --mid: #677178; --bd: #dde5e4; --soft: #F4F5F5; --wh: #ffffff;
}
.kh-hero { background: var(--dk2); padding: 88px 24px 80px; position: relative; overflow: hidden; }
.kh-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(242,101,34,0.07) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.kh-hero::after { content: ''; position: absolute; top: -140px; right: -140px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(242,101,34,0.14) 0%, transparent 68%); pointer-events: none; }
.kh-hero__inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
.kh-hero__eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: 'Rubik', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--or); margin-bottom: 24px; }
.kh-hero__eyebrow::before, .kh-hero__eyebrow::after { content: ''; width: 28px; height: 2px; background: var(--or); flex-shrink: 0; }
.kh-hero__h1 { font-family: 'Rubik', sans-serif; font-size: clamp(38px, 5.5vw, 68px); font-weight: 900; color: var(--wh); line-height: 1.0; letter-spacing: -0.035em; text-transform: uppercase; margin: 0 auto 24px; max-width: 900px; }
.kh-hero__h1 span { color: var(--or); }
.kh-hero__sub { font-family: 'Poppins', sans-serif; font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 580px; margin: 0 auto 40px; }
.kh-hero__pills { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.kh-hero__pill { display: inline-flex; align-items: center; font-family: 'Rubik', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 8px 18px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.55); transition: all 0.15s; }
.kh-hero__pill:hover { border-color: var(--or); color: var(--or); }
.kh-stats { background: var(--or); }
.kh-stats__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); }
.kh-stat { padding: 24px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
.kh-stat:last-child { border-right: none; }
.kh-stat__num { display: block; font-family: 'Rubik', sans-serif; font-weight: 900; font-size: 30px; color: var(--wh); line-height: 1; letter-spacing: -0.025em; }
.kh-stat__label { display: block; font-family: 'Poppins', sans-serif; font-size: 12px; color: rgba(255,255,255,0.82); margin-top: 5px; line-height: 1.3; }
.kh-intro { background: var(--soft); padding: 64px 24px 0; }
.kh-intro__inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.kh-intro__tag { font-family: 'Rubik', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--or); margin-bottom: 10px; }
.kh-intro__h2 { font-family: 'Rubik', sans-serif; font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--dk); text-transform: uppercase; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 14px; }
.kh-intro__sub { font-family: 'Poppins', sans-serif; font-size: 15px; color: var(--mid); line-height: 1.7; max-width: 600px; margin: 0 auto; }
.kh-sections { background: var(--soft); padding: 48px 24px 72px; }
.kh-sections__inner { max-width: 1200px; margin: 0 auto; }
.kh-sec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.kh-sec { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--bd); background: var(--wh); transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s; }
.kh-sec:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(37,50,56,0.12); border-color: transparent; }
.kh-sec__img { position: relative; height: 240px; overflow: hidden; flex-shrink: 0; }
.kh-sec__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.kh-sec:hover .kh-sec__img img { transform: scale(1.04); }
.kh-sec__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,38,43,0.88) 0%, rgba(26,38,43,0.2) 60%, rgba(26,38,43,0.0) 100%); }
.kh-sec__img-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; z-index: 2; }
.kh-sec__img-title { font-family: 'Rubik', sans-serif; font-weight: 900; font-size: clamp(28px, 3vw, 40px); color: var(--wh); text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.95; display: block; margin-bottom: 6px; }
.kh-sec__img-count { font-family: 'Poppins', sans-serif; font-size: 12px; color: rgba(255,255,255,0.6); }
.kh-sec__stripe { height: 3px; flex-shrink: 0; }
.kh-sec--cs .kh-sec__stripe { background: var(--or); }
.kh-sec--bg .kh-sec__stripe { background: var(--tl); }
.kh-sec--sh .kh-sec__stripe { background: var(--dk); }
.kh-sec--hi .kh-sec__stripe { background: #e8a825; }
.kh-sec__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.kh-sec__desc { font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--mid); line-height: 1.7; flex: 1; }
.kh-sec__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.kh-sec__tag { font-family: 'Rubik', sans-serif; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; background: var(--soft); color: var(--mid); border: 1px solid var(--bd); }
.kh-sec__cta { display: inline-flex; align-items: center; gap: 6px; font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.04em; padding: 12px 22px; transition: all 0.15s; width: fit-content; margin-top: 4px; }
.kh-sec__cta::after { content: '→'; }
.kh-sec--cs .kh-sec__cta { background: var(--or); color: white; }
.kh-sec--cs .kh-sec__cta:hover { background: var(--or-dk); color: white; }
.kh-sec--bg .kh-sec__cta { background: var(--tl); color: white; }
.kh-sec--bg .kh-sec__cta:hover { background: #5a8480; color: white; }
.kh-sec--sh .kh-sec__cta { background: var(--dk); color: white; }
.kh-sec--sh .kh-sec__cta:hover { background: var(--dk2); color: white; }
.kh-sec--hi .kh-sec__cta { background: #e8a825; color: white; }
.kh-sec--hi .kh-sec__cta:hover { background: #c48a10; color: white; }
.kh-resources { background: var(--dk); padding: 72px 24px; position: relative; overflow: hidden; }
.kh-resources::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.kh-resources__inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.kh-resources__head { text-align: center; margin-bottom: 40px; }
.kh-resources__tag { font-family: 'Rubik', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tl); margin-bottom: 10px; }
.kh-resources__h2 { font-family: 'Rubik', sans-serif; font-size: clamp(22px, 3vw, 32px); font-weight: 900; color: var(--wh); text-transform: uppercase; letter-spacing: -0.025em; margin: 0 0 12px; }
.kh-resources__sub { font-family: 'Poppins', sans-serif; font-size: 14px; color: rgba(255,255,255,0.45); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.kh-res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.kh-res { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; transition: background 0.2s, border-color 0.2s; }
.kh-res:hover { background: rgba(255,255,255,0.07); border-color: rgba(242,101,34,0.3); }
.kh-res__icon { width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-bottom: 4px; }
.kh-res__icon--or { background: rgba(242,101,34,0.15); }
.kh-res__icon--tl { background: rgba(115,156,152,0.15); }
.kh-res__icon--wh { background: rgba(255,255,255,0.08); }
.kh-res__title { font-family: 'Rubik', sans-serif; font-weight: 800; font-size: 15px; color: var(--wh); line-height: 1.25; }
.kh-res__desc { font-family: 'Poppins', sans-serif; font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.65; flex: 1; }
.kh-res__link { display: inline-flex; align-items: center; gap: 5px; font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 12px; color: var(--or); margin-top: 6px; transition: gap 0.15s; }
.kh-res__link::after { content: '→'; }
.kh-res:hover .kh-res__link { gap: 8px; }
.kh-contact { background: var(--or); padding: 56px 24px; }
.kh-contact__inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.kh-contact__h2 { font-family: 'Rubik', sans-serif; font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: var(--wh); text-transform: uppercase; letter-spacing: -0.025em; margin: 0 0 6px; line-height: 1.05; }
.kh-contact__sub { font-family: 'Poppins', sans-serif; font-size: 14px; color: rgba(255,255,255,0.75); margin: 0; }
.kh-contact__btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.kh-contact__btn { display: inline-flex; align-items: center; font-family: 'Rubik', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 26px; transition: all 0.15s; }
.kh-contact__btn--dark { background: var(--dk); color: white; }
.kh-contact__btn--dark:hover { background: var(--dk2); color: white; }
.kh-contact__btn--ghost { border: 2px solid rgba(255,255,255,0.4); color: white; }
.kh-contact__btn--ghost:hover { border-color: white; }
@media (max-width: 1024px) {
  .kh-stats__inner { grid-template-columns: repeat(2, 1fr); }
  .kh-sec-grid { grid-template-columns: 1fr; }
  .kh-res-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .kh-hero { padding: 56px 20px 48px; }
  .kh-res-grid { grid-template-columns: 1fr; }
  .kh-contact__inner { flex-direction: column; align-items: flex-start; }
}
</style>

<div class="kh">
  <section class="kh-hero">
    <div class="kh-hero__inner">
      <p class="kh-hero__eyebrow">Displaysense Knowledge Hub</p>
      <h1 class="kh-hero__h1">Expert Advice.<br><span>Proven Ideas.</span></h1>
      <p class="kh-hero__sub">Everything you need to choose, specify and get the most from your display — buying guides, real-world case studies, sector advice and home inspiration, all in one place.</p>
      <div class="kh-hero__pills">
        <a href="/blogs/case-studies" class="kh-hero__pill">Case Studies</a>
        <a href="/blogs/buying-guides" class="kh-hero__pill">Buying Guides</a>
        <a href="/blogs/sector-hub" class="kh-hero__pill">Sector Hub</a>
        <a href="/blogs/home-inspiration" class="kh-hero__pill">Home Inspiration</a>
      </div>
    </div>
  </section>

  <div class="kh-stats">
    <div class="kh-stats__inner">
      <div class="kh-stat"><span class="kh-stat__num">40+</span><span class="kh-stat__label">Years of display expertise</span></div>
      <div class="kh-stat"><span class="kh-stat__num">8,000+</span><span class="kh-stat__label">Verified customer reviews</span></div>
      <div class="kh-stat"><span class="kh-stat__num">100+</span><span class="kh-stat__label">Articles published</span></div>
      <div class="kh-stat"><span class="kh-stat__num">Free</span><span class="kh-stat__label">Expert advice, no obligation</span></div>
    </div>
  </div>

  <div class="kh-intro">
    <div class="kh-intro__inner">
      <p class="kh-intro__tag">Written by our experts</p>
      <h2 class="kh-intro__h2">Four Ways We Can Help</h2>
      <p class="kh-intro__sub">Whether you're specifying for a fit-out, refreshing a shopfloor or looking for display inspiration at home — there's a section here built for you.</p>
    </div>
  </div>

  <div class="kh-sections">
    <div class="kh-sections__inner">
      <div class="kh-sec-grid">

        <article class="kh-sec kh-sec--cs">
          <div class="kh-sec__img">
            <img src="https://cdn.shopify.com/s/files/1/0721/1496/2725/files/pet-expo-display-stand-dog-product-booth-event.jpg?v=1776767944" alt="Case studies" loading="lazy">
            <div class="kh-sec__overlay"></div>
            <div class="kh-sec__img-label">
              <span class="kh-sec__img-title">Case<br>Studies</span>
              <span class="kh-sec__img-count">Real results across 5 sectors</span>
            </div>
          </div>
          <div class="kh-sec__stripe"></div>
          <div class="kh-sec__body">
            <p class="kh-sec__desc">Every case study documents a real business, a real display challenge and a measurable outcome. See how UK businesses have transformed their spaces — and their numbers — with Displaysense.</p>
            <div class="kh-sec__tags">
              <span class="kh-sec__tag">Heritage & Visitor</span>
              <span class="kh-sec__tag">Retail</span>
              <span class="kh-sec__tag">Jewellery</span>
              <span class="kh-sec__tag">Education</span>
            </div>
            <a href="/blogs/case-studies" class="kh-sec__cta">Read Case Studies</a>
          </div>
        </article>

        <article class="kh-sec kh-sec--bg">
          <div class="kh-sec__img">
            <img src="https://cdn.shopify.com/s/files/1/0721/1496/2725/files/a-board-pavement-sign-cafe-advertising-street-display.jpg?v=1776767990" alt="Buying guides" loading="lazy">
            <div class="kh-sec__overlay"></div>
            <div class="kh-sec__img-label">
              <span class="kh-sec__img-title">Buying<br>Guides</span>
              <span class="kh-sec__img-count">Expert product comparisons</span>
            </div>
          </div>
          <div class="kh-sec__stripe"></div>
          <div class="kh-sec__body">
            <p class="kh-sec__desc">Not sure which product is right for your space? Our buying guides compare sizes, materials, finishes and use cases — so you can order with confidence and get it right first time.</p>
            <div class="kh-sec__tags">
              <span class="kh-sec__tag">Display Cabinets</span>
              <span class="kh-sec__tag">Clothes Rails</span>
              <span class="kh-sec__tag">Pavement Signs</span>
            </div>
            <a href="/blogs/buying-guides" class="kh-sec__cta">Explore Guides</a>
          </div>
        </article>

        <article class="kh-sec kh-sec--sh">
          <div class="kh-sec__img">
            <img src="https://cdn.shopify.com/s/files/1/0721/1496/2725/files/trade-show-exhibition-hall-retail-booths-crowd-overview.jpg?v=1776767910" alt="Sector hub" loading="lazy">
            <div class="kh-sec__overlay"></div>
            <div class="kh-sec__img-label">
              <span class="kh-sec__img-title">Sector<br>Hub</span>
              <span class="kh-sec__img-count">Tailored advice by industry</span>
            </div>
          </div>
          <div class="kh-sec__stripe"></div>
          <div class="kh-sec__body">
            <p class="kh-sec__desc">Display needs vary hugely by sector. Whether you're running a hospitality venue, a school or a government office, the Sector Hub points you to products and advice built for your environment.</p>
            <div class="kh-sec__tags">
              <span class="kh-sec__tag">Hospitality</span>
              <span class="kh-sec__tag">Education</span>
              <span class="kh-sec__tag">Healthcare</span>
            </div>
            <a href="/blogs/sector-hub" class="kh-sec__cta">Get Sector Advice</a>
          </div>
        </article>

        <article class="kh-sec kh-sec--hi">
          <div class="kh-sec__img">
            <img src="https://cdn.shopify.com/s/files/1/0721/1496/2725/files/clothing-rail-garment-display-minimal-retail-background.jpg?v=1776767897" alt="Home inspiration" loading="lazy">
            <div class="kh-sec__overlay"></div>
            <div class="kh-sec__img-label">
              <span class="kh-sec__img-title">Home<br>Inspiration</span>
              <span class="kh-sec__img-count">Storage &amp; styling ideas</span>
            </div>
          </div>
          <div class="kh-sec__stripe"></div>
          <div class="kh-sec__body">
            <p class="kh-sec__desc">From bedroom clothes rails to nursery storage — practical, stylish ideas for making more of your home. Displaysense quality, home-friendly prices.</p>
            <div class="kh-sec__tags">
              <span class="kh-sec__tag">Bedroom Storage</span>
              <span class="kh-sec__tag">Decluttering</span>
              <span class="kh-sec__tag">Nursery</span>
            </div>
            <a href="/blogs/home-inspiration" class="kh-sec__cta">Get Inspired</a>
          </div>
        </article>

      </div>
    </div>
  </div>

  <section class="kh-resources">
    <div class="kh-resources__inner">
      <div class="kh-resources__head">
        <p class="kh-resources__tag">Free Resources</p>
        <h2 class="kh-resources__h2">Expert Guides, Videos &amp; FAQs</h2>
        <p class="kh-resources__sub">We're here to help every step of the way — from assembly to after-sales.</p>
      </div>
      <div class="kh-res-grid">
        <a href="/pages/video-hub" class="kh-res">
          <div class="kh-res__icon kh-res__icon--or"><svg width="22" height="22" viewBox="0 0 24 24" fill="#F26522"><path d="M8 5v14l11-7z"/></svg></div>
          <div class="kh-res__title">Video Guides</div>
          <p class="kh-res__desc">See products in action before you buy — installation, sizing and comparisons.</p>
          <span class="kh-res__link">Watch now</span>
        </a>
        <a href="/pages/assembly-guides" class="kh-res">
          <div class="kh-res__icon kh-res__icon--tl"><svg width="22" height="22" viewBox="0 0 24 24" fill="#739C98"><path d="M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm-1 7V3.5L18.5 9H13z"/></svg></div>
          <div class="kh-res__title">Assembly Guides</div>
          <p class="kh-res__desc">Downloadable PDF instructions for every product range. Clear and illustrated.</p>
          <span class="kh-res__link">Download PDFs</span>
        </a>
        <a href="/pages/product-faqs" class="kh-res">
          <div class="kh-res__icon kh-res__icon--wh"><svg width="22" height="22" viewBox="0 0 24 24" fill="rgba(255,255,255,0.6)"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"/></svg></div>
          <div class="kh-res__title">Product FAQs</div>
          <p class="kh-res__desc">Dimensions, materials, compliance and lead times — answered in seconds.</p>
          <span class="kh-res__link">Find answers</span>
        </a>
        <a href="/pages/contact-us" class="kh-res">
          <div class="kh-res__icon kh-res__icon--or"><svg width="22" height="22" viewBox="0 0 24 24" fill="#F26522"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z"/></svg></div>
          <div class="kh-res__title">Talk to Our Team</div>
          <p class="kh-res__desc">Free advice from display specialists who've helped thousands of UK businesses.</p>
          <span class="kh-res__link">Get in touch</span>
        </a>
        <a href="/pages/planning-a-project" class="kh-res">
          <div class="kh-res__icon kh-res__icon--tl"><svg width="22" height="22" viewBox="0 0 24 24" fill="#739C98"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 3c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6zm7 13H5v-.23c0-.62.28-1.2.76-1.58C7.47 15.82 9.64 15 12 15s4.53.82 6.24 2.19c.48.38.76.97.76 1.58V19z"/></svg></div>
          <div class="kh-res__title">Project Planning</div>
          <p class="kh-res__desc">Large fit-out or multi-site? Our team handles sourcing, quotes and logistics.</p>
          <span class="kh-res__link">Start planning</span>
        </a>
        <a href="/pages/sourcing-service" class="kh-res">
          <div class="kh-res__icon kh-res__icon--wh"><svg width="22" height="22" viewBox="0 0 24 24" fill="rgba(255,255,255,0.6)"><path d="M19.43 12.98c.04-.32.07-.64.07-.98s-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.12-.22-.39-.3-.61-.22l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.23-.09-.49 0-.61.22l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.12.22.39.3.61.22l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.58 1.69-.98l2.49 1c.23.09.49 0 .61-.22l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z"/></svg></div>
          <div class="kh-res__title">Bespoke &amp; Custom Orders</div>
          <p class="kh-res__desc">Need something not in our catalogue? We can source, modify or manufacture.</p>
          <span class="kh-res__link">Learn more</span>
        </a>
      </div>
    </div>
  </section>

  <div class="kh-contact">
    <div class="kh-contact__inner">
      <div>
        <h2 class="kh-contact__h2">Still Need Help Choosing?</h2>
        <p class="kh-contact__sub">Our team has been specifying display solutions for UK businesses since 1978. Free advice, no obligation.</p>
      </div>
      <div class="kh-contact__btns">
        <a href="/pages/contact-us" class="kh-contact__btn kh-contact__btn--dark">Contact Our Team</a>
        <a href="tel:01279460460" class="kh-contact__btn kh-contact__btn--ghost">01279 460 460</a>
      </div>
    </div>
  </div>
</div>


</div>
    </main><div id="shopify-section-cc-footer" class="shopify-section">

<style>
  /* ============================================================ */
  /* DISPLAYSENSE FOOTER — brand-consistent, compact               */
  /* ============================================================ */

  #shopify-section-cc-footer .ds-footer {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
  }

  /* ============ MAIN FOOTER ============ */

  #shopify-section-cc-footer .ds-footer-main {
    background: #253238 !important;
    padding: 40px 0 32px;
  }

  #shopify-section-cc-footer .ds-footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
  }

  /* Brand column */
  #shopify-section-cc-footer .ds-footer-brand {
    flex: 0 1 240px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  #shopify-section-cc-footer .ds-footer-logo {
    max-width: 170px;
    height: auto;
  }

  #shopify-section-cc-footer .ds-footer-blurb {
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
  }

  /* Contact in brand column */
  #shopify-section-cc-footer .ds-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
  }

  #shopify-section-cc-footer .ds-footer-contact-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12.5px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  #shopify-section-cc-footer .ds-footer-contact-item svg {
    flex-shrink: 0;
    color: #739C98;
    margin-top: 2px;
  }

  #shopify-section-cc-footer a.ds-footer-contact-item:hover {
    color: #F26522;
  }

  #shopify-section-cc-footer a.ds-footer-contact-item:hover svg {
    color: #F26522;
  }

  /* Phone label prefix — subtle eyebrow before the number */
  #shopify-section-cc-footer .ds-phone-label-prefix {
    font-family: 'Rubik', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.55);
    margin-right: 2px;
  }

  /* Menu columns wrapper */
  #shopify-section-cc-footer .ds-footer-menus {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 28px;
  }

  #shopify-section-cc-footer .ds-footer-col {
    min-width: 0;
  }

  /* Column headings */
  #shopify-section-cc-footer .ds-footer-col h3,
  #shopify-section-cc-footer .ds-footer-newsletter h3 {
    font-family: 'Rubik', sans-serif !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    color: #FFFFFF !important;
    margin: 0 0 14px 0 !important;
    padding-bottom: 10px !important;
    position: relative;
    line-height: 1.2 !important;
  }

  #shopify-section-cc-footer .ds-footer-col h3::after,
  #shopify-section-cc-footer .ds-footer-newsletter h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: #739C98;
  }

  /* Link list */
  #shopify-section-cc-footer .ds-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  #shopify-section-cc-footer .ds-footer-links a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
  }

  #shopify-section-cc-footer .ds-footer-links a:hover {
    color: #F26522 !important;
    transform: translateX(2px);
  }

  /* ============ NEWSLETTER COLUMN ============ */

  #shopify-section-cc-footer .ds-footer-newsletter {
    flex: 0 1 280px;
  }

  #shopify-section-cc-footer .ds-footer-newsletter p {
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 14px 0;
  }

  #shopify-section-cc-footer .ds-newsletter-input {
    position: relative;
    display: flex;
    width: 100%;
  }

  #shopify-section-cc-footer .ds-newsletter-input input[type="email"] {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 11px 14px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px 0 0 4px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    min-width: 0;
  }

  #shopify-section-cc-footer .ds-newsletter-input input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.45);
  }

  #shopify-section-cc-footer .ds-newsletter-input input[type="email"]:focus {
    border-color: #F26522;
    background: rgba(255, 255, 255, 0.12);
  }

  #shopify-section-cc-footer .ds-newsletter-input button {
    background: #F26522;
    border: none;
    color: white;
    padding: 0 16px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background 0.2s ease;
    white-space: nowrap;
  }

  #shopify-section-cc-footer .ds-newsletter-input button:hover {
    background: #d4561a;
  }

  #shopify-section-cc-footer .ds-newsletter-privacy {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.5);
    margin: 10px 0 0 0;
    line-height: 1.4;
  }

  #shopify-section-cc-footer .ds-newsletter-success {
    background: rgba(115, 156, 152, 0.15);
    border: 1px solid rgba(115, 156, 152, 0.3);
    color: #739C98;
    padding: 10px 12px;
    font-size: 12px;
    border-radius: 4px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* ============ TRUST BAR ============ */

  #shopify-section-cc-footer .ds-footer-trust {
    background: #1F2B30 !important;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  #shopify-section-cc-footer .ds-footer-trust-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  /* Reviews badge */
  #shopify-section-cc-footer .ds-footer-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    text-decoration: none;
    transition: transform 0.2s ease;
  }

  #shopify-section-cc-footer .ds-footer-reviews:hover {
    transform: translateY(-1px);
  }

  #shopify-section-cc-footer .ds-review-stars {
    display: inline-flex;
    gap: 2px;
    color: #F26522;
    font-size: 14px;
    line-height: 1;
  }

  #shopify-section-cc-footer .ds-review-text {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
  }

  #shopify-section-cc-footer .ds-review-text strong {
    color: #FFFFFF;
    font-weight: 700;
  }

  /* Trust USPs — between reviews and socials */
  #shopify-section-cc-footer .ds-footer-usps {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
  }

  #shopify-section-cc-footer .ds-footer-usp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  #shopify-section-cc-footer .ds-footer-usp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #739C98;
    flex-shrink: 0;
  }

  #shopify-section-cc-footer .ds-footer-usp-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.3 !important;
  }

  /* Social icons */
  #shopify-section-cc-footer .ds-footer-socials {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  #shopify-section-cc-footer .ds-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  #shopify-section-cc-footer .ds-footer-socials a:hover {
    background: #F26522;
    color: white;
    transform: translateY(-2px);
  }

  #shopify-section-cc-footer .ds-footer-socials svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
  }

  /* ============ COPYRIGHT STRIP ============ */

  #shopify-section-cc-footer .ds-footer-copyright {
    background: #1A2428 !important;
    padding: 14px 0;
  }

  #shopify-section-cc-footer .ds-footer-copyright-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  #shopify-section-cc-footer .ds-copyright-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
  }

  #shopify-section-cc-footer .ds-copyright-text a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  #shopify-section-cc-footer .ds-copyright-text a:hover {
    color: #F26522;
  }

  #shopify-section-cc-footer .ds-footer-legal {
    display: inline-flex;
    align-items: center;
    gap: 20px;
  }

  #shopify-section-cc-footer .ds-footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 11px;
    transition: color 0.2s ease;
    position: relative;
  }

  #shopify-section-cc-footer .ds-footer-legal a:hover {
    color: #F26522;
  }

  #shopify-section-cc-footer .ds-footer-legal a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
  }

  /* ============ RESPONSIVE ============ */

  @media screen and (max-width: 1024px) {
    #shopify-section-cc-footer .ds-footer-main {
      padding: 36px 0 28px;
    }

    #shopify-section-cc-footer .ds-footer-grid {
      gap: 28px;
    }

    #shopify-section-cc-footer .ds-footer-brand,
    #shopify-section-cc-footer .ds-footer-newsletter {
      flex: 1 1 100%;
    }

    #shopify-section-cc-footer .ds-footer-menus {
      flex: 1 1 100%;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
  }

  @media screen and (max-width: 640px) {
    #shopify-section-cc-footer .ds-footer-main {
      padding: 32px 0 24px;
    }

    #shopify-section-cc-footer .ds-footer-menus {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    #shopify-section-cc-footer .ds-footer-trust-grid {
      justify-content: center;
      gap: 18px;
    }

    #shopify-section-cc-footer .ds-footer-usps {
      flex-direction: column;
      gap: 10px;
      align-items: center;
      flex: 1 1 100%;
    }

    #shopify-section-cc-footer .ds-footer-usp-text {
      font-size: 12px !important;
    }

    #shopify-section-cc-footer .ds-footer-copyright-grid {
      justify-content: center;
      text-align: center;
    }

    #shopify-section-cc-footer .ds-footer-legal {
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    #shopify-section-cc-footer .ds-copyright-text {
      text-align: center;
    }
  }
</style>

<footer class="ds-footer">
  
  <div class="ds-footer-main">
    <div class="container-fluid">
      <div class="ds-footer-grid">

        
        <div class="ds-footer-brand">
          
          <img
            class="ds-footer-logo"
            src="https://cdn.shopify.com/s/files/1/0721/1496/2725/files/Logo_2_Colour_2023_new_strapline_White.png?v=1776856219"
            alt="Displaysense"
            loading="lazy"
            width="340"
            height="auto"
          >

          
            <p class="ds-footer-blurb">47 years of display expertise, built for British business. UK designed, UK manufactured.</p>
          

          
            <div class="ds-footer-contact-list">
              
                <a href="tel:01279460460" class="ds-footer-contact-item" aria-label="Call sales on 01279 460 460">
                  <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>
                  <span><strong class="ds-phone-label-prefix">Sales:</strong> 01279 460 460</span>
                </a>
              
              
              
                <span class="ds-footer-contact-item">
                  <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>
                  <span>Bishop's Stortford, Hertfordshire</span>
                </span>
              
            </div>
          
        </div>

        
        
          <div class="ds-footer-menus">
            
              
<div class="ds-footer-col" >
                  
                    <h3>Company</h3>
                  
                  
                    <ul class="ds-footer-links">
                      
                        <li><a href="/pages/about-us">About Us</a></li>
                      
                        <li><a href="/pages/reviews">Our Reviews</a></li>
                      
                        <li><a href="/account/login">My Account</a></li>
                      
                        <li><a href="/pages/contact-us">Contact Us</a></li>
                      
                    </ul>
                  
                </div>
              
            
              
<div class="ds-footer-col" >
                  
                    <h3>shop</h3>
                  
                  
                    <ul class="ds-footer-links">
                      
                        <li><a href="/pages/delivery">Delivery Information</a></li>
                      
                        <li><a href="/pages/payment-methods">Payment Methods</a></li>
                      
                        <li><a href="https://www.displaysense.co.uk/pages/public-sector-credit-accounts">Public Sector Credit Accounts</a></li>
                      
                        <li><a href="/pages/printing-service">Printing Service</a></li>
                      
                        <li><a href="/pages/sourcing-service">Sourcing Service</a></li>
                      
                        <li><a href="/pages/our-sustainability-mission">Our Sustainability Mission</a></li>
                      
                    </ul>
                  
                </div>
              
            
              
<div class="ds-footer-col" >
                  
                    <h3>Useful Links</h3>
                  
                  
                    <ul class="ds-footer-links">
                      
                        <li><a href="/pages/advice-and-inspiration-hub">Advice & Inspiration</a></li>
                      
                        <li><a href="/pages/terms-and-conditions">Terms & Conditions</a></li>
                      
                        <li><a href="/pages/privacy-policy">Privacy Policy</a></li>
                      
                    </ul>
                  
                </div>
              
            
              
<div class="ds-footer-col" >
                  
                    <h3>Videos Page</h3>
                  
                  
                    <ul class="ds-footer-links">
                      
                        <li><a href="/pages/video-hub">Video Guides</a></li>
                      
                    </ul>
                  
                </div>
              
            
          </div>
        

        
        
          <div class="ds-footer-newsletter">
            
              <h3>Newsletter</h3>
            
            
              <p>Sign up today and dive into a world of exclusive updates & offers</p>
            
<form method="post" action="/contact#contact_form" id="contact_form" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="contact[tags]" value="newsletter">
              <label for="NewsletterForm-cc-footer" class="sr-only">Newsletter</label>
              <div class="ds-newsletter-input">
                <input
                  id="NewsletterForm-cc-footer"
                  type="email"
                  name="contact[email]"
                  value=""
                  aria-required="true"
                  autocorrect="off"
                  autocapitalize="off"
                  autocomplete="email"
                  placeholder="Newsletter"
                  required
                >
                <button type="submit" name="commit" aria-label="Subscribe">
                  Subscribe
                </button>
              </div><p class="ds-newsletter-privacy">By subscribing you agree to our <a href="/policies/privacy-policy" style="color: rgba(255,255,255,0.7); text-decoration: underline;">privacy policy</a>. Unsubscribe anytime.</p></form></div>
        

      </div>
    </div>
  </div>

  
  <div class="ds-footer-trust">
    <div class="container-fluid">
      <div class="ds-footer-trust-grid">

        
        
          <a href="/pages/reviews" class="ds-footer-reviews" aria-label="View our reviews">
            <span class="ds-review-stars" aria-hidden="true">
              <svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><polygon points="12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26"/></svg>
              <svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><polygon points="12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26"/></svg>
              <svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><polygon points="12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26"/></svg>
              <svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><polygon points="12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26"/></svg>
              <svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><polygon points="12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26"/></svg>
            </span>
            <span class="ds-review-text"><strong>8,000+</strong> verified reviews</span>
          </a>
        

        
        
          <div class="ds-footer-usps" role="list">
            
              
              
                <div class="ds-footer-usp" role="listitem">
                  <span class="ds-footer-usp-icon" aria-hidden="true">
                    
                        <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><polyline points="9,12 11,14 15,10"/></svg>
                      
                  </span>
                  <span class="ds-footer-usp-text">Secure checkout</span>
                </div>
              
            
              
              
                <div class="ds-footer-usp" role="listitem">
                  <span class="ds-footer-usp-icon" aria-hidden="true">
                    
                        <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="8" cy="8" r="6"/><path d="M18.09 10.37A6 6 0 1 1 10.34 18"/><path d="M7 6h1v4"/><path d="M16.71 13.88l.7.71-2.82 2.82"/></svg>
                      
                  </span>
                  <span class="ds-footer-usp-text">All major payment methods</span>
                </div>
              
            
              
              
                <div class="ds-footer-usp" role="listitem">
                  <span class="ds-footer-usp-icon" aria-hidden="true">
                    
                        <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 18v-6a9 9 0 0 1 18 0v6"/><path d="M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3v5zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3v5z"/></svg>
                      
                  </span>
                  <span class="ds-footer-usp-text">UK-based expert team</span>
                </div>
              
            
          </div>
        

        
        
          <div class="ds-footer-socials">
            
            
            
            
            
            
          </div>
        

      </div>
    </div>
  </div>

  
  <div class="ds-footer-copyright">
    <div class="container-fluid">
      <div class="ds-footer-copyright-grid">
        <p class="ds-copyright-text">
          © 2026 <a href="/" title="">Displaysense</a>. Displaysense Ltd Registered Office : Wickham Hall, New Mead Barn, The Residence, Hadham Rd, Bishop's Stortford CM23 1JG, UK · VAT No. GB 455970710 · Company No. 1389049</p>
        <div class="ds-footer-legal">
          <a href="/policies/terms-of-service">Terms</a>
          <a href="/policies/privacy-policy">Privacy</a>
          <a href="/policies/cookie-policy">Cookies</a>
          <a href="/sitemap.xml">Sitemap</a>
        </div>
      </div>
    </div>
  </div>
</footer>


</div><script>
    window.product = {
        addToCart: `Add to basket`,
        preOrder: `Pre Order`,
        addingToCart: `Adding to basket`,
        addedToCart: `Added to basket`,
        soldOut: `Sold out`,
    };
    window.cartLang = {
        emptyCart: `Your Bag is empty`,
        emptyCartContent: `<p>A great starting point would be to check out our sale!</p>`,
        emptyCartBtnText: `<p>Shop Sale</p>`,
        emptyCartBtnUrl: `/collections/on-sale`,
        deleteConfirm: `Are you sure you want to delete this item?`,
    };
    window.theme = {
        moneyFormat: "£{{amount}}",
    };
    window.stock = {
        inStock: `In Stock`,
        lowStock: `Low Stock`,
        outOfStock: `Out of Stock`,
    };

    let vatToggle = `true`;

    let incVat = `Inc VAT`;
    let exVat = `Exc VAT`;

    let iconAddBag = '<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_2201_13114)"> <path d="M6.25 4.58337C6.25 3.58881 6.64509 2.63498 7.34835 1.93172C8.05161 1.22846 9.00544 0.833374 10 0.833374C10.9946 0.833374 11.9484 1.22846 12.6516 1.93172C13.3549 2.63498 13.75 3.58881 13.75 4.58337" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M4.66675 4.91663H15.3334C16.5761 4.91663 17.5834 5.92399 17.5834 7.16663V12.0833V17C17.5834 18.2426 16.5761 19.25 15.3334 19.25H10.0001H4.66675C3.42411 19.25 2.41675 18.2426 2.41675 17V7.16662C2.41675 5.92398 3.42411 4.91663 4.66675 4.91663Z" stroke="white" stroke-width="1.5"/> <path d="M10 14.5834V9.58337M7.5 12.0834H12.5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_2201_13114"> <rect width="20" height="20" fill="white"/> </clipPath> </defs> </svg>',
    iconMinus = '<svg width="6" height="2" viewBox="0 0 6 2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.893055 1.846V0.824H5.09305V1.846H0.893055Z" fill="currentColor"/></svg>',
    iconPlus = '<svg width="7" height="7" viewBox="0 0 7 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.01667 6.506V0.149999H4.01067V6.506H3.01667ZM0.328672 3.832V2.838H6.67067V3.832H0.328672Z" fill="currentColor"/></svg>';

</script><input class="hidden js-vat-percentage" value="20">
    <input class="js-quantity-max hidden" value="99">
    <input class="js-stock-low hidden" value="4">

    
    <noscript><img alt="" src="https://secure.24-visionaryenterprise.com/784446.png" style="display:none;"></noscript>

    <script src="//www.displaysense.co.uk/cdn/shop/t/81/assets/source.js?v=176036660117887427521780498766" defer></script>
    <script src="//www.displaysense.co.uk/cdn/shop/t/81/assets/swiper-bundle.min.js?v=72960816452439954231780498766" defer></script>
    <script src="//www.displaysense.co.uk/cdn/shop/t/81/assets/cc-custom.js?v=40575992620343170901780498766" defer></script>

    <script src="//www.displaysense.co.uk/cdn/shop/t/81/assets/core.js?v=70192328080323308161780498766" defer="defer"></script>
    <div class="yotpo-widget-instance" data-yotpo-instance-id="1188532" data-yotpo-product-id=""></div>

    <script>
  /* Declare bcSfFilterConfig variable */
  var boostPFSAppConfig = {
    api: {
      filterUrl: 'https://services.mybcapps.com/bc-sf-filter/filter',
      searchUrl: 'https://services.mybcapps.com/bc-sf-filter/search',
      suggestionUrl: 'https://services.mybcapps.com/bc-sf-filter/search/suggest',
      productsUrl: 'https://services.mybcapps.com/bc-sf-filter/search/products',
      analyticsUrl: 'https://lambda.mybcapps.com/e'
    },
    shop: {
      name: 'Displaysense',
      url: 'https://www.displaysense.co.uk',
      domain: '025682-2.myshopify.com',
      currency: 'GBP',
      money_format: "£{{amount}}",
      money_format_with_currency: "£{{amount}} GBP"
    },
    general: {
      file_url: "//www.displaysense.co.uk/cdn/shop/files/?v=21098",
       
      collection_id: 0,
      collection_handle: "",
      collection_product_count: 0,
      
      
      theme_id: 197138645379,
      collection_tags: null,
      current_tags: null,
      default_sort_by: "",
      swatch_extension: "png",
      no_image_url: "//www.displaysense.co.uk/cdn/shop/t/81/assets/boost-pfs-no-image.gif?v=123507794627571815361780498766",
      search_term: "",
      template: "page",currencies: ["GBP"],
      current_currency:"GBP",published_locales: {"en":true},
      current_locale:"en",
      isInitFilter:false,
      addOnVisualMerchandising: null
    },
    
    settings: {"general":{"productAndVariantAvailable":false,"availableAfterFiltering":false,"activeFilterScrollbar":true,"showFilterOptionCount":true,"showSingleOption":false,"showOutOfStockOption":false,"collapseOnPCByDefault":false,"collapseOnMobileByDefault":false,"keepToggleState":true,"showRefineBy":true,"capitalizeFilterOptionValues":true,"paginationType":"default","showLoading":false,"activeScrollToTop":false,"customSortingList":"relevance|best-selling|manual|title-ascending|title-descending|price-ascending|price-descending|created-ascending|created-descending","enableAjaxCart":false,"ajaxCartStyle":"slide","selectOptionInProductItem":true,"filterTreeVerticalStyle":"style-default","filterTreeHorizontalStyle":"style2","filterTreeMobileStyle":"style2","stickyFilterOnDesktop":false,"stickyFilterOnMobile":false,"changeMobileButtonLabel":false,"sortingAvailableFirst":false,"showVariantImageBasedOn":"","addCollectionToProductUrl":false,"showVariantImageBasedOnSelectedFilter":"","urlScheme":2,"isShortenUrlParam":true,"enableCollectionSearch":false,"filterLayout":"vertical","shortenUrlParamList":["pf_v_vendor:vendor","pf_pt_product_type:product_type","pf_p_price:price","pf_m_::custom::clothes-rail-type:clothes-rail-type","pf_t_colour:colour","pf_t_size:size"]},"search":{"enableSuggestion":true,"showSuggestionProductVendor":true,"showSuggestionProductPrice":true,"showSuggestionProductSalePrice":true,"showSuggestionProductSku":true,"showSuggestionProductImage":true,"suggestionBlocks":[{"type":"suggestions","label":"Popular suggestions","status":"active","number":5},{"type":"collections","label":"Collections","status":"active","number":3,"excludedValues":[]},{"type":"products","label":"Products","status":"active","number":6},{"type":"pages","label":"Pages","status":"active","number":3}],"searchPanelBlocks":{"products":{"label":"Products","pageSize":25,"active":true,"displayImage":true},"collections":{"label":"Collections","pageSize":25,"active":false,"displayImage":false,"displayDescription":false,"excludedValues":[]},"pages":{"label":"Blogs & Pages","pageSize":25,"active":false,"displayImage":false,"displayExcerpt":false},"searchEmptyResultMessages":{"active":true,"label":"We are sorry! We couldn't find results for \"{{ terms }}\".{{ breakline }}But don't give up – check the spelling or try less specific search terms."},"searchTips":{"label":"Search tips","active":false,"searchTips":"Please double-check your spelling.{{ breakline }}Use more generic search terms.{{ breakline }}Enter fewer keywords.{{ breakline }}Try searching by product type, brand, model number or product feature."},"searchTermSuggestions":{"label":"Check out some of these popular searches","active":false,"type":null,"searchTermList":[],"backup":null},"mostPopularProducts":{"label":"Trending products","active":false,"type":null,"productList":[],"backup":null}},"searchBoxOnclick":{"productSuggestion":{"label":"Trending products","status":false,"data":[]},"recentSearch":{"label":"Recent searches","status":false,"number":"3"},"searchTermSuggestion":{"label":"Popular searches","status":false,"data":[]}},"suggestionNoResult":{"products":{"label":"Trending products","status":false,"data":[]},"search_terms":{"label":"Check out some of these popular searches","status":false,"data":[]}},"enableFuzzy":true},"backSettings":{"offSensitive":false},"actionlist":{"qvBtnBackgroundColor":"rgba(255||255||255||1)","qvBtnTextColor":"rgba(61||66||70||1)","qvBtnBorderColor":"rgba(255||255||255||1)","qvBtnHoverBackgroundColor":"rgba(61||66||70||1)","qvBtnHoverTextColor":"rgba(255||255||255||1)","qvBtnHoverBorderColor":"rgba(61||66||70||1)","atcBtnBackgroundColor":"rgba(0||0||0||1)","atcBtnTextColor":"rgba(255||255||255||1)","atcBtnBorderColor":"rgba(0||0||0||1)","atcBtnHoverBackgroundColor":"rgba(61||66||70||1)","atcBtnHoverTextColor":"rgba(255||255||255||1)","atcBtnHoverBorderColor":"rgba(61||66||70||1)","alStyle":"bc-al-style4","qvEnable":false,"atcEnable":false},"labelTranslations":{"en":{"refineDesktop":"Filter","refine":"Refine By","refineMobile":"Refine By","refineMobileCollapse":"Hide Filter","clear":"Clear","clearAll":"Clear All","viewMore":"View More","viewLess":"View Less","apply":"Apply","applyAll":"Apply All","close":"Close","back":"Back","showLimit":"Show","collectionAll":"All","under":"Under","above":"Above","ratingStar":"Star","ratingStars":"Stars","ratingUp":"& Up","showResult":"Show result","searchOptions":"Search Options","inCollectionSearch":"Search for products in this collection","loadPreviousPage":"Load Previous Page","listView":"List view","gridView":"Grid view","gridViewColumns":"Grid view {{ count }} Columns","loadMore":"Load more {{ amountProduct }} Products","loadMoreTotal":"{{ from }} - {{ to }} of {{ total }} Products","sortByOptions":{"sorting":"Sort by","relevance":"Relevance","best-selling":"Best selling","manual":"Manual","title-ascending":"Title ascending","title-descending":"Title descending","price-ascending":"Price ascending","price-descending":"Price descending","created-ascending":"Created ascending","created-descending":"Created descending"},"recommendation":{"homepage-862738":"Just dropped","homepage-221756":"Best Sellers","collectionpage-237106":"Just dropped","collectionpage-511387":"Most Popular Products","productpage-788075":"Recently viewed","productpage-376003":"Frequently Bought Together","cartpage-541557":"Still interested in this?","cartpage-468648":"Similar Products"},"search":{"generalTitle":"General Title (when no search term)","resultHeader":"Search results for \"{{ terms }}\"","resultNumber":"Showing {{ count }} results for \"{{ terms }}\"","seeAllProducts":"See all products","resultEmpty":"We are sorry! We couldn't find results for \"{{ terms }}\".{{ breakline }}But don't give up – check the spelling or try less specific search terms.","resultEmptyWithSuggestion":"Sorry, nothing found for \"{{ terms }}\". Check out these items instead?","searchTotalResult":"Showing {{ count }} result","searchTotalResults":"Showing {{ count }} results","searchPanelProduct":"Products","searchPanelCollection":"Collections","searchPanelPage":"Blogs & Pages","searchTipsTitle":"Search tips","searchTipsContent":"Please double-check your spelling.{{ breakline }}Use more generic search terms.{{ breakline }}Enter fewer keywords.{{ breakline }}Try searching by product type, brand, model number or product feature."},"suggestion":{"viewAll":"View all {{ count }} products","didYouMean":"Did you mean: {{ terms }}","searchBoxPlaceholder":"Search","suggestQuery":"Show {{ count }} results for {{ terms }}","instantSearchSuggestionsLabel":"Popular suggestions","instantSearchCollectionsLabel":"Collections","instantSearchProductsLabel":"Products","instantSearchPagesLabel":"Pages","searchBoxOnclickRecentSearchLabel":"Recent searches","searchBoxOnclickSearchTermLabel":"Popular searches","searchBoxOnclickProductsLabel":"Trending products","noSearchResultSearchTermLabel":"Check out some of these popular searches","noSearchResultProductsLabel":"Trending products"},"error":{"noFilterResult":"Sorry, no products matched your selection","noSearchResult":"Sorry, no products matched the keyword","noProducts":"No products found in this collection","noSuggestionResult":"Sorry, nothing found for \"{{ terms }}\".","noSuggestionProducts":"Sorry, nothing found for \"{{ terms }}\"."},"action_list":{"qvBtnLabel":"Quick View","qvAddToCartBtnLabel":"Add To Cart","qvSoldOutLabel":"Sold Out","qvSaleLabel":"Sale","qvViewFullDetails":"View Full Details","qvQuantity":"Quantity","atcAvailableLabel":"Add to Cart","atcSelectOptionsLabel":"Select Options","atcSoldOutLabel":"Sold Out","atcMiniCartSubtotalLabel":"Subtotal","atcMiniCartCheckoutLabel":"Checkout","atcMiniCartShopingCartLabel":"Your Cart","atcMiniCartEmptyCartLabel":"Your Cart Is Currently Empty","atcMiniCartViewCartLabel":"View cart","atcAddingToCartBtnLabel":"Adding","atcAddedToCartBtnLabel":"Added!","atcMiniCartCountItemLabel":"item","atcMiniCartCountItemLabelPlural":"items"},"defaultTheme":{"toolbarViewAs":"View as","toolbarProduct":"Product","toolbarProducts":"Products","productItemSoldOut":"Sold out","productItemSale":"Sale","productItemFrom":"from"},"recentlyViewed":{"recentProductHeading":"Recently Viewed Products"},"mostPopular":{"popularProductsHeading":"Popular Products"}}},"label":{"refineDesktop":"Filter","refine":"Refine By","refineMobile":"Refine By","refineMobileCollapse":"Hide Filter","clear":"Clear","clearAll":"Clear All","viewMore":"View More","viewLess":"View Less","apply":"Apply","applyAll":"Apply All","close":"Close","back":"Back","showLimit":"Show","collectionAll":"All","under":"Under","above":"Above","ratingStar":"Star","ratingStars":"Stars","ratingUp":"& Up","showResult":"Show result","searchOptions":"Search Options","inCollectionSearch":"Search for products in this collection","loadPreviousPage":"Load Previous Page","listView":"List view","gridView":"Grid view","gridViewColumns":"Grid view {{ count }} Columns","loadMore":"Load more {{ amountProduct }} Products","loadMoreTotal":"{{ from }} - {{ to }} of {{ total }} Products","sortByOptions":{"sorting":"Sort by","relevance":"Relevance","best-selling":"Best selling","manual":"Manual","title-ascending":"Title ascending","title-descending":"Title descending","price-ascending":"Price ascending","price-descending":"Price descending","created-ascending":"Created ascending","created-descending":"Created descending"},"recommendation":{"homepage-862738":"Just dropped","homepage-221756":"Best Sellers","collectionpage-237106":"Just dropped","collectionpage-511387":"Most Popular Products","productpage-788075":"Recently viewed","productpage-376003":"Frequently Bought Together","cartpage-541557":"Still interested in this?","cartpage-468648":"Similar Products"},"search":{"generalTitle":"General Title (when no search term)","resultHeader":"Search results for \"{{ terms }}\"","resultNumber":"Showing {{ count }} results for \"{{ terms }}\"","seeAllProducts":"See all products","resultEmpty":"We are sorry! We couldn't find results for \"{{ terms }}\".{{ breakline }}But don't give up – check the spelling or try less specific search terms.","resultEmptyWithSuggestion":"Sorry, nothing found for \"{{ terms }}\". Check out these items instead?","searchTotalResult":"Showing {{ count }} result","searchTotalResults":"Showing {{ count }} results","searchPanelProduct":"Products","searchPanelCollection":"Collections","searchPanelPage":"Blogs & Pages","searchTipsTitle":"Search tips","searchTipsContent":"Please double-check your spelling.{{ breakline }}Use more generic search terms.{{ breakline }}Enter fewer keywords.{{ breakline }}Try searching by product type, brand, model number or product feature."},"suggestion":{"viewAll":"View all {{ count }} products","didYouMean":"Did you mean: {{ terms }}","searchBoxPlaceholder":"Search","suggestQuery":"Show {{ count }} results for {{ terms }}","instantSearchSuggestionsLabel":"Popular suggestions","instantSearchCollectionsLabel":"Collections","instantSearchProductsLabel":"Products","instantSearchPagesLabel":"Pages","searchBoxOnclickRecentSearchLabel":"Recent searches","searchBoxOnclickSearchTermLabel":"Popular searches","searchBoxOnclickProductsLabel":"Trending products","noSearchResultSearchTermLabel":"Check out some of these popular searches","noSearchResultProductsLabel":"Trending products"},"error":{"noFilterResult":"Sorry, no products matched your selection","noSearchResult":"Sorry, no products matched the keyword","noProducts":"No products found in this collection","noSuggestionResult":"Sorry, nothing found for \"{{ terms }}\".","noSuggestionProducts":"Sorry, nothing found for \"{{ terms }}\"."},"action_list":{"qvBtnLabel":"Quick View","qvAddToCartBtnLabel":"Add To Cart","qvSoldOutLabel":"Sold Out","qvSaleLabel":"Sale","qvViewFullDetails":"View Full Details","qvQuantity":"Quantity","atcAvailableLabel":"Add to Cart","atcSelectOptionsLabel":"Select Options","atcSoldOutLabel":"Sold Out","atcMiniCartSubtotalLabel":"Subtotal","atcMiniCartCheckoutLabel":"Checkout","atcMiniCartShopingCartLabel":"Your Cart","atcMiniCartEmptyCartLabel":"Your Cart Is Currently Empty","atcMiniCartViewCartLabel":"View cart","atcAddingToCartBtnLabel":"Adding","atcAddedToCartBtnLabel":"Added!","atcMiniCartCountItemLabel":"item","atcMiniCartCountItemLabelPlural":"items"},"defaultTheme":{"toolbarViewAs":"View as","toolbarProduct":"Product","toolbarProducts":"Products","productItemSoldOut":"Sold out","productItemSale":"Sale","productItemFrom":"from"},"recentlyViewed":{"recentProductHeading":"Recently Viewed Products"},"mostPopular":{"popularProductsHeading":"Popular Products"}},"style":{"filterTitleTextColor":"","filterTitleFontSize":"","filterTitleFontWeight":"","filterTitleFontTransform":"","filterTitleFontFamily":"","filterOptionTextColor":"","filterOptionFontSize":"","filterOptionFontFamily":"","filterMobileButtonTextColor":"","filterMobileButtonFontSize":"","filterMobileButtonFontWeight":"","filterMobileButtonFontTransform":"","filterMobileButtonFontFamily":"","filterMobileButtonBackgroundColor":""},"searchEmptyResultMessages":{"label":"We are sorry! We couldn't find results for \"{{ terms }}\".{{ breakline }}But don't give up – check the spelling or try less specific search terms."}},
    
    swatch_settings: {
      
    },
    
  };
  function mergeObject(obj1, obj2){
    var obj3 = {};
    for (var attr in obj1) { obj3[attr] = obj1[attr]; }
    for (var attr in obj2) { obj3[attr] = obj2[attr]; }
    return obj3;
  }
  if (typeof boostPFSConfig == 'undefined') {
    boostPFSConfig = {};
  }
  if (typeof boostPFSAppConfig != 'undefined') {
    boostPFSConfig = mergeObject(boostPFSConfig, boostPFSAppConfig);
  }
  if (typeof boostPFSThemeConfig != 'undefined') {
    boostPFSConfig = mergeObject(boostPFSConfig, boostPFSThemeConfig);
  }
</script>

<!-- Include Resources --><script defer src="//www.displaysense.co.uk/cdn/shop/t/81/assets/boost-pfs-core-instant-search.js?v=73718658902661677821780498766"></script>
  <script defer src="//www.displaysense.co.uk/cdn/shop/t/81/assets/boost-pfs-instant-search.js?v=5375933596162499641780498766"></script><!-- Initialize App -->
<script defer src="//www.displaysense.co.uk/cdn/shop/t/81/assets/boost-pfs-init.js?v=8317161029896936481780498766"></script>



  <!-- Instant search no result JSON data -->
  <script type="application/json" id="boost-pfs-instant-search-products-not-found-json">
	{
		"search_terms": [],
		"products": []
	}
</script>

<script defer src="//www.displaysense.co.uk/cdn/shop/t/81/assets/boost-pfs-analytics-custom.js?v=100115320137515989461780498766"></script>
<script>
(function() {
  // Only run if no video schema already exists
  var existingVideoSchema = document.querySelector('script[type="application/ld+json"]');
  var hasVideoSchema = false;

  if (existingVideoSchema) {
    try {
      var schemas = document.querySelectorAll('script[type="application/ld+json"]');
      schemas.forEach(function(schema) {
        var data = JSON.parse(schema.textContent);
        if (data['@type'] === 'VideoObject' || (Array.isArray(data['@graph']) && data['@graph'].some(function(item) { return item['@type'] === 'VideoObject'; }))) {
          hasVideoSchema = true;
        }
      });
    } catch(e) {}
  }

  if (hasVideoSchema) return;

  // Wait for DOM to be fully loaded
  function scanForVideos() {
    var videoUrl = null;
    var videoThumbnail = null;
    var videoHost = null;

    // Check for YouTube iframes
    var youtubeIframes = document.querySelectorAll('iframe[src*="youtube.com/embed"], iframe[src*="youtube-nocookie.com/embed"]');
    if (youtubeIframes.length > 0) {
      var src = youtubeIframes[0].src;
      var match = src.match(/embed\/([a-zA-Z0-9_-]{11})/);
      if (match) {
        videoUrl = 'https://www.youtube.com/watch?v=' + match[1];
        videoThumbnail = 'https://img.youtube.com/vi/' + match[1] + '/maxresdefault.jpg';
        videoHost = 'youtube';
      }
    }

    // Check for Vimeo iframes
    if (!videoUrl) {
      var vimeoIframes = document.querySelectorAll('iframe[src*="player.vimeo.com/video"]');
      if (vimeoIframes.length > 0) {
        var src = vimeoIframes[0].src;
        var match = src.match(/video\/(\d+)/);
        if (match) {
          videoUrl = 'https://vimeo.com/' + match[1];
          videoHost = 'vimeo';
        }
      }
    }

    // Check for HTML5 video elements
    if (!videoUrl) {
      var videoElements = document.querySelectorAll('video[src], video source[src]');
      if (videoElements.length > 0) {
        var element = videoElements[0];
        videoUrl = element.src || element.querySelector('source')?.src;
        var videoEl = element.tagName === 'VIDEO' ? element : element.closest('video');
        if (videoEl && videoEl.poster) {
          videoThumbnail = videoEl.poster;
        }
      }
    }

    // If video found, inject schema
    if (videoUrl) {
      var pageTitle = document.title || "Displaysense";
      var pageDescription = document.querySelector('meta[name="description"]')?.content || pageTitle;
      var pageUrl = window.location.pathname;

      var schema = {
        "@context": "https://schema.org",
        "@type": "VideoObject",
        "@id": "https:\/\/www.displaysense.co.uk" + pageUrl + "#video",
        "name": pageTitle + " Video",
        "description": pageDescription,
        "uploadDate": new Date().toISOString().split('T')[0],
        "publisher": {
          "@type": "Organization",
          "name": "Displaysense",
          "logo": {
            "@type": "ImageObject",
            "url": "https:\/\/www.displaysense.co.uk" + "/logo.png"
          }
        }
      };

      if (videoThumbnail) {
        schema.thumbnailUrl = videoThumbnail;
      }

      if (videoHost === 'youtube' || videoHost === 'vimeo') {
        schema.embedUrl = videoUrl;
      } else {
        schema.contentUrl = videoUrl;
      }

      var scriptTag = document.createElement('script');
      scriptTag.type = 'application/ld+json';
      scriptTag.textContent = JSON.stringify(schema);
      document.head.appendChild(scriptTag);
    }
  }

  // Run after DOM is ready
  if (document.readyState === 'loading') {
    document.addEventListener('DOMContentLoaded', scanForVideos);
  } else {
    // Small delay to allow dynamic content to load
    setTimeout(scanForVideos, 1000);
  }
})();
</script>
<style> h2 {font-size: 24px; font-weight: bold;} </style>
<!-- Failed to render app block "855628211100114053": app block path "shopify://apps/klaviyo-email-marketing-sms/blocks/klaviyo-onsite-embed/2632fe16-c075-4321-a88b-50b567f42507" does not exist --><div id="shopify-block-AdUhINzJDU05HRnJaS__4318962865815008709" class="shopify-block shopify-app-block"><!-- BEGIN app snippet: config --><script type="text/javascript">(function bootstrap() {
    const isObject = (value) => {
      return value != null && typeof value === "object" && !Array.isArray(value);
    }

    const merge = (...objects) =>
      objects.reduce((result, current) => {
        const prevResultKey = Object.keys(result || {});
        const currentKey = Object.keys(current || {});
        const loopObject =
          prevResultKey.length > currentKey.length ? result : current;

        Object.keys(loopObject || {}).forEach((key) => {
          if (Array.isArray(result[key]) && Array.isArray(current[key])) {
            result[key] = Array.from(new Set(result[key].concat(current[key])));
          } else if (isObject(result[key]) && isObject(current[key])) {
            result[key] = merge(result[key], current[key]);
          } else {
            if (currentKey.indexOf(key) !== -1) {
              result[key] = current[key];
            } else {
              result[key] = loopObject[key];
            }
          }
        });
      return result;
    }, {});

    function loadAppConfig() {
      const boostSDAppConfig = {
        mode: 'production',
        api: {
          filterUrl: 'https://staging.bc-solutions.net/bc-sf-filter/filter',
          searchUrl: 'https://staging.bc-solutions.net/bc-sf-filter/search',
          recommendUrl: 'https://staging.bc-solutions.net/discovery/recommend',
          suggestionUrl: 'https://staging.bc-solutions.net/bc-sf-filter/search/suggest',
          productsUrl: 'https://staging.bc-solutions.net/bc-sf-filter/search/products',
          cdn: 'https://boost-cdn-staging.bc-solutions.net',
        },
        shop: {
          name: 'Displaysense',
          url: 'https://www.displaysense.co.uk',
          domain: '025682-2.myshopify.com',
          currency: 'GBP',
          money_format: "£{{amount}}",
          money_format_with_currency: "£{{amount}} GBP"
        },
        filterSettings: Object.assign({
          swatch_extension: "png",
          
        }, {"showFilterOptionCount":true,"showRefineBy":true,"showOutOfStockOption":false,"showSingleOption":false,"keepToggleState":true,"showLoading":false,"activeScrollToTop":false,"productAndVariantAvailable":false,"availableAfterFiltering":false,"filterTreeMobileStyle":"style2","filterTreeVerticalStyle":"style-default","filterTreeHorizontalStyle":"style2","stickyFilterOnDesktop":false,"stickyFilterOnMobile":false,"changeMobileButtonLabel":false,"sortingAvailableFirst":false,"showVariantImageBasedOnSelectedFilter":"","isShortenUrlParam":true,"style":{"filterTitleTextColor":"","filterTitleFontSize":"","filterTitleFontWeight":"","filterTitleFontTransform":"","filterTitleFontFamily":"","filterOptionTextColor":"","filterOptionFontSize":"","filterOptionFontFamily":"","filterMobileButtonTextColor":"","filterMobileButtonFontSize":"","filterMobileButtonFontWeight":"","filterMobileButtonFontTransform":"","filterMobileButtonFontFamily":"","filterMobileButtonBackgroundColor":""},"filterLayout":"vertical","shortenUrlParamList":["pf_v_vendor:vendor","pf_pt_product_type:product_type","pf_p_price:price","pf_m_::custom::clothes-rail-type:clothes-rail-type","pf_t_colour:colour","pf_t_size:size"]}),
        
          searchSettings: {"enableInstantSearch":true,"showSuggestionProductImage":true,"showSuggestionProductPrice":true,"showSuggestionProductSalePrice":true,"showSuggestionProductSku":true,"showSuggestionProductVendor":true,"searchPanelBlocks":{"products":{"label":"Products","pageSize":25,"active":true,"displayImage":true},"collections":{"label":"Collections","pageSize":25,"active":false,"displayImage":false,"displayDescription":false,"excludedValues":[]},"pages":{"label":"Blogs & Pages","pageSize":25,"active":false,"displayImage":false,"displayExcerpt":false},"searchEmptyResultMessages":{"active":true,"label":"We are sorry! We couldn't find results for \"{{ terms }}\".{{ breakline }}But don't give up – check the spelling or try less specific search terms."},"searchTips":{"label":"Search tips","active":false,"searchTips":"Please double-check your spelling.{{ breakline }}Use more generic search terms.{{ breakline }}Enter fewer keywords.{{ breakline }}Try searching by product type, brand, model number or product feature."},"searchTermSuggestions":{"label":"Check out some of these popular searches","active":false,"type":null,"searchTermList":[],"backup":null},"mostPopularProducts":{"label":"Trending products","active":false,"type":null,"productList":[],"backup":null}},"suggestionNoResult":{"products":{"label":"Trending products","status":false,"data":[]},"search_terms":{"label":"Check out some of these popular searches","status":false,"data":[]}},"suggestionBlocks":[{"type":"suggestions","label":"Popular suggestions","status":"active","number":5},{"type":"collections","label":"Collections","status":"active","number":3,"excludedValues":[]},{"type":"products","label":"Products","status":"active","number":6},{"type":"pages","label":"Pages","status":"active","number":3}],"searchBoxOnclick":{"productSuggestion":{"label":"Trending products","status":false,"data":[]},"recentSearch":{"label":"Recent searches","status":false,"number":"3"},"searchTermSuggestion":{"label":"Popular searches","status":false,"data":[]}}},
        
        additionalElementSettings: Object.assign({
        
        }, {"customSortingList":"relevance|best-selling|manual|title-ascending|title-descending|price-ascending|price-descending|created-ascending|created-descending","enableCollectionSearch":false}),
        generalSettings: Object.assign({
          preview_mode: false,
          preview_path: '',
          page: "page",
          
            file_url: "//www.displaysense.co.uk/cdn/shop/files/?v=21098",
          
          custom_js_asset_url: "",
          custom_css_asset_url: "",
          collection_id: 0,
          collection_handle: "",
          collection_product_count: 0,
        
        
          collection_tags: null,
          current_tags: null,
          default_sort_by: "",
          swatch_extension: "png",
          no_image_url: "https://cdn.shopify.com/extensions/019ea607-96fa-70a7-9c2d-3fd887fefff1/product-filter-search-215/assets/boost-pfs-no-image.jpg",
          search_term: "",
          template: "page",currencies: ["GBP"],
          current_currency:"GBP",published_locales: {"en":true},
          current_locale: "en",
        }, {"addCollectionToProductUrl":false}),
        themeSettings: {},
        themeInfo: null,
        
        
        
          translation: {"productFilter":"Product filter","refine":"Refine By","refineMobile":"Refine By","refineMobileCollapse":"Hide Filter","clear":"Clear","clearAll":"Clear All","viewMore":"View More","viewLess":"View Less","apply":"Apply","applyAll":"Apply All","close":"Close","back":"Back","showLimit":"Show","collectionAll":"All","under":"Under","above":"Above","ratingStar":"Star","ratingStars":"Stars","ratingUp":"& Up","showResult":"Show result","searchOptions":"Search Options","loadPreviousPage":"Load Previous Page","loadMore":"Load more {{ amountProduct }} Products","loadMoreTotal":"{{ from }} - {{ to }} of {{ total }} Products","search":{"generalTitle":"General Title (when no search term)","resultHeader":"Search results for \"{{ terms }}\"","resultNumber":"Showing {{ count }} results for \"{{ terms }}\"","seeAllProducts":"See all products","resultEmpty":"We are sorry! We couldn't find results for \"{{ terms }}\".{{ breakline }}But don't give up – check the spelling or try less specific search terms.","resultEmptyWithSuggestion":"Sorry, nothing found for \"{{ terms }}\". Check out these items instead?","searchTotalResult":"Showing {{ count }} result","searchTotalResults":"Showing {{ count }} results","searchPanelProduct":"Products","searchPanelCollection":"Collections","searchPanelPage":"Blogs & Pages","searchTipsTitle":"Search tips","searchTipsContent":"Please double-check your spelling.{{ breakline }}Use more generic search terms.{{ breakline }}Enter fewer keywords.{{ breakline }}Try searching by product type, brand, model number or product feature.","noSearchResultSearchTermLabel":"Check out some of these popular searches","noSearchResultProductsLabel":"Trending products","searchBoxOnclickRecentSearchLabel":"Recent searches","searchBoxOnclickSearchTermLabel":"Popular searches","searchBoxOnclickProductsLabel":"Trending products"},"suggestion":{"viewAll":"View all {{ count }} products","didYouMean":"Did you mean: {{ terms }}","searchBoxPlaceholder":"Search","suggestQuery":"Show {{ count }} results for {{ terms }}","instantSearchSuggestionsLabel":"Popular suggestions","instantSearchCollectionsLabel":"Collections","instantSearchProductsLabel":"Products","instantSearchPagesLabel":"Pages","searchBoxOnclickRecentSearchLabel":"Recent searches","searchBoxOnclickSearchTermLabel":"Popular searches","searchBoxOnclickProductsLabel":"Trending products","noSearchResultSearchTermLabel":"Check out some of these popular searches","noSearchResultProductsLabel":"Trending products"},"error":{"noFilterResult":"Sorry, no products matched your selection","noSearchResult":"Sorry, no products matched the keyword","noProducts":"No products found in this collection","noSuggestionResult":"Sorry, nothing found for \"{{ terms }}\".","noSuggestionProducts":"Sorry, nothing found for \"{{ terms }}\"."},"recommendation":{"homepage-862738":"Just dropped","homepage-221756":"Best Sellers","collectionpage-237106":"Just dropped","collectionpage-511387":"Most Popular Products","productpage-788075":"Recently viewed","productpage-376003":"Frequently Bought Together","cartpage-541557":"Still interested in this?","cartpage-468648":"Similar Products"},"productItem":{"qvBtnLabel":"Quick view","atcAvailableLabel":"Add to cart","soldoutLabel":"Sold out","productItemSale":"Sale","productItemSoldOut":"Sold out","viewProductBtnLabel":"View product","atcSelectOptionsLabel":"Select options","savingAmount":"Save {{saleAmount}}","swatchButtonText1":"+{{count}}","swatchButtonText2":"+{{count}}","swatchButtonText3":"+{{count}}","inventoryInStock":"In stock","inventoryLowStock":"Only {{count}} left!","inventorySoldOut":"Sold out","atcAddingToCartBtnLabel":"Adding...","atcAddedToCartBtnLabel":"Added!","atcFailedToCartBtnLabel":"Failed!"},"quickView":{"qvQuantity":"Quantity","qvViewFullDetails":"View full details","buyItNowBtnLabel":"Buy it now","qvQuantityError":"Please input quantity"},"cart":{"atcMiniCartSubtotalLabel":"Subtotal","atcMiniCartEmptyCartLabel":"Your Cart Is Currently Empty","atcMiniCartCountItemLabel":"item","atcMiniCartCountItemLabelPlural":"items","atcMiniCartShopingCartLabel":"Your cart","atcMiniCartViewCartLabel":"View cart","atcMiniCartCheckoutLabel":"Checkout"},"recentlyViewed":{"recentProductHeading":"Recently Viewed Products"},"mostPopular":{"popularProductsHeading":"Popular Products"},"perpage":{"productCountPerPage":"Display: {{count}} per page"},"productCount":{"textDescriptionCollectionHeader":"{{count}} product","textDescriptionCollectionHeaderPlural":"{{count}} products","textDescriptionToolbar":"{{count}} product","textDescriptionToolbarPlural":"{{count}} products","textDescriptionPagination":"Showing {{from}} - {{to}} of {{total}} product","textDescriptionPaginationPlural":"Showing {{from}} - {{to}} of {{total}} products"},"pagination":{"loadPreviousText":"Load Previous Page","loadPreviousInfiniteText":"Load Previous Page","loadMoreText":"Load more","prevText":"Previous","nextText":"Next"},"sortingList":{"sorting":"Sort by","relevance":"Relevance","best-selling":"Best selling","manual":"Manual","title-ascending":"Title ascending","title-descending":"Title descending","price-ascending":"Price ascending","price-descending":"Price descending","created-ascending":"Created ascending","created-descending":"Created descending"},"inCollectionSearch":"Search for products in this collection","viewAs":"View as","listView":"List view","gridView":"Grid view","gridViewColumns":"Grid view {{count}} Columns","viewAsV2":"View as","listViewV2":"List view","gridViewV2":"Grid view","gridViewColumnsV2":"Grid view {{count}} Columns","collectionHeader":{"collectionAllProduct":"Products"},"breadcrumb":{"home":"Home","collections":"Collections","pagination":"Page {{ page }} of {{totalPages}}","toFrontPage":"Back to the front page"},"sliderProduct":{"prevButton":"Previous","nextButton":"Next"},"refineDesktop":"Filter","filterOptions":{"filterOption|kUexbNxNW|pf_v_vendor":"Vendor","filterOption|kUexbNxNW|pf_pt_product_type":"Product Type","filterOption|kUexbNxNW|pf_p_price":"Price","filterOption|kUexbNxNW|pf_m_::custom::clothes-rail-type":"Clothes Rail Type","filterOption|kUexbNxNW|pf_t_colour":"Colour","filterOption|kUexbNxNW|pf_t_size":"Size"},"predictiveBundle":{}},
        
        
        
          
          
            primary_language: {"productFilter":"Product filter","refine":"Refine By","refineMobile":"Refine By","refineMobileCollapse":"Hide Filter","clear":"Clear","clearAll":"Clear All","viewMore":"View More","viewLess":"View Less","apply":"Apply","applyAll":"Apply All","close":"Close","back":"Back","showLimit":"Show","collectionAll":"All","under":"Under","above":"Above","ratingStar":"Star","ratingStars":"Stars","ratingUp":"& Up","showResult":"Show result","searchOptions":"Search Options","loadPreviousPage":"Load Previous Page","loadMore":"Load more {{ amountProduct }} Products","loadMoreTotal":"{{ from }} - {{ to }} of {{ total }} Products","search":{"generalTitle":"General Title (when no search term)","resultHeader":"Search results for \"{{ terms }}\"","resultNumber":"Showing {{ count }} results for \"{{ terms }}\"","seeAllProducts":"See all products","resultEmpty":"We are sorry! We couldn't find results for \"{{ terms }}\".{{ breakline }}But don't give up – check the spelling or try less specific search terms.","resultEmptyWithSuggestion":"Sorry, nothing found for \"{{ terms }}\". Check out these items instead?","searchTotalResult":"Showing {{ count }} result","searchTotalResults":"Showing {{ count }} results","searchPanelProduct":"Products","searchPanelCollection":"Collections","searchPanelPage":"Blogs & Pages","searchTipsTitle":"Search tips","searchTipsContent":"Please double-check your spelling.{{ breakline }}Use more generic search terms.{{ breakline }}Enter fewer keywords.{{ breakline }}Try searching by product type, brand, model number or product feature.","noSearchResultSearchTermLabel":"Check out some of these popular searches","noSearchResultProductsLabel":"Trending products","searchBoxOnclickRecentSearchLabel":"Recent searches","searchBoxOnclickSearchTermLabel":"Popular searches","searchBoxOnclickProductsLabel":"Trending products"},"suggestion":{"viewAll":"View all {{ count }} products","didYouMean":"Did you mean: {{ terms }}","searchBoxPlaceholder":"Search","suggestQuery":"Show {{ count }} results for {{ terms }}","instantSearchSuggestionsLabel":"Popular suggestions","instantSearchCollectionsLabel":"Collections","instantSearchProductsLabel":"Products","instantSearchPagesLabel":"Pages","searchBoxOnclickRecentSearchLabel":"Recent searches","searchBoxOnclickSearchTermLabel":"Popular searches","searchBoxOnclickProductsLabel":"Trending products","noSearchResultSearchTermLabel":"Check out some of these popular searches","noSearchResultProductsLabel":"Trending products"},"error":{"noFilterResult":"Sorry, no products matched your selection","noSearchResult":"Sorry, no products matched the keyword","noProducts":"No products found in this collection","noSuggestionResult":"Sorry, nothing found for \"{{ terms }}\".","noSuggestionProducts":"Sorry, nothing found for \"{{ terms }}\"."},"recommendation":{"homepage-862738":"Just dropped","homepage-221756":"Best Sellers","collectionpage-237106":"Just dropped","collectionpage-511387":"Most Popular Products","productpage-788075":"Recently viewed","productpage-376003":"Frequently Bought Together","cartpage-541557":"Still interested in this?","cartpage-468648":"Similar Products"},"productItem":{"qvBtnLabel":"Quick view","atcAvailableLabel":"Add to cart","soldoutLabel":"Sold out","productItemSale":"Sale","productItemSoldOut":"Sold out","viewProductBtnLabel":"View product","atcSelectOptionsLabel":"Select options","savingAmount":"Save {{saleAmount}}","swatchButtonText1":"+{{count}}","swatchButtonText2":"+{{count}}","swatchButtonText3":"+{{count}}","inventoryInStock":"In stock","inventoryLowStock":"Only {{count}} left!","inventorySoldOut":"Sold out","atcAddingToCartBtnLabel":"Adding...","atcAddedToCartBtnLabel":"Added!","atcFailedToCartBtnLabel":"Failed!"},"quickView":{"qvQuantity":"Quantity","qvViewFullDetails":"View full details","buyItNowBtnLabel":"Buy it now","qvQuantityError":"Please input quantity"},"cart":{"atcMiniCartSubtotalLabel":"Subtotal","atcMiniCartEmptyCartLabel":"Your Cart Is Currently Empty","atcMiniCartCountItemLabel":"item","atcMiniCartCountItemLabelPlural":"items","atcMiniCartShopingCartLabel":"Your cart","atcMiniCartViewCartLabel":"View cart","atcMiniCartCheckoutLabel":"Checkout"},"recentlyViewed":{"recentProductHeading":"Recently Viewed Products"},"mostPopular":{"popularProductsHeading":"Popular Products"},"perpage":{"productCountPerPage":"Display: {{count}} per page"},"productCount":{"textDescriptionCollectionHeader":"{{count}} product","textDescriptionCollectionHeaderPlural":"{{count}} products","textDescriptionToolbar":"{{count}} product","textDescriptionToolbarPlural":"{{count}} products","textDescriptionPagination":"Showing {{from}} - {{to}} of {{total}} product","textDescriptionPaginationPlural":"Showing {{from}} - {{to}} of {{total}} products"},"pagination":{"loadPreviousText":"Load Previous Page","loadPreviousInfiniteText":"Load Previous Page","loadMoreText":"Load more","prevText":"Previous","nextText":"Next"},"sortingList":{"sorting":"Sort by","relevance":"Relevance","best-selling":"Best selling","manual":"Manual","title-ascending":"Title ascending","title-descending":"Title descending","price-ascending":"Price ascending","price-descending":"Price descending","created-ascending":"Created ascending","created-descending":"Created descending"},"inCollectionSearch":"Search for products in this collection","viewAs":"View as","listView":"List view","gridView":"Grid view","gridViewColumns":"Grid view {{count}} Columns","viewAsV2":"View as","listViewV2":"List view","gridViewV2":"Grid view","gridViewColumnsV2":"Grid view {{count}} Columns","collectionHeader":{"collectionAllProduct":"Products"},"breadcrumb":{"home":"Home","collections":"Collections","pagination":"Page {{ page }} of {{totalPages}}","toFrontPage":"Back to the front page"},"sliderProduct":{"prevButton":"Previous","nextButton":"Next"},"refineDesktop":"Filter","filterOptions":{"filterOption|kUexbNxNW|pf_v_vendor":"Vendor","filterOption|kUexbNxNW|pf_pt_product_type":"Product Type","filterOption|kUexbNxNW|pf_p_price":"Price","filterOption|kUexbNxNW|pf_m_::custom::clothes-rail-type":"Clothes Rail Type","filterOption|kUexbNxNW|pf_t_colour":"Colour","filterOption|kUexbNxNW|pf_t_size":"Size"},"predictiveBundle":{}},
          
        
        
        
        
        b2b: Object.assign(
          {
            enabled: false,
          },
          {
            
          }
        ),
        versioning: {
          invalidateCache: {
            invalidParams: `?v=${Date.now()}`,
            latestTime: 1690942680852,
          }
        },
      };

      const themeId = window.Shopify.theme.id;
      if (themeId) {
        const themeSettingsKey = `theme-setting-${themeId}`;
        const themeSettings = {"additional-elements-settings":{"customSortingList":"relevance|best-selling|manual|title-ascending|title-descending|price-ascending|price-descending|created-ascending|created-descending","enableCollectionSearch":false},"filter-settings":{"showFilterOptionCount":true,"showRefineBy":true,"showOutOfStockOption":false,"showSingleOption":false,"keepToggleState":true,"showLoading":false,"activeScrollToTop":false,"productAndVariantAvailable":false,"availableAfterFiltering":false,"filterTreeMobileStyle":"style2","filterTreeVerticalStyle":"style-default","filterTreeHorizontalStyle":"style2","stickyFilterOnDesktop":false,"stickyFilterOnMobile":false,"changeMobileButtonLabel":false,"sortingAvailableFirst":false,"showVariantImageBasedOnSelectedFilter":"","isShortenUrlParam":true,"style":{"filterTitleTextColor":"","filterTitleFontSize":"","filterTitleFontWeight":"","filterTitleFontTransform":"","filterTitleFontFamily":"","filterOptionTextColor":"","filterOptionFontSize":"","filterOptionFontFamily":"","filterMobileButtonTextColor":"","filterMobileButtonFontSize":"","filterMobileButtonFontWeight":"","filterMobileButtonFontTransform":"","filterMobileButtonFontFamily":"","filterMobileButtonBackgroundColor":""},"filterLayout":"vertical","shortenUrlParamList":["pf_v_vendor:vendor","pf_pt_product_type:product_type","pf_p_price:price","pf_m_::custom::clothes-rail-type:clothes-rail-type","pf_t_colour:colour","pf_t_size:size"]},"general-settings":{"addCollectionToProductUrl":false},"languages":{"0":"en"},"search-settings":{"enableInstantSearch":true,"showSuggestionProductImage":true,"showSuggestionProductPrice":true,"showSuggestionProductSalePrice":true,"showSuggestionProductSku":true,"showSuggestionProductVendor":true,"searchPanelBlocks":{"products":{"label":"Products","pageSize":25,"active":true,"displayImage":true},"collections":{"label":"Collections","pageSize":25,"active":false,"displayImage":false,"displayDescription":false,"excludedValues":[]},"pages":{"label":"Blogs \u0026 Pages","pageSize":25,"active":false,"displayImage":false,"displayExcerpt":false},"searchEmptyResultMessages":{"active":true,"label":"We are sorry! We couldn't find results for \"{{ terms }}\".{{ breakline }}But don't give up – check the spelling or try less specific search terms."},"searchTips":{"label":"Search tips","active":false,"searchTips":"Please double-check your spelling.{{ breakline }}Use more generic search terms.{{ breakline }}Enter fewer keywords.{{ breakline }}Try searching by product type, brand, model number or product feature."},"searchTermSuggestions":{"label":"Check out some of these popular searches","active":false,"type":null,"searchTermList":[],"backup":null},"mostPopularProducts":{"label":"Trending products","active":false,"type":null,"productList":[],"backup":null}},"suggestionNoResult":{"products":{"label":"Trending products","status":false,"data":[]},"search_terms":{"label":"Check out some of these popular searches","status":false,"data":[]}},"suggestionBlocks":[{"type":"suggestions","label":"Popular suggestions","status":"active","number":5},{"type":"collections","label":"Collections","status":"active","number":3,"excludedValues":[]},{"type":"products","label":"Products","status":"active","number":6},{"type":"pages","label":"Pages","status":"active","number":3}],"searchBoxOnclick":{"productSuggestion":{"label":"Trending products","status":false,"data":[]},"recentSearch":{"label":"Recent searches","status":false,"number":"3"},"searchTermSuggestion":{"label":"Popular searches","status":false,"data":[]}}},"theme-info":{},"theme-setting-146345787685":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"},"borderLayout":"noBorder","mainLayout":"product-item-2","subLayout":"subLayout_2_2"},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"pageLayoutType":"box","productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-146357059877":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"},"borderLayout":"noBorder","mainLayout":"product-item-2","subLayout":"subLayout_2_2"},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"pageLayoutType":"box","productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-146403590437":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"},"borderLayout":"noBorder","mainLayout":"product-item-2","subLayout":"subLayout_2_2"},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"pageLayoutType":"box","productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-146612322597":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-147240878373":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-148549370149":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"},"borderLayout":"noBorder","mainLayout":"product-item-2","subLayout":"subLayout_2_2"},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"pageLayoutType":"box","productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-148703183141":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"},"borderLayout":"noBorder","mainLayout":"product-item-2","subLayout":"subLayout_2_2"},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"pageLayoutType":"box","productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-148756234533":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"},"borderLayout":"noBorder","mainLayout":"product-item-2","subLayout":"subLayout_2_2"},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"pageLayoutType":"box","productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-148758757669":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"},"borderLayout":"noBorder","mainLayout":"product-item-2","subLayout":"subLayout_2_2"},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"pageLayoutType":"box","productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-149416345893":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-149416411429":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-staging.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-150654910757":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-151756046629":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-153938854181":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-154097942821":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-154517504293":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-154982252837":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-156509372709":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-158572249381":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-158572577061":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":true,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-161983103269":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-162538455333":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-164297441573":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-166067437861":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-166067601701":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-166942146853":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-168765849893":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-170048258341":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-170300801317":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-170910482725":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-172683526437":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-176829006211":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-176837198211":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-177141612931":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"theme-setting-177145184643":{"productItems":{"general":{"borderLayout":"noBorder"},"productImg":{"elements":{"productSaleLabel":{"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 51, 0, 1)"},"productSoldOutLabel":{"hideOtherLabelsWhenSoldOut":true,"shape":"rectangle","displayType":"text","color":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)"},"selectOptionBtn":{"buttonType":"selectOptionBtn","showOnHovering":true,"showOn":"desktopOnly","action":"quickAddToCart","displayType":"textWithIcon","shape":"rectangle","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/add-to-cart-white.svg","iconPosition":"left","backgroundColor":"rgba(34, 34, 34, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(34, 34, 34, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(255, 255, 255, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none","width":"100%"},"qvBtn":{"buttonType":"qvBtn","showOnHovering":true,"showOn":"desktopOnly","displayType":"icon","shape":"square","imgSrc":"https:\/\/boost-cdn-prod.bc-solutions.net\/icon\/quick-view.svg","iconPosition":"left","width":"40px","backgroundColor":"rgba(255, 255, 255, 1)","backgroundColorOnHover":"rgba(61, 66, 70, 1)","borderColor":"rgba(255, 255, 255, 1)","borderColorOnHover":"rgba(61, 66, 70, 1)","textColor":"rgba(34, 34, 34, 1)","textColorOnHover":"rgba(255, 255, 255, 1)","textTransform":"none"}},"grid":{"top":{"direction":"horizontal","elements":{"left":["saleLabel","soldOutLabel"]}},"bottom":{"direction":"horizontal","elements":{"left":["selectOptionBtn","qvBtn"]}}},"aspectRatioType":"natural","hoverEffect":"reveal-second-image"},"productInfo":{"textAlign":"left","elements":{"title":{"textTransform":"capitalize"},"vendor":{"textTransform":"uppercase"},"price":{"showCentAsSuperscript":false,"showCurrencyCodes":false,"showMultiVariantPrice":"none","priceColor":"rgba(34, 34, 34, 1)","salePriceColor":"rgba(34, 34, 34, 1)","compareAtPriceColor":"rgba(122, 122, 122, 1)","compareAtPricePosition":"right","showSavingDisplay":false,"savingDisplayColor":"rgba(255, 51, 0, 1)"}}}},"additionalElements":{"pagination":{"paginationType":"default","alignment":"center","textDescription":"Showing {{from}} - {{to}} of {{total}} products","productCount":{"showProductCount":false,"position":"top"},"number":{"shape":"circle","color":"rgba(122, 122, 122, 1)","colorOnSelected":"rgba(34, 34, 34, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnSelected":"rgba(0, 0, 0, 0)"},"button":{"shape":"circle","buttonType":"icon-only","color":"rgba(122, 122, 122, 1)","backgroundColor":"rgba(0, 0, 0, 0)","backgroundColorOnHover":"rgba(241, 242, 243, 1)","textTransform":"none"}},"toolbar":{"layout":"3_1","elements":{"viewAs":{"listType":"grid\/list"},"productCount":{"textDescription":"{{count}} products"},"sorting":{}}},"collectionHeader":{"layout":2,"contentPosition":"middle-center","backgroundColor":"rgba(246, 246, 248, 1)","isHidden":false,"elements":{"collectionImage":{"size":"medium","parallaxEffect":false,"directionParallax":"vertical","overlayColor":"rgba(0, 0, 0, 0)"},"collectionTitle":{"textAlign":"center","textTransform":"none"},"collectionDescription":{}}}},"quickView":{"showProductImage":true,"thumbnailPosition":"topLeft","buttonOverall":{"shape":"round"},"buyItNowBtn":{"enable":true,"color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)","textTransform":"none"},"addToCartBtn":{"color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(34, 34, 34, 1)","hoverBorderColor":"rgba(34, 34, 34, 1)","textTransform":"none"}},"cart":{"enableCart":false,"cartStyle":"side","generalLayout":{"shape":"round"},"checkoutBtn":{"textTransform":"none","color":"rgba(255, 255, 255, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(34, 34, 34, 1)","hoverBackgroundColor":"rgba(255, 51, 0, 1)"},"viewCartBtn":{"textTransform":"none","color":"rgba(34, 34, 34, 1)","hoverColor":"rgba(255, 255, 255, 1)","backgroundColor":"rgba(255, 255, 255, 1)","hoverBackgroundColor":"rgba(34, 34, 34, 1)","borderColor":"rgba(78, 78, 78, 1)"}},"productList":{"productsPerPage":24,"productsPerRowOnDesktop":3,"productsPerRowOnMobile":2}},"translation-en":{"productFilter":"Product filter","refine":"Refine By","refineMobile":"Refine By","refineMobileCollapse":"Hide Filter","clear":"Clear","clearAll":"Clear All","viewMore":"View More","viewLess":"View Less","apply":"Apply","applyAll":"Apply All","close":"Close","back":"Back","showLimit":"Show","collectionAll":"All","under":"Under","above":"Above","ratingStar":"Star","ratingStars":"Stars","ratingUp":"\u0026 Up","showResult":"Show result","searchOptions":"Search Options","loadPreviousPage":"Load Previous Page","loadMore":"Load more {{ amountProduct }} Products","loadMoreTotal":"{{ from }} - {{ to }} of {{ total }} Products","search":{"generalTitle":"General Title (when no search term)","resultHeader":"Search results for \"{{ terms }}\"","resultNumber":"Showing {{ count }} results for \"{{ terms }}\"","seeAllProducts":"See all products","resultEmpty":"We are sorry! We couldn't find results for \"{{ terms }}\".{{ breakline }}But don't give up – check the spelling or try less specific search terms.","resultEmptyWithSuggestion":"Sorry, nothing found for \"{{ terms }}\". Check out these items instead?","searchTotalResult":"Showing {{ count }} result","searchTotalResults":"Showing {{ count }} results","searchPanelProduct":"Products","searchPanelCollection":"Collections","searchPanelPage":"Blogs \u0026 Pages","searchTipsTitle":"Search tips","searchTipsContent":"Please double-check your spelling.{{ breakline }}Use more generic search terms.{{ breakline }}Enter fewer keywords.{{ breakline }}Try searching by product type, brand, model number or product feature.","noSearchResultSearchTermLabel":"Check out some of these popular searches","noSearchResultProductsLabel":"Trending products","searchBoxOnclickRecentSearchLabel":"Recent searches","searchBoxOnclickSearchTermLabel":"Popular searches","searchBoxOnclickProductsLabel":"Trending products"},"suggestion":{"viewAll":"View all {{ count }} products","didYouMean":"Did you mean: {{ terms }}","searchBoxPlaceholder":"Search","suggestQuery":"Show {{ count }} results for {{ terms }}","instantSearchSuggestionsLabel":"Popular suggestions","instantSearchCollectionsLabel":"Collections","instantSearchProductsLabel":"Products","instantSearchPagesLabel":"Pages","searchBoxOnclickRecentSearchLabel":"Recent searches","searchBoxOnclickSearchTermLabel":"Popular searches","searchBoxOnclickProductsLabel":"Trending products","noSearchResultSearchTermLabel":"Check out some of these popular searches","noSearchResultProductsLabel":"Trending products"},"error":{"noFilterResult":"Sorry, no products matched your selection","noSearchResult":"Sorry, no products matched the keyword","noProducts":"No products found in this collection","noSuggestionResult":"Sorry, nothing found for \"{{ terms }}\".","noSuggestionProducts":"Sorry, nothing found for \"{{ terms }}\"."},"recommendation":{"homepage-862738":"Just dropped","homepage-221756":"Best Sellers","collectionpage-237106":"Just dropped","collectionpage-511387":"Most Popular Products","productpage-788075":"Recently viewed","productpage-376003":"Frequently Bought Together","cartpage-541557":"Still interested in this?","cartpage-468648":"Similar Products"},"productItem":{"qvBtnLabel":"Quick view","atcAvailableLabel":"Add to cart","soldoutLabel":"Sold out","productItemSale":"Sale","productItemSoldOut":"Sold out","viewProductBtnLabel":"View product","atcSelectOptionsLabel":"Select options","savingAmount":"Save {{saleAmount}}","swatchButtonText1":"+{{count}}","swatchButtonText2":"+{{count}}","swatchButtonText3":"+{{count}}","inventoryInStock":"In stock","inventoryLowStock":"Only {{count}} left!","inventorySoldOut":"Sold out","atcAddingToCartBtnLabel":"Adding...","atcAddedToCartBtnLabel":"Added!","atcFailedToCartBtnLabel":"Failed!"},"quickView":{"qvQuantity":"Quantity","qvViewFullDetails":"View full details","buyItNowBtnLabel":"Buy it now","qvQuantityError":"Please input quantity"},"cart":{"atcMiniCartSubtotalLabel":"Subtotal","atcMiniCartEmptyCartLabel":"Your Cart Is Currently Empty","atcMiniCartCountItemLabel":"item","atcMiniCartCountItemLabelPlural":"items","atcMiniCartShopingCartLabel":"Your cart","atcMiniCartViewCartLabel":"View cart","atcMiniCartCheckoutLabel":"Checkout"},"recentlyViewed":{"recentProductHeading":"Recently Viewed Products"},"mostPopular":{"popularProductsHeading":"Popular Products"},"perpage":{"productCountPerPage":"Display: {{count}} per page"},"productCount":{"textDescriptionCollectionHeader":"{{count}} product","textDescriptionCollectionHeaderPlural":"{{count}} products","textDescriptionToolbar":"{{count}} product","textDescriptionToolbarPlural":"{{count}} products","textDescriptionPagination":"Showing {{from}} - {{to}} of {{total}} product","textDescriptionPaginationPlural":"Showing {{from}} - {{to}} of {{total}} products"},"pagination":{"loadPreviousText":"Load Previous Page","loadPreviousInfiniteText":"Load Previous Page","loadMoreText":"Load more","prevText":"Previous","nextText":"Next"},"sortingList":{"sorting":"Sort by","relevance":"Relevance","best-selling":"Best selling","manual":"Manual","title-ascending":"Title ascending","title-descending":"Title descending","price-ascending":"Price ascending","price-descending":"Price descending","created-ascending":"Created ascending","created-descending":"Created descending"},"inCollectionSearch":"Search for products in this collection","viewAs":"View as","listView":"List view","gridView":"Grid view","gridViewColumns":"Grid view {{count}} Columns","viewAsV2":"View as","listViewV2":"List view","gridViewV2":"Grid view","gridViewColumnsV2":"Grid view {{count}} Columns","collectionHeader":{"collectionAllProduct":"Products"},"breadcrumb":{"home":"Home","collections":"Collections","pagination":"Page {{ page }} of {{totalPages}}","toFrontPage":"Back to the front page"},"sliderProduct":{"prevButton":"Previous","nextButton":"Next"},"refineDesktop":"Filter","filterOptions":{"filterOption|kUexbNxNW|pf_v_vendor":"Vendor","filterOption|kUexbNxNW|pf_pt_product_type":"Product Type","filterOption|kUexbNxNW|pf_p_price":"Price","filterOption|kUexbNxNW|pf_m_::custom::clothes-rail-type":"Clothes Rail Type","filterOption|kUexbNxNW|pf_t_colour":"Colour","filterOption|kUexbNxNW|pf_t_size":"Size"},"predictiveBundle":{}}}[themeSettingsKey];

        boostSDAppConfig.themeSettings = themeSettings;
      }

      
        if (themeId) {
          const themeInfo = {};
          const currentThemeInfo = themeInfo[themeId];

          boostSDAppConfig.themeInfo = currentThemeInfo;
        }
      
      // Set CDN URL
      const env = ((boostSDAppConfig.themeInfo || {}).taeFeatures || {}).env || "production";

      if (env === 'production') {
        Object.assign(boostSDAppConfig.api, {
          filterUrl: 'https://services.mybcapps.com/bc-sf-filter/filter',
          searchUrl: 'https://services.mybcapps.com/bc-sf-filter/search',
          suggestionUrl: 'https://services.mybcapps.com/bc-sf-filter/search/suggest',
          recommendUrl: 'https://services.mybcapps.com/discovery/recommend',
          analyticsUrl: 'https://lambda.mybcapps.com/e',
          productsUrl: 'https://services.mybcapps.com/bc-sf-filter/search/products',
          cdn: 'https://boost-cdn-prod.bc-solutions.net'
        })
      }

      window.boostSDData = Object.assign({
        
      }, window.boostSDData);

      if (!window.boostSDRecommendationConfig) {
        const widgets = {
          
            "index": {"homepage-862738":{"params":{"shop":"025682-2.myshopify.com","recommendationType":"newest-arrivals","limit":12},"widgetName":"Just dropped","widgetStatus":"inactive","widgetDesignSettings":{"tenantId":"025682-2.myshopify.com","widgetId":"defaultSettings","layoutDisplay":"carousel","templateType":"customization","themePreview":"","numberOfRecommendProduct":12,"numberOfProductPerRow":4,"titleAlignment":"left","titleTextColor":"#3D4246","titleFont":"Poppins","titleTextTransform":"capitalize","titleFontSize":14,"titleFontStyle":"100"}},"homepage-221756":{"params":{"shop":"025682-2.myshopify.com","recommendationType":"bestsellers","limit":12},"widgetName":"Best Sellers","widgetStatus":"inactive","widgetDesignSettings":{"tenantId":"025682-2.myshopify.com","widgetId":"defaultSettings","layoutDisplay":"carousel","templateType":"customization","themePreview":"","numberOfRecommendProduct":12,"numberOfProductPerRow":4,"titleAlignment":"left","titleTextColor":"#3D4246","titleFont":"Poppins","titleTextTransform":"capitalize","titleFontSize":14,"titleFontStyle":"100"}}},
          
          
            "cart": {"cartpage-541557":{"params":{"shop":"025682-2.myshopify.com","recommendationType":"recently-viewed","limit":12},"widgetName":"Still interested in this?","widgetStatus":"inactive","widgetDesignSettings":{"tenantId":"025682-2.myshopify.com","widgetId":"defaultSettings","layoutDisplay":"carousel","templateType":"customization","themePreview":"","numberOfRecommendProduct":12,"numberOfProductPerRow":4,"titleAlignment":"left","titleTextColor":"#3D4246","titleFont":"Poppins","titleTextTransform":"capitalize","titleFontSize":14,"titleFontStyle":"100"}},"cartpage-468648":{"params":{"shop":"025682-2.myshopify.com","recommendationType":"related-items","limit":12,"modelType":"Alternative","secondaryAlgorithm":"bestsellers"},"widgetName":"Similar Products","widgetStatus":"inactive","widgetDesignSettings":{"tenantId":"025682-2.myshopify.com","widgetId":"defaultSettings","layoutDisplay":"carousel","templateType":"customization","themePreview":"","numberOfRecommendProduct":12,"numberOfProductPerRow":4,"titleAlignment":"left","titleTextColor":"#3D4246","titleFont":"Poppins","titleTextTransform":"capitalize","titleFontSize":14,"titleFontStyle":"100"}}},
          
          
            "product": {"productpage-788075":{"params":{"shop":"025682-2.myshopify.com","recommendationType":"recently-viewed","limit":12},"widgetName":"Recently viewed","widgetStatus":"inactive","widgetDesignSettings":{"tenantId":"025682-2.myshopify.com","widgetId":"defaultSettings","layoutDisplay":"carousel","templateType":"customization","themePreview":"","numberOfRecommendProduct":12,"numberOfProductPerRow":4,"titleAlignment":"left","titleTextColor":"#3D4246","titleFont":"Poppins","titleTextTransform":"capitalize","titleFontSize":14,"titleFontStyle":"100"}},"productpage-376003":{"params":{"shop":"025682-2.myshopify.com","recommendationType":"frequently-bought-together","limit":2,"modelType":"FBT","secondaryAlgorithm":"bestsellers"},"widgetName":"Frequently Bought Together","widgetStatus":"inactive","widgetDesignSettings":{"bundleStyle":"style1","layoutDisplay":"bundle","numberOfRecommendProduct":2,"templateType":"customization","themePreview":"","titleAlignment":"left","titleFont":"Poppins","titleFontSize":14,"titleFontStyle":"100","titleTextColor":"#3D4246","titleTextTransform":"capitalize"}}},
          
          
            "collection": {"collectionpage-237106":{"params":{"shop":"025682-2.myshopify.com","recommendationType":"newest-arrivals","limit":12},"widgetName":"Just dropped","widgetStatus":"inactive","widgetDesignSettings":{"tenantId":"025682-2.myshopify.com","widgetId":"defaultSettings","layoutDisplay":"carousel","templateType":"customization","themePreview":"","numberOfRecommendProduct":12,"numberOfProductPerRow":4,"titleAlignment":"left","titleTextColor":"#3D4246","titleFont":"Poppins","titleTextTransform":"capitalize","titleFontSize":14,"titleFontStyle":"100"}},"collectionpage-511387":{"params":{"shop":"025682-2.myshopify.com","recommendationType":"trending-products","limit":12,"calculatedBasedOn":"purchase-events","rangeOfTime":"7-day"},"widgetName":"Most Popular Products","widgetStatus":"inactive","widgetDesignSettings":{"tenantId":"025682-2.myshopify.com","widgetId":"defaultSettings","layoutDisplay":"carousel","templateType":"customization","themePreview":"","numberOfRecommendProduct":12,"numberOfProductPerRow":4,"titleAlignment":"left","titleTextColor":"#3D4246","titleFont":"Poppins","titleTextTransform":"capitalize","titleFontSize":14,"titleFontStyle":"100"}}},
          
        };

        const defaultSettings = {};

        

        window.boostSDRecommendationConfig = {
          widgets,
          defaultSettings,
        }
      }

      if (boostSDAppConfig.filterSettings) {
        const page = boostSDAppConfig.generalSettings.page;

        const filterLayout =
          ((((boostSDAppConfig || {}).themeInfo || {}).taeFeatures || {}).filterLayout || {})[page] ||
          'vertical';

        boostSDAppConfig.filterSettings.filterLayout = filterLayout;
      }

      if (window.boostSDAppConfig) {
        window.boostSDAppConfig = merge(boostSDAppConfig, window.boostSDAppConfig);
      } else {
        window.boostSDAppConfig = boostSDAppConfig;
      }
    }

    function preloadResource() {
      if (!window.boostSDAppConfig || !window.boostSDAppConfig.themeInfo || !window.boostSDAppConfig.themeInfo || !window.boostSDAppConfig.themeInfo.taeFeatures || window.boostSDAppConfig.mode === 'development') return;

      const page = window.boostSDAppConfig.generalSettings.page;
      const themeInfo = window.boostSDAppConfig.themeInfo;
      const taeFeatures = themeInfo.taeFeatures;
      const env = taeFeatures.env || 'production';
      const theme = themeInfo.boostThemeLib || 'default';
      const version = env === 'staging' ? 'staging' : themeInfo.boostThemeLibVersion || 'latest';
      // Change CDN for refactoring version, need update when releasing for all stores
      // const cdn = boostSDAppConfig.api.cdn || 'https://boost-cdn-staging.bc-solutions.net';
      const cdn = env === 'staging'
        ? 'https://boost-cdn-staging.bc-solutions.net'
        : 'https://cdn.boostcommerce.io';

      const featureAssetBaseURL = `${cdn}/theme/${theme}/${version}`;
      const preloadScripts = ['main.js', 'vendor.js'];

      const enableFilter =
      (page === 'collection' && taeFeatures.filterCollection === 'installed') ||
      (page === 'search' && taeFeatures.filterSearch === 'installed');

      const enableSearch = taeFeatures.instantSearch === 'installed';

      const recommendationWidgetPlacementIdPrefix = 'boost-sd-widget-';
      const recommendationWidgetPlacements = document.querySelectorAll(
      `[id^='${recommendationWidgetPlacementIdPrefix}']`
      );

      const hasRecommendationBlock = !!recommendationWidgetPlacements.length;
      if (!hasRecommendationBlock) {
        window.boostSDAppConfig.themeInfo.taeFeatures.recommendation = 'not-installed';
      }

      if (taeFeatures.recommendation !== 'installed' && hasRecommendationBlock) {
        window.boostSDAppConfig.themeInfo.taeFeatures.recommendation = 'installed';
      }

      const enableRecommendation = hasRecommendationBlock;

      const invalidateCacheTime = window.boostSDAppConfig.versioning.invalidateCache.latestTime;
      const storageKey = 'boostSDVersioningInvalidateCacheTime';
      const latestInvalidateTime = localStorage.getItem(storageKey);
      const needInvalidateCache = env === 'staging' || latestInvalidateTime && Number(latestInvalidateTime) < invalidateCacheTime;

      if (!needInvalidateCache) {
        if (enableFilter) preloadScripts.push('filter.js');
        if (enableSearch) preloadScripts.push('search.js');
        if (enableRecommendation) preloadScripts.push('recommendation.js');
      }

      const invalidParams = window.boostSDAppConfig.versioning.invalidateCache.invalidParams || `?v=${Date.now()}`;

      preloadScripts.forEach(script => {
        const scriptPrefetchTag = document.createElement('link');
        const scriptPrefetchTagSrc = `${featureAssetBaseURL}/${script}${needInvalidateCache ? invalidParams : ''}`;

        scriptPrefetchTag.rel = 'preload';
        scriptPrefetchTag.href = scriptPrefetchTagSrc;
        scriptPrefetchTag.as = 'script';

        document.head.appendChild(scriptPrefetchTag);
      })
    }

    function loadResource(script, position = 'body', keySource = 'src') {
      return new Promise((resolve, reject) => {
        script.onload = function () {
          resolve(true);
        };

        script.onerror = function (error) {
          reject(error);
        };

        switch (position) {
          case 'head': {
            document.head.appendChild(script);
          }

          case 'body': {
            document.body.appendChild(script);
          }
        }
      });
    }


    async function loadScripts() {
      // load boost-sd base on boostThemeLibVersion
      const themeInfo = window?.boostSDAppConfig?.themeInfo;
      const boostThemeLibVersion = themeInfo?.boostThemeLibVersion || 'lastest';
      const env = themeInfo?.taeFeatures?.env || 'production';

      // load boost-sd base on boostThemeLibVersion
      const boostSdScript = document.createElement('script');
      boostSdScript.async = "async";

      // Load react & react-dom CDN first load, make sure before main.js
      if(boostThemeLibVersion.startsWith('2.2') || env === 'staging') {
        const reactCDNScript = document.createElement('script');
        const reactDomCDNScript = document.createElement('script');
        reactCDNScript.setAttribute(
          'src',
          `https://cdn.shopify.com/extensions/019ea607-96fa-70a7-9c2d-3fd887fefff1/product-filter-search-215/assets/react-18.2.0.js`
        );
        reactDomCDNScript.setAttribute(
          'src',
          `https://cdn.shopify.com/extensions/019ea607-96fa-70a7-9c2d-3fd887fefff1/product-filter-search-215/assets/react-dom-18.2.0.js`
        );

        await loadResource(reactCDNScript);
        await loadResource(reactDomCDNScript);
      }

      if(env === 'staging' || boostThemeLibVersion.startsWith('alpha') || boostThemeLibVersion.startsWith('beta') || boostThemeLibVersion === 'latest' || Number(boostThemeLibVersion.substring(0,1)) >= 2) {
        // if 'alpha', 'beta', 'latest' or version >== 2.x.x
        preloadResource();

        boostSdScript.setAttribute(
          'src',
          `https://cdn.shopify.com/extensions/019ea607-96fa-70a7-9c2d-3fd887fefff1/product-filter-search-215/assets/boost-sd.experiments.js`
        );
      } else {
        // if version < 2.x.x
        boostSdScript.setAttribute(
          'src',
          `https://cdn.shopify.com/extensions/019ea607-96fa-70a7-9c2d-3fd887fefff1/product-filter-search-215/assets/boost-sd.js`
        );
      }

      document.body?.appendChild(boostSdScript);
    }

    const targetElement = (window.boostSDLoadConfig || {}).targetElement || window;

    if (window.boostSDLoadConfig && window.boostSDLoadConfig.lazy) {
      targetElement.addEventListener("DOMContentLoaded", () => {
        loadAppConfig();
        loadScripts();
      });
    } else {
      loadAppConfig();
      loadScripts();
    }
  })();</script><!-- END app snippet --></div><!-- Failed to render app block "17676059084223943535": app block path "shopify://apps/triplewhale/blocks/triple_pixel_snippet/483d496b-3f1a-4609-aea7-8eee3b6b7a2a" does not exist --><script src="https://cdn.shopify.com/storefront/standard-actions.js" type="module" data-source-attribution="shopify.standard_actions"></script>
</body>
</html>
