It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://www.garvee.com/

  1. <!doctype html>
  2. <html
  3.  class="no-js "
  4.  lang="en"
  5.  data-template="index"
  6. >
  7.  <head>
  8.  
  9. <!-- Google tag (gtag.js) -->
  10. <script async src="https://www.googletagmanager.com/gtag/js?id=AW-17132455826"></script>
  11. <script>
  12.  window.dataLayer = window.dataLayer || [];
  13.  function gtag(){dataLayer.push(arguments);}
  14.  gtag('js', new Date());
  15.  
  16.  gtag('config', 'AW-17132455826');
  17. </script>
  18.  
  19.  
  20.  
  21.  
  22.    
  23.    <script>
  24.      (function () {
  25.        // 配置
  26.        const STORAGE_KEY = 'garvee_search_history';
  27.        const MAX_RECORDS = 5;
  28.  
  29.        function getHistory() {
  30.          try {
  31.            let list = JSON.parse(localStorage.getItem(STORAGE_KEY)) || [];
  32.            return list;
  33.          } catch (e) {
  34.            return [];
  35.          }
  36.        }
  37.  
  38.        // 保存搜索历史
  39.        function saveHistory(list) {
  40.          localStorage.setItem(STORAGE_KEY, JSON.stringify(list));
  41.        }
  42.  
  43.        // 删除所有历史记录
  44.        function clearHistory() {
  45.          localStorage.removeItem(STORAGE_KEY);
  46.        }
  47.  
  48.        const params = new URLSearchParams(window.location.search);
  49.        if (params.has('q')) {
  50.          // 获取q参数原始值(解码任何 URL 编码的字符)
  51.          let qValue = params.get('q').trim();
  52.          if (qValue === '') return;
  53.          let list = getHistory();
  54.          // 去重(防止重复关键词,先删掉已有该值再插队)
  55.          list = list.filter((item) => item !== qValue);
  56.          // 插入新记录到最前
  57.          list.unshift(qValue);
  58.          // 保留最多MAX_RECORDS条
  59.          if (list.length > MAX_RECORDS) {
  60.            list = list.slice(0, MAX_RECORDS);
  61.          }
  62.          saveHistory(list);
  63.        }
  64.  
  65.        // 你可以提供渲染历史记录的方法
  66.        window.garveeSearch = {
  67.          getHistory,
  68.          clearHistory
  69.        };
  70.      })();
  71.    </script>
  72.  
  73.    <script>
  74.      (function (w, d, t, r, u) {
  75.        var f, n, i;
  76.        (w[u] = w[u] || []),
  77.          (f = function () {
  78.            var o = { ti: '187191242', enableAutoSpaTracking: true };
  79.            (o.q = w[u]), (w[u] = new UET(o)), w[u].push('pageLoad');
  80.          }),
  81.          (n = d.createElement(t)),
  82.          (n.src = r),
  83.          (n.async = 1),
  84.          (n.onload = n.onreadystatechange =
  85.            function () {
  86.              var s = this.readyState;
  87.              (s && s !== 'loaded' && s !== 'complete') || (f(), (n.onload = n.onreadystatechange = null));
  88.            }),
  89.          (i = d.getElementsByTagName(t)[0]),
  90.          i.parentNode.insertBefore(n, i);
  91.      })(window, document, 'script', '//bat.bing.com/bat.js', 'uetq');
  92.    </script>
  93.  
  94.    <!-- BEGIN MerchantWidget Code -->
  95.    <script
  96.      id="merchantWidgetScript"
  97.      src="https://www.gstatic.com/shopping/merchant/merchantwidget.js"
  98.      defer
  99.    ></script>
  100.    <script type="text/javascript">
  101.      merchantWidgetScript.addEventListener('load', function () {
  102.        merchantwidget.start({
  103.          position: 'RIGHT_BOTTOM',
  104.          sideMargin: 16,
  105.          bottomMargin: 50,
  106.          mobileSideMargin: 16,
  107.          mobileBottomMargin: 50,
  108.        });
  109.      });
  110.    </script>
  111.    <!-- END MerchantWidget Code -->
  112.  
  113.    <!-- heatmap.com snippet -->
  114.    <script>
  115.      (function () {
  116.        var _heatmap_paq = window._heatmap_paq || [];
  117.        var heatUrl = (window.heatUrl = 'https://dashboard.heatmap.com/');
  118.        function heatLoader(url, item) {
  119.          if (typeof handleSinglePagedWebsite !== 'undefined' && item == 'prep') return true;
  120.          var s = document.createElement('script');
  121.          s.type = 'text/javascript';
  122.          s.src = url;
  123.          s.async = false;
  124.          s.defer = true;
  125.          document.head.appendChild(s);
  126.        }
  127.        heatLoader(heatUrl + 'preprocessor.min.js?sid=3087', 'prep');
  128.        setTimeout(function () {
  129.          if (typeof _heatmap_paq !== 'object' || _heatmap_paq.length == 0) {
  130.            _heatmap_paq.push(['setTrackerUrl', heatUrl + 'heatmap.php']);
  131.            heatLoader(heatUrl + 'heatmap-light.min.js?sid=3087', 'heat');
  132.          }
  133.        }, 1000);
  134.      })();
  135.    </script>
  136.    <!-- End heatmap.com snippet Code -->
  137.    <script>
  138.      // 1. 捕获 UTM 参数并存入 localStorage
  139.      (function () {
  140.        function getQueryParam(param) {
  141.          const urlParams = new URLSearchParams(window.location.search);
  142.          return urlParams.get(param);
  143.        }
  144.  
  145.        const utmSource = getQueryParam('utm_source');
  146.        const utmMedium = getQueryParam('utm_medium');
  147.        const utmCampaign = getQueryParam('utm_campaign');
  148.  
  149.        if (utmSource || utmMedium || utmCampaign) {
  150.          const utmData = {
  151.            source: utmSource || '',
  152.            medium: utmMedium || '',
  153.            campaign: utmCampaign || '',
  154.          };
  155.          localStorage.setItem('utm_data', JSON.stringify(utmData));
  156.        }
  157.      })();
  158.  
  159.      // 2. 页面加载完成后,尝试将 UTM 参数填入注册表单隐藏字段
  160.      document.addEventListener('DOMContentLoaded', function () {
  161.        const utmData = JSON.parse(localStorage.getItem('utm_data') || '{}');
  162.        const noteField = document.querySelector('input[name="customer[note]"]');
  163.  
  164.        if (noteField && Object.keys(utmData).length > 0) {
  165.          noteField.value = `utm_source=${utmData.source}; utm_medium=${utmData.medium}; utm_campaign=${utmData.campaign}`;
  166.        }
  167.      });
  168.    </script>
  169.    <script type="text/javascript">
  170.      (function (c, l, a, r, i, t, y) {
  171.        c[a] =
  172.          c[a] ||
  173.          function () {
  174.            (c[a].q = c[a].q || []).push(arguments);
  175.          };
  176.        t = l.createElement(r);
  177.        t.async = 1;
  178.        t.src = 'https://www.clarity.ms/tag/' + i;
  179.        y = l.getElementsByTagName(r)[0];
  180.        y.parentNode.insertBefore(t, y);
  181.      })(window, document, 'clarity', 'script', 'oep2uxbgcc');
  182.    </script>
  183.  
  184.    <!-- Added by AVADA SEO Suite -->
  185.    
  186.  
  187.    <!-- /Added by AVADA SEO Suite -->
  188.    <meta name="p:domain_verify" content="e2f0aa1ce2f954a87e3963ed1d5c019e">
  189.    <meta name="facebook-domain-verification" content="h1akk15huktds2zutjkql01jxzj1io">
  190.    <meta charset="utf-8">
  191.    <meta http-equiv="X-UA-Compatible" content="IE=edge">
  192.    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=0">
  193.    <meta name="theme-color" content="#000000">
  194.    <meta name="google-site-verification" content="BT7-YLpu0Xx3_ni4wpZCx0v2EaarRUERKOmh3vGChsQ">
  195.  
  196.    <!-- Start of garvee Zendesk Widget script -->
  197.    <script
  198.      defer
  199.      id="ze-snippet"
  200.      src="https://static.zdassets.com/ekr/snippet.js?key=9d9f5998-1c1b-40a1-a3d9-303960cceac1"
  201.    ></script>
  202.    <!-- End of garvee Zendesk Widget script -->
  203.  
  204.    <script>
  205.      //改变zendesk插件图标大小
  206.      let zendeskDiv;
  207.      // 应用样式的函数
  208.      function applyStyles() {
  209.        if(!zendeskDiv) return;
  210.        if (window.innerWidth < 800) {
  211.          zendeskDiv.style.width = '40px';
  212.          zendeskDiv.style.height = '40px';
  213.        } else {
  214.          zendeskDiv.style.width = '64px';
  215.          zendeskDiv.style.height = '64px';
  216.        }
  217.      }
  218.      // 监听iframe的DOM变化,当有新的子节点添加时,检查是否有新的zendeskDiv出现
  219.      let observer = new MutationObserver((mutationsList) => {
  220.        mutationsList.forEach((mutation) => {
  221.          if (mutation.type === 'childList' && mutation.addedNodes.length) {
  222.            mutation.addedNodes.forEach((node, index) => {
  223.              zendeskDiv = node.querySelector('.jAbTKI');
  224.              applyStyles();
  225.            });
  226.          }
  227.        });
  228.      });
  229.      // 循环检测zendesk的iframe是否加载完成,加载完成后再执行
  230.      let zendeskIntervalId = setInterval(function () {
  231.        zendeskDiv = document.querySelector('#launcher')?.contentDocument?.documentElement?.querySelector('.jAbTKI');// zendesk网页小组件
  232.        if (zendeskDiv) {
  233.            clearInterval(zendeskIntervalId);
  234.            applyStyles();
  235.            document.querySelector('#launcher').style.zIndex = 14;
  236.            observer.observe(document.querySelector('#launcher').contentDocument.documentElement, {
  237.              childList: true,
  238.              subtree: true,
  239.            });
  240.            // 添加窗口大小变化的监听器
  241.            window.addEventListener('resize', applyStyles);
  242.        }
  243.      }, 500);
  244.    </script>
  245.  
  246.    <!--
  247.      <script defer>
  248.        (function(w,d,t,r,u)
  249.        {
  250.          var f,n,i;
  251.          w[u]=w[u]||[],f=function()
  252.          {
  253.            var o={ti:"97116375", enableAutoSpaTracking: true};
  254.            o.q=w[u],w[u]=new UET(o),w[u].push("pageLoad")
  255.          },
  256.          n=d.createElement(t),n.src=r,n.async=1,n.onload=n.onreadystatechange=function()
  257.          {
  258.            var s=this.readyState;
  259.            s&&s!=="loaded"&&s!=="complete"||(f(),n.onload=n.onreadystatechange=null)
  260.          },
  261.          i=d.getElementsByTagName(t)[0],i.parentNode.insertBefore(n,i)
  262.        })
  263.        (window,document,"script","//bat.bing.com/bat.js","uetq");
  264.      </script>
  265.      <script defer>
  266.        // Add this script right after your base UET tag code
  267.        window.uetq = window.uetq || [];
  268.        window.uetq.push('set', { 'pid': {
  269.           'em': 'contoso@example.com', // Replace with the variable that holds the user's email address.
  270.           'ph': '+14250000000', // Replace with the variable that holds the user's phone number.
  271.        } });
  272.      </script>
  273.      <script defer>
  274.        window.uetq = window.uetq || [];window.uetq.push('event', 'purchase', {"revenue_value":Replace_with_Variable_Revenue_Function(),"currency":"USD"});
  275.      </script>
  276.      <!-- Ptengine Tag
  277.    -->
  278.    <!-- <script src="https://js.ptengine.com/15nr50ei.js"></script> -->
  279.    <!-- End Ptengine Tag --><script defer>
  280.      window.addEventListener('load', function (event) {
  281.        document.querySelectorAll('[class*="m-button"]').forEach(function (e) {
  282.          e.addEventListener('click', function (e) {
  283.            var email = document.querySelector('[name="customer[email]"]')?.value || '';
  284.            var first_name = document.querySelector('[name="customer[first_name]"]')?.value || '';
  285.            var last_name = document.querySelector('[name="customer[last_name]"]')?.value || '';
  286.            var password = document.querySelector('[name="customer[password]"]')?.value || '';
  287.  
  288.            var mailformat = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
  289.  
  290.            if (email != '' && email.match(mailformat) && first_name != '' && last_name != '' && password != '') {
  291.              gtag('event', 'add_Sign_up');
  292.            }
  293.          });
  294.        });
  295.      });
  296.    </script>
  297.  
  298.    <script defer>
  299.      window.addEventListener('load', function (event) {
  300.        document.querySelectorAll('[type="submit"]').forEach(function (e) {
  301.          e.addEventListener('click', function (e) {
  302.            var email = document.querySelector('[name="contact[email]"]')?.value || '';
  303.  
  304.            var mailformat = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
  305.  
  306.            if (email != '' && email.match(mailformat)) {
  307.              gtag('event', 'add_Submit');
  308.            }
  309.          });
  310.        });
  311.      });
  312.    </script>
  313.  
  314.    <!-- Google tag (gtag.js) -->
  315.    <script async src="https://www.googletagmanager.com/gtag/js?id=AW-16555251919"></script>
  316.    <script defer>
  317.      window.dataLayer = window.dataLayer || [];
  318.      function gtag() {
  319.        dataLayer.push(arguments);
  320.      }
  321.      gtag('js', new Date());
  322.  
  323.      gtag('config', 'AW-16555251919');
  324.    </script>
  325.  
  326.    <script defer>
  327.      window.addEventListener('load', function (event) {
  328.        document.querySelectorAll('[name="add"]').forEach(function (e) {
  329.          e.addEventListener('click', function () {
  330.            gtag('event', 'conversion', { send_to: 'AW-16453378943/qdsMCOvJxq4ZEP_GyqU9' });
  331.          });
  332.        });
  333.      });
  334.    </script>
  335.    <script defer>
  336.      window.addEventListener('load', function (event) {
  337.        document.querySelectorAll('[name="add"]').forEach(function (e) {
  338.          e.addEventListener('click', function () {
  339.            gtag('event', 'conversion', { send_to: 'AW-16555251919/GR-pCJK1xa4ZEM-xlNY9' });
  340.          });
  341.        });
  342.      });
  343.    </script>
  344.  
  345.    <script defer>
  346.      window.addEventListener('load', function (event) {
  347.        document.querySelectorAll('[name="checkout"]').forEach(function (e) {
  348.          e.addEventListener('click', function () {
  349.            gtag('event', 'conversion', { send_to: 'AW-16453378943/p0MACO7Jxq4ZEP_GyqU9' });
  350.          });
  351.        });
  352.      });
  353.    </script><link rel="canonical" href="https://www.garvee.com/">
  354.  
  355.  
  356.  
  357. <link rel="preconnect" href="https://cdn.shopify.com" crossorigin>
  358.  
  359.  
  360.  
  361.  
  362.  
  363. <link rel="icon" type="image/png" href="//www.garvee.com/cdn/shop/files/lQLPJx5bev8M4Q3NBLDNBLCw6Px4ED_HGPgHB2c6HGdHAA.png?crop=center&height=32&v=1739354427&width=32"><title class="index">GARVEE | Home Improvement | Automotive, Food Service, Power Tools</title><meta name="keywords" content="GARVEE | Home Improvement | Automotive, Food Service, Power Tools">
  364. <meta name="description" content="GARVEE specialize in commercial equipment to meet different business needs. Includes DIY tools and MRO products for different contexts. This includes business &amp; industrial tool, agriculture, furniture, plumbing, gardening, outdoors, and home, as well as automotive parts &amp; repair tools, and restaurant food equipment."><meta property="og:site_name" content="GARVEE">
  365. <meta property="og:url" content="https://www.garvee.com/">
  366. <meta property="og:title" content="GARVEE | Home Improvement | Automotive, Food Service, Power Tools">
  367. <meta property="og:type" content="website">
  368. <meta property="og:description" content="GARVEE specialize in commercial equipment to meet different business needs. Includes DIY tools and MRO products for different contexts. This includes business &amp; industrial tool, agriculture, furniture, plumbing, gardening, outdoors, and home, as well as automotive parts &amp; repair tools, and restaurant food equipment."><meta property="og:image" content="http://www.garvee.com/cdn/shop/files/7_b376f5da-2df9-46dc-b361-030a8faa697a.webp?v=1746696639">
  369. <meta property="og:image:secure_url" content="https://www.garvee.com/cdn/shop/files/7_b376f5da-2df9-46dc-b361-030a8faa697a.webp?v=1746696639">
  370. <meta property="og:image:width" content="2000">
  371. <meta property="og:image:height" content="1125"><meta name="twitter:card" content="summary_large_image">
  372. <meta name="twitter:title" content="GARVEE | Home Improvement | Automotive, Food Service, Power Tools">
  373. <meta name="twitter:description" content="GARVEE specialize in commercial equipment to meet different business needs. Includes DIY tools and MRO products for different contexts. This includes business &amp; industrial tool, agriculture, furniture, plumbing, gardening, outdoors, and home, as well as automotive parts &amp; repair tools, and restaurant food equipment.">
  374.  
  375. <style>
  376.  @font-face {  font-family: M-Heading-Font;  font-weight:800;  src: url(https://cdn.shopify.com/s/files/1/0724/6698/9369/files/SourceSans3-Bold.ttf?v=1740997357);  font-display: swap;}:root {  --font-stack-header: 'M-Heading-Font';  --font-weight-header: 800;}@font-face {  font-family: M-Body-Font;  font-weight:500;  src: url(https://cdn.shopify.com/s/files/1/0724/6698/9369/files/SourceSans3-Regular.ttf?v=1740997389);  font-display: swap;}:root {  --font-stack-body: 'M-Body-Font';  --font-weight-body: 500;;}
  377. </style>
  378. <style>
  379. html {
  380.  font-size: calc(var(--font-base-size, 16) * 1px);
  381.  -webkit-font-smoothing: antialiased;
  382.  height: 100%;
  383.  scroll-behavior: smooth;
  384. }
  385. body {
  386.  margin: 0;
  387.  font-family: var(--font-stack-body) !important;
  388.  font-weight: var(--font-weight-body);
  389.  font-style: var(--font-style-body);
  390.  color: rgb(var(--color-foreground));
  391.  font-size: calc(var(--font-base-size, 16) * 1px);
  392.  line-height: calc(var(--base-line-height) * 1px);
  393.  background-color: rgb(var(--color-background));
  394.  position: relative;
  395.  min-height: 100%;
  396. }
  397.  
  398. body {
  399.  overflow-x: hidden;
  400. }
  401.  
  402. html.prevent-scroll,
  403. html.prevent-scroll body {
  404.  height: auto;
  405.  overflow: hidden;
  406. }
  407.  
  408. h1, .h1,
  409. h2, .h2,
  410. h3, .h3,
  411. h4, .h4,
  412. h5, .h5,
  413. h6, .h6 {
  414.  font-family: var(--font-stack-header);
  415.  font-weight: var(--font-weight-header);
  416.  font-style: var(--font-style-header);
  417.  color: rgb(var(--color-foreground));
  418.  line-height: normal;
  419.  letter-spacing: var(--header-letter-spacing);
  420. }
  421. h1, .h1 {
  422.  font-size:calc(((var(--font-h1-mobile))/ (var(--font-base-size))) * 1rem);
  423.  line-height: 1.278;
  424. }
  425.  
  426. h2, .h2 {
  427.  font-size:calc(((var(--font-h2-mobile))/ (var(--font-base-size))) * 1rem);
  428.  line-height: 1.267;
  429. }
  430.  
  431. h3, .h3 {
  432.  font-size: calc(((var(--font-h3-mobile)) / (var(--font-base-size))) * 1rem);
  433.  line-height: 1.36;
  434. }
  435.  
  436. h4, .h4 {
  437.  font-size: calc(((var(--font-h4-mobile)) / (var(--font-base-size))) * 1rem);
  438.  line-height: 1.4;
  439. }
  440.  
  441. h5, .h5 {
  442.  font-size: calc(((var(--font-h5-mobile)) / (var(--font-base-size))) * 1rem);
  443.  line-height: 1.5;
  444. }
  445.  
  446. h6, .h6 {
  447.  font-size: calc(((var(--font-h6-mobile)) / (var(--font-base-size))) * 1rem);
  448.  line-height: 1.5;
  449. }
  450.  
  451. @media only screen and (min-width: 768px) {
  452.  .h1, h1{
  453.    font-size:calc(((var(--font-h1-tablet))/ (var(--font-base-size))) * 1rem);
  454.    line-height: 1.238;
  455.  }
  456.  .h2, h2{
  457.    font-size:calc(((var(--font-h2-tablet))/ (var(--font-base-size))) * 1rem);
  458.    line-height: 1.235;
  459.  }
  460.  h3, .h3 {
  461.    font-size: calc(((var(--font-h3-tablet)) / (var(--font-base-size))) * 1rem);
  462.    line-height: 1.36;
  463.  }
  464.  h4, .h4 {
  465.    font-size: calc(((var(--font-h4-tablet)) / (var(--font-base-size))) * 1rem);
  466.    line-height: 1.4;
  467.  }
  468. }
  469.  
  470. @media only screen and (min-width: 1280px){
  471.  .h1, h1{
  472.    font-size:calc(((var(--font-h1-desktop))/ (var(--font-base-size))) * 1rem);
  473.    line-height: 1.167;
  474.  }
  475.  .h2, h2{
  476.    font-size:calc(((var(--font-h2-desktop))/ (var(--font-base-size))) * 1rem);
  477.    line-height: 1.238;
  478.  }
  479.  h3, .h3 {
  480.    font-size: calc(((var(--font-h3-desktop)) / (var(--font-base-size))) * 1rem);
  481.    line-height: 1.278;
  482.  }
  483.  h4, .h4 {
  484.    font-size: calc(((var(--font-h4-desktop)) / (var(--font-base-size))) * 1rem);
  485.    line-height: 1.333;
  486.  }
  487.  h5, .h5 {
  488.    font-size: calc(((var(--font-h5-desktop)) / (var(--font-base-size))) * 1rem);
  489.  }
  490.  h6, .h6 {
  491.    font-size: calc(((var(--font-h6-desktop)) / (var(--font-base-size))) * 1rem);
  492.  }
  493. }
  494. [style*="--aspect-ratio"] {
  495.  position: relative;
  496.  overflow: hidden;
  497. }
  498. [style*="--aspect-ratio"]:before {
  499.  display: block;
  500.  width: 100%;
  501.  content: "";
  502.  height: 0px;
  503. }
  504. [style*="--aspect-ratio"] > *:first-child {
  505.  top: 0;
  506.  left: 0;
  507.  right: 0;
  508.  position: absolute !important;
  509.  object-fit: cover;
  510.  width: 100%;
  511.  height: 100%;
  512. }
  513. [style*="--aspect-ratio"]:before {
  514.  padding-top: calc(100% / (0.0001 + var(--aspect-ratio, 16/9)));
  515. }
  516. @media ( max-width: 767px ) {
  517.  [style*="--aspect-ratio"]:before {
  518.    padding-top: calc(100% / (0.0001 + var(--aspect-ratio-mobile, var(--aspect-ratio, 16/9)) ));
  519.  }
  520. }
  521. .swiper-wrapper {
  522.  display: flex;
  523. }
  524. .swiper:not(.swiper-initialized) .swiper-slide {
  525.  width: calc(100% / var(--items, 1));
  526.  flex: 0 0 auto;
  527. }
  528. @media(max-width: 1023px) {
  529.  .swiper:not(.swiper-initialized) .swiper-slide {
  530.    min-width: 40vw;
  531.    flex: 0 0 auto;
  532.  }
  533. }
  534. @media (max-width: 767px) {
  535.  .swiper:not(.swiper-initialized) .swiper-slide {
  536.    min-width: 66vw;
  537.    flex: 0 0 auto;
  538.  }
  539. }
  540.  
  541. @media (max-width: 1370px) {
  542.  .m-show-bubble {
  543.    padding-right: var(--header-top-spacing-right, 26px) !important;
  544.  }
  545. }
  546.  
  547. @media (min-width: 768px) and (max-width: 1370px) {
  548.  .m-slider-controls--nav-outside .m-slider-controls__button {
  549.    color: rgba(var(--text-black),1);
  550.    background: rgba(var(--bg-white),1);
  551.    border: 1px solid rgb(var(--color-border));
  552.    border-radius: 9999px;
  553.    box-shadow: 0 4px 24px #0000001f;
  554.    transition: var(--m-duration-default, .25s) all;
  555.  }
  556.  
  557.  .m-slider-controls--nav-outside .m-slider-controls__button svg {
  558.    width: 16px !important;
  559.    height: 16px !important;
  560.  }
  561.  
  562.  .m-slider-controls--nav-outside .m-slider-controls__button svg path {
  563.    stroke-width: 3px;
  564.  }
  565.  
  566.  .m-slider-controls--nav-outside .m-slider-controls__button-prev {
  567.    left: calc(var(--m-button-size)/-2 + var(--column-gap)/2) !important;
  568.  }
  569.  
  570.  .m-slider-controls--nav-outside .m-slider-controls__button-next {
  571.    right: calc(var(--m-button-size) / -2 + var(--column-gap) / 2) !important;
  572.  }
  573. }
  574. </style>
  575.  
  576.    
  577.  
  578.    <link href="//www.garvee.com/cdn/shop/t/132/assets/grid.css?v=110776282767031809871740986010" rel="stylesheet" type="text/css" media="all" />
  579.    <link href="//www.garvee.com/cdn/shop/t/132/assets/base.css?v=149708862298072704831740986011" rel="stylesheet" type="text/css" media="all" />
  580.    <link href="//www.garvee.com/cdn/shop/t/132/assets/modules.css?v=115443733601602998301745490295" rel="stylesheet" type="text/css" media="all" />
  581.  
  582.    
  583.  
  584.  
  585. <style data-shopify>
  586. :root,.m-color-background-1, .tippy-box[data-theme~='m-color-background-1'] {
  587.   --color-background: 255,255,255;
  588.  
  589.   --gradient-background: #ffffff;
  590.  
  591.   --color-foreground: 0,0,0;
  592.   --color-foreground-secondary: 102,102,102;
  593.   --color-button: 7,65,116;
  594.   --color-button-text: 255,255,255;
  595.   --color-outline-button: 255,255,255;
  596.   --color-outline-button-text: 0,0,0;
  597.   --color-secondary-button: 7,65,116;
  598.   --color-secondary-button-text: 255,255,255;
  599.   --color-border: 202,202,202;
  600.   --color-price-sale: 7,65,116;
  601.   --color-price-regular: 102,102,102;
  602.   --color-form-field: 255,255,255;
  603.   --color-form-field-text: 34,34,34;
  604.   --color-tooltip: 7,65,116;
  605.   --color-tooltip-text: 255,255,255;
  606.   --color-primary: 7,65,116;
  607.   }
  608.  
  609. .m-color-background-2, .tippy-box[data-theme~='m-color-background-2'] {
  610.   --color-background: 255,255,255;
  611.  
  612.   --gradient-background: #ffffff;
  613.  
  614.   --color-foreground: 0,0,0;
  615.   --color-foreground-secondary: 102,102,102;
  616.   --color-button: 7,65,116;
  617.   --color-button-text: 255,255,255;
  618.   --color-outline-button: 255,255,255;
  619.   --color-outline-button-text: 7,65,116;
  620.   --color-secondary-button: 255,255,255;
  621.   --color-secondary-button-text: 7,65,116;
  622.   --color-border: 202,202,202;
  623.   --color-price-sale: 0,0,0;
  624.   --color-price-regular: 102,102,102;
  625.   --color-form-field: 255,255,255;
  626.   --color-form-field-text: 34,34,34;
  627.   --color-tooltip: 34,34,34;
  628.   --color-tooltip-text: 255,255,255;
  629.   --color-primary: 7,65,116;
  630.   }
  631.  
  632. .m-color-background-3, .tippy-box[data-theme~='m-color-background-3'] {
  633.   --color-background: 197,215,68;
  634.  
  635.   --gradient-background: #c5d744;
  636.  
  637.   --color-foreground: 255,255,255;
  638.   --color-foreground-secondary: 102,102,102;
  639.   --color-button: 255,183,0;
  640.   --color-button-text: 0,0,0;
  641.   --color-outline-button: 197,215,68;
  642.   --color-outline-button-text: 255,255,255;
  643.   --color-secondary-button: 255,255,255;
  644.   --color-secondary-button-text: 0,0,0;
  645.   --color-border: 205,34,21;
  646.   --color-price-sale: 224,43,43;
  647.   --color-price-regular: 102,102,102;
  648.   --color-form-field: 255,255,255;
  649.   --color-form-field-text: 34,34,34;
  650.   --color-tooltip: 255,255,255;
  651.   --color-tooltip-text: 0,0,0;
  652.   --color-primary: 255,183,0;
  653.   }
  654.  
  655. .m-color-background-4, .tippy-box[data-theme~='m-color-background-4'] {
  656.   --color-background: 65,78,68;
  657.  
  658.   --gradient-background: #414e44;
  659.  
  660.   --color-foreground: 255,255,255;
  661.   --color-foreground-secondary: 102,102,102;
  662.   --color-button: 255,255,255;
  663.   --color-button-text: 0,0,0;
  664.   --color-outline-button: 65,78,68;
  665.   --color-outline-button-text: 255,255,255;
  666.   --color-secondary-button: 255,255,255;
  667.   --color-secondary-button-text: 0,0,0;
  668.   --color-border: 238,238,238;
  669.   --color-price-sale: 224,43,43;
  670.   --color-price-regular: 102,102,102;
  671.   --color-form-field: 255,255,255;
  672.   --color-form-field-text: 34,34,34;
  673.   --color-tooltip: 34,34,34;
  674.   --color-tooltip-text: 255,255,255;
  675.   --color-primary: 34,34,34;
  676.   }
  677.  
  678. .m-color-background-5, .tippy-box[data-theme~='m-color-background-5'] {
  679.   --color-background: 169,107,222;
  680.  
  681.   --gradient-background: #a96bde;
  682.  
  683.   --color-foreground: 255,255,255;
  684.   --color-foreground-secondary: 102,102,102;
  685.   --color-button: 255,255,255;
  686.   --color-button-text: 0,0,0;
  687.   --color-outline-button: 169,107,222;
  688.   --color-outline-button-text: 255,255,255;
  689.   --color-secondary-button: 255,255,255;
  690.   --color-secondary-button-text: 0,0,0;
  691.   --color-border: 238,238,238;
  692.   --color-price-sale: 224,43,43;
  693.   --color-price-regular: 102,102,102;
  694.   --color-form-field: 255,255,255;
  695.   --color-form-field-text: 34,34,34;
  696.   --color-tooltip: 34,34,34;
  697.   --color-tooltip-text: 255,255,255;
  698.   --color-primary: 34,34,34;
  699.   }
  700.  
  701. .m-color-scheme-b8d91266-59d5-49fe-ba4d-41e83e7e9a99, .tippy-box[data-theme~='m-color-scheme-b8d91266-59d5-49fe-ba4d-41e83e7e9a99'] {
  702.   --color-background: 255,255,255;
  703.  
  704.   --gradient-background: #ffffff;
  705.  
  706.   --color-foreground: 0,0,0;
  707.   --color-foreground-secondary: 102,102,102;
  708.   --color-button: 255,200,66;
  709.   --color-button-text: 0,0,0;
  710.   --color-outline-button: 255,255,255;
  711.   --color-outline-button-text: 0,0,0;
  712.   --color-secondary-button: 255,200,66;
  713.   --color-secondary-button-text: 255,255,255;
  714.   --color-border: 0,0,0;
  715.   --color-price-sale: 224,43,43;
  716.   --color-price-regular: 102,102,102;
  717.   --color-form-field: 255,255,255;
  718.   --color-form-field-text: 34,34,34;
  719.   --color-tooltip: 255,200,66;
  720.   --color-tooltip-text: 255,255,255;
  721.   --color-primary: 255,200,66;
  722.   }
  723.  
  724. .m-color-scheme-c9caef7a-f1a2-4b2e-8c50-90c93a75c017, .tippy-box[data-theme~='m-color-scheme-c9caef7a-f1a2-4b2e-8c50-90c93a75c017'] {
  725.   --color-background: 245,245,245;
  726.  
  727.   --gradient-background: #f5f5f5;
  728.  
  729.   --color-foreground: 0,0,0;
  730.   --color-foreground-secondary: 102,102,102;
  731.   --color-button: 205,34,21;
  732.   --color-button-text: 255,255,255;
  733.   --color-outline-button: 245,245,245;
  734.   --color-outline-button-text: 255,255,255;
  735.   --color-secondary-button: 242,242,242;
  736.   --color-secondary-button-text: 28,82,215;
  737.   --color-border: 255,255,255;
  738.   --color-price-sale: 224,46,10;
  739.   --color-price-regular: 102,102,102;
  740.   --color-form-field: 255,255,255;
  741.   --color-form-field-text: 34,34,34;
  742.   --color-tooltip: 34,34,34;
  743.   --color-tooltip-text: 255,255,255;
  744.   --color-primary: 205,34,21;
  745.   }
  746.  
  747. .m-color-scheme-f4f581d2-cf98-460f-baff-8037905fbec3, .tippy-box[data-theme~='m-color-scheme-f4f581d2-cf98-460f-baff-8037905fbec3'] {
  748.   --color-background: 244,244,244;
  749.  
  750.   --gradient-background: #f4f4f4;
  751.  
  752.   --color-foreground: 28,82,215;
  753.   --color-foreground-secondary: 102,102,102;
  754.   --color-button: 28,82,215;
  755.   --color-button-text: 255,255,255;
  756.   --color-outline-button: 244,244,244;
  757.   --color-outline-button-text: 21,44,205;
  758.   --color-secondary-button: 255,255,255;
  759.   --color-secondary-button-text: 205,34,21;
  760.   --color-border: 230,230,230;
  761.   --color-price-sale: 224,43,43;
  762.   --color-price-regular: 102,102,102;
  763.   --color-form-field: 255,255,255;
  764.   --color-form-field-text: 34,34,34;
  765.   --color-tooltip: 28,82,215;
  766.   --color-tooltip-text: 255,255,255;
  767.   --color-primary: 28,82,215;
  768.   }
  769.  
  770. .m-color-scheme-352a1218-1fb3-4827-8996-76416cb600a7, .tippy-box[data-theme~='m-color-scheme-352a1218-1fb3-4827-8996-76416cb600a7'] {
  771.   --color-background: 47,154,47;
  772.  
  773.   --gradient-background: #2f9a2f;
  774.  
  775.   --color-foreground: 255,255,255;
  776.   --color-foreground-secondary: 102,102,102;
  777.   --color-button: 255,255,255;
  778.   --color-button-text: 0,0,0;
  779.   --color-outline-button: 47,154,47;
  780.   --color-outline-button-text: 255,255,255;
  781.   --color-secondary-button: 255,255,255;
  782.   --color-secondary-button-text: 28,82,215;
  783.   --color-border: 230,230,230;
  784.   --color-price-sale: 224,43,43;
  785.   --color-price-regular: 102,102,102;
  786.   --color-form-field: 255,255,255;
  787.   --color-form-field-text: 34,34,34;
  788.   --color-tooltip: 28,82,215;
  789.   --color-tooltip-text: 255,255,255;
  790.   --color-primary: 255,255,255;
  791.   }
  792.  
  793. .m-color-scheme-a402d81f-d7b9-4c3a-a76b-e400e1634c1d, .tippy-box[data-theme~='m-color-scheme-a402d81f-d7b9-4c3a-a76b-e400e1634c1d'] {
  794.   --color-background: 149,210,246;
  795.  
  796.   --gradient-background: #95d2f6;
  797.  
  798.   --color-foreground: 0,0,0;
  799.   --color-foreground-secondary: 102,102,102;
  800.   --color-button: 255,255,255;
  801.   --color-button-text: 0,0,0;
  802.   --color-outline-button: 149,210,246;
  803.   --color-outline-button-text: 255,255,255;
  804.   --color-secondary-button: 255,255,255;
  805.   --color-secondary-button-text: 28,82,215;
  806.   --color-border: 230,230,230;
  807.   --color-price-sale: 224,43,43;
  808.   --color-price-regular: 102,102,102;
  809.   --color-form-field: 255,255,255;
  810.   --color-form-field-text: 34,34,34;
  811.   --color-tooltip: 28,82,215;
  812.   --color-tooltip-text: 255,255,255;
  813.   --color-primary: 0,0,0;
  814.   }
  815.  
  816. .m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7, .tippy-box[data-theme~='m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7'] {
  817.   --color-background: 255,255,255;
  818.  
  819.   --gradient-background: #ffffff;
  820.  
  821.   --color-foreground: 0,0,0;
  822.   --color-foreground-secondary: 102,102,102;
  823.   --color-button: 7,65,116;
  824.   --color-button-text: 255,255,255;
  825.   --color-outline-button: 255,255,255;
  826.   --color-outline-button-text: 7,65,116;
  827.   --color-secondary-button: 7,65,116;
  828.   --color-secondary-button-text: 255,255,255;
  829.   --color-border: 219,219,219;
  830.   --color-price-sale: 224,43,43;
  831.   --color-price-regular: 102,102,102;
  832.   --color-form-field: 255,255,255;
  833.   --color-form-field-text: 34,34,34;
  834.   --color-tooltip: 7,65,116;
  835.   --color-tooltip-text: 255,255,255;
  836.   --color-primary: 7,65,116;
  837.   }
  838.  
  839. .m-color-scheme-c8381f9b-2240-4cd3-acfa-b39b128ea020, .tippy-box[data-theme~='m-color-scheme-c8381f9b-2240-4cd3-acfa-b39b128ea020'] {
  840.   --color-background: 242,243,248;
  841.  
  842.   --gradient-background: #f2f3f8;
  843.  
  844.   --color-foreground: 0,0,0;
  845.   --color-foreground-secondary: 102,102,102;
  846.   --color-button: 0,0,0;
  847.   --color-button-text: 255,255,255;
  848.   --color-outline-button: 242,243,248;
  849.   --color-outline-button-text: 0,0,0;
  850.   --color-secondary-button: 205,34,21;
  851.   --color-secondary-button-text: 255,255,255;
  852.   --color-border: 230,230,230;
  853.   --color-price-sale: 224,43,43;
  854.   --color-price-regular: 102,102,102;
  855.   --color-form-field: 255,255,255;
  856.   --color-form-field-text: 34,34,34;
  857.   --color-tooltip: 28,82,215;
  858.   --color-tooltip-text: 255,255,255;
  859.   --color-primary: 28,82,215;
  860.   }
  861.  
  862. .m-color-scheme-d6e83922-2e6c-4668-a9af-cf1e16dc0aa4, .tippy-box[data-theme~='m-color-scheme-d6e83922-2e6c-4668-a9af-cf1e16dc0aa4'] {
  863.   --color-background: 255,255,255;
  864.  
  865.   --gradient-background: #ffffff;
  866.  
  867.   --color-foreground: 0,0,0;
  868.   --color-foreground-secondary: 102,102,102;
  869.   --color-button: 0,0,0;
  870.   --color-button-text: 255,255,255;
  871.   --color-outline-button: 255,255,255;
  872.   --color-outline-button-text: 255,255,255;
  873.   --color-secondary-button: 28,82,215;
  874.   --color-secondary-button-text: 255,255,255;
  875.   --color-border: 255,255,255;
  876.   --color-price-sale: 224,43,43;
  877.   --color-price-regular: 255,255,255;
  878.   --color-form-field: 255,255,255;
  879.   --color-form-field-text: 34,34,34;
  880.   --color-tooltip: 28,82,215;
  881.   --color-tooltip-text: 255,255,255;
  882.   --color-primary: 28,82,215;
  883.   }
  884.  
  885. .m-color-scheme-b444ec9d-73b6-41ec-b237-201d8a2ce63d, .tippy-box[data-theme~='m-color-scheme-b444ec9d-73b6-41ec-b237-201d8a2ce63d'] {
  886.   --color-background: 244,244,244;
  887.  
  888.   --gradient-background: #f4f4f4;
  889.  
  890.   --color-foreground: 0,0,0;
  891.   --color-foreground-secondary: 102,102,102;
  892.   --color-button: 7,65,116;
  893.   --color-button-text: 255,255,255;
  894.   --color-outline-button: 244,244,244;
  895.   --color-outline-button-text: 0,0,0;
  896.   --color-secondary-button: 7,65,116;
  897.   --color-secondary-button-text: 255,255,255;
  898.   --color-border: 202,202,202;
  899.   --color-price-sale: 7,65,116;
  900.   --color-price-regular: 102,102,102;
  901.   --color-form-field: 255,255,255;
  902.   --color-form-field-text: 34,34,34;
  903.   --color-tooltip: 7,65,116;
  904.   --color-tooltip-text: 255,255,255;
  905.   --color-primary: 7,65,116;
  906.   }
  907.  
  908. .m-color-scheme-a96a0562-f729-49d8-b20c-900d9c1b23a6, .tippy-box[data-theme~='m-color-scheme-a96a0562-f729-49d8-b20c-900d9c1b23a6'] {
  909.   --color-background: 255,255,255;
  910.  
  911.   --gradient-background: #ffffff;
  912.  
  913.   --color-foreground: 7,65,116;
  914.   --color-foreground-secondary: 102,102,102;
  915.   --color-button: 30,144,255;
  916.   --color-button-text: 255,255,255;
  917.   --color-outline-button: 255,255,255;
  918.   --color-outline-button-text: 255,255,255;
  919.   --color-secondary-button: 30,144,255;
  920.   --color-secondary-button-text: 255,255,255;
  921.   --color-border: 202,202,202;
  922.   --color-price-sale: 224,43,43;
  923.   --color-price-regular: 102,102,102;
  924.   --color-form-field: 255,255,255;
  925.   --color-form-field-text: 34,34,34;
  926.   --color-tooltip: 205,34,21;
  927.   --color-tooltip-text: 255,255,255;
  928.   --color-primary: 205,34,21;
  929.   }
  930.  
  931. .m-color-scheme-81fd72d8-5634-4105-b7d8-be050f53a108, .tippy-box[data-theme~='m-color-scheme-81fd72d8-5634-4105-b7d8-be050f53a108'] {
  932.   --color-background: 232,232,232;
  933.  
  934.   --gradient-background: #e8e8e8;
  935.  
  936.   --color-foreground: 0,0,0;
  937.   --color-foreground-secondary: 102,102,102;
  938.   --color-button: 255,200,66;
  939.   --color-button-text: 0,0,0;
  940.   --color-outline-button: 232,232,232;
  941.   --color-outline-button-text: 0,0,0;
  942.   --color-secondary-button: 255,200,66;
  943.   --color-secondary-button-text: 255,255,255;
  944.   --color-border: 202,202,202;
  945.   --color-price-sale: 255,200,66;
  946.   --color-price-regular: 102,102,102;
  947.   --color-form-field: 255,255,255;
  948.   --color-form-field-text: 34,34,34;
  949.   --color-tooltip: 255,200,66;
  950.   --color-tooltip-text: 255,255,255;
  951.   --color-primary: 255,200,66;
  952.   }
  953.  
  954. .m-color-scheme-e2480d71-6357-4d5d-ad9a-1f69f983a1ec, .tippy-box[data-theme~='m-color-scheme-e2480d71-6357-4d5d-ad9a-1f69f983a1ec'] {
  955.   --color-background: 255,255,255;
  956.  
  957.   --gradient-background: #ffffff;
  958.  
  959.   --color-foreground: 0,0,0;
  960.   --color-foreground-secondary: 102,102,102;
  961.   --color-button: 205,34,21;
  962.   --color-button-text: 255,255,255;
  963.   --color-outline-button: 255,255,255;
  964.   --color-outline-button-text: 0,0,0;
  965.   --color-secondary-button: 205,34,21;
  966.   --color-secondary-button-text: 255,255,255;
  967.   --color-border: 202,202,202;
  968.   --color-price-sale: 224,43,43;
  969.   --color-price-regular: 102,102,102;
  970.   --color-form-field: 255,255,255;
  971.   --color-form-field-text: 34,34,34;
  972.   --color-tooltip: 205,34,21;
  973.   --color-tooltip-text: 255,255,255;
  974.   --color-primary: 205,34,21;
  975.   }
  976.  
  977. .m-color-scheme-700cfb8f-73dd-4d64-bae9-05d82205a4d5, .tippy-box[data-theme~='m-color-scheme-700cfb8f-73dd-4d64-bae9-05d82205a4d5'] {
  978.   --color-background: 255,255,255;
  979.  
  980.   --gradient-background: #ffffff;
  981.  
  982.   --color-foreground: 0,0,0;
  983.   --color-foreground-secondary: 102,102,102;
  984.   --color-button: 205,34,21;
  985.   --color-button-text: 255,255,255;
  986.   --color-outline-button: 255,255,255;
  987.   --color-outline-button-text: 0,0,0;
  988.   --color-secondary-button: 205,34,21;
  989.   --color-secondary-button-text: 255,255,255;
  990.   --color-border: 202,202,202;
  991.   --color-price-sale: 224,43,43;
  992.   --color-price-regular: 102,102,102;
  993.   --color-form-field: 255,255,255;
  994.   --color-form-field-text: 34,34,34;
  995.   --color-tooltip: 205,34,21;
  996.   --color-tooltip-text: 255,255,255;
  997.   --color-primary: 205,34,21;
  998.   }
  999.  
  1000. .m-color-scheme-8fa2889a-9953-44be-96d5-2cb5bf5970f2, .tippy-box[data-theme~='m-color-scheme-8fa2889a-9953-44be-96d5-2cb5bf5970f2'] {
  1001.   --color-background: 184,216,235;
  1002.  
  1003.   --gradient-background: #b8d8eb;
  1004.  
  1005.   --color-foreground: 0,0,0;
  1006.   --color-foreground-secondary: 102,102,102;
  1007.   --color-button: 7,65,116;
  1008.   --color-button-text: 255,255,255;
  1009.   --color-outline-button: 184,216,235;
  1010.   --color-outline-button-text: 255,255,255;
  1011.   --color-secondary-button: 7,65,116;
  1012.   --color-secondary-button-text: 255,255,255;
  1013.   --color-border: 202,202,202;
  1014.   --color-price-sale: 7,65,116;
  1015.   --color-price-regular: 102,102,102;
  1016.   --color-form-field: 255,255,255;
  1017.   --color-form-field-text: 34,34,34;
  1018.   --color-tooltip: 7,65,116;
  1019.   --color-tooltip-text: 255,255,255;
  1020.   --color-primary: 7,65,116;
  1021.   }
  1022.  
  1023. .m-color-scheme-7ce8c1c8-ab1a-4e9a-bd79-38bb88965f8f, .tippy-box[data-theme~='m-color-scheme-7ce8c1c8-ab1a-4e9a-bd79-38bb88965f8f'] {
  1024.   --color-background: 7,65,116;
  1025.  
  1026.   --gradient-background: #074174;
  1027.  
  1028.   --color-foreground: 255,255,255;
  1029.   --color-foreground-secondary: 255,255,255;
  1030.   --color-button: 0,130,255;
  1031.   --color-button-text: 255,255,255;
  1032.   --color-outline-button: 7,65,116;
  1033.   --color-outline-button-text: 255,255,255;
  1034.   --color-secondary-button: 255,255,255;
  1035.   --color-secondary-button-text: 255,255,255;
  1036.   --color-border: 255,255,255;
  1037.   --color-price-sale: 255,255,255;
  1038.   --color-price-regular: 255,255,255;
  1039.   --color-form-field: 255,255,255;
  1040.   --color-form-field-text: 34,34,34;
  1041.   --color-tooltip: 255,255,255;
  1042.   --color-tooltip-text: 0,0,0;
  1043.   --color-primary: 0,130,255;
  1044.   }
  1045.  
  1046.  
  1047.  body, .m-color-background-1, .m-color-background-2, .m-color-background-3, .m-color-background-4, .m-color-background-5, .m-color-scheme-b8d91266-59d5-49fe-ba4d-41e83e7e9a99, .m-color-scheme-c9caef7a-f1a2-4b2e-8c50-90c93a75c017, .m-color-scheme-f4f581d2-cf98-460f-baff-8037905fbec3, .m-color-scheme-352a1218-1fb3-4827-8996-76416cb600a7, .m-color-scheme-a402d81f-d7b9-4c3a-a76b-e400e1634c1d, .m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7, .m-color-scheme-c8381f9b-2240-4cd3-acfa-b39b128ea020, .m-color-scheme-d6e83922-2e6c-4668-a9af-cf1e16dc0aa4, .m-color-scheme-b444ec9d-73b6-41ec-b237-201d8a2ce63d, .m-color-scheme-a96a0562-f729-49d8-b20c-900d9c1b23a6, .m-color-scheme-81fd72d8-5634-4105-b7d8-be050f53a108, .m-color-scheme-e2480d71-6357-4d5d-ad9a-1f69f983a1ec, .m-color-scheme-700cfb8f-73dd-4d64-bae9-05d82205a4d5, .m-color-scheme-8fa2889a-9953-44be-96d5-2cb5bf5970f2, .m-color-scheme-7ce8c1c8-ab1a-4e9a-bd79-38bb88965f8f {
  1048.   color: rgb(var(--color-foreground));
  1049.   background-color: rgb(var(--color-background));
  1050.  }:root {     /* ANIMATIONS */   --m-duration-short: .1s;     --m-duration-default: .25s;     --m-duration-long: .5s;     --m-duration-image: .65s;     --m-duration-animate: 1s;     --m-animation-duration: 600ms;   --m-easing: cubic-bezier(.33, 0, 0, 1);     --m-animation-fade-in-up: m-fade-in-up var(--m-animation-duration) cubic-bezier(0, 0, 0.3, 1) forwards;     --m-animation-fade-in-left: m-fade-in-left var(--m-animation-duration) cubic-bezier(0, 0, 0.3, 1) forwards;     --m-animation-fade-in-right: m-fade-in-right var(--m-animation-duration) cubic-bezier(0, 0, 0.3, 1) forwards;     --m-animation-fade-in-left-rtl: m-fade-in-left-rtl var(--m-animation-duration) cubic-bezier(0, 0, 0.3, 1) forwards;     --m-animation-fade-in-right-rtl: m-fade-in-right-rtl var(--m-animation-duration) cubic-bezier(0, 0, 0.3, 1) forwards;     --m-animation-fade-in: m-fade-in calc(var(--m-animation-duration) * 2) cubic-bezier(0, 0, 0.3, 1);     --m-animation-zoom-fade: m-zoom-fade var(--m-animation-duration) ease forwards;   /* BODY */   --base-line-height: 28;   /* BUTTONS */   --btn-letter-spacing: 0px;   --btn-border-radius: 0px;   --btn-border-width: 1px;   --btn-line-height: 27px;     /* INPUTS */   --inputs-border-width: 1px;   --inputs-radius: 50px;   /* Notification */   --color-success: #3a8735;   --color-warning: #ff706b;   --color-info: #959595;   /* CUSTOM COLOR */   --text-black: 0,0,0;   --text-white: 255,255,255;   --bg-black: 0,0,0;   --bg-white: 255,255,255;   --rounded-full: 9999px;   --bg-card-placeholder: rgba(243,243,243,1);   --arrow-select-box: url(//www.garvee.com/cdn/shop/t/132/assets/ar-down.svg?v=92728264558441377851740986010);   /* FONT SIZES */   --font-base-size: 16;     --font-base-small-size: 14;   --font-btn-size: 16px;   --font-btn-weight: 800;   --font-h1-desktop: 60;   --font-h1-tablet: 42;   --font-h1-mobile: 36;   --font-h2-desktop: 42;   --font-h2-tablet: 33;   --font-h2-mobile: 29;   --font-h3-desktop: 32;   --font-h3-tablet: 25;   --font-h3-mobile: 22;   --font-h4-desktop: 24;   --font-h4-tablet: 19;   --font-h4-mobile: 19;   --font-h5-desktop: 18;   --font-h5-mobile: 16;   --font-h6-desktop: 16;   --font-h6-mobile: 16;   --header-letter-spacing: 0px;     --arrow-down-url: url(//www.garvee.com/cdn/shop/t/132/assets/arrow-down.svg?v=157552497485556416461740986012);     --arrow-down-white-url: url(//www.garvee.com/cdn/shop/t/132/assets/arrow-down-white.svg?v=70535736727834135531740986011);     --product-title-line-clamp: 3;   /* LAYOUT */   --page-width: 1370px;   /* BADGES */   --badge-radius: 0px;     /* Corner radius */     --boxed-radius: 0px;     --product-card-corner-radius: 0px;     --collection-card-corner-radius: 0px;     --article-card-corner-radius: 0px;     --corner-radius: 0px;  }
  1051. </style><link href="//www.garvee.com/cdn/shop/t/132/assets/vendor.css?v=3901215515505418141740986012" rel="stylesheet" type="text/css" media="all" /><link rel="stylesheet" href="//www.garvee.com/cdn/shop/t/132/assets/custom-style.css?v=17041353022878122931740986010" media="print" onload="this.media='all'">
  1052. <link rel="stylesheet" href="//www.garvee.com/cdn/shop/t/132/assets/custom.css?v=102023475640825466921742182438" media="print" onload="this.media='all'">
  1053. <noscript><link href="//www.garvee.com/cdn/shop/t/132/assets/custom-style.css?v=17041353022878122931740986010" rel="stylesheet" type="text/css" media="all" /></noscript>
  1054. <noscript><link href="//www.garvee.com/cdn/shop/t/132/assets/custom.css?v=102023475640825466921742182438" rel="stylesheet" type="text/css" media="all" /></noscript>
  1055.  
  1056.  
  1057.  
  1058.  
  1059. <script defer src="//www.garvee.com/cdn/shop/t/132/assets/product-list.js?v=80955542728629219951740986011"></script>
  1060.  
  1061.  
  1062.    <script defer src="//www.garvee.com/cdn/shop/t/132/assets/vendor.js?v=110891347013515689251748512753"></script>
  1063.    <script defer src="//www.garvee.com/cdn/shop/t/132/assets/theme-global.js?v=156916981462330629221747835437"></script><script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/72466989369/digital_wallets/dialog">
  1064. <meta name="shopify-checkout-api-token" content="edc8b2288a0d00ff446d9c4d313e37c0">
  1065. <meta id="in-context-paypal-metadata" data-shop-id="72466989369" data-venmo-supported="true" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="USD">
  1066. <script async="async" src="/checkouts/internal/preloads.js?locale=en-US"></script>
  1067. <script id="shopify-features" type="application/json">{"accessToken":"edc8b2288a0d00ff446d9c4d313e37c0","betas":["rich-media-storefront-analytics"],"domain":"www.garvee.com","predictiveSearch":true,"shopId":72466989369,"locale":"en"}</script>
  1068. <script>var Shopify = Shopify || {};
  1069. Shopify.shop = "mygarvee.myshopify.com";
  1070. Shopify.locale = "en";
  1071. Shopify.currency = {"active":"USD","rate":"1.0"};
  1072. Shopify.country = "US";
  1073. Shopify.theme = {"name":"garvee\/(trunk)-Garvee-V1","id":176060563769,"schema_name":"Megamog","schema_version":"1.0.0","theme_store_id":null,"role":"main"};
  1074. Shopify.theme.handle = "null";
  1075. Shopify.theme.style = {"id":null,"handle":null};
  1076. Shopify.cdnHost = "www.garvee.com/cdn";
  1077. Shopify.routes = Shopify.routes || {};
  1078. Shopify.routes.root = "/";</script>
  1079. <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
  1080. <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>
  1081. <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
  1082. <script>(function() {
  1083.  function asyncLoad() {
  1084.    var urls = ["https:\/\/cdn1.judge.me\/assets\/installed.js?shop=mygarvee.myshopify.com","https:\/\/static.shareasale.com\/json\/shopify\/deduplication.js?shop=mygarvee.myshopify.com","https:\/\/static.shareasale.com\/json\/shopify\/shareasale-tracking.js?sasmid=141723\u0026ssmtid=52725\u0026cd=true\u0026shop=mygarvee.myshopify.com","https:\/\/reconvert-cdn.com\/assets\/js\/store_reconvert_node.js?v=2\u0026scid=MmNhMmIyNTAwZTIyMTI3YWMwYjdkMGYxMjcxNzYyNmMuNzJmODM5OTMwZjBkNDAzZTY4MGE2ZTE5MDZlNDkxZjU=\u0026shop=mygarvee.myshopify.com","https:\/\/reconvert-cdn.com\/assets\/js\/reconvert_script_tags.mini.js?scid=MmNhMmIyNTAwZTIyMTI3YWMwYjdkMGYxMjcxNzYyNmMuNzJmODM5OTMwZjBkNDAzZTY4MGE2ZTE5MDZlNDkxZjU=\u0026shop=mygarvee.myshopify.com","https:\/\/storage.googleapis.com\/gsf-scripts\/global-remarketing\/mygarvee.js?1739783324\u0026shop=mygarvee.myshopify.com","https:\/\/app-api.carebox.global\/public\/js\/widget-sp.js?shop=mygarvee.myshopify.com","\/\/cdn.shopify.com\/proxy\/8ceb1bb338d0a94c1f8b594927052abd3f50614aab009b1f1131e373e6f62c67\/d1639lhkj5l89m.cloudfront.net\/js\/storefront\/uppromote.js?shop=mygarvee.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA","\/\/cdn.shopify.com\/proxy\/4e356a0bf62cb67e04e4f757f130fc7e695aeccef6d68032adef6c3b799db175\/api.goaffpro.com\/loader.js?shop=mygarvee.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA"];
  1085.    for (var i = 0; i < urls.length; i++) {
  1086.      var s = document.createElement('script');
  1087.      s.type = 'text/javascript';
  1088.      s.async = true;
  1089.      s.src = urls[i];
  1090.      var x = document.getElementsByTagName('script')[0];
  1091.      x.parentNode.insertBefore(s, x);
  1092.    }
  1093.  };
  1094.  if(window.attachEvent) {
  1095.    window.attachEvent('onload', asyncLoad);
  1096.  } else {
  1097.    window.addEventListener('load', asyncLoad, false);
  1098.  }
  1099. })();</script>
  1100. <script id="__st">var __st={"a":72466989369,"offset":28800,"reqid":"0dc2e046-11cd-4ce2-b016-d62721a263c6-1749132787","pageurl":"www.garvee.com\/","u":"2dbaff1bb908","p":"home"};</script>
  1101. <script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
  1102. <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>
  1103. <script integrity="sha256-w1TMG8bx+vw+BuOfT7Dh2avfdjByyjlNYGyp9vJB5oo=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//www.garvee.com/cdn/shopifycloud/shopify/assets/storefront/load_feature-c354cc1bc6f1fafc3e06e39f4fb0e1d9abdf763072ca394d606ca9f6f241e68a.js" crossorigin="anonymous"></script>
  1104. <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.garvee.com/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
  1105. </script>
  1106. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  1107.  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);
  1108. </script>
  1109. <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})}}));
  1110. </script>
  1111. <script id='scb4127' type='text/javascript' async='' src='https://www.garvee.com/cdn/shopifycloud/privacy-banner/storefront-banner.js'></script><script id="sections-script" data-sections="header" defer="defer" src="//www.garvee.com/cdn/shop/t/132/compiled_assets/scripts.js?49816"></script>
  1112. <link rel="stylesheet" media="screen" href="https://www.garvee.com/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
  1113.  
  1114. <style id="shopify-accelerated-checkout-cart">
  1115.        #shopify-buyer-consent {
  1116.  margin-top: 1em;
  1117.  display: inline-block;
  1118.  width: 100%;
  1119. }
  1120.  
  1121. #shopify-buyer-consent.hidden {
  1122.  display: none;
  1123. }
  1124.  
  1125. #shopify-subscription-policy-button {
  1126.  background: none;
  1127.  border: none;
  1128.  padding: 0;
  1129.  text-decoration: underline;
  1130.  font-size: inherit;
  1131.  cursor: pointer;
  1132. }
  1133.  
  1134. #shopify-subscription-policy-button::before {
  1135.  box-shadow: none;
  1136. }
  1137.  
  1138.      </style>
  1139. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  1140.  
  1141.    <script>window.MinimogTheme = {};window.MinimogTheme.version = '3.5.0';window.MinimogTheme.storeURL = "www.garvee.com";window.MinimogLibs = {};window.MinimogStrings = {  addToCart: "Add to cart",  soldOut: "Sold Out",  unavailable: "Unavailable",  inStock: "In Stock",  checkout: "Check out",  viewCart: "View Cart",  cartRemove: "Remove",  zipcodeValidate: "Zip code can\u0026#39;t be blank",  noShippingRate: "There are no shipping rates for your address.",  shippingRatesResult: "We found {{count}} shipping rate(s) for your address",  recommendTitle: "Recommendation for you",  shipping: "Shipping",  add: "Add",  itemAdded: "Product added to cart successfully",  requiredField: "Please fill all the required fields(*) before Add To Cart!",  hours: "hours",  mins: "mins",  outOfStock: "Out of stock",  sold: "Sold",  available: "Available",  preorder: "Pre-order",  sold_out_items_message: "The product is already sold out.",  unitPrice: "Unit price",  unitPriceSeparator: "per",  cartError: "There was an error while updating your cart. Please try again.",  quantityError: "Not enough items available. Only [quantity] left.",};window.MinimogThemeStyles = {  product: "https://www.garvee.com/cdn/shop/t/132/assets/product.css?v=141817182662148964671744974734"};window.MinimogThemeScripts = {  productModel: "https://www.garvee.com/cdn/shop/t/132/assets/product-model.js?v=116323143127740990381740986010",  productMedia: "https://www.garvee.com/cdn/shop/t/132/assets/product-media.js?v=114692989501543632931742879663",  variantsPicker: "https://www.garvee.com/cdn/shop/t/132/assets/variant-picker.js?v=27686188859996471271742977797",  instagram: "https://www.garvee.com/cdn/shop/t/132/assets/instagram.js?v=140075868288217585251740986010"};window.MinimogSettings = {  design_mode: false,  requestPath: "\/",  template: "index",  templateName: "index",currency_code: "USD",  money_format: "${{amount}}",  base_url: window.location.origin + Shopify.routes.root,  money_with_currency_format: "${{amount}} USD","filter_color1.png":"\/\/www.garvee.com\/cdn\/shop\/t\/132\/assets\/filter_color1.png?v=149288949448670494271740986010","filter_color1":"Gingham","filter_color2.png":"\/\/www.garvee.com\/cdn\/shop\/t\/132\/assets\/filter_color2.png?v=155979439831902779061740986011","filter_color2":"flannel",theme: {    id: 176060563769,    name: "garvee\/(trunk)-Garvee-V1",    role: "main",    version: "3.0.1",    online_store_version: "2.0",    preview_url: "https://www.garvee.com?preview_theme_id=176060563769",  },  shop_domain: "https:\/\/www.garvee.com",  shop_locale: {    published: [{"shop_locale":{"locale":"en","enabled":true,"primary":true,"published":true}}],    current: "en",    primary: "en",  },  routes: {    root: "\/",    cart: "\/cart",    product_recommendations_url: "\/recommendations\/products",    cart_add_url: '/cart/add',    cart_change_url: '/cart/change',    cart_update_url: '/cart/update',    predictive_search_url: '/search/suggest',    search_url: '/search'  },  hide_unavailable_product_options: true,  pcard_image_ratio: "1\/1",  cookie_consent_allow: "Allow Cookies",  cookie_consent_message: "This website uses cookies to ensure you get the best experience on our website.",  cookie_consent_placement: "bottom-left",  cookie_consent_learnmore_link: "https:\/\/www.cookiesandyou.com\/",  cookie_consent_learnmore: "Learn more",  cookie_consent_theme: "white",  cookie_consent_decline: "Decline",  show_cookie_consent: false,  product_colors: "red: #ff0041,\nyellow: #FDDA76,\nblack: #000000,\nblack band: #000000,\nblue: #8DB4D2,\ngreen: #426e4c,\npurple: #B19CD9,\nsilver: #EEEEEF,\nwhite: #FFFFFF,\nbrown: #836953,\nlight brown: #B5651D,\ndark turquoise: #23cddc,\norange: #FFB347,\ntan: #E9D1BF,\nviolet: #B490B0,\npink: #FFD1DC,\ngrey: #E0E0E0,\nsky: #96BDC6,\npale leaf: #CCD4BF,\nlight blue: #b1c5d4,\ndark grey: #aca69f,\nbeige: #EBE6DB,\nbeige band: #EED9C4,\ndark blue: #063e66,\ncream: #FFFFCC,\nlight pink: #FBCFCD,\nmint: #bedce3,\ndark gray: #3A3B3C,\nrosy brown: #c4a287,\nlight grey:#D3D3D3,\ncopper: #B87333,\nrose gold: #ECC5C0,\nnight blue: #151B54,\ncoral: #FF7F50,\nlight purple: #C6AEC7,\ndark brown: #5d4033,\ndark green: #023020,\ngolden yellow: #f8ba04,\nmatte blue: #013d75,\nnatural: #dcba92,\nash brown: #9b6743,\nbrass: #dabb6b,\ncaper green: #636550,\ncharcoal: #35434d,\ndark wheat: #916f4c,\ndeep blue: #1a4975,\ndeep purple: #35013d,\ndeep sea blue: #2b5e88,\nflamingo pink: #fdc9d6,\nglacier white: #84b5c8,\ngrass green: #469d17,\nheathered spruce: #628fb9,\nivory: #f8f4e8,\njade green: #0da672,\nlight gray: #d4d4d4,\nluxe silver:: #b8b8b8,\nphantom black: #2d3134,\nplatinum: #E5E4E2,,\nsage green: #B2AC88,\nsea: #006994,\nsea glass: #95e1c8,\nsky blue: #87CEEB,\nspace black: #333334,\nspace gray: #717378,\nstone blue: #809ca7,\ntriple black: #000000,\nolive green: #aaae96,\ngray green: #69756b,\nindigo: #393e4a",  use_ajax_atc: true,  discount_code_enable: false,  enable_cart_drawer: false,  pcard_show_lowest_prices: true,  date_now: "2025\/06\/05 22:13:00+0800 (CST)",  foxKitBaseUrl: "foxkit.app"};</script>
  1142.  
  1143. <script>
  1144.  function __setSwatchesOptions() {
  1145.    try {
  1146.      MinimogSettings._colorSwatches = []
  1147.      MinimogSettings._imageSwatches = []
  1148.  
  1149.      MinimogSettings.product_colors
  1150.        .split(',').filter(Boolean)
  1151.        .forEach(colorSwatch => {
  1152.          const [key, value] = colorSwatch.split(':')
  1153.          MinimogSettings._colorSwatches.push({
  1154.            key: key.trim().toLowerCase(),
  1155.            value: value && value.trim() || ''
  1156.          })
  1157.        })
  1158.  
  1159.      Object.keys(MinimogSettings).forEach(key => {
  1160.        if (key.includes('filter_color') && !key.includes('.png')) {
  1161.          if (MinimogSettings[`${key}.png`]) {
  1162.            MinimogSettings._imageSwatches.push({
  1163.              key: MinimogSettings[key].toLowerCase(),
  1164.              value: MinimogSettings[`${key}.png`]
  1165.            })
  1166.          }
  1167.        }
  1168.      })
  1169.    } catch (e) {
  1170.      console.error('Failed to convert color/image swatch structure!', e)
  1171.    }
  1172.  }
  1173.  
  1174.  __setSwatchesOptions();
  1175. </script>
  1176.  
  1177.    <script defer>
  1178.      document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
  1179.      if (Shopify.designMode) {
  1180.        document.documentElement.classList.add('shopify-design-mode');
  1181.      }
  1182.    </script>
  1183.  
  1184.    
  1185.  
  1186.  
  1187.  
  1188.  
  1189.  
  1190.    <script>
  1191.      (function () {
  1192.        // 检查并删除包含"weglot"的现有的脚本标签
  1193.        document.querySelectorAll('script').forEach(function (script) {
  1194.          if (script.src && script.src.includes('cdn.weglot.com/weglot.min.js')) {
  1195.            console.log('Removing existing script:', script.src);
  1196.            script.remove();
  1197.          }
  1198.        });
  1199.  
  1200.        // 创建一个MutationObserver实例
  1201.        var observer = new MutationObserver(function (mutations) {
  1202.          mutations.forEach(function (mutation) {
  1203.            if (mutation.type === 'childList') {
  1204.              mutation.addedNodes.forEach(function (node) {
  1205.                if (node.nodeType === 1 && node.tagName === 'SCRIPT') {
  1206.                  if (node.src && node.src.includes('cdn.weglot.com/weglot.min.js')) {
  1207.                    console.log('Removing script:', node.src);
  1208.                    node.remove();
  1209.                  }
  1210.                }
  1211.              });
  1212.            }
  1213.          });
  1214.        });
  1215.  
  1216.        observer.observe(document.head, { childList: true });
  1217.      })();
  1218.    </script>
  1219.  
  1220.    
  1221.  
  1222.  
  1223.  
  1224.    
  1225.  
  1226.  
  1227.  
  1228.  
  1229.  
  1230.  
  1231.  
  1232.  
  1233.  
  1234.  
  1235.  
  1236.  
  1237.  
  1238.  
  1239. <!-- BEGIN app block: shopify://apps/judge-me-reviews/blocks/judgeme_core/61ccd3b1-a9f2-4160-9fe9-4fec8413e5d8 --><!-- Start of Judge.me Core -->
  1240.  
  1241.  
  1242. <link rel="dns-prefetch" href="https://cdnwidget.judge.me">
  1243. <link rel="dns-prefetch" href="https://cdn.judge.me">
  1244. <link rel="dns-prefetch" href="https://cdn1.judge.me">
  1245. <link rel="dns-prefetch" href="https://api.judge.me">
  1246.  
  1247. <script data-cfasync='false' class='jdgm-settings-script'>window.jdgmSettings={"pagination":5,"disable_web_reviews":false,"badge_no_review_text":"No reviews","badge_n_reviews_text":"{{ n }} review/reviews","badge_star_color":"#f1a943","hide_badge_preview_if_no_reviews":true,"badge_hide_text":false,"enforce_center_preview_badge":false,"widget_title":"Customer Reviews","widget_open_form_text":"Write a review","widget_close_form_text":"Cancel review","widget_refresh_page_text":"Refresh page","widget_summary_text":"Based on {{ number_of_reviews }} review/reviews","widget_no_review_text":"Be the first to write a review","widget_name_field_text":"Display name","widget_verified_name_field_text":"Verified Name (public)","widget_name_placeholder_text":"Display name","widget_required_field_error_text":"This field is required.","widget_email_field_text":"Email address","widget_verified_email_field_text":"Verified Email (private, can not be edited)","widget_email_placeholder_text":"Your email address","widget_email_field_error_text":"Please enter a valid email address.","widget_rating_field_text":"Rating","widget_review_title_field_text":"Review Title","widget_review_title_placeholder_text":"Give your review a title","widget_review_body_field_text":"Review content","widget_review_body_placeholder_text":"Start writing here...","widget_pictures_field_text":"Picture/Video (optional)","widget_submit_review_text":"Submit Review","widget_submit_verified_review_text":"Submit Verified Review","widget_submit_success_msg_with_auto_publish":"Thank you! Please refresh the page in a few moments to see your review. You can remove or edit your review by logging into \u003ca href='https://judge.me/login' target='_blank' rel='nofollow noopener'\u003eJudge.me\u003c/a\u003e","widget_submit_success_msg_no_auto_publish":"Thank you! Your review will be published as soon as it is approved by the shop admin. You can remove or edit your review by logging into \u003ca href='https://judge.me/login' target='_blank' rel='nofollow noopener'\u003eJudge.me\u003c/a\u003e","widget_show_default_reviews_out_of_total_text":"Showing {{ n_reviews_shown }} out of {{ n_reviews }} reviews.","widget_show_all_link_text":"Show all","widget_show_less_link_text":"Show less","widget_author_said_text":"{{ reviewer_name }} said:","widget_days_text":"{{ n }} days ago","widget_weeks_text":"{{ n }} week/weeks ago","widget_months_text":"{{ n }} month/months ago","widget_years_text":"{{ n }} year/years ago","widget_yesterday_text":"Yesterday","widget_today_text":"Today","widget_replied_text":"\u003e\u003e {{ shop_name }} replied:","widget_read_more_text":"Read more","widget_rating_filter_see_all_text":"See all reviews","widget_sorting_most_recent_text":"Most Recent","widget_sorting_highest_rating_text":"Highest Rating","widget_sorting_lowest_rating_text":"Lowest Rating","widget_sorting_with_pictures_text":"Only Pictures","widget_sorting_most_helpful_text":"Most Helpful","widget_open_question_form_text":"Ask a question","widget_reviews_subtab_text":"Reviews","widget_questions_subtab_text":"Questions","widget_question_label_text":"Question","widget_answer_label_text":"Answer","widget_question_placeholder_text":"Write your question here","widget_submit_question_text":"Submit Question","widget_question_submit_success_text":"Thank you for your question! We will notify you once it gets answered.","widget_star_color":"#f1a943","verified_badge_text":"Verified","verified_badge_placement":"left-of-reviewer-name","widget_review_max_height":2,"widget_hide_border":false,"widget_social_share":false,"widget_thumb":false,"widget_review_location_show":false,"widget_location_format":"country_iso_code","all_reviews_include_out_of_store_products":true,"all_reviews_out_of_store_text":"(out of store)","all_reviews_product_name_prefix_text":"about","enable_review_pictures":true,"enable_question_anwser":true,"default_sort_method":"pictures-first","widget_product_reviews_subtab_text":"Product Reviews","widget_shop_reviews_subtab_text":"Shop Reviews","widget_write_a_store_review_text":"Write a Store Review","widget_other_languages_heading":"Reviews in Other Languages","widget_translate_review_text":"Translate review to {{ language }}","widget_translating_review_text":"Translating...","widget_show_original_translation_text":"Show original ({{ language }})","widget_translate_review_failed_text":"Review couldn't be translated.","widget_translate_review_retry_text":"Retry","widget_translate_review_try_again_later_text":"Try again later","widget_sorting_pictures_first_text":"Pictures First","floating_tab_button_name":"★ Reviews","floating_tab_title":"Let customers speak for us","floating_tab_url":"","floating_tab_url_enabled":false,"all_reviews_text_badge_text":"Customers rate us {{ shop.metafields.judgeme.all_reviews_rating | round: 1 }}/5 based on {{ shop.metafields.judgeme.all_reviews_count }} reviews.","all_reviews_text_badge_text_branded_style":"{{ shop.metafields.judgeme.all_reviews_rating | round: 1 }} out of 5 stars based on {{ shop.metafields.judgeme.all_reviews_count }} reviews","all_reviews_text_badge_url":"","featured_carousel_title":"Let customers speak for us","featured_carousel_count_text":"from {{ n }} reviews","featured_carousel_url":"","verified_count_badge_url":"","widget_star_use_custom_color":true,"picture_reminder_submit_button":"Upload Pictures \u0026 Get Coupon","enable_review_videos":true,"mute_video_by_default":true,"widget_sorting_videos_first_text":"Videos First","widget_review_pending_text":"Pending","social_share_options_order":"Facebook,Twitter,Pinterest","remove_microdata_snippet":true,"preview_badge_show_question_text":true,"preview_badge_no_question_text":"No questions","preview_badge_n_question_text":"{{ number_of_questions }} question/questions","qa_badge_show_icon":true,"widget_search_bar_placeholder":"Search reviews","widget_sorting_verified_only_text":"Verified only","featured_carousel_verified_badge_enable":true,"featured_carousel_more_reviews_button_text":"Read more reviews","featured_carousel_view_product_button_text":"View product","all_reviews_page_load_more_text":"Load More Reviews","widget_advanced_speed_features":5,"widget_public_name_text":"displayed publicly like","default_reviewer_name_has_non_latin":true,"widget_reviewer_anonymous":"Anonymous","medals_widget_title":"Judge.me Review Medals","show_reviewer_avatar":false,"widget_invalid_yt_video_url_error_text":"Not a YouTube video URL","widget_max_length_field_error_text":"Please enter no more than {0} characters.","widget_verified_by_shop_text":"Verified by Shop","widget_show_photo_gallery":true,"widget_load_with_code_splitting":true,"widget_ugc_title":"Made by us, Shared by you","widget_ugc_subtitle":"Tag us to see your picture featured in our page","widget_ugc_primary_button_text":"Buy Now","widget_ugc_secondary_button_text":"Load More","widget_ugc_reviews_button_text":"View Reviews","widget_primary_color":"#fcb34e","widget_summary_average_rating_text":"{{ average_rating }} out of 5","widget_media_grid_title":"Customer photos \u0026 videos","widget_media_grid_see_more_text":"See more","widget_verified_by_judgeme_text":"Verified by Judge.me","widget_verified_by_judgeme_text_in_store_medals":"Verified by Judge.me","widget_media_field_exceed_quantity_message":"Sorry, we can only accept {{ max_media }} for one review.","widget_media_field_exceed_limit_message":"{{ file_name }} is too large, please select a {{ media_type }} less than {{ size_limit }}MB.","widget_review_submitted_text":"Review Submitted!","widget_question_submitted_text":"Question Submitted!","widget_close_form_text_question":"Cancel","widget_write_your_answer_here_text":"Write your answer here","widget_enabled_branded_link":true,"widget_show_collected_by_judgeme":true,"widget_collected_by_judgeme_text":"collected by Judge.me","widget_pagination_type":"load_more","widget_load_more_text":"Load More","widget_full_review_text":"Full Review","widget_read_more_reviews_text":"Read More Reviews","widget_read_questions_text":"Read Questions","widget_questions_and_answers_text":"Questions \u0026 Answers","widget_verified_by_text":"Verified by","widget_verified_text":"Verified","widget_number_of_reviews_text":"{{ number_of_reviews }} reviews","widget_back_button_text":"Back","widget_next_button_text":"Next","widget_custom_forms_filter_button":"Filters","custom_forms_style":"vertical","widget_show_review_information":true,"how_reviews_are_collected":"How reviews are collected?","widget_gdpr_statement":"How we use your data: We'll only contact you about the review you left, and only if necessary. By submitting your review, you agree to Judge.me's \u003ca href='https://judge.me/terms' target='_blank' rel='nofollow noopener'\u003eterms\u003c/a\u003e, \u003ca href='https://judge.me/privacy' target='_blank' rel='nofollow noopener'\u003eprivacy\u003c/a\u003e and \u003ca href='https://judge.me/content-policy' target='_blank' rel='nofollow noopener'\u003econtent\u003c/a\u003e policies.","review_snippet_widget_round_border_style":true,"review_snippet_widget_card_color":"#FFFFFF","review_snippet_widget_slider_arrows_background_color":"#FFFFFF","review_snippet_widget_slider_arrows_color":"#000000","review_snippet_widget_star_color":"#108474","all_reviews_product_variant_label_text":"Variant: ","widget_show_verified_branding":true,"redirect_reviewers_invited_via_email":"review_widget","review_content_screen_title_text":"How would you rate this product?","review_content_introduction_text":"We would love it if you would share a bit about your experience.","one_star_review_guidance_text":"Poor","five_star_review_guidance_text":"Great","customer_information_screen_title_text":"About you","customer_information_introduction_text":"Please tell us more about you.","custom_questions_screen_title_text":"Your experience in more detail","custom_questions_introduction_text":"Here are a few questions to help us understand more about your experience.","review_submitted_screen_title_text":"Thanks for your review!","review_submitted_screen_thank_you_text":"We are processing it and it will appear on the store soon.","review_submitted_screen_email_verification_text":"Please confirm your email by clicking the link we just sent you. This helps us keep reviews authentic.","reviewer_media_screen_title_picture_text":"Share a picture","reviewer_media_introduction_picture_text":"Upload a photo to support your review.","reviewer_media_upload_picture_text":"Share a picture","reviewer_media_screen_title_video_text":"Share a video","reviewer_media_introduction_video_text":"Upload a video to support your review.","reviewer_media_upload_video_text":"Share a video","reviewer_media_screen_title_picture_or_video_text":"Share a picture or video","reviewer_media_introduction_picture_or_video_text":"Upload a photo or video to support your review.","reviewer_media_upload_picture_or_video_text":"Share a picture or video","reviewer_media_youtube_url_text":"Paste your Youtube URL here","advanced_settings_next_step_button_text":"Next","advanced_settings_close_review_button_text":"Close","write_review_flow_required_text":"Required","write_review_flow_privacy_message_text":"We respect your privacy.","write_review_flow_anonymous_text":"Post review as anonymous","write_review_flow_visibility_text":"This won't be visible to other customers.","write_review_flow_multiple_selection_help_text":"Select as many as you like","write_review_flow_single_selection_help_text":"Select one option","write_review_flow_required_field_error_text":"This field is required","write_review_flow_invalid_email_error_text":"Please enter a valid email address","write_review_flow_max_length_error_text":"Max. {{ max_length }} characters.","write_review_flow_media_upload_text":"Click to upload","write_review_flow_gdpr_statement":"We'll only contact you about your review if necessary. By submitting your review, you agree to our \u003ca href='https://judge.me/terms' target='_blank' rel='nofollow noopener'\u003eterms and conditions\u003c/a\u003e and \u003ca href='https://judge.me/privacy' target='_blank' rel='nofollow noopener'\u003eprivacy policy\u003c/a\u003e.","transparency_badges_collected_via_store_invite_text":"Review collected via store invitation","transparency_badges_from_another_provider_text":"Review collected from another provider","transparency_badges_collected_from_store_visitor_text":"Review collected from a store visitor","transparency_badges_written_in_google_text":"Review written in Google","transparency_badges_written_in_etsy_text":"Review written in Etsy","transparency_badges_written_in_shop_app_text":"Review written in Shop App","transparency_badges_earned_reward_text":"Review earned a reward for future purchase","preview_badge_collection_page_install_preference":true,"preview_badge_product_page_install_preference":true,"review_widget_best_location":true,"platform":"shopify","branding_url":"https://app.judge.me/reviews","branding_text":"Powered by Judge.me","locale":"en","reply_name":"GARVEE","widget_version":"3.0","footer":true,"autopublish":true,"review_dates":true,"enable_custom_form":true,"shop_locale":"en","enable_multi_locales_translations":false,"show_review_title_input":true,"review_verification_email_status":"always","can_be_branded":false,"reply_name_text":"GARVEE"};</script> <style class='jdgm-settings-style'>.jdgm-xx{left:0}:root{--jdgm-primary-color: #fcb34e;--jdgm-secondary-color: rgba(252,179,78,0.1);--jdgm-star-color: #f1a943;--jdgm-write-review-text-color: white;--jdgm-write-review-bg-color: #fcb34e;--jdgm-paginate-color: #fcb34e;--jdgm-border-radius: 0;--jdgm-reviewer-name-color: #fcb34e}.jdgm-histogram__bar-content{background-color:#fcb34e}.jdgm-rev[data-verified-buyer=true] .jdgm-rev__icon.jdgm-rev__icon:after,.jdgm-rev__buyer-badge.jdgm-rev__buyer-badge{color:white;background-color:#fcb34e}.jdgm-review-widget--small .jdgm-gallery.jdgm-gallery .jdgm-gallery__thumbnail-link:nth-child(8) .jdgm-gallery__thumbnail-wrapper.jdgm-gallery__thumbnail-wrapper:before{content:"See more"}@media only screen and (min-width: 768px){.jdgm-gallery.jdgm-gallery .jdgm-gallery__thumbnail-link:nth-child(8) .jdgm-gallery__thumbnail-wrapper.jdgm-gallery__thumbnail-wrapper:before{content:"See more"}}.jdgm-preview-badge .jdgm-star.jdgm-star{color:#f1a943}.jdgm-prev-badge[data-average-rating='0.00']{display:none !important}.jdgm-rev .jdgm-rev__icon{display:none !important}.jdgm-author-all-initials{display:none !important}.jdgm-author-last-initial{display:none !important}.jdgm-rev-widg__title{visibility:hidden}.jdgm-rev-widg__summary-text{visibility:hidden}.jdgm-prev-badge__text{visibility:hidden}.jdgm-rev__prod-link-prefix:before{content:'about'}.jdgm-rev__variant-label:before{content:'Variant: '}.jdgm-rev__out-of-store-text:before{content:'(out of store)'}@media only screen and (min-width: 768px){.jdgm-rev__pics .jdgm-rev_all-rev-page-picture-separator,.jdgm-rev__pics .jdgm-rev__product-picture{display:none}}@media only screen and (max-width: 768px){.jdgm-rev__pics .jdgm-rev_all-rev-page-picture-separator,.jdgm-rev__pics .jdgm-rev__product-picture{display:none}}.jdgm-preview-badge[data-template="index"]{display:none !important}.jdgm-verified-count-badget[data-from-snippet="true"]{display:none !important}.jdgm-carousel-wrapper[data-from-snippet="true"]{display:none !important}.jdgm-all-reviews-text[data-from-snippet="true"]{display:none !important}.jdgm-medals-section[data-from-snippet="true"]{display:none !important}.jdgm-ugc-media-wrapper[data-from-snippet="true"]{display:none !important}.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__cards-container .jdgm-rev-snippet-card{border-radius:8px;background:#fff}.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__cards-container .jdgm-rev-snippet-card__rev-rating .jdgm-star{color:#108474}.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__prev-btn,.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__next-btn{border-radius:50%;background:#fff}.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__prev-btn>svg,.jdgm-review-snippet-widget .jdgm-rev-snippet-widget__next-btn>svg{fill:#000}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jm-mfp-content,.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev__icon,.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev__pic-img,.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev__reply{border-radius:8px}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev[data-verified-buyer="true"] .jdgm-full-rev__icon::after{border-radius:8px}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev .jdgm-rev__buyer-badge{border-radius:calc( 8px / 2 )}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev .jdgm-full-rev__replier::before{content:'GARVEE'}.jdgm-full-rev-modal.rev-snippet-widget .jm-mfp-container .jdgm-full-rev .jdgm-full-rev__product-button{border-radius:calc( 8px * 6 )}
  1248. </style> <style class='jdgm-settings-style'></style>
  1249.  
  1250.  
  1251.  
  1252.  
  1253.  <style class='jdgm-miracle-styles'>
  1254.  @-webkit-keyframes jdgm-spin{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes jdgm-spin{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);-ms-transform:rotate(359deg);transform:rotate(359deg)}}@font-face{font-family:'JudgemeStar';src:url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAScAA0AAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAEgAAAABoAAAAcbyQ+3kdERUYAAARgAAAAHgAAACAAMwAGT1MvMgAAAZgAAABGAAAAVi+vS9xjbWFwAAAB8AAAAEAAAAFKwBMjvmdhc3AAAARYAAAACAAAAAj//wADZ2x5ZgAAAkAAAAEJAAABdH33LXtoZWFkAAABMAAAAC0AAAA2BroQKWhoZWEAAAFgAAAAHAAAACQD5QHQaG10eAAAAeAAAAAPAAAAFAYAAABsb2NhAAACMAAAAA4AAAAOAO4AeG1heHAAAAF8AAAAHAAAACAASgAvbmFtZQAAA0wAAADeAAABkorWfVZwb3N0AAAELAAAACkAAABEp3ubLXgBY2BkYADhPPP4OfH8Nl8ZuJkYQODS2fRrCPr/aSYGxq1ALgcDWBoAO60LkwAAAHgBY2BkYGDc+v80gx4TAwgASaAICmABAFB+Arl4AWNgZGBgYGPQYWBiAAIwyQgWc2AAAwAHVQB6eAFjYGRiYJzAwMrAwejDmMbAwOAOpb8ySDK0MDAwMbByMsCBAAMCBKS5pjA4PGB4wMR44P8BBj3GrQymQGFGkBwAjtgK/gAAeAFjYoAAEA1jAwAAZAAHAHgB3crBCcAwDEPRZydkih567CDdf4ZskmLwFBV8xBfCaC4BXkOUmx4sU0h2ngNb9V0vQCxaRKIAevT7fGWuBrEAAAAAAAAAAAA0AHgAugAAeAF9z79Kw1AUx/FzTm7un6QmJtwmQ5Bg1abgEGr/BAqlU6Gju+Cgg1MkQ/sA7Vj7BOnmO/gUvo2Lo14NqIO6/IazfD8HEODtmQCfoANwNsyp2/GJt3WKQrd1NLiYYWx2PBqOsmJMEOznPOTzfSCrhAtbbLdmeFLJV9eKd63WLrZcIcuaEVdssWCKM6pLCfTVOYbz/0pNSMSZKLIZpvh78sAUH6PlMrreTCabP9r+Z/puPZ2ur/RqpQHgh+MIegCnXeM4MRAPjYN//5tj4ZtTjkFqEdmeMShlEJ7tVAly2TAkx6R68Fl4E/aVvn8JqHFQ4JS1434gXKcuL31dDhzs3YbsEOAd/IU88gAAAHgBfY4xTgMxEEVfkk0AgRCioKFxQYd2ZRtpixxgRU2RfhU5q5VWseQ4JdfgAJyBlmNwAM7ABRhZQ0ORwp7nr+eZAa54YwYg9zm3ynPOeFRe8MCrciXOh/KSS76UV5L/iDmrLiS5AeU519wrL3jmSbkS5115yR2fyivJv9kx0ZMZ2RLZw27q87iNQi8EBo5FSPIMw3HqBboi5lKTGAGDp8FKXWP+t9TU01Lj5His1Ba6uM9dTEMwvrFmbf5GC/q2drW3ruXUhhsCiQOjznFlCzYhHUZp4xp76vsvQh89CQAAeAFjYGJABowM6IANLMrEyMTIzMjCXpyRWJBqZshWXJJYBKOMAFHFBucAAAAAAAAB//8AAngBY2BkYGDgA2IJBhBgAvKZGViBJAuYxwAABJsAOgAAeAFjYGBgZACCk535hiD60tn0azAaAEqpB6wAAA==") format("woff");font-weight:normal;font-style:normal}.jdgm-star{font-family:'JudgemeStar';display:inline !important;text-decoration:none !important;padding:0 4px 0 0 !important;margin:0 !important;font-weight:bold;opacity:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.jdgm-star:hover{opacity:1}.jdgm-star:last-of-type{padding:0 !important}.jdgm-star.jdgm--on:before{content:"\e000"}.jdgm-star.jdgm--off:before{content:"\e001"}.jdgm-star.jdgm--half:before{content:"\e002"}.jdgm-widget *{margin:0;line-height:1.4;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-overflow-scrolling:touch}.jdgm-hidden{display:none !important;visibility:hidden !important}.jdgm-temp-hidden{display:none}.jdgm-spinner{width:40px;height:40px;margin:auto;border-radius:50%;border-top:2px solid #eee;border-right:2px solid #eee;border-bottom:2px solid #eee;border-left:2px solid #ccc;-webkit-animation:jdgm-spin 0.8s infinite linear;animation:jdgm-spin 0.8s infinite linear}.jdgm-spinner:empty{display:block}.jdgm-prev-badge{display:block !important}
  1255.  
  1256. </style>
  1257. <style class='jdgm-miracle-styles'>
  1258.  @font-face{font-family:'JudgemeStar';src:url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAScAA0AAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAEgAAAABoAAAAcbyQ+3kdERUYAAARgAAAAHgAAACAAMwAGT1MvMgAAAZgAAABGAAAAVi+vS9xjbWFwAAAB8AAAAEAAAAFKwBMjvmdhc3AAAARYAAAACAAAAAj//wADZ2x5ZgAAAkAAAAEJAAABdH33LXtoZWFkAAABMAAAAC0AAAA2BroQKWhoZWEAAAFgAAAAHAAAACQD5QHQaG10eAAAAeAAAAAPAAAAFAYAAABsb2NhAAACMAAAAA4AAAAOAO4AeG1heHAAAAF8AAAAHAAAACAASgAvbmFtZQAAA0wAAADeAAABkorWfVZwb3N0AAAELAAAACkAAABEp3ubLXgBY2BkYADhPPP4OfH8Nl8ZuJkYQODS2fRrCPr/aSYGxq1ALgcDWBoAO60LkwAAAHgBY2BkYGDc+v80gx4TAwgASaAICmABAFB+Arl4AWNgZGBgYGPQYWBiAAIwyQgWc2AAAwAHVQB6eAFjYGRiYJzAwMrAwejDmMbAwOAOpb8ySDK0MDAwMbByMsCBAAMCBKS5pjA4PGB4wMR44P8BBj3GrQymQGFGkBwAjtgK/gAAeAFjYoAAEA1jAwAAZAAHAHgB3crBCcAwDEPRZydkih567CDdf4ZskmLwFBV8xBfCaC4BXkOUmx4sU0h2ngNb9V0vQCxaRKIAevT7fGWuBrEAAAAAAAAAAAA0AHgAugAAeAF9z79Kw1AUx/FzTm7un6QmJtwmQ5Bg1abgEGr/BAqlU6Gju+Cgg1MkQ/sA7Vj7BOnmO/gUvo2Lo14NqIO6/IazfD8HEODtmQCfoANwNsyp2/GJt3WKQrd1NLiYYWx2PBqOsmJMEOznPOTzfSCrhAtbbLdmeFLJV9eKd63WLrZcIcuaEVdssWCKM6pLCfTVOYbz/0pNSMSZKLIZpvh78sAUH6PlMrreTCabP9r+Z/puPZ2ur/RqpQHgh+MIegCnXeM4MRAPjYN//5tj4ZtTjkFqEdmeMShlEJ7tVAly2TAkx6R68Fl4E/aVvn8JqHFQ4JS1434gXKcuL31dDhzs3YbsEOAd/IU88gAAAHgBfY4xTgMxEEVfkk0AgRCioKFxQYd2ZRtpixxgRU2RfhU5q5VWseQ4JdfgAJyBlmNwAM7ABRhZQ0ORwp7nr+eZAa54YwYg9zm3ynPOeFRe8MCrciXOh/KSS76UV5L/iDmrLiS5AeU519wrL3jmSbkS5115yR2fyivJv9kx0ZMZ2RLZw27q87iNQi8EBo5FSPIMw3HqBboi5lKTGAGDp8FKXWP+t9TU01Lj5His1Ba6uM9dTEMwvrFmbf5GC/q2drW3ruXUhhsCiQOjznFlCzYhHUZp4xp76vsvQh89CQAAeAFjYGJABowM6IANLMrEyMTIzMjCXpyRWJBqZshWXJJYBKOMAFHFBucAAAAAAAAB//8AAngBY2BkYGDgA2IJBhBgAvKZGViBJAuYxwAABJsAOgAAeAFjYGBgZACCk535hiD60tn0azAaAEqpB6wAAA==") format("woff");font-weight:normal;font-style:normal}
  1259.  
  1260. </style>
  1261.  
  1262.  
  1263.  
  1264.  
  1265.  
  1266.  
  1267.  
  1268. <script data-cfasync='false' class='jdgm-script'>
  1269. !function(e){window.jdgm=window.jdgm||{},jdgm.CDN_HOST="https://cdnwidget.judge.me/",
  1270. jdgm.docReady=function(d){(e.attachEvent?"complete"===e.readyState:"loading"!==e.readyState)?
  1271. setTimeout(d,0):e.addEventListener("DOMContentLoaded",d)},jdgm.loadCSS=function(d,t,o,a){
  1272. !o&&jdgm.loadCSS.requestedUrls.indexOf(d)>=0||(jdgm.loadCSS.requestedUrls.push(d),
  1273. (a=e.createElement("link")).rel="stylesheet",a.class="jdgm-stylesheet",a.media="nope!",
  1274. a.href=d,a.onload=function(){this.media="all",t&&setTimeout(t)},e.body.appendChild(a))},
  1275. jdgm.loadCSS.requestedUrls=[],jdgm.loadJS=function(e,d){var t=new XMLHttpRequest;
  1276. t.onreadystatechange=function(){4===t.readyState&&(Function(t.response)(),d&&d(t.response))},
  1277. t.open("GET",e),t.send()},jdgm.docReady((function(){(window.jdgmLoadCSS||e.querySelectorAll(
  1278. ".jdgm-widget, .jdgm-all-reviews-page").length>0)&&(jdgmSettings.widget_load_with_code_splitting?
  1279. parseFloat(jdgmSettings.widget_version)>=3?jdgm.loadCSS(jdgm.CDN_HOST+"widget_v3/base.css"):
  1280. jdgm.loadCSS(jdgm.CDN_HOST+"widget/base.css"):jdgm.loadCSS(jdgm.CDN_HOST+"shopify_v2.css"),
  1281. jdgm.loadJS(jdgm.CDN_HOST+"loader.js"))}))}(document);
  1282. </script>
  1283. <noscript><link rel="stylesheet" type="text/css" media="all" href="https://cdnwidget.judge.me/shopify_v2.css"></noscript>
  1284.  
  1285. <!-- BEGIN app snippet: theme_fix_tags --><script>
  1286.  (function() {
  1287.    var jdgmThemeFixes = {"167355744569":{"html":"","css":"@media only screen and (max-width: 600px) {\n.jdgm-histogram {\n  float: none !important;\n  }\n}","js":""},"167735591225":{"html":"","css":"\n\n.jdgm-write-rev-link {\n    background-color: #F2F2F2 !important;\n    border-color: #F2F2F2 !important;\n}\n","js":""},"168131494201":{"html":"","css":"@media only screen and (max-width: 600px) {\n.jdgm-histogram {\n  float: none !important;\n  }\n}","js":""},"168223703353":{"html":"","css":".jdgm-collected-link{\n  position: static !important;\n}\n\n@media only screen and (max-width: 600px) {\n.jdgm-histogram,\n  .jdgm-rev-widg__summary,\n  .jdgm-widget-actions-wrapper{\n  float: none !important;\n  }\n}\n\n@media (max-width: 1900px) {\n      .jdgm-row-stars {display:block!important;}\n      .jdgm-rev-widg__summary, .jdgm-histogram, .jdgm-widget-actions-wrapper{width: 100%!important; margin: 10px auto!important}\n      .jdgm-histogram, .jdgm-widget-actions-wrapper {margin: 20px auto!important}\n      }\n","js":""},"176060563769":{"html":"","css":"span.jdgm-rev__buyer-badge-wrapper {\n    display: none !important;\n}","js":""}};
  1288.    if (!jdgmThemeFixes) return;
  1289.    var thisThemeFix = jdgmThemeFixes[Shopify.theme.id];
  1290.    if (!thisThemeFix) return;
  1291.  
  1292.    if (thisThemeFix.html) {
  1293.      document.addEventListener("DOMContentLoaded", function() {
  1294.        var htmlDiv = document.createElement('div');
  1295.        htmlDiv.classList.add('jdgm-theme-fix-html');
  1296.        htmlDiv.innerHTML = thisThemeFix.html;
  1297.        document.body.append(htmlDiv);
  1298.      });
  1299.    };
  1300.  
  1301.    if (thisThemeFix.css) {
  1302.      var styleTag = document.createElement('style');
  1303.      styleTag.classList.add('jdgm-theme-fix-style');
  1304.      styleTag.innerHTML = thisThemeFix.css;
  1305.      document.head.append(styleTag);
  1306.    };
  1307.  
  1308.    if (thisThemeFix.js) {
  1309.      var scriptTag = document.createElement('script');
  1310.      scriptTag.classList.add('jdgm-theme-fix-script');
  1311.      scriptTag.innerHTML = thisThemeFix.js;
  1312.      document.head.append(scriptTag);
  1313.    };
  1314.  })();
  1315. </script>
  1316. <!-- END app snippet -->
  1317. <!-- End of Judge.me Core -->
  1318.  
  1319.  
  1320.  
  1321.  
  1322. <!-- END app block --><!-- BEGIN app block: shopify://apps/pagefly-page-builder/blocks/app-embed/83e179f7-59a0-4589-8c66-c0dddf959200 -->
  1323.  
  1324. <!-- BEGIN app snippet: pagefly-cro-ab-testing-main -->
  1325.  
  1326.  
  1327.  
  1328.  
  1329.  
  1330.  
  1331.  
  1332. <script>
  1333.  ;(function () {
  1334.    const url = new URL(window.location)
  1335.    const viewParam = url.searchParams.get('view')
  1336.    if (viewParam && viewParam.includes('variant-pf-')) {
  1337.      url.searchParams.set('pf_v', viewParam)
  1338.      url.searchParams.delete('view')
  1339.      window.history.replaceState({}, '', url)
  1340.    }
  1341.  })()
  1342. </script>
  1343.  
  1344.  
  1345.  
  1346. <script type='module'>
  1347.  
  1348.  window.PAGEFLY_CRO = window.PAGEFLY_CRO || {}
  1349.  
  1350.  window.PAGEFLY_CRO['data_debug'] = {
  1351.    original_template_suffix: "home",
  1352.    allow_ab_test: false,
  1353.    ab_test_start_time: 0,
  1354.    ab_test_end_time: 0,
  1355.    today_date_time: 1749132788000,
  1356.  }
  1357.  window.PAGEFLY_CRO['GA4'] = { enabled: false}
  1358. </script>
  1359.  
  1360. <!-- END app snippet -->
  1361.  
  1362.  
  1363.  
  1364.  
  1365.  
  1366.  
  1367.  <script src='https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-helper.js' defer='defer'></script>
  1368.  
  1369.  <script src='https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-general-helper.js' defer='defer'></script>
  1370.  
  1371.  <script src='https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-snap-slider.js' defer='defer'></script>
  1372.  
  1373.  <script src='https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-slideshow-v3.js' defer='defer'></script>
  1374.  
  1375.  <script src='https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-slideshow-v4.js' defer='defer'></script>
  1376.  
  1377.  <script src='https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-glider.js' defer='defer'></script>
  1378.  
  1379.  <script src='https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-slideshow-v1-v2.js' defer='defer'></script>
  1380.  
  1381.  <script src='https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-product-media.js' defer='defer'></script>
  1382.  
  1383.  <script src='https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-product.js' defer='defer'></script>
  1384.  
  1385.  
  1386. <script id='pagefly-helper-data' type='application/json'>
  1387.  {
  1388.    "page_optimization": {
  1389.      "assets_prefetching": false
  1390.    },
  1391.    "elements_asset_mapper": {
  1392.      "Accordion": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-accordion.js",
  1393.      "Accordion3": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-accordion3.js",
  1394.      "CountDown": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-countdown.js",
  1395.      "GMap1": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-gmap.js",
  1396.      "GMap2": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-gmap.js",
  1397.      "GMapBasicV2": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-gmap.js",
  1398.      "GMapAdvancedV2": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-gmap.js",
  1399.      "HTML.Video": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-htmlvideo.js",
  1400.      "HTML.Video2": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-htmlvideo2.js",
  1401.      "HTML.Video3": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-htmlvideo2.js",
  1402.      "BackgroundVideo": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-htmlvideo2.js",
  1403.      "Instagram": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-instagram.js",
  1404.      "Instagram2": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-instagram.js",
  1405.      "Insta3": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-instagram3.js",
  1406.      "Tabs": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-tab.js",
  1407.      "Tabs3": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-tab3.js",
  1408.      "ProductBox": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-cart.js",
  1409.      "FBPageBox2": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-facebook.js",
  1410.      "FBLikeButton2": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-facebook.js",
  1411.      "TwitterFeed2": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-twitter.js",
  1412.      "Paragraph4": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-paragraph4.js",
  1413.  
  1414.      "AliReviews": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1415.      "BackInStock": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1416.      "GloboBackInStock": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1417.      "GrowaveWishlist": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1418.      "InfiniteOptionsShopPad": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1419.      "InkybayProductPersonalizer": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1420.      "LimeSpot": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1421.      "Loox": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1422.      "Opinew": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1423.      "Powr": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1424.      "ProductReviews": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1425.      "PushOwl": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1426.      "ReCharge": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1427.      "Rivyo": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1428.      "TrackingMore": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1429.      "Vitals": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js",
  1430.      "Wiser": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-3rd-elements.js"
  1431.    },
  1432.    "custom_elements_mapper": {
  1433.      "pf-click-action-element": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-click-action-element.js",
  1434.      "pf-dialog-element": "https://cdn.shopify.com/extensions/51e6e722-2db9-4c78-823c-7569d113e94e/pagefly-page-builder-161/assets/pagefly-dialog-element.js"
  1435.    }
  1436.  }
  1437. </script>
  1438.  
  1439.  
  1440. <!-- END app block --><!-- BEGIN app block: shopify://apps/triplewhale/blocks/triple_pixel_snippet/483d496b-3f1a-4609-aea7-8eee3b6b7a2a --><link rel='preconnect dns-prefetch' href='https://api.config-security.com/' crossorigin />
  1441. <link rel='preconnect dns-prefetch' href='https://conf.config-security.com/' crossorigin />
  1442. <script>
  1443. /* >> TriplePixel :: start*/
  1444. window.TriplePixelData={TripleName:"mygarvee.myshopify.com",ver:"2.16",plat:"SHOPIFY",isHeadless:false,src:'SHOPIFY_EXT',product:{id:"",name:``,price:"",variant:""},search:"",collection:"",cart:"",template:"index"},function(W,H,A,L,E,_,B,N){function O(U,T,P,H,R){void 0===R&&(R=!1),H=new XMLHttpRequest,P?(H.open("POST",U,!0),H.setRequestHeader("Content-Type","text/plain")):H.open("GET",U,!0),H.send(JSON.stringify(P||{})),H.onreadystatechange=function(){4===H.readyState&&200===H.status?(R=H.responseText,U.includes("/first")?eval(R):P||(N[B]=R)):(299<H.status||H.status<200)&&T&&!R&&(R=!0,O(U,T-1,P))}}if(N=window,!N[H+"sn"]){N[H+"sn"]=1,L=function(){return Date.now().toString(36)+"_"+Math.random().toString(36)};try{A.setItem(H,1+(0|A.getItem(H)||0)),(E=JSON.parse(A.getItem(H+"U")||"[]")).push({u:location.href,r:document.referrer,t:Date.now(),id:L()}),A.setItem(H+"U",JSON.stringify(E))}catch(e){}var i,m,p;A.getItem('"!nC`')||(_=A,A=N,A[H]||(E=A[H]=function(t,e,i){return void 0===i&&(i=[]),"State"==t?E.s:(W=L(),(E._q=E._q||[]).push([W,t,e].concat(i)),W)},E.s="Installed",E._q=[],E.ch=W,B="configSecurityConfModel",N[B]=1,O("https://conf.config-security.com/model",5),i=L(),m=A[atob("c2NyZWVu")],_.setItem("di_pmt_wt",i),p={id:i,action:"profile",avatar:_.getItem("auth-security_rand_salt_"),time:m[atob("d2lkdGg=")]+":"+m[atob("aGVpZ2h0")],host:A.TriplePixelData.TripleName,plat:A.TriplePixelData.plat,url:window.location.href.slice(0,500),ref:document.referrer,ver:A.TriplePixelData.ver},O("https://api.config-security.com/event",5,p),O("https://api.config-security.com/first?host=".concat(p.host,"&plat=").concat(p.plat),5)))}}("","TriplePixel",localStorage);
  1445. /* << TriplePixel :: end*/
  1446. </script>
  1447.  
  1448.  
  1449.  
  1450. <!-- END app block --><!-- BEGIN app block: shopify://apps/klaviyo-email-marketing-sms/blocks/klaviyo-onsite-embed/2632fe16-c075-4321-a88b-50b567f42507 -->
  1451.  
  1452.  
  1453.  
  1454.  
  1455.  
  1456.  
  1457.  
  1458.  
  1459.  
  1460.  
  1461.  
  1462.  
  1463.  <script async src="https://static.klaviyo.com/onsite/js/VfwWsT/klaviyo.js?company_id=VfwWsT"></script>
  1464.  <script>!function(){if(!window.klaviyo){window._klOnsite=window._klOnsite||[];try{window.klaviyo=new Proxy({},{get:function(n,i){return"push"===i?function(){var n;(n=window._klOnsite).push.apply(n,arguments)}:function(){for(var n=arguments.length,o=new Array(n),w=0;w<n;w++)o[w]=arguments[w];var t="function"==typeof o[o.length-1]?o.pop():void 0,e=new Promise((function(n){window._klOnsite.push([i].concat(o,[function(i){t&&t(i),n(i)}]))}));return e}}})}catch(n){window.klaviyo=window.klaviyo||[],window.klaviyo.push=function(){var n;(n=window._klOnsite).push.apply(n,arguments)}}}}();</script>
  1465.  
  1466.  
  1467.  
  1468.  
  1469.  
  1470.  
  1471.  <script>
  1472.    window.klaviyoReviewsProductDesignMode = false
  1473.  </script>
  1474.  
  1475.  
  1476.  
  1477.  
  1478.  
  1479.  
  1480.  
  1481. <!-- END app block --><!-- BEGIN app block: shopify://apps/powerful-form-builder/blocks/app-embed/e4bcb1eb-35b2-42e6-bc37-bfe0e1542c9d --><script></script>
  1482.  
  1483. <script type="text/javascript" hs-ignore>
  1484.  var Globo = Globo || {};
  1485.  var globoFormbuilderRecaptchaInit = function(){};
  1486.  var globoFormbuilderHcaptchaInit = function(){};
  1487.  window.Globo.FormBuilder = window.Globo.FormBuilder || {};
  1488.  window.Globo.FormBuilder.shop = {"configuration":{"money_format":"${{amount}}"},"pricing":{"features":{"bulkOrderForm":true,"cartForm":true,"fileUpload":100,"removeCopyright":true,"restrictedEmailDomains":true}},"settings":{"copyright":"Powered by <a href=\"https://globosoftware.net\" target=\"_blank\">Globo</a> <a href=\"https://apps.shopify.com/form-builder-contact-form\" target=\"_blank\">Contact Form</a>","hideWaterMark":false,"reCaptcha":{"recaptchaType":"v2","siteKey":false,"languageCode":"en"},"scrollTop":false,"customCssCode":".custom-phone .iti__flag-container {\n  pointer-events: none;\n}\n.custom-phone .iti__flag-container .iti__arrow {\n  display: none;\n}","customCssEnabled":true,"additionalColumns":[]},"encryption_form_id":1,"url":"https://app.powerfulform.com/","CDN_URL":"https://dxo9oalx9qc1s.cloudfront.net"};
  1489.  
  1490.  if(window.Globo.FormBuilder.shop.settings.customCssEnabled && window.Globo.FormBuilder.shop.settings.customCssCode){
  1491.    const customStyle = document.createElement('style');
  1492.    customStyle.type = 'text/css';
  1493.    customStyle.innerHTML = window.Globo.FormBuilder.shop.settings.customCssCode;
  1494.    document.head.appendChild(customStyle);
  1495.  }
  1496.  
  1497.  window.Globo.FormBuilder.forms = [];
  1498.    
  1499.      
  1500.      
  1501.      
  1502.      window.Globo.FormBuilder.forms[47056] = {"47056":{"elements":[{"id":"group-1","type":"group","label":{"en":"Wholesale Inquiry"},"description":"","elements":[{"id":"text-1","type":"text","label":{"en":"Company Name"},"placeholder":{"en":""},"description":"","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"required":true},{"id":"email-1","type":"email","label":"Email","placeholder":"","description":"","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":50,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true},{"id":"phone-1","type":"phone","label":{"en":"Phone Number"},"placeholder":"","description":"","validatePhone":false,"onlyShowFlag":false,"defaultCountryCode":"us","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":50,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true},{"id":"number-1","type":"number","label":{"en":"TAX ID\/ABN\/EIN\/VAT Number"},"placeholder":"","description":"","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true},{"id":"file2-1","type":"file2","label":{"en":"Please upload an image of your VAT\/TAXID\/ABN\/EIN\/Sellers Permit using the button below. Please make sure the Business Name, Address, and other information is shown in the Government Document."},"button-text":{"en":"Click here to upload file"},"placeholder":"Choose file or drag here","hint":{"en":"Supported format: JPG, JPEG, PNG"},"allowed-multiple":true,"allowed-extensions":["jpg","jpeg","png"],"description":"","hideLabel":false,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":false},{"id":"textarea-1","type":"textarea","label":{"en":"Tell us a little about yourself so that we can verify your business identity."},"placeholder":"","description":"","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false},{"id":"heading-1","type":"heading","heading":{"en":"PLEASE ENTER EXACT BUSINESS ADDRESS"},"caption":{"en":"As attached Government Document above. We will not approve any applications with different information entered below then the attached Government Document above"},"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false},{"id":"text-2","type":"text","label":{"en":"Street Name"},"placeholder":"","description":"","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true},{"id":"text-4","type":"text","label":{"en":"City"},"placeholder":"","description":"","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":50,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true},{"id":"text-5","type":"text","label":{"en":"State"},"placeholder":"","description":"","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":50,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true},{"id":"number-2","type":"number","label":{"en":"Zipcode"},"placeholder":"","description":"","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":50,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true},{"id":"country-1","type":"country","label":"Country","placeholder":"Please select","options":"Afghanistan\nAland Islands\nAlbania\nAlgeria\nAndorra\nAngola\nAnguilla\nAntigua And Barbuda\nArgentina\nArmenia\nAruba\nAustralia\nAustria\nAzerbaijan\nBahamas\nBahrain\nBangladesh\nBarbados\nBelarus\nBelgium\nBelize\nBenin\nBermuda\nBhutan\nBolivia\nBosnia And Herzegovina\nBotswana\nBouvet Island\nBrazil\nBritish Indian Ocean Territory\nVirgin Islands, British\nBrunei\nBulgaria\nBurkina Faso\nBurundi\nCambodia\nRepublic of Cameroon\nCanada\nCape Verde\nCaribbean Netherlands\nCayman Islands\nCentral African Republic\nChad\nChile\nChina\nChristmas Island\nCocos (Keeling) Islands\nColombia\nComoros\nCongo\nCongo, The Democratic Republic Of The\nCook Islands\nCosta Rica\nCroatia\nCuba\nCuraçao\nCyprus\nCzech Republic\nCôte d'Ivoire\nDenmark\nDjibouti\nDominica\nDominican Republic\nEcuador\nEgypt\nEl Salvador\nEquatorial Guinea\nEritrea\nEstonia\nEswatini\nEthiopia\nFalkland Islands (Malvinas)\nFaroe Islands\nFiji\nFinland\nFrance\nFrench Guiana\nFrench Polynesia\nFrench Southern Territories\nGabon\nGambia\nGeorgia\nGermany\nGhana\nGibraltar\nGreece\nGreenland\nGrenada\nGuadeloupe\nGuatemala\nGuernsey\nGuinea\nGuinea Bissau\nGuyana\nHaiti\nHeard Island And Mcdonald Islands\nHonduras\nHong Kong\nHungary\nIceland\nIndia\nIndonesia\nIran, Islamic Republic Of\nIraq\nIreland\nIsle Of Man\nIsrael\nItaly\nJamaica\nJapan\nJersey\nJordan\nKazakhstan\nKenya\nKiribati\nKosovo\nKuwait\nKyrgyzstan\nLao People's Democratic Republic\nLatvia\nLebanon\nLesotho\nLiberia\nLibyan Arab Jamahiriya\nLiechtenstein\nLithuania\nLuxembourg\nMacao\nMadagascar\nMalawi\nMalaysia\nMaldives\nMali\nMalta\nMartinique\nMauritania\nMauritius\nMayotte\nMexico\nMoldova, Republic of\nMonaco\nMongolia\nMontenegro\nMontserrat\nMorocco\nMozambique\nMyanmar\nNamibia\nNauru\nNepal\nNetherlands\nNetherlands Antilles\nNew Caledonia\nNew Zealand\nNicaragua\nNiger\nNigeria\nNiue\nNorfolk Island\nKorea, Democratic People's Republic Of\nNorth Macedonia\nNorway\nOman\nPakistan\nPalestinian Territory, Occupied\nPanama\nPapua New Guinea\nParaguay\nPeru\nPhilippines\nPitcairn\nPoland\nPortugal\nQatar\nReunion\nRomania\nRussia\nRwanda\nSamoa\nSan Marino\nSao Tome And Principe\nSaudi Arabia\nSenegal\nSerbia\nSeychelles\nSierra Leone\nSingapore\nSint Maarten\nSlovakia\nSlovenia\nSolomon Islands\nSomalia\nSouth Africa\nSouth Georgia And The South Sandwich Islands\nSouth Korea\nSouth Sudan\nSpain\nSri Lanka\nSaint Barthélemy\nSaint Helena\nSaint Kitts And Nevis\nSaint Lucia\nSaint Martin\nSaint Pierre And Miquelon\nSt. Vincent\nSudan\nSuriname\nSvalbard And Jan Mayen\nSweden\nSwitzerland\nSyria\nTaiwan\nTajikistan\nTanzania, United Republic Of\nThailand\nTimor Leste\nTogo\nTokelau\nTonga\nTrinidad and Tobago\nTunisia\nTurkey\nTurkmenistan\nTurks and Caicos Islands\nTuvalu\nUnited States Minor Outlying Islands\nUganda\nUkraine\nUnited Arab Emirates\nUnited Kingdom\nUnited States\nUruguay\nUzbekistan\nVanuatu\nHoly See (Vatican City State)\nVenezuela\nVietnam\nWallis And Futuna\nWestern Sahara\nYemen\nZambia\nZimbabwe","defaultOption":"","description":"","hideLabel":false,"keepPositionLabel":false,"columnWidth":50,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true}]}],"errorMessage":{"required":"Please fill in field","minSelections":"Please choose at least {{ min_selections }} options","maxSelections":"Please choose at maximum of {{ max_selections }} options","exactlySelections":"Please choose exactly {{ exact_selections }} options","invalid":"Invalid","invalidName":"Invalid name","invalidEmail":"Invalid email","invalidURL":"Invalid url","invalidPhone":"Invalid phone","invalidNumber":"Invalid number","invalidPassword":"Invalid password","confirmPasswordNotMatch":"Confirmed password doesn't match","customerAlreadyExists":"Customer already exists","fileSizeLimit":"File size limit","fileNotAllowed":"File not allowed","requiredCaptcha":"Required captcha","requiredProducts":"Please select product","limitQuantity":"The number of products left in stock has been exceeded","shopifyInvalidPhone":"phone - Enter a valid phone number to use this delivery method","shopifyPhoneHasAlready":"phone - Phone has already been taken","shopifyInvalidProvice":"addresses.province - is not valid","otherError":"Something went wrong, please try again"},"appearance":{"layout":"boxed","width":600,"style":"classic","mainColor":"rgba(0,0,0,1)","floatingIcon":"\u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"envelope\" class=\"svg-inline--fa fa-envelope fa-w-16\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e","floatingText":null,"displayOnAllPage":false,"formType":"normalForm","background":"color","backgroundColor":"#fff","descriptionColor":"#6c757d","headingColor":"#000","labelColor":"#000","optionColor":"#000","paragraphBackground":"#fff","paragraphColor":"#000","colorScheme":{"solidButton":{"red":0,"green":0,"blue":0},"solidButtonLabel":{"red":255,"green":255,"blue":255},"text":{"red":0,"green":0,"blue":0},"outlineButton":{"red":0,"green":0,"blue":0},"background":{"red":255,"green":255,"blue":255}}},"afterSubmit":{"action":"clearForm","title":"Thanks for getting in touch!","message":"\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eHave a great day!\u003c\/p\u003e","redirectUrl":null},"footer":{"description":null,"previousText":"Previous","nextText":"Next","submitText":"Submit"},"header":{"active":true,"title":{"en":"Wholesale Application"},"description":{"en":"\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e"},"headerAlignment":"left"},"isStepByStepForm":true,"publish":{"requiredLogin":false,"requiredLoginMessage":"Please \u003ca href='\/account\/login' title='login'\u003elogin\u003c\/a\u003e to continue"},"reCaptcha":{"enable":false},"html":"\n\u003cdiv class=\"globo-form boxed-form globo-form-id-0 \" data-locale=\"en\" \u003e\n\n\u003cstyle\u003e\n\n\n    :root .globo-form-app[data-id=\"0\"]{\n        \n        --gfb-color-solidButton: 0,0,0;\n        --gfb-color-solidButtonColor: rgb(var(--gfb-color-solidButton));\n        --gfb-color-solidButtonLabel: 255,255,255;\n        --gfb-color-solidButtonLabelColor: rgb(var(--gfb-color-solidButtonLabel));\n        --gfb-color-text: 0,0,0;\n        --gfb-color-textColor: rgb(var(--gfb-color-text));\n        --gfb-color-outlineButton: 0,0,0;\n        --gfb-color-outlineButtonColor: rgb(var(--gfb-color-outlineButton));\n        --gfb-color-background: 255,255,255;\n        --gfb-color-backgroundColor: rgb(var(--gfb-color-background));\n        \n        --gfb-main-color: rgba(0,0,0,1);\n        --gfb-primary-color: var(--gfb-color-solidButtonColor, var(--gfb-main-color));\n        --gfb-primary-text-color: var(--gfb-color-solidButtonLabelColor, #FFF);\n        --gfb-form-width: 600px;\n        --gfb-font-family: inherit;\n        --gfb-font-style: inherit;\n        \n        --gfb-bg-temp-color: #FFF;\n        --gfb-bg-position: top;\n        \n            --gfb-bg-temp-color: #fff;\n        \n        --gfb-bg-color: var(--gfb-color-backgroundColor, var(--gfb-bg-temp-color));\n        \n    }\n    \n.globo-form-id-0 .globo-form-app{\n    max-width: 600px;\n    width: -webkit-fill-available;\n    \n    background-color: var(--gfb-bg-color);\n    \n    \n}\n\n.globo-form-id-0 .globo-form-app .globo-heading{\n    color: var(--gfb-color-textColor, #000)\n}\n\n\n.globo-form-id-0 .globo-form-app .header {\n    text-align:left;\n}\n\n\n.globo-form-id-0 .globo-form-app .globo-description,\n.globo-form-id-0 .globo-form-app .header .globo-description{\n    --gfb-color-description: rgba(var(--gfb-color-text), 0.8);\n    color: var(--gfb-color-description, #6c757d);\n}\n.globo-form-id-0 .globo-form-app .globo-label,\n.globo-form-id-0 .globo-form-app .globo-form-control label.globo-label,\n.globo-form-id-0 .globo-form-app .globo-form-control label.globo-label span.label-content{\n    color: var(--gfb-color-textColor, #000);\n    text-align: left !important;\n}\n.globo-form-id-0 .globo-form-app .globo-label.globo-position-label{\n    height: 20px !important;\n}\n.globo-form-id-0 .globo-form-app .globo-form-control .help-text.globo-description,\n.globo-form-id-0 .globo-form-app .globo-form-control span.globo-description{\n    --gfb-color-description: rgba(var(--gfb-color-text), 0.8);\n    color: var(--gfb-color-description, #6c757d);\n}\n.globo-form-id-0 .globo-form-app .globo-form-control .checkbox-wrapper .globo-option,\n.globo-form-id-0 .globo-form-app .globo-form-control .radio-wrapper .globo-option\n{\n    color: var(--gfb-color-textColor, #000);\n}\n.globo-form-id-0 .globo-form-app .footer,\n.globo-form-id-0 .globo-form-app .gfb__footer{\n    text-align:;\n}\n.globo-form-id-0 .globo-form-app .footer button,\n.globo-form-id-0 .globo-form-app .gfb__footer button{\n    border:1px solid var(--gfb-primary-color);\n    \n}\n.globo-form-id-0 .globo-form-app .footer button.submit,\n.globo-form-id-0 .globo-form-app .gfb__footer button.submit\n.globo-form-id-0 .globo-form-app .footer button.checkout,\n.globo-form-id-0 .globo-form-app .gfb__footer button.checkout,\n.globo-form-id-0 .globo-form-app .footer button.action.loading .spinner,\n.globo-form-id-0 .globo-form-app .gfb__footer button.action.loading .spinner{\n    background-color: var(--gfb-primary-color);\n    color : #ffffff;\n}\n.globo-form-id-0 .globo-form-app .globo-form-control .star-rating\u003efieldset:not(:checked)\u003elabel:before {\n    content: url('data:image\/svg+xml; utf8, \u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"star\" class=\"svg-inline--fa fa-star fa-w-18\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"rgba(0,0,0,1)\" d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e');\n}\n.globo-form-id-0 .globo-form-app .globo-form-control .star-rating\u003efieldset\u003einput:checked ~ label:before {\n    content: url('data:image\/svg+xml; utf8, \u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"fas\" data-icon=\"star\" class=\"svg-inline--fa fa-star fa-w-18\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"rgba(0,0,0,1)\" d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e');\n}\n.globo-form-id-0 .globo-form-app .globo-form-control .star-rating\u003efieldset:not(:checked)\u003elabel:hover:before,\n.globo-form-id-0 .globo-form-app .globo-form-control .star-rating\u003efieldset:not(:checked)\u003elabel:hover ~ label:before{\n    content : url('data:image\/svg+xml; utf8, \u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"fas\" data-icon=\"star\" class=\"svg-inline--fa fa-star fa-w-18\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"rgba(0,0,0,1)\" d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e')\n}\n.globo-form-id-0 .globo-form-app .globo-form-control .checkbox-wrapper .checkbox-input:checked ~ .checkbox-label:before {\n    border-color: var(--gfb-primary-color);\n    box-shadow: 0 4px 6px rgba(50,50,93,0.11), 0 1px 3px rgba(0,0,0,0.08);\n    background-color: var(--gfb-primary-color);\n}\n.globo-form-id-0 .globo-form-app .step.-completed .step__number,\n.globo-form-id-0 .globo-form-app .line.-progress,\n.globo-form-id-0 .globo-form-app .line.-start{\n    background-color: var(--gfb-primary-color);\n}\n.globo-form-id-0 .globo-form-app .checkmark__check,\n.globo-form-id-0 .globo-form-app .checkmark__circle{\n    stroke: var(--gfb-primary-color);\n}\n.globo-form-id-0 .floating-button{\n    background-color: var(--gfb-primary-color);\n}\n.globo-form-id-0 .globo-form-app .globo-form-control .checkbox-wrapper .checkbox-input ~ .checkbox-label:before,\n.globo-form-app .globo-form-control .radio-wrapper .radio-input ~ .radio-label:after{\n    border-color : var(--gfb-primary-color);\n}\n.globo-form-id-0 .flatpickr-day.selected, \n.globo-form-id-0 .flatpickr-day.startRange, \n.globo-form-id-0 .flatpickr-day.endRange, \n.globo-form-id-0 .flatpickr-day.selected.inRange, \n.globo-form-id-0 .flatpickr-day.startRange.inRange, \n.globo-form-id-0 .flatpickr-day.endRange.inRange, \n.globo-form-id-0 .flatpickr-day.selected:focus, \n.globo-form-id-0 .flatpickr-day.startRange:focus, \n.globo-form-id-0 .flatpickr-day.endRange:focus, \n.globo-form-id-0 .flatpickr-day.selected:hover, \n.globo-form-id-0 .flatpickr-day.startRange:hover, \n.globo-form-id-0 .flatpickr-day.endRange:hover, \n.globo-form-id-0 .flatpickr-day.selected.prevMonthDay, \n.globo-form-id-0 .flatpickr-day.startRange.prevMonthDay, \n.globo-form-id-0 .flatpickr-day.endRange.prevMonthDay, \n.globo-form-id-0 .flatpickr-day.selected.nextMonthDay, \n.globo-form-id-0 .flatpickr-day.startRange.nextMonthDay, \n.globo-form-id-0 .flatpickr-day.endRange.nextMonthDay {\n    background: var(--gfb-primary-color);\n    border-color: var(--gfb-primary-color);\n}\n.globo-form-id-0 .globo-paragraph {\n    background: #fff;\n    color: var(--gfb-color-textColor, #000);\n    width: 100%!important;\n}\n\n\u003c\/style\u003e\n\n\u003cdiv class=\"globo-form-app boxed-layout gfb-style-classic \" data-id=0\u003e\n    \n    \u003cdiv class=\"header dismiss hidden\" onclick=\"Globo.FormBuilder.closeModalForm(this)\"\u003e\n        \u003csvg width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n    \u003c\/div\u003e\n    \u003cform class=\"g-container\" novalidate action=\"https:\/\/app.powerfulform.com\/api\/front\/form\/0\/send\" method=\"POST\" enctype=\"multipart\/form-data\" data-id=0\u003e\n        \n            \n            \u003cdiv class=\"header\"\u003e\n                \u003ch3 class=\"title globo-heading\"\u003eWholesale Application\u003c\/h3\u003e\n                \n                \u003cdiv class=\"description globo-description\"\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003c\/div\u003e\n                \n            \u003c\/div\u003e\n            \n        \n        \n            \u003cdiv class=\"globo-formbuilder-wizard\" data-id=0\u003e\n                \u003cdiv class=\"wizard__content\"\u003e\n                    \u003cheader class=\"wizard__header\"\u003e\n                        \u003cdiv class=\"wizard__steps\"\u003e\n                        \u003cnav class=\"steps hidden\"\u003e\n                            \n                            \n                                \n                            \n                            \n                                \n                                \n                                \n                                \n                                \u003cdiv class=\"step last \" data-element-id=\"group-1\"  data-step=\"0\" \u003e\n                                    \u003cdiv class=\"step__content\"\u003e\n                                        \u003cp class=\"step__number\"\u003e\u003c\/p\u003e\n                                        \u003csvg class=\"checkmark\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=52 height=52 viewBox=\"0 0 52 52\"\u003e\n                                            \u003ccircle class=\"checkmark__circle\" cx=\"26\" cy=\"26\" r=\"25\" fill=\"none\"\/\u003e\n                                            \u003cpath class=\"checkmark__check\" fill=\"none\" d=\"M14.1 27.2l7.1 7.2 16.7-16.8\"\/\u003e\n                                        \u003c\/svg\u003e\n                                        \u003cdiv class=\"lines\"\u003e\n                                            \n                                                \u003cdiv class=\"line -start\"\u003e\u003c\/div\u003e\n                                            \n                                            \u003cdiv class=\"line -background\"\u003e\n                                            \u003c\/div\u003e\n                                            \u003cdiv class=\"line -progress\"\u003e\n                                            \u003c\/div\u003e\n                                        \u003c\/div\u003e  \n                                    \u003c\/div\u003e\n                                \u003c\/div\u003e\n                            \n                        \u003c\/nav\u003e\n                        \u003c\/div\u003e\n                    \u003c\/header\u003e\n                    \u003cdiv class=\"panels\"\u003e\n                        \n                        \n                        \n                        \n                        \u003cdiv class=\"panel \" data-element-id=\"group-1\" data-id=0  data-step=\"0\" style=\"padding-top:0\"\u003e\n                            \n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='text'\u003e\n    \u003clabel for=\"0-text-1\" class=\"classic-label globo-label \"\u003e\u003cspan class=\"label-content\" data-label=\"Company Name\"\u003eCompany Name\u003c\/span\u003e\u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\u003c\/label\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \u003cinput type=\"text\"  data-type=\"text\" class=\"classic-input\" id=\"0-text-1\" name=\"text-1\" placeholder=\"\" presence  \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\u003cdiv class=\"globo-form-control layout-2-column \"  data-type='email'\u003e\n    \u003clabel for=\"0-email-1\" class=\"classic-label globo-label \"\u003e\u003cspan class=\"label-content\" data-label=\"Email\"\u003eEmail\u003c\/span\u003e\u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\u003c\/label\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \u003cinput type=\"text\"  data-type=\"email\" class=\"classic-input\" id=\"0-email-1\" name=\"email-1\" placeholder=\"\" presence  \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\u003cdiv class=\"globo-form-control layout-2-column \"  data-type='phone'\u003e\n    \u003clabel for=\"0-phone-1\" class=\"classic-label globo-label \"\u003e\u003cspan class=\"label-content\" data-label=\"Phone Number\"\u003ePhone Number\u003c\/span\u003e\u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\u003c\/label\u003e\n    \u003cdiv class=\"globo-form-input gfb__phone-placeholder\" input-placeholder=\"\"\u003e\n        \n        \u003cinput type=\"text\"  data-type=\"phone\" class=\"classic-input\" id=\"0-phone-1\" name=\"phone-1\" placeholder=\"\" presence    default-country-code=\"us\"\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='number'\u003e\n    \u003clabel for=\"0-number-1\" class=\"classic-label globo-label \"\u003e\u003cspan class=\"label-content\" data-label=\"TAX ID\/ABN\/EIN\/VAT Number\"\u003eTAX ID\/ABN\/EIN\/VAT Number\u003c\/span\u003e\u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\u003c\/label\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \u003cinput type=\"number\"  class=\"classic-input\" id=\"0-number-1\" name=\"number-1\" placeholder=\"\" presence  onKeyPress=\"if(this.value.length == 100) return false;\" onChange=\"if(this.value.length \u003e 100) this.value = this.value - 1\" \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='file2'\u003e\n    \u003clabel for=\"temp-for-0-file2-1\" class=\"classic-label globo-label \"\u003e\u003cspan class=\"label-content\" data-label=\"Please upload an image of your VAT\/TAXID\/ABN\/EIN\/Sellers Permit using the button below. Please make sure the Business Name, Address, and other information is shown in the Government Document.\"\u003ePlease upload an image of your VAT\/TAXID\/ABN\/EIN\/Sellers Permit using the button below. Please make sure the Business Name, Address, and other information is shown in the Government Document.\u003c\/span\u003e\u003cspan\u003e\u003c\/span\u003e\u003c\/label\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \u003cdiv class=\"gfb__dropzone\"\u003e\n            \u003cdiv class=\"gfb__dropzone--content\"\u003e\n                \u003cdiv class=\"gfb__dropzone--placeholder\"\u003e\n                    \u003cdiv class=\"gfb__dropzone--placeholder--title\"\u003e\n                        Choose file or drag here\n                    \u003c\/div\u003e\n                    \n                    \u003cdiv class=\"gfb__dropzone--placeholder--description\"\u003e\n                        Supported format: JPG, JPEG, PNG\n                    \u003c\/div\u003e\n                    \n                    \n                    \u003cbutton type=\"button\" for=\"0-file2-1\" class=\"gfb__dropzone--placeholder--button\"\u003eClick here to upload file\u003c\/button\u003e\n                    \n                \u003c\/div\u003e\n                \u003cdiv class=\"gfb__dropzone--preview--area\"\u003e\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cinput style=\"display:none\" type=\"file\" id=\"temp-for-0-file2-1\"  multiple  \/\u003e\n            \u003cinput style=\"display:none\" type=\"file\"  data-type=\"file2\" class=\"classic-input\" id=\"0-file2-1\"  multiple name=\"file2-1[]\"  placeholder=\"Choose file or drag here\"  data-allowed-extensions=\"jpg,jpeg,png\" data-file-size-limit=\"\" data-file-limit=\"\" \u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='textarea'\u003e\n    \u003clabel for=\"0-textarea-1\" class=\"classic-label globo-label \"\u003e\u003cspan class=\"label-content\" data-label=\"Tell us a little about yourself so that we can verify your business identity.\"\u003eTell us a little about yourself so that we can verify your business identity.\u003c\/span\u003e\u003cspan\u003e\u003c\/span\u003e\u003c\/label\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \u003ctextarea id=\"0-textarea-1\"  data-type=\"textarea\" class=\"classic-input\" rows=\"3\" name=\"textarea-1\" placeholder=\"\"   \u003e\u003c\/textarea\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='heading'\u003e\n    \u003ch3 class=\"heading-title globo-heading\" id=\"heading-1\" \u003ePLEASE ENTER EXACT BUSINESS ADDRESS\u003c\/h3\u003e\n    \u003cp class=\"heading-caption\"\u003eAs attached Government Document above. We will not approve any applications with different information entered below then the attached Government Document above\u003c\/p\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='text'\u003e\n    \u003clabel for=\"0-text-2\" class=\"classic-label globo-label \"\u003e\u003cspan class=\"label-content\" data-label=\"Street Name\"\u003eStreet Name\u003c\/span\u003e\u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\u003c\/label\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \u003cinput type=\"text\"  data-type=\"text\" class=\"classic-input\" id=\"0-text-2\" name=\"text-2\" placeholder=\"\" presence  \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\u003cdiv class=\"globo-form-control layout-2-column \"  data-type='text'\u003e\n    \u003clabel for=\"0-text-4\" class=\"classic-label globo-label \"\u003e\u003cspan class=\"label-content\" data-label=\"City\"\u003eCity\u003c\/span\u003e\u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\u003c\/label\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \u003cinput type=\"text\"  data-type=\"text\" class=\"classic-input\" id=\"0-text-4\" name=\"text-4\" placeholder=\"\" presence  \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\u003cdiv class=\"globo-form-control layout-2-column \"  data-type='text'\u003e\n    \u003clabel for=\"0-text-5\" class=\"classic-label globo-label \"\u003e\u003cspan class=\"label-content\" data-label=\"State\"\u003eState\u003c\/span\u003e\u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\u003c\/label\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \u003cinput type=\"text\"  data-type=\"text\" class=\"classic-input\" id=\"0-text-5\" name=\"text-5\" placeholder=\"\" presence  \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\u003cdiv class=\"globo-form-control layout-2-column \"  data-type='number'\u003e\n    \u003clabel for=\"0-number-2\" class=\"classic-label globo-label \"\u003e\u003cspan class=\"label-content\" data-label=\"Zipcode\"\u003eZipcode\u003c\/span\u003e\u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\u003c\/label\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \u003cinput type=\"number\"  class=\"classic-input\" id=\"0-number-2\" name=\"number-2\" placeholder=\"\" presence  onKeyPress=\"if(this.value.length == 100) return false;\" onChange=\"if(this.value.length \u003e 100) this.value = this.value - 1\" \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\u003cdiv class=\"globo-form-control layout-2-column \"  data-type='country' data-default-value=\"\" data-type=\"country\"\u003e\n    \u003clabel for=\"0-country-1\" class=\"classic-label globo-label \"\u003e\u003cspan class=\"label-content\" data-label=\"Country\"\u003eCountry\u003c\/span\u003e\u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\u003c\/label\u003e\n    \n    \n    \n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \u003cselect name=\"country-1\"  id=\"0-country-1\" class=\"classic-input\" presence\u003e\n            \u003coption selected=\"selected\" value=\"\" disabled=\"disabled\"\u003ePlease select\u003c\/option\u003e\n            \n            \u003coption value=\"Afghanistan\" \u003eAfghanistan\u003c\/option\u003e\n            \n            \u003coption value=\"Aland Islands\" \u003eAland Islands\u003c\/option\u003e\n            \n            \u003coption value=\"Albania\" \u003eAlbania\u003c\/option\u003e\n            \n            \u003coption value=\"Algeria\" \u003eAlgeria\u003c\/option\u003e\n            \n            \u003coption value=\"Andorra\" \u003eAndorra\u003c\/option\u003e\n            \n            \u003coption value=\"Angola\" \u003eAngola\u003c\/option\u003e\n            \n            \u003coption value=\"Anguilla\" \u003eAnguilla\u003c\/option\u003e\n            \n            \u003coption value=\"Antigua And Barbuda\" \u003eAntigua And Barbuda\u003c\/option\u003e\n            \n            \u003coption value=\"Argentina\" \u003eArgentina\u003c\/option\u003e\n            \n            \u003coption value=\"Armenia\" \u003eArmenia\u003c\/option\u003e\n            \n            \u003coption value=\"Aruba\" \u003eAruba\u003c\/option\u003e\n            \n            \u003coption value=\"Australia\" \u003eAustralia\u003c\/option\u003e\n            \n            \u003coption value=\"Austria\" \u003eAustria\u003c\/option\u003e\n            \n            \u003coption value=\"Azerbaijan\" \u003eAzerbaijan\u003c\/option\u003e\n            \n            \u003coption value=\"Bahamas\" \u003eBahamas\u003c\/option\u003e\n            \n            \u003coption value=\"Bahrain\" \u003eBahrain\u003c\/option\u003e\n            \n            \u003coption value=\"Bangladesh\" \u003eBangladesh\u003c\/option\u003e\n            \n            \u003coption value=\"Barbados\" \u003eBarbados\u003c\/option\u003e\n            \n            \u003coption value=\"Belarus\" \u003eBelarus\u003c\/option\u003e\n            \n            \u003coption value=\"Belgium\" \u003eBelgium\u003c\/option\u003e\n            \n            \u003coption value=\"Belize\" \u003eBelize\u003c\/option\u003e\n            \n            \u003coption value=\"Benin\" \u003eBenin\u003c\/option\u003e\n            \n            \u003coption value=\"Bermuda\" \u003eBermuda\u003c\/option\u003e\n            \n            \u003coption value=\"Bhutan\" \u003eBhutan\u003c\/option\u003e\n            \n            \u003coption value=\"Bolivia\" \u003eBolivia\u003c\/option\u003e\n            \n            \u003coption value=\"Bosnia And Herzegovina\" \u003eBosnia And Herzegovina\u003c\/option\u003e\n            \n            \u003coption value=\"Botswana\" \u003eBotswana\u003c\/option\u003e\n            \n            \u003coption value=\"Bouvet Island\" \u003eBouvet Island\u003c\/option\u003e\n            \n            \u003coption value=\"Brazil\" \u003eBrazil\u003c\/option\u003e\n            \n            \u003coption value=\"British Indian Ocean Territory\" \u003eBritish Indian Ocean Territory\u003c\/option\u003e\n            \n            \u003coption value=\"Virgin Islands, British\" \u003eVirgin Islands, British\u003c\/option\u003e\n            \n            \u003coption value=\"Brunei\" \u003eBrunei\u003c\/option\u003e\n            \n            \u003coption value=\"Bulgaria\" \u003eBulgaria\u003c\/option\u003e\n            \n            \u003coption value=\"Burkina Faso\" \u003eBurkina Faso\u003c\/option\u003e\n            \n            \u003coption value=\"Burundi\" \u003eBurundi\u003c\/option\u003e\n            \n            \u003coption value=\"Cambodia\" \u003eCambodia\u003c\/option\u003e\n            \n            \u003coption value=\"Republic of Cameroon\" \u003eRepublic of Cameroon\u003c\/option\u003e\n            \n            \u003coption value=\"Canada\" \u003eCanada\u003c\/option\u003e\n            \n            \u003coption value=\"Cape Verde\" \u003eCape Verde\u003c\/option\u003e\n            \n            \u003coption value=\"Caribbean Netherlands\" \u003eCaribbean Netherlands\u003c\/option\u003e\n            \n            \u003coption value=\"Cayman Islands\" \u003eCayman Islands\u003c\/option\u003e\n            \n            \u003coption value=\"Central African Republic\" \u003eCentral African Republic\u003c\/option\u003e\n            \n            \u003coption value=\"Chad\" \u003eChad\u003c\/option\u003e\n            \n            \u003coption value=\"Chile\" \u003eChile\u003c\/option\u003e\n            \n            \u003coption value=\"China\" \u003eChina\u003c\/option\u003e\n            \n            \u003coption value=\"Christmas Island\" \u003eChristmas Island\u003c\/option\u003e\n            \n            \u003coption value=\"Cocos (Keeling) Islands\" \u003eCocos (Keeling) Islands\u003c\/option\u003e\n            \n            \u003coption value=\"Colombia\" \u003eColombia\u003c\/option\u003e\n            \n            \u003coption value=\"Comoros\" \u003eComoros\u003c\/option\u003e\n            \n            \u003coption value=\"Congo\" \u003eCongo\u003c\/option\u003e\n            \n            \u003coption value=\"Congo, The Democratic Republic Of The\" \u003eCongo, The Democratic Republic Of The\u003c\/option\u003e\n            \n            \u003coption value=\"Cook Islands\" \u003eCook Islands\u003c\/option\u003e\n            \n            \u003coption value=\"Costa Rica\" \u003eCosta Rica\u003c\/option\u003e\n            \n            \u003coption value=\"Croatia\" \u003eCroatia\u003c\/option\u003e\n            \n            \u003coption value=\"Cuba\" \u003eCuba\u003c\/option\u003e\n            \n            \u003coption value=\"Curaçao\" \u003eCuraçao\u003c\/option\u003e\n            \n            \u003coption value=\"Cyprus\" \u003eCyprus\u003c\/option\u003e\n            \n            \u003coption value=\"Czech Republic\" \u003eCzech Republic\u003c\/option\u003e\n            \n            \u003coption value=\"Côte d'Ivoire\" \u003eCôte d'Ivoire\u003c\/option\u003e\n            \n            \u003coption value=\"Denmark\" \u003eDenmark\u003c\/option\u003e\n            \n            \u003coption value=\"Djibouti\" \u003eDjibouti\u003c\/option\u003e\n            \n            \u003coption value=\"Dominica\" \u003eDominica\u003c\/option\u003e\n            \n            \u003coption value=\"Dominican Republic\" \u003eDominican Republic\u003c\/option\u003e\n            \n            \u003coption value=\"Ecuador\" \u003eEcuador\u003c\/option\u003e\n            \n            \u003coption value=\"Egypt\" \u003eEgypt\u003c\/option\u003e\n            \n            \u003coption value=\"El Salvador\" \u003eEl Salvador\u003c\/option\u003e\n            \n            \u003coption value=\"Equatorial Guinea\" \u003eEquatorial Guinea\u003c\/option\u003e\n            \n            \u003coption value=\"Eritrea\" \u003eEritrea\u003c\/option\u003e\n            \n            \u003coption value=\"Estonia\" \u003eEstonia\u003c\/option\u003e\n            \n            \u003coption value=\"Eswatini\" \u003eEswatini\u003c\/option\u003e\n            \n            \u003coption value=\"Ethiopia\" \u003eEthiopia\u003c\/option\u003e\n            \n            \u003coption value=\"Falkland Islands (Malvinas)\" \u003eFalkland Islands (Malvinas)\u003c\/option\u003e\n            \n            \u003coption value=\"Faroe Islands\" \u003eFaroe Islands\u003c\/option\u003e\n            \n            \u003coption value=\"Fiji\" \u003eFiji\u003c\/option\u003e\n            \n            \u003coption value=\"Finland\" \u003eFinland\u003c\/option\u003e\n            \n            \u003coption value=\"France\" \u003eFrance\u003c\/option\u003e\n            \n            \u003coption value=\"French Guiana\" \u003eFrench Guiana\u003c\/option\u003e\n            \n            \u003coption value=\"French Polynesia\" \u003eFrench Polynesia\u003c\/option\u003e\n            \n            \u003coption value=\"French Southern Territories\" \u003eFrench Southern Territories\u003c\/option\u003e\n            \n            \u003coption value=\"Gabon\" \u003eGabon\u003c\/option\u003e\n            \n            \u003coption value=\"Gambia\" \u003eGambia\u003c\/option\u003e\n            \n            \u003coption value=\"Georgia\" \u003eGeorgia\u003c\/option\u003e\n            \n            \u003coption value=\"Germany\" \u003eGermany\u003c\/option\u003e\n            \n            \u003coption value=\"Ghana\" \u003eGhana\u003c\/option\u003e\n            \n            \u003coption value=\"Gibraltar\" \u003eGibraltar\u003c\/option\u003e\n            \n            \u003coption value=\"Greece\" \u003eGreece\u003c\/option\u003e\n            \n            \u003coption value=\"Greenland\" \u003eGreenland\u003c\/option\u003e\n            \n            \u003coption value=\"Grenada\" \u003eGrenada\u003c\/option\u003e\n            \n            \u003coption value=\"Guadeloupe\" \u003eGuadeloupe\u003c\/option\u003e\n            \n            \u003coption value=\"Guatemala\" \u003eGuatemala\u003c\/option\u003e\n            \n            \u003coption value=\"Guernsey\" \u003eGuernsey\u003c\/option\u003e\n            \n            \u003coption value=\"Guinea\" \u003eGuinea\u003c\/option\u003e\n            \n            \u003coption value=\"Guinea Bissau\" \u003eGuinea Bissau\u003c\/option\u003e\n            \n            \u003coption value=\"Guyana\" \u003eGuyana\u003c\/option\u003e\n            \n            \u003coption value=\"Haiti\" \u003eHaiti\u003c\/option\u003e\n            \n            \u003coption value=\"Heard Island And Mcdonald Islands\" \u003eHeard Island And Mcdonald Islands\u003c\/option\u003e\n            \n            \u003coption value=\"Honduras\" \u003eHonduras\u003c\/option\u003e\n            \n            \u003coption value=\"Hong Kong\" \u003eHong Kong\u003c\/option\u003e\n            \n            \u003coption value=\"Hungary\" \u003eHungary\u003c\/option\u003e\n            \n            \u003coption value=\"Iceland\" \u003eIceland\u003c\/option\u003e\n            \n            \u003coption value=\"India\" \u003eIndia\u003c\/option\u003e\n            \n            \u003coption value=\"Indonesia\" \u003eIndonesia\u003c\/option\u003e\n            \n            \u003coption value=\"Iran, Islamic Republic Of\" \u003eIran, Islamic Republic Of\u003c\/option\u003e\n            \n            \u003coption value=\"Iraq\" \u003eIraq\u003c\/option\u003e\n            \n            \u003coption value=\"Ireland\" \u003eIreland\u003c\/option\u003e\n            \n            \u003coption value=\"Isle Of Man\" \u003eIsle Of Man\u003c\/option\u003e\n            \n            \u003coption value=\"Israel\" \u003eIsrael\u003c\/option\u003e\n            \n            \u003coption value=\"Italy\" \u003eItaly\u003c\/option\u003e\n            \n            \u003coption value=\"Jamaica\" \u003eJamaica\u003c\/option\u003e\n            \n            \u003coption value=\"Japan\" \u003eJapan\u003c\/option\u003e\n            \n            \u003coption value=\"Jersey\" \u003eJersey\u003c\/option\u003e\n            \n            \u003coption value=\"Jordan\" \u003eJordan\u003c\/option\u003e\n            \n            \u003coption value=\"Kazakhstan\" \u003eKazakhstan\u003c\/option\u003e\n            \n            \u003coption value=\"Kenya\" \u003eKenya\u003c\/option\u003e\n            \n            \u003coption value=\"Kiribati\" \u003eKiribati\u003c\/option\u003e\n            \n            \u003coption value=\"Kosovo\" \u003eKosovo\u003c\/option\u003e\n            \n            \u003coption value=\"Kuwait\" \u003eKuwait\u003c\/option\u003e\n            \n            \u003coption value=\"Kyrgyzstan\" \u003eKyrgyzstan\u003c\/option\u003e\n            \n            \u003coption value=\"Lao People's Democratic Republic\" \u003eLao People's Democratic Republic\u003c\/option\u003e\n            \n            \u003coption value=\"Latvia\" \u003eLatvia\u003c\/option\u003e\n            \n            \u003coption value=\"Lebanon\" \u003eLebanon\u003c\/option\u003e\n            \n            \u003coption value=\"Lesotho\" \u003eLesotho\u003c\/option\u003e\n            \n            \u003coption value=\"Liberia\" \u003eLiberia\u003c\/option\u003e\n            \n            \u003coption value=\"Libyan Arab Jamahiriya\" \u003eLibyan Arab Jamahiriya\u003c\/option\u003e\n            \n            \u003coption value=\"Liechtenstein\" \u003eLiechtenstein\u003c\/option\u003e\n            \n            \u003coption value=\"Lithuania\" \u003eLithuania\u003c\/option\u003e\n            \n            \u003coption value=\"Luxembourg\" \u003eLuxembourg\u003c\/option\u003e\n            \n            \u003coption value=\"Macao\" \u003eMacao\u003c\/option\u003e\n            \n            \u003coption value=\"Madagascar\" \u003eMadagascar\u003c\/option\u003e\n            \n            \u003coption value=\"Malawi\" \u003eMalawi\u003c\/option\u003e\n            \n            \u003coption value=\"Malaysia\" \u003eMalaysia\u003c\/option\u003e\n            \n            \u003coption value=\"Maldives\" \u003eMaldives\u003c\/option\u003e\n            \n            \u003coption value=\"Mali\" \u003eMali\u003c\/option\u003e\n            \n            \u003coption value=\"Malta\" \u003eMalta\u003c\/option\u003e\n            \n            \u003coption value=\"Martinique\" \u003eMartinique\u003c\/option\u003e\n            \n            \u003coption value=\"Mauritania\" \u003eMauritania\u003c\/option\u003e\n            \n            \u003coption value=\"Mauritius\" \u003eMauritius\u003c\/option\u003e\n            \n            \u003coption value=\"Mayotte\" \u003eMayotte\u003c\/option\u003e\n            \n            \u003coption value=\"Mexico\" \u003eMexico\u003c\/option\u003e\n            \n            \u003coption value=\"Moldova, Republic of\" \u003eMoldova, Republic of\u003c\/option\u003e\n            \n            \u003coption value=\"Monaco\" \u003eMonaco\u003c\/option\u003e\n            \n            \u003coption value=\"Mongolia\" \u003eMongolia\u003c\/option\u003e\n            \n            \u003coption value=\"Montenegro\" \u003eMontenegro\u003c\/option\u003e\n            \n            \u003coption value=\"Montserrat\" \u003eMontserrat\u003c\/option\u003e\n            \n            \u003coption value=\"Morocco\" \u003eMorocco\u003c\/option\u003e\n            \n            \u003coption value=\"Mozambique\" \u003eMozambique\u003c\/option\u003e\n            \n            \u003coption value=\"Myanmar\" \u003eMyanmar\u003c\/option\u003e\n            \n            \u003coption value=\"Namibia\" \u003eNamibia\u003c\/option\u003e\n            \n            \u003coption value=\"Nauru\" \u003eNauru\u003c\/option\u003e\n            \n            \u003coption value=\"Nepal\" \u003eNepal\u003c\/option\u003e\n            \n            \u003coption value=\"Netherlands\" \u003eNetherlands\u003c\/option\u003e\n            \n            \u003coption value=\"Netherlands Antilles\" \u003eNetherlands Antilles\u003c\/option\u003e\n            \n            \u003coption value=\"New Caledonia\" \u003eNew Caledonia\u003c\/option\u003e\n            \n            \u003coption value=\"New Zealand\" \u003eNew Zealand\u003c\/option\u003e\n            \n            \u003coption value=\"Nicaragua\" \u003eNicaragua\u003c\/option\u003e\n            \n            \u003coption value=\"Niger\" \u003eNiger\u003c\/option\u003e\n            \n            \u003coption value=\"Nigeria\" \u003eNigeria\u003c\/option\u003e\n            \n            \u003coption value=\"Niue\" \u003eNiue\u003c\/option\u003e\n            \n            \u003coption value=\"Norfolk Island\" \u003eNorfolk Island\u003c\/option\u003e\n            \n            \u003coption value=\"Korea, Democratic People's Republic Of\" \u003eKorea, Democratic People's Republic Of\u003c\/option\u003e\n            \n            \u003coption value=\"North Macedonia\" \u003eNorth Macedonia\u003c\/option\u003e\n            \n            \u003coption value=\"Norway\" \u003eNorway\u003c\/option\u003e\n            \n            \u003coption value=\"Oman\" \u003eOman\u003c\/option\u003e\n            \n            \u003coption value=\"Pakistan\" \u003ePakistan\u003c\/option\u003e\n            \n            \u003coption value=\"Palestinian Territory, Occupied\" \u003ePalestinian Territory, Occupied\u003c\/option\u003e\n            \n            \u003coption value=\"Panama\" \u003ePanama\u003c\/option\u003e\n            \n            \u003coption value=\"Papua New Guinea\" \u003ePapua New Guinea\u003c\/option\u003e\n            \n            \u003coption value=\"Paraguay\" \u003eParaguay\u003c\/option\u003e\n            \n            \u003coption value=\"Peru\" \u003ePeru\u003c\/option\u003e\n            \n            \u003coption value=\"Philippines\" \u003ePhilippines\u003c\/option\u003e\n            \n            \u003coption value=\"Pitcairn\" \u003ePitcairn\u003c\/option\u003e\n            \n            \u003coption value=\"Poland\" \u003ePoland\u003c\/option\u003e\n            \n            \u003coption value=\"Portugal\" \u003ePortugal\u003c\/option\u003e\n            \n            \u003coption value=\"Qatar\" \u003eQatar\u003c\/option\u003e\n            \n            \u003coption value=\"Reunion\" \u003eReunion\u003c\/option\u003e\n            \n            \u003coption value=\"Romania\" \u003eRomania\u003c\/option\u003e\n            \n            \u003coption value=\"Russia\" \u003eRussia\u003c\/option\u003e\n            \n            \u003coption value=\"Rwanda\" \u003eRwanda\u003c\/option\u003e\n            \n            \u003coption value=\"Samoa\" \u003eSamoa\u003c\/option\u003e\n            \n            \u003coption value=\"San Marino\" \u003eSan Marino\u003c\/option\u003e\n            \n            \u003coption value=\"Sao Tome And Principe\" \u003eSao Tome And Principe\u003c\/option\u003e\n            \n            \u003coption value=\"Saudi Arabia\" \u003eSaudi Arabia\u003c\/option\u003e\n            \n            \u003coption value=\"Senegal\" \u003eSenegal\u003c\/option\u003e\n            \n            \u003coption value=\"Serbia\" \u003eSerbia\u003c\/option\u003e\n            \n            \u003coption value=\"Seychelles\" \u003eSeychelles\u003c\/option\u003e\n            \n            \u003coption value=\"Sierra Leone\" \u003eSierra Leone\u003c\/option\u003e\n            \n            \u003coption value=\"Singapore\" \u003eSingapore\u003c\/option\u003e\n            \n            \u003coption value=\"Sint Maarten\" \u003eSint Maarten\u003c\/option\u003e\n            \n            \u003coption value=\"Slovakia\" \u003eSlovakia\u003c\/option\u003e\n            \n            \u003coption value=\"Slovenia\" \u003eSlovenia\u003c\/option\u003e\n            \n            \u003coption value=\"Solomon Islands\" \u003eSolomon Islands\u003c\/option\u003e\n            \n            \u003coption value=\"Somalia\" \u003eSomalia\u003c\/option\u003e\n            \n            \u003coption value=\"South Africa\" \u003eSouth Africa\u003c\/option\u003e\n            \n            \u003coption value=\"South Georgia And The South Sandwich Islands\" \u003eSouth Georgia And The South Sandwich Islands\u003c\/option\u003e\n            \n            \u003coption value=\"South Korea\" \u003eSouth Korea\u003c\/option\u003e\n            \n            \u003coption value=\"South Sudan\" \u003eSouth Sudan\u003c\/option\u003e\n            \n            \u003coption value=\"Spain\" \u003eSpain\u003c\/option\u003e\n            \n            \u003coption value=\"Sri Lanka\" \u003eSri Lanka\u003c\/option\u003e\n            \n            \u003coption value=\"Saint Barthélemy\" \u003eSaint Barthélemy\u003c\/option\u003e\n            \n            \u003coption value=\"Saint Helena\" \u003eSaint Helena\u003c\/option\u003e\n            \n            \u003coption value=\"Saint Kitts And Nevis\" \u003eSaint Kitts And Nevis\u003c\/option\u003e\n            \n            \u003coption value=\"Saint Lucia\" \u003eSaint Lucia\u003c\/option\u003e\n            \n            \u003coption value=\"Saint Martin\" \u003eSaint Martin\u003c\/option\u003e\n            \n            \u003coption value=\"Saint Pierre And Miquelon\" \u003eSaint Pierre And Miquelon\u003c\/option\u003e\n            \n            \u003coption value=\"St. Vincent\" \u003eSt. Vincent\u003c\/option\u003e\n            \n            \u003coption value=\"Sudan\" \u003eSudan\u003c\/option\u003e\n            \n            \u003coption value=\"Suriname\" \u003eSuriname\u003c\/option\u003e\n            \n            \u003coption value=\"Svalbard And Jan Mayen\" \u003eSvalbard And Jan Mayen\u003c\/option\u003e\n            \n            \u003coption value=\"Sweden\" \u003eSweden\u003c\/option\u003e\n            \n            \u003coption value=\"Switzerland\" \u003eSwitzerland\u003c\/option\u003e\n            \n            \u003coption value=\"Syria\" \u003eSyria\u003c\/option\u003e\n            \n            \u003coption value=\"Taiwan\" \u003eTaiwan\u003c\/option\u003e\n            \n            \u003coption value=\"Tajikistan\" \u003eTajikistan\u003c\/option\u003e\n            \n            \u003coption value=\"Tanzania, United Republic Of\" \u003eTanzania, United Republic Of\u003c\/option\u003e\n            \n            \u003coption value=\"Thailand\" \u003eThailand\u003c\/option\u003e\n            \n            \u003coption value=\"Timor Leste\" \u003eTimor Leste\u003c\/option\u003e\n            \n            \u003coption value=\"Togo\" \u003eTogo\u003c\/option\u003e\n            \n            \u003coption value=\"Tokelau\" \u003eTokelau\u003c\/option\u003e\n            \n            \u003coption value=\"Tonga\" \u003eTonga\u003c\/option\u003e\n            \n            \u003coption value=\"Trinidad and Tobago\" \u003eTrinidad and Tobago\u003c\/option\u003e\n            \n            \u003coption value=\"Tunisia\" \u003eTunisia\u003c\/option\u003e\n            \n            \u003coption value=\"Turkey\" \u003eTurkey\u003c\/option\u003e\n            \n            \u003coption value=\"Turkmenistan\" \u003eTurkmenistan\u003c\/option\u003e\n            \n            \u003coption value=\"Turks and Caicos Islands\" \u003eTurks and Caicos Islands\u003c\/option\u003e\n            \n            \u003coption value=\"Tuvalu\" \u003eTuvalu\u003c\/option\u003e\n            \n            \u003coption value=\"United States Minor Outlying Islands\" \u003eUnited States Minor Outlying Islands\u003c\/option\u003e\n            \n            \u003coption value=\"Uganda\" \u003eUganda\u003c\/option\u003e\n            \n            \u003coption value=\"Ukraine\" \u003eUkraine\u003c\/option\u003e\n            \n            \u003coption value=\"United Arab Emirates\" \u003eUnited Arab Emirates\u003c\/option\u003e\n            \n            \u003coption value=\"United Kingdom\" \u003eUnited Kingdom\u003c\/option\u003e\n            \n            \u003coption value=\"United States\" \u003eUnited States\u003c\/option\u003e\n            \n            \u003coption value=\"Uruguay\" \u003eUruguay\u003c\/option\u003e\n            \n            \u003coption value=\"Uzbekistan\" \u003eUzbekistan\u003c\/option\u003e\n            \n            \u003coption value=\"Vanuatu\" \u003eVanuatu\u003c\/option\u003e\n            \n            \u003coption value=\"Holy See (Vatican City State)\" \u003eHoly See (Vatican City State)\u003c\/option\u003e\n            \n            \u003coption value=\"Venezuela\" \u003eVenezuela\u003c\/option\u003e\n            \n            \u003coption value=\"Vietnam\" \u003eVietnam\u003c\/option\u003e\n            \n            \u003coption value=\"Wallis And Futuna\" \u003eWallis And Futuna\u003c\/option\u003e\n            \n            \u003coption value=\"Western Sahara\" \u003eWestern Sahara\u003c\/option\u003e\n            \n            \u003coption value=\"Yemen\" \u003eYemen\u003c\/option\u003e\n            \n            \u003coption value=\"Zambia\" \u003eZambia\u003c\/option\u003e\n            \n            \u003coption value=\"Zimbabwe\" \u003eZimbabwe\u003c\/option\u003e\n            \n        \u003c\/select\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                            \n                            \n                                \n                            \n                        \u003c\/div\u003e\n                        \n                    \u003c\/div\u003e\n                    \n                        \n                            \u003cp style=\"text-align: right;font-size:small;display: block !important;\"\u003ePowered by \u003ca href=\"https:\/\/globosoftware.net\" target=\"_blank\"\u003eGlobo\u003c\/a\u003e \u003ca href=\"https:\/\/apps.shopify.com\/form-builder-contact-form\" target=\"_blank\"\u003eContact Form\u003c\/a\u003e\u003c\/p\u003e\n                        \n                    \n                    \u003cdiv class=\"message error\" data-other-error=\"Something went wrong, please try again\"\u003e\n                        \u003cdiv class=\"content\"\u003e\u003c\/div\u003e\n                        \u003cdiv class=\"dismiss\" onclick=\"Globo.FormBuilder.dismiss(this)\"\u003e\n                            \u003csvg width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n                        \u003c\/div\u003e\n                    \u003c\/div\u003e\n                    \n                        \n                        \u003cdiv class=\"message success\"\u003e\n                            \n                                \u003cdiv class=\"gfb__content-title\"\u003eThanks for getting in touch!\u003c\/div\u003e\n                            \n                            \u003cdiv class=\"gfb__discount-wrapper\" onclick=\"Globo.FormBuilder.handleCopyDiscountCode(this)\"\u003e\n                                \u003cdiv class=\"gfb__content-discount\"\u003e\n                                    \u003cspan class=\"gfb__discount-code\"\u003e\u003c\/span\u003e\n                                    \u003cdiv class=\"gfb__copy\"\u003e\n                                        \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z\"\/\u003e\u003c\/svg\u003e\n                                    \u003c\/div\u003e\n                                    \u003cdiv class=\"gfb__copied\"\u003e\n                                        \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z\"\/\u003e\u003c\/svg\u003e\n                                    \u003c\/div\u003e        \n                                \u003c\/div\u003e\n                            \u003c\/div\u003e\n                            \u003cdiv class=\"content\"\u003e\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eHave a great day!\u003c\/p\u003e\u003c\/div\u003e\n                            \u003cdiv class=\"dismiss\" onclick=\"Globo.FormBuilder.dismiss(this)\"\u003e\n                                \u003csvg width=20 height=20 width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n                            \u003c\/div\u003e\n                        \u003c\/div\u003e\n                        \n                    \n                    \u003cdiv class=\"gfb__footer wizard__footer\"\u003e\n                        \n                            \n                            \u003cdiv class=\"description globo-description\"\u003e\u003c\/div\u003e\n                            \n                        \n                        \u003cbutton type=\"button\" class=\"action previous hidden classic-button\"\u003ePrevious\u003c\/button\u003e\n                        \u003cbutton type=\"button\" class=\"action next submit classic-button\" data-submitting-text=\"\" data-submit-text='\u003cspan class=\"spinner\"\u003e\u003c\/span\u003eSubmit' data-next-text=\"Next\" \u003e\u003cspan class=\"spinner\"\u003e\u003c\/span\u003eNext\u003c\/button\u003e\n                        \n                        \u003cp class=\"wizard__congrats-message\"\u003e\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \n        \u003cinput type=\"hidden\" value=\"\" name=\"customer[id]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"customer[email]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"customer[name]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"page[title]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"page[href]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"_keyLabel\"\u003e\n    \u003c\/form\u003e\n    \n    \u003cdiv class=\"message success\"\u003e\n        \n            \u003cdiv class=\"gfb__content-title\"\u003eThanks for getting in touch!\u003c\/div\u003e\n        \n        \u003cdiv class=\"gfb__discount-wrapper\" onclick=\"Globo.FormBuilder.handleCopyDiscountCode(this)\"\u003e\n            \u003cdiv class=\"gfb__content-discount\"\u003e\n                \u003cspan class=\"gfb__discount-code\"\u003e\u003c\/span\u003e\n                \u003cdiv class=\"gfb__copy\"\u003e\n                    \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z\"\/\u003e\u003c\/svg\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"gfb__copied\"\u003e\n                    \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z\"\/\u003e\u003c\/svg\u003e\n                \u003c\/div\u003e        \n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"content\"\u003e\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eHave a great day!\u003c\/p\u003e\u003c\/div\u003e\n        \u003cdiv class=\"dismiss\" onclick=\"Globo.FormBuilder.dismiss(this)\"\u003e\n            \u003csvg width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n\u003c\/div\u003e\n\n\u003c\/div\u003e\n"}}[47056];
  1503.      
  1504.    
  1505.      
  1506.      
  1507.      
  1508.      window.Globo.FormBuilder.forms[47136] = {"47136":{"elements":[{"id":"group-1","type":"group","label":"Page 1","description":"","elements":[{"id":"text-1","type":"text","label":{"en":"Order Number","de":"Text","es":"Text","fr":"Text","lg":"Text","ru":"Text"},"placeholder":"","description":"","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":100,"displayDisjunctive":false,"required":true,"customClass":"custom-border"},{"id":"email-1","type":"email","label":{"en":"Email Address","de":"Email","es":"Email","fr":"Email","lg":"Email","ru":"Email"},"placeholder":"","description":"","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"required":true,"ifHideLabel":false,"customClass":"custom-border","conditionalField":false},{"id":"name-1","type":"name","label":{"en":"Your Name","de":"Name","es":"Name","fr":"Name","lg":"Name","ru":"Name"},"placeholder":"","description":"","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"customClass":"custom-border","required":true},{"id":"select-1","type":"select","label":{"en":"Country","de":"Dropdown","es":"Dropdown","fr":"Dropdown","lg":"Dropdown","ru":"Dropdown"},"placeholder":"Please select","options":[{"label":{"en":"United States","de":"Option 1","es":"Option 1","fr":"Option 1","lg":"Option 1","ru":"Option 1"},"value":"United States"},{"label":{"en":"United Kingdom","de":"Option 2","es":"Option 2","fr":"Option 2","lg":"Option 2","ru":"Option 2"},"value":"United Kingdom"},{"label":{"en":"Germany","de":"Option 3","es":"Option 3","fr":"Option 3","lg":"Option 3","ru":"Option 3"},"value":"Germany"},{"label":{"en":"France","de":"Option 4","es":"Option 4","fr":"Option 4","lg":"Option 4","ru":"Option 4"},"value":"France"},{"label":{"en":"Italy","de":"Option 5","es":"Option 5","fr":"Option 5","lg":"Option 5","ru":"Option 5"},"value":"Italy"},{"label":{"en":"Spain","de":"Option 6","es":"Option 6","fr":"Option 6","lg":"Option 6","ru":"Option 6"},"value":"Spain"}],"defaultOption":"","description":"","hideLabel":false,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":false},{"id":"acceptTerms-1","type":"acceptTerms","label":{"en":"By continuing, you agree the GARVEE ESP \u003ca href='https:\/\/www.garvee.com\/pages\/privacy-policy-for-esp-service' target='_blank' style=\"text-decoration: none; color: #074174;\"\u003ePrivacy Policy\u003c\/a\u003e","de":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","es":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","fr":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","lg":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","ru":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e"},"rawOption":"Yes","defaultSelected":true,"description":{"en":"","de":"","es":"","fr":"","lg":"","ru":""},"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true,"displayRules":[{"field":"","relation":"equal","condition":""}]},{"id":"acceptTerms-2","type":"acceptTerms","label":{"en":"Email me with update and offers (unsubscribe anytime)","de":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","es":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","fr":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","lg":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","ru":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e"},"rawOption":"Yes","defaultSelected":true,"description":"","columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":false},{"id":"acceptTerms-3","type":"acceptTerms","label":{"en":"I agree to join the GARVEE UGC program (unsubscribe anytime)","de":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","es":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","fr":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","lg":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","ru":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e"},"rawOption":"Yes","defaultSelected":false,"description":"","columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false}],"displayType":"show","displayDisjunctive":false}],"errorMessage":{"required":"Please fill in field","minSelections":"Please choose at least {{ min_selections }} options","maxSelections":"Please choose at maximum of {{ max_selections }} options","exactlySelections":"Please choose exactly {{ exact_selections }} options","invalid":"Invalid","invalidName":"Invalid name","invalidEmail":"Invalid email","invalidURL":"Invalid url","invalidPhone":"Invalid phone","invalidNumber":"Invalid number","invalidPassword":"Invalid password","confirmPasswordNotMatch":"Confirmed password doesn't match","customerAlreadyExists":"Customer already exists","fileSizeLimit":"File size limit","fileNotAllowed":"File not allowed","requiredCaptcha":"Required captcha","requiredProducts":"Please select product","limitQuantity":"The number of products left in stock has been exceeded","shopifyInvalidPhone":"phone - Enter a valid phone number to use this delivery method","shopifyPhoneHasAlready":"phone - Phone has already been taken","shopifyInvalidProvice":"addresses.province - is not valid","otherError":"Something went wrong, please try again"},"appearance":{"layout":"boxed","width":"700","style":"classic","mainColor":"rgba(40,40,40,1)","headingColor":"#000","labelColor":"#000","descriptionColor":"#6c757d","optionColor":"#000","paragraphColor":"#000","paragraphBackground":"#fff","background":"color","backgroundColor":"#FFF","backgroundImage":"","backgroundImageAlignment":"middle","floatingIcon":"\u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"envelope\" class=\"svg-inline--fa fa-envelope fa-w-16\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e","floatingText":"","displayOnAllPage":false,"position":"bottom right","formType":"normalForm","newTemplate":false,"colorScheme":{"solidButton":{"red":7,"green":65,"blue":116},"solidButtonLabel":{"red":255,"green":255,"blue":255},"text":{"red":51,"green":51,"blue":51},"outlineButton":{"red":40,"green":40,"blue":40},"background":null},"popup_trigger":{"after_scrolling":false,"after_timer":false,"on_exit_intent":false},"theme_design":false,"fontSize":"medium"},"afterSubmit":{"action":"clearForm","title":"Thanks for getting in touch!","message":"\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eHave a great day!\u003c\/p\u003e","redirectUrl":null},"footer":{"description":{"en":"\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e","de":"\u003cp\u003e1\u003c\/p\u003e","es":"\u003cp\u003e1\u003c\/p\u003e","fr":"\u003cp\u003e1\u003c\/p\u003e","lg":"\u003cp\u003e1\u003c\/p\u003e","ru":"\u003cp\u003e1\u003c\/p\u003e"},"previousText":{"en":"Previous","de":"Previous","es":"Previous","fr":"Previous","lg":"Previous","ru":"Previous"},"nextText":"Next","submitText":{"en":"Subscribe","de":"Submit","es":"Submit","fr":"Submit","lg":"Submit","ru":"Submit"},"submitAlignment":"center","submitFullWidth":true,"resetButton":false},"header":{"active":true,"title":{"en":"Register Now To Extend Your Warranty","de":"Warranty Form","es":"Warranty Form","fr":"Warranty Form","lg":"Warranty Form","ru":"Warranty Form"},"description":{"en":"\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e","de":"\u003cp\u003eClaim two-year warranty here by registering your product, with the product serial number which can be found on the box or the hang tag that came with the product.\u003c\/p\u003e","es":"\u003cp\u003eClaim two-year warranty here by registering your product, with the product serial number which can be found on the box or the hang tag that came with the product.\u003c\/p\u003e","fr":"\u003cp\u003eClaim two-year warranty here by registering your product, with the product serial number which can be found on the box or the hang tag that came with the product.\u003c\/p\u003e","lg":"\u003cp\u003eClaim two-year warranty here by registering your product, with the product serial number which can be found on the box or the hang tag that came with the product.\u003c\/p\u003e","ru":"\u003cp\u003eClaim two-year warranty here by registering your product, with the product serial number which can be found on the box or the hang tag that came with the product.\u003c\/p\u003e"},"headerAlignment":"center"},"isStepByStepForm":true,"publish":{"requiredLogin":false,"requiredLoginMessage":"Please \u003ca href='\/account\/login' title='login'\u003elogin\u003c\/a\u003e to continue","customClass":""},"reCaptcha":{"enable":false},"html":"\n\u003cdiv class=\"globo-form boxed-form globo-form-id-47136 \" data-locale=\"en\" \u003e\n\n\u003cstyle\u003e\n\n\n    :root .globo-form-app[data-id=\"47136\"]{\n        \n        --gfb-color-solidButton: 7,65,116;\n        --gfb-color-solidButtonColor: rgb(var(--gfb-color-solidButton));\n        --gfb-color-solidButtonLabel: 255,255,255;\n        --gfb-color-solidButtonLabelColor: rgb(var(--gfb-color-solidButtonLabel));\n        --gfb-color-text: 51,51,51;\n        --gfb-color-textColor: rgb(var(--gfb-color-text));\n        --gfb-color-outlineButton: 40,40,40;\n        --gfb-color-outlineButtonColor: rgb(var(--gfb-color-outlineButton));\n        --gfb-color-background: ,,;\n        --gfb-color-backgroundColor: rgb(var(--gfb-color-background));\n        \n        --gfb-main-color: rgba(40,40,40,1);\n        --gfb-primary-color: var(--gfb-color-solidButtonColor, var(--gfb-main-color));\n        --gfb-primary-text-color: var(--gfb-color-solidButtonLabelColor, #FFF);\n        --gfb-form-width: 700px;\n        --gfb-font-family: inherit;\n        --gfb-font-style: inherit;\n        --gfb--image: 40%;\n        --gfb-image-ratio-draft: var(--gfb--image);\n        --gfb-image-ratio: var(--gfb-image-ratio-draft);\n        \n        --gfb-bg-temp-color: #FFF;\n        --gfb-bg-position: middle;\n        \n            --gfb-bg-temp-color: #FFF;\n        \n        --gfb-bg-color: var(--gfb-color-backgroundColor, var(--gfb-bg-temp-color));\n        \n    }\n    \n.globo-form-id-47136 .globo-form-app{\n    max-width: 700px;\n    width: -webkit-fill-available;\n    \n    background-color: var(--gfb-bg-color);\n    \n    \n}\n\n.globo-form-id-47136 .globo-form-app .globo-heading{\n    color: var(--gfb-color-textColor, #000)\n}\n\n\n.globo-form-id-47136 .globo-form-app .header {\n    text-align:center;\n}\n\n\n.globo-form-id-47136 .globo-form-app .globo-description,\n.globo-form-id-47136 .globo-form-app .header .globo-description{\n    --gfb-color-description: rgba(var(--gfb-color-text), 0.8);\n    color: var(--gfb-color-description, #6c757d);\n}\n.globo-form-id-47136 .globo-form-app .globo-label,\n.globo-form-id-47136 .globo-form-app .globo-form-control label.globo-label,\n.globo-form-id-47136 .globo-form-app .globo-form-control label.globo-label span.label-content{\n    color: var(--gfb-color-textColor, #000);\n    text-align: left;\n}\n.globo-form-id-47136 .globo-form-app .globo-label.globo-position-label{\n    height: 20px !important;\n}\n.globo-form-id-47136 .globo-form-app .globo-form-control .help-text.globo-description,\n.globo-form-id-47136 .globo-form-app .globo-form-control span.globo-description{\n    --gfb-color-description: rgba(var(--gfb-color-text), 0.8);\n    color: var(--gfb-color-description, #6c757d);\n}\n.globo-form-id-47136 .globo-form-app .globo-form-control .checkbox-wrapper .globo-option,\n.globo-form-id-47136 .globo-form-app .globo-form-control .radio-wrapper .globo-option\n{\n    color: var(--gfb-color-textColor, #000);\n}\n.globo-form-id-47136 .globo-form-app .footer,\n.globo-form-id-47136 .globo-form-app .gfb__footer{\n    text-align:center;\n}\n.globo-form-id-47136 .globo-form-app .footer button,\n.globo-form-id-47136 .globo-form-app .gfb__footer button{\n    border:1px solid var(--gfb-primary-color);\n    \n        width:100%;\n    \n}\n.globo-form-id-47136 .globo-form-app .footer button.submit,\n.globo-form-id-47136 .globo-form-app .gfb__footer button.submit\n.globo-form-id-47136 .globo-form-app .footer button.checkout,\n.globo-form-id-47136 .globo-form-app .gfb__footer button.checkout,\n.globo-form-id-47136 .globo-form-app .footer button.action.loading .spinner,\n.globo-form-id-47136 .globo-form-app .gfb__footer button.action.loading .spinner{\n    background-color: var(--gfb-primary-color);\n    color : #ffffff;\n}\n.globo-form-id-47136 .globo-form-app .globo-form-control .star-rating\u003efieldset:not(:checked)\u003elabel:before {\n    content: url('data:image\/svg+xml; utf8, \u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"star\" class=\"svg-inline--fa fa-star fa-w-18\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"rgba(40,40,40,1)\" d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e');\n}\n.globo-form-id-47136 .globo-form-app .globo-form-control .star-rating\u003efieldset\u003einput:checked ~ label:before {\n    content: url('data:image\/svg+xml; utf8, \u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"fas\" data-icon=\"star\" class=\"svg-inline--fa fa-star fa-w-18\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"rgba(40,40,40,1)\" d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e');\n}\n.globo-form-id-47136 .globo-form-app .globo-form-control .star-rating\u003efieldset:not(:checked)\u003elabel:hover:before,\n.globo-form-id-47136 .globo-form-app .globo-form-control .star-rating\u003efieldset:not(:checked)\u003elabel:hover ~ label:before{\n    content : url('data:image\/svg+xml; utf8, \u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"fas\" data-icon=\"star\" class=\"svg-inline--fa fa-star fa-w-18\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"rgba(40,40,40,1)\" d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e')\n}\n.globo-form-id-47136 .globo-form-app .globo-form-control .checkbox-wrapper .checkbox-input:checked ~ .checkbox-label:before {\n    border-color: var(--gfb-primary-color);\n    box-shadow: 0 4px 6px rgba(50,50,93,0.11), 0 1px 3px rgba(0,0,0,0.08);\n    background-color: var(--gfb-primary-color);\n}\n.globo-form-id-47136 .globo-form-app .step.-completed .step__number,\n.globo-form-id-47136 .globo-form-app .line.-progress,\n.globo-form-id-47136 .globo-form-app .line.-start{\n    background-color: var(--gfb-primary-color);\n}\n.globo-form-id-47136 .globo-form-app .checkmark__check,\n.globo-form-id-47136 .globo-form-app .checkmark__circle{\n    stroke: var(--gfb-primary-color);\n}\n.globo-form-id-47136 .floating-button{\n    background-color: var(--gfb-primary-color);\n}\n.globo-form-id-47136 .globo-form-app .globo-form-control .checkbox-wrapper .checkbox-input ~ .checkbox-label:before,\n.globo-form-app .globo-form-control .radio-wrapper .radio-input ~ .radio-label:after{\n    border-color : var(--gfb-primary-color);\n}\n.globo-form-id-47136 .flatpickr-day.selected, \n.globo-form-id-47136 .flatpickr-day.startRange, \n.globo-form-id-47136 .flatpickr-day.endRange, \n.globo-form-id-47136 .flatpickr-day.selected.inRange, \n.globo-form-id-47136 .flatpickr-day.startRange.inRange, \n.globo-form-id-47136 .flatpickr-day.endRange.inRange, \n.globo-form-id-47136 .flatpickr-day.selected:focus, \n.globo-form-id-47136 .flatpickr-day.startRange:focus, \n.globo-form-id-47136 .flatpickr-day.endRange:focus, \n.globo-form-id-47136 .flatpickr-day.selected:hover, \n.globo-form-id-47136 .flatpickr-day.startRange:hover, \n.globo-form-id-47136 .flatpickr-day.endRange:hover, \n.globo-form-id-47136 .flatpickr-day.selected.prevMonthDay, \n.globo-form-id-47136 .flatpickr-day.startRange.prevMonthDay, \n.globo-form-id-47136 .flatpickr-day.endRange.prevMonthDay, \n.globo-form-id-47136 .flatpickr-day.selected.nextMonthDay, \n.globo-form-id-47136 .flatpickr-day.startRange.nextMonthDay, \n.globo-form-id-47136 .flatpickr-day.endRange.nextMonthDay {\n    background: var(--gfb-primary-color);\n    border-color: var(--gfb-primary-color);\n}\n.globo-form-id-47136 .globo-paragraph {\n    background: #fff;\n    color: var(--gfb-color-textColor, #000);\n    width: 100%!important;\n}\n\n[dir=\"rtl\"] .globo-form-app .header .title,\n[dir=\"rtl\"] .globo-form-app .header .description,\n[dir=\"rtl\"] .globo-form-id-47136 .globo-form-app .globo-heading,\n[dir=\"rtl\"] .globo-form-id-47136 .globo-form-app .globo-label,\n[dir=\"rtl\"] .globo-form-id-47136 .globo-form-app .globo-form-control label.globo-label,\n[dir=\"rtl\"] .globo-form-id-47136 .globo-form-app .globo-form-control label.globo-label span.label-content{\n    text-align: right;\n}\n\n[dir=\"rtl\"] .globo-form-app .line {\n    left: unset;\n    right: 50%;\n}\n\n[dir=\"rtl\"] .globo-form-id-47136 .globo-form-app .line.-start {\n    left: unset;    \n    right: 0%;\n}\n\n\u003c\/style\u003e\n\n\n\n\n\u003cdiv class=\"globo-form-app boxed-layout gfb-style-classic  gfb-font-size-medium\" data-id=47136\u003e\n    \n    \u003cdiv class=\"header dismiss hidden\" onclick=\"Globo.FormBuilder.closeModalForm(this)\"\u003e\n        \u003csvg width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n    \u003c\/div\u003e\n    \u003cform class=\"g-container\" novalidate action=\"https:\/\/app.powerfulform.com\/api\/front\/form\/47136\/send\" method=\"POST\" enctype=\"multipart\/form-data\" data-id=47136\u003e\n        \n            \n            \u003cdiv class=\"header\"\u003e\n                \u003ch3 class=\"title globo-heading\"\u003eRegister Now To Extend Your Warranty\u003c\/h3\u003e\n                \n                \u003cdiv class=\"description globo-description\"\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003c\/div\u003e\n                \n            \u003c\/div\u003e\n            \n        \n        \n            \u003cdiv class=\"globo-formbuilder-wizard\" data-id=47136\u003e\n                \u003cdiv class=\"wizard__content\"\u003e\n                    \u003cheader class=\"wizard__header\"\u003e\n                        \u003cdiv class=\"wizard__steps\"\u003e\n                        \u003cnav class=\"steps hidden\"\u003e\n                            \n                            \n                                \n                            \n                            \n                                \n                                \n                                \n                                \n                                \u003cdiv class=\"step last \" data-element-id=\"group-1\"  data-step=\"0\" \u003e\n                                    \u003cdiv class=\"step__content\"\u003e\n                                        \u003cp class=\"step__number\"\u003e\u003c\/p\u003e\n                                        \u003csvg class=\"checkmark\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=52 height=52 viewBox=\"0 0 52 52\"\u003e\n                                            \u003ccircle class=\"checkmark__circle\" cx=\"26\" cy=\"26\" r=\"25\" fill=\"none\"\/\u003e\n                                            \u003cpath class=\"checkmark__check\" fill=\"none\" d=\"M14.1 27.2l7.1 7.2 16.7-16.8\"\/\u003e\n                                        \u003c\/svg\u003e\n                                        \u003cdiv class=\"lines\"\u003e\n                                            \n                                                \u003cdiv class=\"line -start\"\u003e\u003c\/div\u003e\n                                            \n                                            \u003cdiv class=\"line -background\"\u003e\n                                            \u003c\/div\u003e\n                                            \u003cdiv class=\"line -progress\"\u003e\n                                            \u003c\/div\u003e\n                                        \u003c\/div\u003e  \n                                    \u003c\/div\u003e\n                                \u003c\/div\u003e\n                            \n                        \u003c\/nav\u003e\n                        \u003c\/div\u003e\n                    \u003c\/header\u003e\n                    \u003cdiv class=\"panels\"\u003e\n                        \n                        \n                        \n                        \n                        \u003cdiv class=\"panel \" data-element-id=\"group-1\" data-id=47136  data-step=\"0\" style=\"padding-top:0\"\u003e\n                            \n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column custom-border\"  data-type='text'\u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"47136-text-1\" class=\"classic-label globo-label gfb__label-v2 \" data-label=\"Order Number\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Order Number\"\u003eOrder Number\u003c\/span\u003e\n    \n        \u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cinput type=\"text\"  data-type=\"text\" class=\"classic-input\" id=\"47136-text-1\" name=\"text-1\" placeholder=\"\" presence  \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column custom-border\"  data-type='email'\u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"47136-email-1\" class=\"classic-label globo-label gfb__label-v2 \" data-label=\"Email Address\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Email Address\"\u003eEmail Address\u003c\/span\u003e\n    \n        \u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cinput type=\"text\"  data-type=\"email\" class=\"classic-input\" id=\"47136-email-1\" name=\"email-1\" placeholder=\"\" presence  \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column custom-border\"  data-type='name'\u003e\n\n    \n        \n\u003clabel tabindex=\"0\" for=\"47136-name-1\" class=\"classic-label globo-label gfb__label-v2 \" data-label=\"Your Name\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Your Name\"\u003eYour Name\u003c\/span\u003e\n    \n        \u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cinput type=\"text\"  data-type=\"name\" class=\"classic-input\" id=\"47136-name-1\" name=\"name-1\" placeholder=\"\" presence  \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='select' data-default-value=\"\" data-type=\"select\" \u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"47136-select-1\" class=\"classic-label globo-label gfb__label-v2 \" data-label=\"Country\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Country\"\u003eCountry\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \n    \n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cselect data-searchable=\"\" name=\"select-1\"  id=\"47136-select-1\" class=\"classic-input wide\" \u003e\n            \u003coption selected=\"selected\" value=\"\" disabled=\"disabled\"\u003ePlease select\u003c\/option\u003e\n            \n            \u003coption value=\"United States\" \u003eUnited States\u003c\/option\u003e\n            \n            \u003coption value=\"United Kingdom\" \u003eUnited Kingdom\u003c\/option\u003e\n            \n            \u003coption value=\"Germany\" \u003eGermany\u003c\/option\u003e\n            \n            \u003coption value=\"France\" \u003eFrance\u003c\/option\u003e\n            \n            \u003coption value=\"Italy\" \u003eItaly\u003c\/option\u003e\n            \n            \u003coption value=\"Spain\" \u003eSpain\u003c\/option\u003e\n            \n        \u003c\/select\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='acceptTerms' data-default-value=\"true\"\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \u003cdiv class=\"flex-wrap\"\u003e\n            \u003cdiv class=\"globo-list-control\"\u003e\n                \u003cdiv class=\"checkbox-wrapper\"\u003e\n                    \u003cinput  class=\"checkbox-input\" id=\"47136-acceptTerms-1\" type=\"checkbox\" data-type=\"acceptTerms\" name=\"acceptTerms-1[]\" presence value=\"Yes\" checked\u003e\n                    \u003clabel tabindex=\"0\" class=\"checkbox-label globo-option\" for=\"47136-acceptTerms-1\" data-label=\"By continuing, you agree the GARVEE ESP Privacy Policy\"\u003e\u003cspan class=\"label-content\" data-label=\"By continuing, you agree the GARVEE ESP Privacy Policy\"\u003eBy continuing, you agree the GARVEE ESP \u003ca href='https:\/\/www.garvee.com\/pages\/privacy-policy-for-esp-service' target='_blank' style=\"text-decoration: none; color: #074174;\"\u003ePrivacy Policy\u003c\/a\u003e\u003c\/span\u003e\u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\u003c\/label\u003e\n                    \n                    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n        \u003csmall class=\"help-text globo-description\"\u003e\u003c\/small\u003e\n    \n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='acceptTerms' data-default-value=\"true\"\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \u003cdiv class=\"flex-wrap\"\u003e\n            \u003cdiv class=\"globo-list-control\"\u003e\n                \u003cdiv class=\"checkbox-wrapper\"\u003e\n                    \u003cinput  class=\"checkbox-input\" id=\"47136-acceptTerms-2\" type=\"checkbox\" data-type=\"acceptTerms\" name=\"acceptTerms-2[]\"  value=\"Yes\" checked\u003e\n                    \u003clabel tabindex=\"0\" class=\"checkbox-label globo-option\" for=\"47136-acceptTerms-2\" data-label=\"Email me with update and offers (unsubscribe anytime)\"\u003e\u003cspan class=\"label-content\" data-label=\"Email me with update and offers (unsubscribe anytime)\"\u003eEmail me with update and offers (unsubscribe anytime)\u003c\/span\u003e\u003c\/label\u003e\n                    \n                    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='acceptTerms' data-default-value=\"false\"\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \u003cdiv class=\"flex-wrap\"\u003e\n            \u003cdiv class=\"globo-list-control\"\u003e\n                \u003cdiv class=\"checkbox-wrapper\"\u003e\n                    \u003cinput  class=\"checkbox-input\" id=\"47136-acceptTerms-3\" type=\"checkbox\" data-type=\"acceptTerms\" name=\"acceptTerms-3[]\"  value=\"Yes\" \u003e\n                    \u003clabel tabindex=\"0\" class=\"checkbox-label globo-option\" for=\"47136-acceptTerms-3\" data-label=\"I agree to join the GARVEE UGC program (unsubscribe anytime)\"\u003e\u003cspan class=\"label-content\" data-label=\"I agree to join the GARVEE UGC program (unsubscribe anytime)\"\u003eI agree to join the GARVEE UGC program (unsubscribe anytime)\u003c\/span\u003e\u003c\/label\u003e\n                    \n                    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n\u003c\/div\u003e\n\n\n                                \n                            \n                            \n                                \n                            \n                        \u003c\/div\u003e\n                        \n                    \u003c\/div\u003e\n                    \n                    \u003cdiv class=\"message error\" data-other-error=\"Something went wrong, please try again\"\u003e\n                        \u003cdiv class=\"content\"\u003e\u003c\/div\u003e\n                        \u003cdiv class=\"dismiss\" onclick=\"Globo.FormBuilder.dismiss(this)\"\u003e\n                            \u003csvg width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n                        \u003c\/div\u003e\n                    \u003c\/div\u003e\n                    \n                        \n                        \n                        \u003cdiv class=\"message success\"\u003e\n                            \n                                \u003cdiv class=\"gfb__content-title\"\u003eThanks for getting in touch!\u003c\/div\u003e\n                            \n                            \u003cdiv class=\"gfb__discount-wrapper\" onclick=\"Globo.FormBuilder.handleCopyDiscountCode(this)\"\u003e\n                                \u003cdiv class=\"gfb__content-discount\"\u003e\n                                    \u003cspan class=\"gfb__discount-code\"\u003e\u003c\/span\u003e\n                                    \u003cdiv class=\"gfb__copy\"\u003e\n                                        \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z\"\/\u003e\u003c\/svg\u003e\n                                    \u003c\/div\u003e\n                                    \u003cdiv class=\"gfb__copied\"\u003e\n                                        \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z\"\/\u003e\u003c\/svg\u003e\n                                    \u003c\/div\u003e        \n                                \u003c\/div\u003e\n                            \u003c\/div\u003e\n                            \u003cdiv class=\"content\"\u003e\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eHave a great day!\u003c\/p\u003e\u003c\/div\u003e\n                            \u003cdiv class=\"dismiss\" onclick=\"Globo.FormBuilder.dismiss(this)\"\u003e\n                                \u003csvg width=20 height=20 width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n                            \u003c\/div\u003e\n                        \u003c\/div\u003e\n                        \n                        \n                    \n                    \u003cdiv class=\"gfb__footer wizard__footer\"\u003e\n                        \n                            \n                            \u003cdiv class=\"description globo-description\"\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003c\/div\u003e\n                            \n                        \n                        \u003cbutton type=\"button\" class=\"action previous hidden classic-button\"\u003ePrevious\u003c\/button\u003e\n                        \u003cbutton type=\"button\" class=\"action next submit classic-button\" data-submitting-text=\"\" data-submit-text='\u003cspan class=\"spinner\"\u003e\u003c\/span\u003eSubscribe' data-next-text=\"Next\" \u003e\u003cspan class=\"spinner\"\u003e\u003c\/span\u003eNext\u003c\/button\u003e\n                        \n                        \u003cp class=\"wizard__congrats-message\"\u003e\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \n        \u003cinput type=\"hidden\" value=\"\" name=\"customer[id]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"customer[email]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"customer[name]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"page[title]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"page[href]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"_keyLabel\"\u003e\n    \u003c\/form\u003e\n    \n    \n    \u003cdiv class=\"message success\"\u003e\n        \n            \u003cdiv class=\"gfb__content-title\"\u003eThanks for getting in touch!\u003c\/div\u003e\n        \n        \u003cdiv class=\"gfb__discount-wrapper\" onclick=\"Globo.FormBuilder.handleCopyDiscountCode(this)\"\u003e\n            \u003cdiv class=\"gfb__content-discount\"\u003e\n                \u003cspan class=\"gfb__discount-code\"\u003e\u003c\/span\u003e\n                \u003cdiv class=\"gfb__copy\"\u003e\n                    \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z\"\/\u003e\u003c\/svg\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"gfb__copied\"\u003e\n                    \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z\"\/\u003e\u003c\/svg\u003e\n                \u003c\/div\u003e        \n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"content\"\u003e\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eHave a great day!\u003c\/p\u003e\u003c\/div\u003e\n        \u003cdiv class=\"dismiss\" onclick=\"Globo.FormBuilder.dismiss(this)\"\u003e\n            \u003csvg width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n    \n\u003c\/div\u003e\n\n\u003c\/div\u003e\n"}}[47136];
  1509.      
  1510.    
  1511.      
  1512.      
  1513.      
  1514.      window.Globo.FormBuilder.forms[47400] = {"47400":{"elements":[{"id":"group-1","type":"group","label":"Page 1","description":"","elements":[{"id":"email-1","type":"email","label":{"en":"Email Address ","de":"Email","es":"Email","fr":"Email","lg":"Email","ru":"Email"},"placeholder":"","description":"","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"required":true,"customClass":"custom-border"},{"id":"name-1","type":"name","label":{"en":"Your Name","de":"Name","es":"Name","fr":"Name","lg":"Name","ru":"Name"},"placeholder":"","description":"","limitCharacters":false,"characters":100,"hideLabel":false,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"customClass":"custom-border","required":true},{"id":"file2-1","type":"file2","label":"Attachments","button-text":{"en":"Browse file","de":"Browse file","es":"Browse file","fr":"Browse file","lg":"Browse file","ru":"Browse file"},"placeholder":"Choose file or drag here","hint":{"en":"Supported format: JPG, JPEG, PNG, HEIF, HEIC, MP4, M4V.","de":"Supported format: JPG, JPEG, PNG, GIF, SVG.","es":"Supported format: JPG, JPEG, PNG, GIF, SVG.","fr":"Supported format: JPG, JPEG, PNG, GIF, SVG.","lg":"Supported format: JPG, JPEG, PNG, GIF, SVG.","ru":"Supported format: JPG, JPEG, PNG, GIF, SVG."},"allowed-multiple":true,"allowed-extensions":["jpg","png","mp4","jpeg","m4v","heif","heic"],"description":"","hideLabel":false,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"sizeLimit":"150","required":true},{"id":"acceptTerms-3","type":"acceptTerms","label":{"en":"I agree to join the GARVEE UGC program (unsubscribe anytime)","de":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","es":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","fr":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","lg":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","ru":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e"},"rawOption":"Yes","defaultSelected":true,"description":"","columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true},{"id":"acceptTerms-2","type":"acceptTerms","label":{"en":"Email me with update and offers (unsubscribe anytime)","de":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","es":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","fr":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","lg":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e","ru":"I agree \u003ca href='\/' target='_blank'\u003eTerms and Conditions\u003c\/a\u003e"},"rawOption":"Yes","defaultSelected":false,"description":"","columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":false}]}],"errorMessage":{"required":"Please fill in field","minSelections":"Please choose at least {{ min_selections }} options","maxSelections":"Please choose at maximum of {{ max_selections }} options","exactlySelections":"Please choose exactly {{ exact_selections }} options","invalid":"Invalid","invalidName":"Invalid name","invalidEmail":"Invalid email","invalidURL":"Invalid url","invalidPhone":"Invalid phone","invalidNumber":"Invalid number","invalidPassword":"Invalid password","confirmPasswordNotMatch":"Confirmed password doesn't match","customerAlreadyExists":"Customer already exists","fileSizeLimit":"File size limit","fileNotAllowed":"File not allowed","requiredCaptcha":"Required captcha","requiredProducts":"Please select product","limitQuantity":"The number of products left in stock has been exceeded","shopifyInvalidPhone":"phone - Enter a valid phone number to use this delivery method","shopifyPhoneHasAlready":"phone - Phone has already been taken","shopifyInvalidProvice":"addresses.province - is not valid","otherError":"Something went wrong, please try again"},"appearance":{"layout":"boxed","width":"700","style":"classic","mainColor":"rgba(246,147,30,1)","headingColor":"#000","labelColor":"#000","descriptionColor":"#6c757d","optionColor":"#000","paragraphColor":"#000","paragraphBackground":"#fff","background":"none","backgroundColor":"#FFF","backgroundImage":"","backgroundImageAlignment":"middle","floatingIcon":"\u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"envelope\" class=\"svg-inline--fa fa-envelope fa-w-16\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e","floatingText":"","displayOnAllPage":false,"position":"bottom right","formType":"normalForm","newTemplate":false,"colorScheme":{"solidButton":{"red":7,"green":65,"blue":116},"solidButtonLabel":{"red":255,"green":255,"blue":255},"text":{"red":51,"green":51,"blue":51},"outlineButton":{"red":51,"green":51,"blue":51},"background":null}},"afterSubmit":{"action":"clearForm","message":{"en":"\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eHave a great day!\u003c\/p\u003e","de":"\u003cp style=\"text-align: center;\"\u003e\u003cstrong\u003eYour Claim has been submitted, please allow 24-48 hours for our team to review and contact you to further the process\u003c\/strong\u003e\u003c\/p\u003e","es":"\u003cp style=\"text-align: center;\"\u003e\u003cstrong\u003eYour Claim has been submitted, please allow 24-48 hours for our team to review and contact you to further the process\u003c\/strong\u003e\u003c\/p\u003e","fr":"\u003cp style=\"text-align: center;\"\u003e\u003cstrong\u003eYour Claim has been submitted, please allow 24-48 hours for our team to review and contact you to further the process\u003c\/strong\u003e\u003c\/p\u003e","lg":"\u003cp style=\"text-align: center;\"\u003e\u003cstrong\u003eYour Claim has been submitted, please allow 24-48 hours for our team to review and contact you to further the process\u003c\/strong\u003e\u003c\/p\u003e","ru":"\u003cp style=\"text-align: center;\"\u003e\u003cstrong\u003eYour Claim has been submitted, please allow 24-48 hours for our team to review and contact you to further the process\u003c\/strong\u003e\u003c\/p\u003e"},"redirectUrl":"","title":{"en":"Thanks for getting in touch!","de":"\u003ch4\u003eThanks for getting in touch!\u003c\/h4\u003e","es":"\u003ch4\u003eThanks for getting in touch!\u003c\/h4\u003e","fr":"\u003ch4\u003eThanks for getting in touch!\u003c\/h4\u003e","lg":"\u003ch4\u003eThanks for getting in touch!\u003c\/h4\u003e","ru":"\u003ch4\u003eThanks for getting in touch!\u003c\/h4\u003e"}},"footer":{"description":"","previousText":"Previous","nextText":"Next","submitText":{"en":"Submit","de":"Submit","es":"Submit","fr":"Submit","lg":"Submit","ru":"Submit"},"resetButton":false,"resetButtonText":"Reset","submitFullWidth":true,"submitAlignment":"left"},"header":{"active":true,"title":{"en":"Submit Now. Get Rewarded."},"description":"","headerAlignment":"center"},"isStepByStepForm":true,"publish":{"requiredLogin":false,"requiredLoginMessage":"Please \u003ca href='\/account\/login' title='login'\u003elogin\u003c\/a\u003e to continue"},"reCaptcha":{"enable":false},"html":"\n\u003cdiv class=\"globo-form boxed-form globo-form-id-47400 \" data-locale=\"en\" \u003e\n\n\u003cstyle\u003e\n\n\n    :root .globo-form-app[data-id=\"47400\"]{\n        \n        --gfb-color-solidButton: 7,65,116;\n        --gfb-color-solidButtonColor: rgb(var(--gfb-color-solidButton));\n        --gfb-color-solidButtonLabel: 255,255,255;\n        --gfb-color-solidButtonLabelColor: rgb(var(--gfb-color-solidButtonLabel));\n        --gfb-color-text: 51,51,51;\n        --gfb-color-textColor: rgb(var(--gfb-color-text));\n        --gfb-color-outlineButton: 51,51,51;\n        --gfb-color-outlineButtonColor: rgb(var(--gfb-color-outlineButton));\n        --gfb-color-background: ,,;\n        --gfb-color-backgroundColor: rgb(var(--gfb-color-background));\n        \n        --gfb-main-color: rgba(246,147,30,1);\n        --gfb-primary-color: var(--gfb-color-solidButtonColor, var(--gfb-main-color));\n        --gfb-primary-text-color: var(--gfb-color-solidButtonLabelColor, #FFF);\n        --gfb-form-width: 700px;\n        --gfb-font-family: inherit;\n        --gfb-font-style: inherit;\n        --gfb--image: 40%;\n        --gfb-image-ratio-draft: var(--gfb--image);\n        --gfb-image-ratio: var(--gfb-image-ratio-draft);\n        \n        --gfb-bg-temp-color: #FFF;\n        --gfb-bg-position: middle;\n        \n        --gfb-bg-color: var(--gfb-color-backgroundColor, var(--gfb-bg-temp-color));\n        \n    }\n    \n.globo-form-id-47400 .globo-form-app{\n    max-width: 700px;\n    width: -webkit-fill-available;\n    \n    background-color: unset;\n    \n    \n}\n\n.globo-form-id-47400 .globo-form-app .globo-heading{\n    color: var(--gfb-color-textColor, #000)\n}\n\n\n.globo-form-id-47400 .globo-form-app .header {\n    text-align:center;\n}\n\n\n.globo-form-id-47400 .globo-form-app .globo-description,\n.globo-form-id-47400 .globo-form-app .header .globo-description{\n    --gfb-color-description: rgba(var(--gfb-color-text), 0.8);\n    color: var(--gfb-color-description, #6c757d);\n}\n.globo-form-id-47400 .globo-form-app .globo-label,\n.globo-form-id-47400 .globo-form-app .globo-form-control label.globo-label,\n.globo-form-id-47400 .globo-form-app .globo-form-control label.globo-label span.label-content{\n    color: var(--gfb-color-textColor, #000);\n    text-align: left;\n}\n.globo-form-id-47400 .globo-form-app .globo-label.globo-position-label{\n    height: 20px !important;\n}\n.globo-form-id-47400 .globo-form-app .globo-form-control .help-text.globo-description,\n.globo-form-id-47400 .globo-form-app .globo-form-control span.globo-description{\n    --gfb-color-description: rgba(var(--gfb-color-text), 0.8);\n    color: var(--gfb-color-description, #6c757d);\n}\n.globo-form-id-47400 .globo-form-app .globo-form-control .checkbox-wrapper .globo-option,\n.globo-form-id-47400 .globo-form-app .globo-form-control .radio-wrapper .globo-option\n{\n    color: var(--gfb-color-textColor, #000);\n}\n.globo-form-id-47400 .globo-form-app .footer,\n.globo-form-id-47400 .globo-form-app .gfb__footer{\n    text-align:left;\n}\n.globo-form-id-47400 .globo-form-app .footer button,\n.globo-form-id-47400 .globo-form-app .gfb__footer button{\n    border:1px solid var(--gfb-primary-color);\n    \n        width:100%;\n    \n}\n.globo-form-id-47400 .globo-form-app .footer button.submit,\n.globo-form-id-47400 .globo-form-app .gfb__footer button.submit\n.globo-form-id-47400 .globo-form-app .footer button.checkout,\n.globo-form-id-47400 .globo-form-app .gfb__footer button.checkout,\n.globo-form-id-47400 .globo-form-app .footer button.action.loading .spinner,\n.globo-form-id-47400 .globo-form-app .gfb__footer button.action.loading .spinner{\n    background-color: var(--gfb-primary-color);\n    color : #000000;\n}\n.globo-form-id-47400 .globo-form-app .globo-form-control .star-rating\u003efieldset:not(:checked)\u003elabel:before {\n    content: url('data:image\/svg+xml; utf8, \u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"star\" class=\"svg-inline--fa fa-star fa-w-18\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"rgba(246,147,30,1)\" d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e');\n}\n.globo-form-id-47400 .globo-form-app .globo-form-control .star-rating\u003efieldset\u003einput:checked ~ label:before {\n    content: url('data:image\/svg+xml; utf8, \u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"fas\" data-icon=\"star\" class=\"svg-inline--fa fa-star fa-w-18\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"rgba(246,147,30,1)\" d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e');\n}\n.globo-form-id-47400 .globo-form-app .globo-form-control .star-rating\u003efieldset:not(:checked)\u003elabel:hover:before,\n.globo-form-id-47400 .globo-form-app .globo-form-control .star-rating\u003efieldset:not(:checked)\u003elabel:hover ~ label:before{\n    content : url('data:image\/svg+xml; utf8, \u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"fas\" data-icon=\"star\" class=\"svg-inline--fa fa-star fa-w-18\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"rgba(246,147,30,1)\" d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e')\n}\n.globo-form-id-47400 .globo-form-app .globo-form-control .checkbox-wrapper .checkbox-input:checked ~ .checkbox-label:before {\n    border-color: var(--gfb-primary-color);\n    box-shadow: 0 4px 6px rgba(50,50,93,0.11), 0 1px 3px rgba(0,0,0,0.08);\n    background-color: var(--gfb-primary-color);\n}\n.globo-form-id-47400 .globo-form-app .step.-completed .step__number,\n.globo-form-id-47400 .globo-form-app .line.-progress,\n.globo-form-id-47400 .globo-form-app .line.-start{\n    background-color: var(--gfb-primary-color);\n}\n.globo-form-id-47400 .globo-form-app .checkmark__check,\n.globo-form-id-47400 .globo-form-app .checkmark__circle{\n    stroke: var(--gfb-primary-color);\n}\n.globo-form-id-47400 .floating-button{\n    background-color: var(--gfb-primary-color);\n}\n.globo-form-id-47400 .globo-form-app .globo-form-control .checkbox-wrapper .checkbox-input ~ .checkbox-label:before,\n.globo-form-app .globo-form-control .radio-wrapper .radio-input ~ .radio-label:after{\n    border-color : var(--gfb-primary-color);\n}\n.globo-form-id-47400 .flatpickr-day.selected, \n.globo-form-id-47400 .flatpickr-day.startRange, \n.globo-form-id-47400 .flatpickr-day.endRange, \n.globo-form-id-47400 .flatpickr-day.selected.inRange, \n.globo-form-id-47400 .flatpickr-day.startRange.inRange, \n.globo-form-id-47400 .flatpickr-day.endRange.inRange, \n.globo-form-id-47400 .flatpickr-day.selected:focus, \n.globo-form-id-47400 .flatpickr-day.startRange:focus, \n.globo-form-id-47400 .flatpickr-day.endRange:focus, \n.globo-form-id-47400 .flatpickr-day.selected:hover, \n.globo-form-id-47400 .flatpickr-day.startRange:hover, \n.globo-form-id-47400 .flatpickr-day.endRange:hover, \n.globo-form-id-47400 .flatpickr-day.selected.prevMonthDay, \n.globo-form-id-47400 .flatpickr-day.startRange.prevMonthDay, \n.globo-form-id-47400 .flatpickr-day.endRange.prevMonthDay, \n.globo-form-id-47400 .flatpickr-day.selected.nextMonthDay, \n.globo-form-id-47400 .flatpickr-day.startRange.nextMonthDay, \n.globo-form-id-47400 .flatpickr-day.endRange.nextMonthDay {\n    background: var(--gfb-primary-color);\n    border-color: var(--gfb-primary-color);\n}\n.globo-form-id-47400 .globo-paragraph {\n    background: #fff;\n    color: var(--gfb-color-textColor, #000);\n    width: 100%!important;\n}\n\n[dir=\"rtl\"] .globo-form-app .header .title,\n[dir=\"rtl\"] .globo-form-app .header .description,\n[dir=\"rtl\"] .globo-form-id-47400 .globo-form-app .globo-heading,\n[dir=\"rtl\"] .globo-form-id-47400 .globo-form-app .globo-label,\n[dir=\"rtl\"] .globo-form-id-47400 .globo-form-app .globo-form-control label.globo-label,\n[dir=\"rtl\"] .globo-form-id-47400 .globo-form-app .globo-form-control label.globo-label span.label-content{\n    text-align: right;\n}\n\n[dir=\"rtl\"] .globo-form-app .line {\n    left: unset;\n    right: 50%;\n}\n\n[dir=\"rtl\"] .globo-form-id-47400 .globo-form-app .line.-start {\n    left: unset;    \n    right: 0%;\n}\n\n\u003c\/style\u003e\n\n\n\n\n\u003cdiv class=\"globo-form-app boxed-layout gfb-style-classic  gfb-font-size-medium\" data-id=47400\u003e\n    \n    \u003cdiv class=\"header dismiss hidden\" onclick=\"Globo.FormBuilder.closeModalForm(this)\"\u003e\n        \u003csvg width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n    \u003c\/div\u003e\n    \u003cform class=\"g-container\" novalidate action=\"https:\/\/app.powerfulform.com\/api\/front\/form\/47400\/send\" method=\"POST\" enctype=\"multipart\/form-data\" data-id=47400\u003e\n        \n            \n            \u003cdiv class=\"header\"\u003e\n                \u003ch3 class=\"title globo-heading\"\u003eSubmit Now. Get Rewarded.\u003c\/h3\u003e\n                \n            \u003c\/div\u003e\n            \n        \n        \n            \u003cdiv class=\"globo-formbuilder-wizard\" data-id=47400\u003e\n                \u003cdiv class=\"wizard__content\"\u003e\n                    \u003cheader class=\"wizard__header\"\u003e\n                        \u003cdiv class=\"wizard__steps\"\u003e\n                        \u003cnav class=\"steps hidden\"\u003e\n                            \n                            \n                                \n                            \n                            \n                                \n                                \n                                \n                                \n                                \u003cdiv class=\"step last \" data-element-id=\"group-1\"  data-step=\"0\" \u003e\n                                    \u003cdiv class=\"step__content\"\u003e\n                                        \u003cp class=\"step__number\"\u003e\u003c\/p\u003e\n                                        \u003csvg class=\"checkmark\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=52 height=52 viewBox=\"0 0 52 52\"\u003e\n                                            \u003ccircle class=\"checkmark__circle\" cx=\"26\" cy=\"26\" r=\"25\" fill=\"none\"\/\u003e\n                                            \u003cpath class=\"checkmark__check\" fill=\"none\" d=\"M14.1 27.2l7.1 7.2 16.7-16.8\"\/\u003e\n                                        \u003c\/svg\u003e\n                                        \u003cdiv class=\"lines\"\u003e\n                                            \n                                                \u003cdiv class=\"line -start\"\u003e\u003c\/div\u003e\n                                            \n                                            \u003cdiv class=\"line -background\"\u003e\n                                            \u003c\/div\u003e\n                                            \u003cdiv class=\"line -progress\"\u003e\n                                            \u003c\/div\u003e\n                                        \u003c\/div\u003e  \n                                    \u003c\/div\u003e\n                                \u003c\/div\u003e\n                            \n                        \u003c\/nav\u003e\n                        \u003c\/div\u003e\n                    \u003c\/header\u003e\n                    \u003cdiv class=\"panels\"\u003e\n                        \n                        \n                        \n                        \n                        \u003cdiv class=\"panel \" data-element-id=\"group-1\" data-id=47400  data-step=\"0\" style=\"padding-top:0\"\u003e\n                            \n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column custom-border\"  data-type='email'\u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"47400-email-1\" class=\"classic-label globo-label gfb__label-v2 \" data-label=\"Email Address \"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Email Address \"\u003eEmail Address \u003c\/span\u003e\n    \n        \u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cinput type=\"text\"  data-type=\"email\" class=\"classic-input\" id=\"47400-email-1\" name=\"email-1\" placeholder=\"\" presence  \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column custom-border\"  data-type='name'\u003e\n\n    \n        \n\u003clabel tabindex=\"0\" for=\"47400-name-1\" class=\"classic-label globo-label gfb__label-v2 \" data-label=\"Your Name\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Your Name\"\u003eYour Name\u003c\/span\u003e\n    \n        \u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cinput type=\"text\"  data-type=\"name\" class=\"classic-input\" id=\"47400-name-1\" name=\"name-1\" placeholder=\"\" presence  \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='file2'\u003e\n    \u003clabel tabindex=\"0\" aria-label=\"Browse file\" for=\"temp-for-47400-file2-1\" class=\"classic-label globo-label \" data-label=\"Attachments\"\u003e\u003cspan class=\"label-content\" data-label=\"Attachments\"\u003eAttachments\u003c\/span\u003e\u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\u003c\/label\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \u003cdiv class=\"gfb__dropzone\"\u003e\n            \u003cdiv class=\"gfb__dropzone--content\"\u003e\n                \u003cdiv class=\"gfb__dropzone--placeholder\"\u003e\n                    \u003cdiv class=\"gfb__dropzone--placeholder--title\"\u003e\n                        Choose file or drag here\n                    \u003c\/div\u003e\n                    \n                    \u003cdiv class=\"gfb__dropzone--placeholder--description\"\u003e\n                        Supported format: JPG, JPEG, PNG, HEIF, HEIC, MP4, M4V.\n                    \u003c\/div\u003e\n                    \n                    \n                    \u003cbutton type=\"button\" for=\"47400-file2-1\" class=\"gfb__dropzone--placeholder--button\"\u003eBrowse file\u003c\/button\u003e\n                    \n                \u003c\/div\u003e\n                \u003cdiv class=\"gfb__dropzone--preview--area\"\u003e\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cinput style=\"display:none\" type=\"file\" id=\"temp-for-47400-file2-1\"  multiple  \/\u003e\n            \u003clabel for=\"temp-for-47400-file2-1_\"\u003e\u003cspan class=\"gfb__hidden\"\u003etemp-for-47400-file2-1_\u003c\/span\u003e\u003c\/label\u003e\n            \u003cinput style=\"display:none\" type=\"file\" id=\"temp-for-47400-file2-1_\"  data-type=\"file2\" class=\"classic-input\" id=\"47400-file2-1\"  multiple name=\"file2-1[]\"  placeholder=\"Choose file or drag here\" presence data-allowed-extensions=\"jpg,png,mp4,jpeg,m4v,heif,heic\" data-file-size-limit=\"150\" data-file-limit=\"\" \u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='acceptTerms' data-default-value=\"true\"\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \u003cdiv class=\"flex-wrap\"\u003e\n            \u003cdiv class=\"globo-list-control\"\u003e\n                \u003cdiv class=\"checkbox-wrapper\"\u003e\n                    \u003cinput  class=\"checkbox-input\" id=\"47400-acceptTerms-3\" type=\"checkbox\" data-type=\"acceptTerms\" name=\"acceptTerms-3[]\" presence value=\"Yes\" checked\u003e\n                    \u003clabel tabindex=\"0\" class=\"checkbox-label globo-option\" for=\"47400-acceptTerms-3\" data-label=\"I agree to join the GARVEE UGC program (unsubscribe anytime)\"\u003e\u003cspan class=\"label-content\" data-label=\"I agree to join the GARVEE UGC program (unsubscribe anytime)\"\u003eI agree to join the GARVEE UGC program (unsubscribe anytime)\u003c\/span\u003e\u003cspan class=\"text-danger text-smaller\"\u003e *\u003c\/span\u003e\u003c\/label\u003e\n                    \n                    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='acceptTerms' data-default-value=\"false\"\u003e\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \u003cdiv class=\"flex-wrap\"\u003e\n            \u003cdiv class=\"globo-list-control\"\u003e\n                \u003cdiv class=\"checkbox-wrapper\"\u003e\n                    \u003cinput  class=\"checkbox-input\" id=\"47400-acceptTerms-2\" type=\"checkbox\" data-type=\"acceptTerms\" name=\"acceptTerms-2[]\"  value=\"Yes\" \u003e\n                    \u003clabel tabindex=\"0\" class=\"checkbox-label globo-option\" for=\"47400-acceptTerms-2\" data-label=\"Email me with update and offers (unsubscribe anytime)\"\u003e\u003cspan class=\"label-content\" data-label=\"Email me with update and offers (unsubscribe anytime)\"\u003eEmail me with update and offers (unsubscribe anytime)\u003c\/span\u003e\u003c\/label\u003e\n                    \n                    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n\u003c\/div\u003e\n\n\n                                \n                            \n                            \n                                \n                            \n                        \u003c\/div\u003e\n                        \n                    \u003c\/div\u003e\n                    \n                    \u003cdiv class=\"message error\" data-other-error=\"Something went wrong, please try again\"\u003e\n                        \u003cdiv class=\"content\"\u003e\u003c\/div\u003e\n                        \u003cdiv class=\"dismiss\" onclick=\"Globo.FormBuilder.dismiss(this)\"\u003e\n                            \u003csvg width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n                        \u003c\/div\u003e\n                    \u003c\/div\u003e\n                    \n                        \n                        \n                        \u003cdiv class=\"message success\"\u003e\n                            \n                                \u003cdiv class=\"gfb__content-title\"\u003eThanks for getting in touch!\u003c\/div\u003e\n                            \n                            \u003cdiv class=\"gfb__discount-wrapper\" onclick=\"Globo.FormBuilder.handleCopyDiscountCode(this)\"\u003e\n                                \u003cdiv class=\"gfb__content-discount\"\u003e\n                                    \u003cspan class=\"gfb__discount-code\"\u003e\u003c\/span\u003e\n                                    \u003cdiv class=\"gfb__copy\"\u003e\n                                        \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z\"\/\u003e\u003c\/svg\u003e\n                                    \u003c\/div\u003e\n                                    \u003cdiv class=\"gfb__copied\"\u003e\n                                        \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z\"\/\u003e\u003c\/svg\u003e\n                                    \u003c\/div\u003e        \n                                \u003c\/div\u003e\n                            \u003c\/div\u003e\n                            \u003cdiv class=\"content\"\u003e\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eHave a great day!\u003c\/p\u003e\u003c\/div\u003e\n                            \u003cdiv class=\"dismiss\" onclick=\"Globo.FormBuilder.dismiss(this)\"\u003e\n                                \u003csvg width=20 height=20 width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n                            \u003c\/div\u003e\n                        \u003c\/div\u003e\n                        \n                        \n                    \n                    \u003cdiv class=\"gfb__footer wizard__footer\"\u003e\n                        \n                            \n                        \n                        \u003cbutton type=\"button\" class=\"action previous hidden classic-button\"\u003ePrevious\u003c\/button\u003e\n                        \u003cbutton type=\"button\" class=\"action next submit classic-button\" data-submitting-text=\"\" data-submit-text='\u003cspan class=\"spinner\"\u003e\u003c\/span\u003eSubmit' data-next-text=\"Next\" \u003e\u003cspan class=\"spinner\"\u003e\u003c\/span\u003eNext\u003c\/button\u003e\n                        \n                        \u003cp class=\"wizard__congrats-message\"\u003e\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \n        \u003cinput type=\"hidden\" value=\"\" name=\"customer[id]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"customer[email]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"customer[name]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"page[title]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"page[href]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"_keyLabel\"\u003e\n    \u003c\/form\u003e\n    \n    \n    \u003cdiv class=\"message success\"\u003e\n        \n            \u003cdiv class=\"gfb__content-title\"\u003eThanks for getting in touch!\u003c\/div\u003e\n        \n        \u003cdiv class=\"gfb__discount-wrapper\" onclick=\"Globo.FormBuilder.handleCopyDiscountCode(this)\"\u003e\n            \u003cdiv class=\"gfb__content-discount\"\u003e\n                \u003cspan class=\"gfb__discount-code\"\u003e\u003c\/span\u003e\n                \u003cdiv class=\"gfb__copy\"\u003e\n                    \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z\"\/\u003e\u003c\/svg\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"gfb__copied\"\u003e\n                    \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z\"\/\u003e\u003c\/svg\u003e\n                \u003c\/div\u003e        \n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"content\"\u003e\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003eHave a great day!\u003c\/p\u003e\u003c\/div\u003e\n        \u003cdiv class=\"dismiss\" onclick=\"Globo.FormBuilder.dismiss(this)\"\u003e\n            \u003csvg width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n    \n\u003c\/div\u003e\n\n\u003c\/div\u003e\n"}}[47400];
  1515.      
  1516.    
  1517.      
  1518.      
  1519.      
  1520.      window.Globo.FormBuilder.forms[80652] = {"80652":{"elements":[{"id":"group-1","type":"group","label":"Page 1","description":"","elements":[{"id":"html-1","type":"html","html":{"en":"\u003ch4\u003eCompany Info \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","de":"\u003ch4\u003eCompany Info \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","es":"\u003ch4\u003eCompany Info \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","fr":"\u003ch4\u003eCompany Info \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","lg":"\u003ch4\u003eCompany Info \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","ru":"\u003ch4\u003eCompany Info \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e"},"columnWidth":100,"displayType":"show","displayDisjunctive":false},{"id":"text-1","type":"text","label":{"en":"Company Name","de":"Company Name","es":"Company Name","fr":"Company Name","lg":"Company Name","ru":"Company Name"},"placeholder":{"en":"Company Name","de":"Company Name","es":"Company Name","fr":"Company Name","lg":"Company Name","ru":"Company Name"},"description":{"en":"","de":"","es":"","fr":"","lg":"","ru":""},"limitCharacters":true,"characters":"100","hideLabel":true,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"required":true,"ifHideLabel":false,"inputIcon":null},{"id":"select-7","type":"select","label":{"en":"Country","de":"Country","es":"Country","fr":"Country","lg":"Country","ru":"Country"},"placeholder":{"en":"Country","de":"Country","es":"Country","fr":"Country","lg":"Country","ru":"Country"},"options":[{"label":{"en":"United States","de":"United States","es":"United States","fr":"United States","lg":"United States","ru":"United States"},"value":"United States"}],"defaultOption":"United States","description":"","hideLabel":true,"keepPositionLabel":false,"columnWidth":33.33,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true,"ifHideLabel":false},{"id":"select-1","type":"select","label":{"en":"Interested Product Category","de":"Interested Product Category","es":"Interested Product Category","fr":"Interested Product Category","lg":"Interested Product Category","ru":"Interested Product Category"},"placeholder":{"en":"Interested Product Category","de":"Interested Product Category","es":"Interested Product Category","fr":"Interested Product Category","lg":"Interested Product Category","ru":"Interested Product Category"},"options":[{"label":{"en":"RestaurantandFoodService","de":"RestaurantandFoodService","es":"RestaurantandFoodService","fr":"RestaurantandFoodService","lg":"RestaurantandFoodService","ru":"RestaurantandFoodService"},"value":"RestaurantandFoodService"},{"label":{"en":"Automotive","de":"Automotive","es":"Automotive","fr":"Automotive","lg":"Automotive","ru":"Automotive"},"value":"Automotive"},{"label":{"en":"LawnandGarden","de":"LawnandGarden","es":"LawnandGarden","fr":"LawnandGarden","lg":"LawnandGarden","ru":"LawnandGarden"},"value":"LawnandGarden"},{"label":{"en":"Material Handling","de":"Material Handling","es":"Material Handling","fr":"Material Handling","lg":"Material Handling","ru":"Material Handling"},"value":"Material Handling"},{"label":{"en":"Building and Construction","de":"Building and Construction","es":"Building and Construction","fr":"Building and Construction","lg":"Building and Construction","ru":"Building and Construction"},"value":"Building and Construction"},{"label":{"en":"Power Tools","de":"Power Tools","es":"Power Tools","fr":"Power Tools","lg":"Power Tools","ru":"Power Tools"},"value":"Power Tools"},{"label":{"en":"AgricultureandForestry Equipment","de":"AgricultureandForestry Equipment","es":"AgricultureandForestry Equipment","fr":"AgricultureandForestry Equipment","lg":"AgricultureandForestry Equipment","ru":"AgricultureandForestry Equipment"},"value":"AgricultureandForestry Equipment"}],"defaultOption":"","description":"","hideLabel":true,"keepPositionLabel":false,"columnWidth":33.33,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true,"selectWithSearch":false,"inputIcon":null},{"id":"select-2","type":"select","label":{"en":"Annual Purchase Plan","de":"Annual Purchase Plan","es":"Annual Purchase Plan","fr":"Annual Purchase Plan","lg":"Annual Purchase Plan","ru":"Annual Purchase Plan"},"placeholder":{"en":"Annual Purchase Plan","de":"Annual Purchase Plan","es":"Annual Purchase Plan","fr":"Annual Purchase Plan","lg":"Annual Purchase Plan","ru":"Annual Purchase Plan"},"options":[{"label":{"en":"$5,000-$25,000","de":"$5,000-$25,000","es":"$5,000-$25,000","fr":"$5,000-$25,000","lg":"$5,000-$25,000","ru":"$5,000-$25,000"},"value":"$5,000-$25,000"},{"label":{"en":"$25,000-$50,000","de":"$25,000-$50,000","es":"$25,000-$50,000","fr":"$25,000-$50,000","lg":"$25,000-$50,000","ru":"$25,000-$50,000"},"value":"$25,000-$50,000"},{"label":{"en":"$50,000-$100,000","de":"$50,000-$100,000","es":"$50,000-$100,000","fr":"$50,000-$100,000","lg":"$50,000-$100,000","ru":"$50,000-$100,000"},"value":"$50,000-$100,000"},{"label":{"en":"$100,000-$250,000","de":"$100,000-$250,000","es":"$100,000-$250,000","fr":"$100,000-$250,000","lg":"$100,000-$250,000","ru":"$100,000-$250,000"},"value":"$100,000-$250,000"},{"label":{"en":"$250,000$+","de":"$250,000$+","es":"$250,000$+","fr":"$250,000$+","lg":"$250,000$+","ru":"$250,000$+"},"value":"$250,000$+"}],"defaultOption":"","description":"","hideLabel":true,"keepPositionLabel":false,"columnWidth":33.33,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true,"selectWithSearch":false},{"id":"url-1","type":"url","label":{"en":"Company\/Store Website","de":"Company\/Store Website","es":"Company\/Store Website","fr":"Company\/Store Website","lg":"Company\/Store Website","ru":"Company\/Store Website"},"placeholder":{"en":"Company\/Store Website (Optional)","de":"Company\/Store Website (Optional)","es":"Company\/Store Website (Optional)","fr":"Company\/Store Website (Optional)","lg":"Company\/Store Website (Optional)","ru":"Company\/Store Website (Optional)"},"description":"","limitCharacters":true,"characters":100,"hideLabel":true,"keepPositionLabel":false,"columnWidth":33.33,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":false},{"id":"select-3","type":"select","label":{"en":"Industry","de":"Industry","es":"Industry","fr":"Industry","lg":"Industry","ru":"Industry"},"placeholder":{"en":"Industry","de":"Industry","es":"Industry","fr":"Industry","lg":"Industry","ru":"Industry"},"options":[{"label":{"en":"Property Investment","de":"Property Investment","es":"Property Investment","fr":"Property Investment","lg":"Property Investment","ru":"Property Investment"},"value":"Property Investment"},{"label":{"en":"Property Management,Non-Residential","de":"Property Management,Non-Residential","es":"Property Management,Non-Residential","fr":"Property Management,Non-Residential","lg":"Property Management,Non-Residential","ru":"Property Management,Non-Residential"},"value":"Property Management,Non-Residential"},{"label":{"en":"Property Management,Single and Multifamily","de":"Property Management,Single and Multifamily","es":"Property Management,Single and Multifamily","fr":"Property Management,Single and Multifamily","lg":"Property Management,Single and Multifamily","ru":"Property Management,Single and Multifamily"},"value":"Property Management,Single and Multifamily"},{"label":{"en":"Property Owner","de":"Property Owner","es":"Property Owner","fr":"Property Owner","lg":"Property Owner","ru":"Property Owner"},"value":"Property Owner"},{"label":{"en":"Recreation\/Entertainment","de":"Recreation\/Entertainment","es":"Recreation\/Entertainment","fr":"Recreation\/Entertainment","lg":"Recreation\/Entertainment","ru":"Recreation\/Entertainment"},"value":"Recreation\/Entertainment"},{"label":{"en":"Roofing","de":"Roofing","es":"Roofing","fr":"Roofing","lg":"Roofing","ru":"Roofing"},"value":"Roofing"},{"label":{"en":"SingleFamilyResidentialConstruction","de":"SingleFamilyResidentialConstruction","es":"SingleFamilyResidentialConstruction","fr":"SingleFamilyResidentialConstruction","lg":"SingleFamilyResidentialConstruction","ru":"SingleFamilyResidentialConstruction"},"value":"SingleFamilyResidentialConstruction"},{"label":{"en":"Other","de":"Other","es":"Other","fr":"Other","lg":"Other","ru":"Other"},"value":"Other"}],"defaultOption":"","description":"","hideLabel":true,"keepPositionLabel":false,"columnWidth":33.33,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true,"selectWithSearch":false},{"id":"select-4","type":"select","label":{"en":"Cooperation Type","de":"Cooperation Type","es":"Cooperation Type","fr":"Cooperation Type","lg":"Cooperation Type","ru":"Cooperation Type"},"placeholder":{"en":"Cooperation Type","de":"Cooperation Type","es":"Cooperation Type","fr":"Cooperation Type","lg":"Cooperation Type","ru":"Cooperation Type"},"options":[{"label":{"en":"Drop Shipping","de":"Drop Shipping","es":"Drop Shipping","fr":"Drop Shipping","lg":"Drop Shipping","ru":"Drop Shipping"},"value":"Drop Shipping"},{"label":{"en":"Brick and Mortar Sales","de":"Brick and Mortar Sales","es":"Brick and Mortar Sales","fr":"Brick and Mortar Sales","lg":"Brick and Mortar Sales","ru":"Brick and Mortar Sales"},"value":"Brick and Mortar Sales"},{"label":{"en":"OnlineRetailer","de":"OnlineRetailer","es":"OnlineRetailer","fr":"OnlineRetailer","lg":"OnlineRetailer","ru":"OnlineRetailer"},"value":"OnlineRetailer"},{"label":{"en":"BrandAgent","de":"BrandAgent","es":"BrandAgent","fr":"BrandAgent","lg":"BrandAgent","ru":"BrandAgent"},"value":"BrandAgent"}],"defaultOption":"","description":"","hideLabel":true,"keepPositionLabel":false,"columnWidth":33.33,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true,"selectWithSearch":false},{"id":"html-2","type":"html","html":{"en":"\u003ch4\u003eRequirement Details \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","de":"\u003ch4\u003eRequirement Details \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","es":"\u003ch4\u003eRequirement Details \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","fr":"\u003ch4\u003eRequirement Details \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","lg":"\u003ch4\u003eRequirement Details \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","ru":"\u003ch4\u003eRequirement Details \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e"},"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false},{"id":"textarea-1","type":"textarea","label":{"en":"Requirement Details","de":"Requirement Details","es":"Requirement Details","fr":"Requirement Details","lg":"Requirement Details","ru":"Requirement Details"},"placeholder":{"en":"Type your interested product line, procurement plan or the cooperation way here, so we can follow better, thanks!","de":"Type your interested product line, procurement plan or the cooperation way here, so we can follow better, thanks!","es":"Type your interested product line, procurement plan or the cooperation way here, so we can follow better, thanks!","fr":"Type your interested product line, procurement plan or the cooperation way here, so we can follow better, thanks!","lg":"Type your interested product line, procurement plan or the cooperation way here, so we can follow better, thanks!","ru":"Type your interested product line, procurement plan or the cooperation way here, so we can follow better, thanks!"},"description":"","limitCharacters":true,"characters":"1000","hideLabel":true,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true},{"id":"select-5","type":"select","label":{"en":"Sales Channel","de":"Sales Channel","es":"Sales Channel","fr":"Sales Channel","lg":"Sales Channel","ru":"Sales Channel"},"placeholder":{"en":"What is your current sales channel?","de":"What is your current sales channel?","es":"What is your current sales channel?","fr":"What is your current sales channel?","lg":"What is your current sales channel?","ru":"What is your current sales channel?"},"options":[{"label":{"en":"Online Platform","de":"Online Platform","es":"Online Platform","fr":"Online Platform","lg":"Online Platform","ru":"Online Platform"},"value":"Online Platform"},{"label":{"en":"Brick and MortarSales","de":"Brick and MortarSales","es":"Brick and MortarSales","fr":"Brick and MortarSales","lg":"Brick and MortarSales","ru":"Brick and MortarSales"},"value":"Brick and MortarSales"},{"label":{"en":"Social Media Platform","de":"Social Media Platform","es":"Social Media Platform","fr":"Social Media Platform","lg":"Social Media Platform","ru":"Social Media Platform"},"value":"Social Media Platform"},{"label":{"en":"Others","de":"Others","es":"Others","fr":"Others","lg":"Others","ru":"Others"},"value":"Others"}],"defaultOption":"","description":"","hideLabel":true,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true,"selectWithSearch":false},{"id":"select-6","type":"select","label":{"en":"Annual Revenue","de":"Annual Revenue","es":"Annual Revenue","fr":"Annual Revenue","lg":"Annual Revenue","ru":"Annual Revenue"},"placeholder":{"en":"What is your company's annual revenue?","de":"What is your company's annual revenue?","es":"What is your company's annual revenue?","fr":"What is your company's annual revenue?","lg":"What is your company's annual revenue?","ru":"What is your company's annual revenue?"},"options":[{"label":{"en":"$5,000-$25,000","de":"$5,000-$25,000","es":"$5,000-$25,000","fr":"$5,000-$25,000","lg":"$5,000-$25,000","ru":"$5,000-$25,000"},"value":"$5,000-$25,000"},{"label":{"en":"$25,000-$50,000","de":"$25,000-$50,000","es":"$25,000-$50,000","fr":"$25,000-$50,000","lg":"$25,000-$50,000","ru":"$25,000-$50,000"},"value":"$25,000-$50,000"},{"label":{"en":"$50,000-$100,000","de":"$50,000-$100,000","es":"$50,000-$100,000","fr":"$50,000-$100,000","lg":"$50,000-$100,000","ru":"$50,000-$100,000"},"value":"$50,000-$100,000"},{"label":{"en":"$100,000-$250,000","de":"$100,000-$250,000","es":"$100,000-$250,000","fr":"$100,000-$250,000","lg":"$100,000-$250,000","ru":"$100,000-$250,000"},"value":"$100,000-$250,000"},{"label":{"en":"$250,000$+","de":"$250,000$+","es":"$250,000$+","fr":"$250,000$+","lg":"$250,000$+","ru":"$250,000$+"},"value":"$250,000$+"}],"defaultOption":"","description":"","hideLabel":true,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true,"selectWithSearch":false},{"id":"text-3","type":"text","label":{"en":"Business","de":"Business","es":"Business","fr":"Business","lg":"Business","ru":"Business"},"placeholder":{"en":"We'd like to know more about your business (Optional)","de":"We'd like to know more about your business (Optional)","es":"We'd like to know more about your business (Optional)","fr":"We'd like to know more about your business (Optional)","lg":"We'd like to know more about your business (Optional)","ru":"We'd like to know more about your business (Optional)"},"description":"","limitCharacters":true,"characters":"1000","hideLabel":true,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false},{"id":"html-3","type":"html","html":{"en":"\u003ch4\u003eContact Person \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","de":"\u003ch4\u003eContact Person \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","es":"\u003ch4\u003eContact Person \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","fr":"\u003ch4\u003eContact Person \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","lg":"\u003ch4\u003eContact Person \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e","ru":"\u003ch4\u003eContact Person \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e"},"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false},{"id":"text-4","type":"text","label":{"en":"Name","de":"Name","es":"Name","fr":"Name","lg":"Name","ru":"Name"},"placeholder":{"en":"Name","de":"Name","es":"Name","fr":"Name","lg":"Name","ru":"Name"},"description":"","limitCharacters":true,"characters":100,"hideLabel":true,"keepPositionLabel":false,"columnWidth":100,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true},{"id":"text-5","type":"text","label":{"en":"Job Title","de":"Job Title","es":"Job Title","fr":"Job Title","lg":"Job Title","ru":"Job Title"},"placeholder":{"en":"Job Title","de":"Job Title","es":"Job Title","fr":"Job Title","lg":"Job Title","ru":"Job Title"},"description":"","limitCharacters":true,"characters":100,"hideLabel":true,"keepPositionLabel":false,"columnWidth":33.33,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true},{"id":"email-1","type":"email","label":{"en":"Business email","de":"Business email","es":"Business email","fr":"Business email","lg":"Business email","ru":"Business email"},"placeholder":{"en":"Business email is required","de":"Business email is required","es":"Business email is required","fr":"Business email is required","lg":"Business email is required","ru":"Business email is required"},"description":"","limitCharacters":true,"characters":100,"hideLabel":true,"keepPositionLabel":false,"columnWidth":33.33,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true},{"id":"phone-1","type":"phone","label":{"en":"Phone Number","de":"Phone Number","es":"Phone Number","fr":"Phone Number","lg":"Phone Number","ru":"Phone Number"},"placeholder":{"en":"","de":"","es":"","fr":"","lg":"","ru":""},"description":"","validatePhone":true,"onlyShowFlag":false,"defaultCountryCode":"us","limitCharacters":true,"characters":100,"hideLabel":true,"keepPositionLabel":false,"columnWidth":33.33,"displayType":"show","displayDisjunctive":false,"conditionalField":false,"required":true,"customClass":"custom-phone"}]}],"errorMessage":{"required":"{{ label | capitalize }} is required","minSelections":"Please choose at least {{ min_selections }} options","maxSelections":"Please choose at maximum of {{ max_selections }} options","exactlySelections":"Please choose exactly {{ exact_selections }} options","invalid":"Invalid","invalidName":"Invalid name","invalidEmail":"Email address is invalid","restrictedEmailDomain":"This email domain is restricted","invalidURL":"Invalid url","invalidPhone":"Invalid phone","invalidNumber":"Invalid number","invalidPassword":"Invalid password","confirmPasswordNotMatch":"Confirmed password doesn't match","customerAlreadyExists":"Customer already exists","keyAlreadyExists":"Data already exists","fileSizeLimit":"File size limit","fileNotAllowed":"File not allowed","requiredCaptcha":"Required captcha","requiredProducts":"Please select product","limitQuantity":"The number of products left in stock has been exceeded","shopifyInvalidPhone":"phone - Enter a valid phone number to use this delivery method","shopifyPhoneHasAlready":"phone - Phone has already been taken","shopifyInvalidProvice":"addresses.province - is not valid","otherError":"Something went wrong, please try again"},"appearance":{"layout":"default","width":"900","style":"flat","mainColor":"rgba(46,78,73,1)","floatingIcon":"\u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"envelope\" class=\"svg-inline--fa fa-envelope fa-w-16\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e","floatingText":null,"displayOnAllPage":false,"formType":"normalForm","background":"color","backgroundColor":"#fff","descriptionColor":"#6c757d","headingColor":"#000","labelColor":"#1c1c1c","optionColor":"#000","paragraphBackground":"#fff","paragraphColor":"#000","theme_design":false,"font":"inherit","colorScheme":{"solidButton":{"red":7,"green":65,"blue":116},"solidButtonLabel":{"red":255,"green":255,"blue":255},"text":{"red":28,"green":28,"blue":28},"outlineButton":{"red":7,"green":65,"blue":116},"background":{"red":255,"green":255,"blue":255}},"fontSize":"medium"},"afterSubmit":{"action":"clearForm","title":"Thanks for getting in touch!","message":{"en":"\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\n\u003cp\u003e\u0026nbsp;\u003c\/p\u003e\n\u003cp\u003eHave a great day!\u003c\/p\u003e","de":"\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\n\u003cp\u003e\u0026nbsp;\u003c\/p\u003e\n\u003cp\u003eHave a great day!\u003c\/p\u003e","es":"\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\n\u003cp\u003e\u0026nbsp;\u003c\/p\u003e\n\u003cp\u003eHave a great day!\u003c\/p\u003e","fr":"\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\n\u003cp\u003e\u0026nbsp;\u003c\/p\u003e\n\u003cp\u003eHave a great day!\u003c\/p\u003e","lg":"\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\n\u003cp\u003e\u0026nbsp;\u003c\/p\u003e\n\u003cp\u003eHave a great day!\u003c\/p\u003e","ru":"\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\n\u003cp\u003e\u0026nbsp;\u003c\/p\u003e\n\u003cp\u003eHave a great day!\u003c\/p\u003e"},"redirectUrl":null},"footer":{"description":null,"previousText":"Previous","nextText":"Next","submitText":"Submit","submitFullWidth":true},"header":{"active":false,"title":"Contact us","description":{"en":"","de":"","es":"","fr":"","lg":"","ru":""},"headerAlignment":"center"},"isStepByStepForm":true,"publish":{"requiredLogin":false,"requiredLoginMessage":"Please \u003ca href='\/account\/login' title='login'\u003elogin\u003c\/a\u003e to continue"},"reCaptcha":{"enable":false},"html":"\n\u003cdiv class=\"globo-form default-form globo-form-id-80652 \" data-locale=\"en\" \u003e\n\n\u003cstyle\u003e\n\n\n    \n\n    :root .globo-form-app[data-id=\"80652\"]{\n        \n        --gfb-color-solidButton: 7,65,116;\n        --gfb-color-solidButtonColor: rgb(var(--gfb-color-solidButton));\n        --gfb-color-solidButtonLabel: 255,255,255;\n        --gfb-color-solidButtonLabelColor: rgb(var(--gfb-color-solidButtonLabel));\n        --gfb-color-text: 28,28,28;\n        --gfb-color-textColor: rgb(var(--gfb-color-text));\n        --gfb-color-outlineButton: 7,65,116;\n        --gfb-color-outlineButtonColor: rgb(var(--gfb-color-outlineButton));\n        --gfb-color-background: 255,255,255;\n        --gfb-color-backgroundColor: rgb(var(--gfb-color-background));\n        \n        --gfb-main-color: rgba(46,78,73,1);\n        --gfb-primary-color: var(--gfb-color-solidButtonColor, var(--gfb-main-color));\n        --gfb-primary-text-color: var(--gfb-color-solidButtonLabelColor, #FFF);\n        --gfb-form-width: 900px;\n        --gfb-font-family: inherit;\n        --gfb-font-style: inherit;\n        --gfb--image: 40%;\n        --gfb-image-ratio-draft: var(--gfb--image);\n        --gfb-image-ratio: var(--gfb-image-ratio-draft);\n        \n        --gfb-bg-temp-color: #FFF;\n        --gfb-bg-position: ;\n        \n            --gfb-bg-temp-color: #fff;\n        \n        --gfb-bg-color: var(--gfb-color-backgroundColor, var(--gfb-bg-temp-color));\n        \n    }\n    \n.globo-form-id-80652 .globo-form-app{\n    max-width: 900px;\n    width: -webkit-fill-available;\n    \n    background-color: var(--gfb-bg-color);\n    \n    \n}\n\n.globo-form-id-80652 .globo-form-app .globo-heading{\n    color: var(--gfb-color-textColor, #000)\n}\n\n\n.globo-form-id-80652 .globo-form-app .header {\n    text-align:center;\n}\n\n\n.globo-form-id-80652 .globo-form-app .globo-description,\n.globo-form-id-80652 .globo-form-app .header .globo-description{\n    --gfb-color-description: rgba(var(--gfb-color-text), 0.8);\n    color: var(--gfb-color-description, #6c757d);\n}\n.globo-form-id-80652 .globo-form-app .globo-label,\n.globo-form-id-80652 .globo-form-app .globo-form-control label.globo-label,\n.globo-form-id-80652 .globo-form-app .globo-form-control label.globo-label span.label-content{\n    color: var(--gfb-color-textColor, #1c1c1c);\n    text-align: left;\n}\n.globo-form-id-80652 .globo-form-app .globo-label.globo-position-label{\n    height: 20px !important;\n}\n.globo-form-id-80652 .globo-form-app .globo-form-control .help-text.globo-description,\n.globo-form-id-80652 .globo-form-app .globo-form-control span.globo-description{\n    --gfb-color-description: rgba(var(--gfb-color-text), 0.8);\n    color: var(--gfb-color-description, #6c757d);\n}\n.globo-form-id-80652 .globo-form-app .globo-form-control .checkbox-wrapper .globo-option,\n.globo-form-id-80652 .globo-form-app .globo-form-control .radio-wrapper .globo-option\n{\n    color: var(--gfb-color-textColor, #1c1c1c);\n}\n.globo-form-id-80652 .globo-form-app .footer,\n.globo-form-id-80652 .globo-form-app .gfb__footer{\n    text-align:;\n}\n.globo-form-id-80652 .globo-form-app .footer button,\n.globo-form-id-80652 .globo-form-app .gfb__footer button{\n    border:1px solid var(--gfb-primary-color);\n    \n        width:100%;\n    \n}\n.globo-form-id-80652 .globo-form-app .footer button.submit,\n.globo-form-id-80652 .globo-form-app .gfb__footer button.submit\n.globo-form-id-80652 .globo-form-app .footer button.checkout,\n.globo-form-id-80652 .globo-form-app .gfb__footer button.checkout,\n.globo-form-id-80652 .globo-form-app .footer button.action.loading .spinner,\n.globo-form-id-80652 .globo-form-app .gfb__footer button.action.loading .spinner{\n    background-color: var(--gfb-primary-color);\n    color : #ffffff;\n}\n.globo-form-id-80652 .globo-form-app .globo-form-control .star-rating\u003efieldset:not(:checked)\u003elabel:before {\n    content: url('data:image\/svg+xml; utf8, \u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"star\" class=\"svg-inline--fa fa-star fa-w-18\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"rgba(46,78,73,1)\" d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e');\n}\n.globo-form-id-80652 .globo-form-app .globo-form-control .star-rating\u003efieldset\u003einput:checked ~ label:before {\n    content: url('data:image\/svg+xml; utf8, \u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"fas\" data-icon=\"star\" class=\"svg-inline--fa fa-star fa-w-18\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"rgba(46,78,73,1)\" d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e');\n}\n.globo-form-id-80652 .globo-form-app .globo-form-control .star-rating\u003efieldset:not(:checked)\u003elabel:hover:before,\n.globo-form-id-80652 .globo-form-app .globo-form-control .star-rating\u003efieldset:not(:checked)\u003elabel:hover ~ label:before{\n    content : url('data:image\/svg+xml; utf8, \u003csvg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"fas\" data-icon=\"star\" class=\"svg-inline--fa fa-star fa-w-18\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"rgba(46,78,73,1)\" d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e')\n}\n.globo-form-id-80652 .globo-form-app .globo-form-control .checkbox-wrapper .checkbox-input:checked ~ .checkbox-label:before {\n    border-color: var(--gfb-primary-color);\n    box-shadow: 0 4px 6px rgba(50,50,93,0.11), 0 1px 3px rgba(0,0,0,0.08);\n    background-color: var(--gfb-primary-color);\n}\n.globo-form-id-80652 .globo-form-app .step.-completed .step__number,\n.globo-form-id-80652 .globo-form-app .line.-progress,\n.globo-form-id-80652 .globo-form-app .line.-start{\n    background-color: var(--gfb-primary-color);\n}\n.globo-form-id-80652 .globo-form-app .checkmark__check,\n.globo-form-id-80652 .globo-form-app .checkmark__circle{\n    stroke: var(--gfb-primary-color);\n}\n.globo-form-id-80652 .floating-button{\n    background-color: var(--gfb-primary-color);\n}\n.globo-form-id-80652 .globo-form-app .globo-form-control .checkbox-wrapper .checkbox-input ~ .checkbox-label:before,\n.globo-form-app .globo-form-control .radio-wrapper .radio-input ~ .radio-label:after{\n    border-color : var(--gfb-primary-color);\n}\n.globo-form-id-80652 .flatpickr-day.selected, \n.globo-form-id-80652 .flatpickr-day.startRange, \n.globo-form-id-80652 .flatpickr-day.endRange, \n.globo-form-id-80652 .flatpickr-day.selected.inRange, \n.globo-form-id-80652 .flatpickr-day.startRange.inRange, \n.globo-form-id-80652 .flatpickr-day.endRange.inRange, \n.globo-form-id-80652 .flatpickr-day.selected:focus, \n.globo-form-id-80652 .flatpickr-day.startRange:focus, \n.globo-form-id-80652 .flatpickr-day.endRange:focus, \n.globo-form-id-80652 .flatpickr-day.selected:hover, \n.globo-form-id-80652 .flatpickr-day.startRange:hover, \n.globo-form-id-80652 .flatpickr-day.endRange:hover, \n.globo-form-id-80652 .flatpickr-day.selected.prevMonthDay, \n.globo-form-id-80652 .flatpickr-day.startRange.prevMonthDay, \n.globo-form-id-80652 .flatpickr-day.endRange.prevMonthDay, \n.globo-form-id-80652 .flatpickr-day.selected.nextMonthDay, \n.globo-form-id-80652 .flatpickr-day.startRange.nextMonthDay, \n.globo-form-id-80652 .flatpickr-day.endRange.nextMonthDay {\n    background: var(--gfb-primary-color);\n    border-color: var(--gfb-primary-color);\n}\n.globo-form-id-80652 .globo-paragraph {\n    background: #fff;\n    color: var(--gfb-color-textColor, #000);\n    width: 100%!important;\n}\n\n[dir=\"rtl\"] .globo-form-app .header .title,\n[dir=\"rtl\"] .globo-form-app .header .description,\n[dir=\"rtl\"] .globo-form-id-80652 .globo-form-app .globo-heading,\n[dir=\"rtl\"] .globo-form-id-80652 .globo-form-app .globo-label,\n[dir=\"rtl\"] .globo-form-id-80652 .globo-form-app .globo-form-control label.globo-label,\n[dir=\"rtl\"] .globo-form-id-80652 .globo-form-app .globo-form-control label.globo-label span.label-content{\n    text-align: right;\n}\n\n[dir=\"rtl\"] .globo-form-app .line {\n    left: unset;\n    right: 50%;\n}\n\n[dir=\"rtl\"] .globo-form-id-80652 .globo-form-app .line.-start {\n    left: unset;    \n    right: 0%;\n}\n\n\u003c\/style\u003e\n\n\n\n\n\u003cdiv class=\"globo-form-app default-layout gfb-style-flat  gfb-font-size-medium\" data-id=80652\u003e\n    \n    \u003cdiv class=\"header dismiss hidden\" onclick=\"Globo.FormBuilder.closeModalForm(this)\"\u003e\n        \u003csvg width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n    \u003c\/div\u003e\n    \u003cform class=\"g-container\" novalidate action=\"https:\/\/app.powerfulform.com\/api\/front\/form\/80652\/send\" method=\"POST\" enctype=\"multipart\/form-data\" data-id=80652\u003e\n        \n            \n        \n        \n            \u003cdiv class=\"globo-formbuilder-wizard\" data-id=80652\u003e\n                \u003cdiv class=\"wizard__content\"\u003e\n                    \u003cheader class=\"wizard__header\"\u003e\n                        \u003cdiv class=\"wizard__steps\"\u003e\n                        \u003cnav class=\"steps hidden\"\u003e\n                            \n                            \n                                \n                            \n                            \n                                \n                                \n                                \n                                \n                                \u003cdiv class=\"step last \" data-element-id=\"group-1\"  data-step=\"0\" \u003e\n                                    \u003cdiv class=\"step__content\"\u003e\n                                        \u003cp class=\"step__number\"\u003e\u003c\/p\u003e\n                                        \u003csvg class=\"checkmark\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=52 height=52 viewBox=\"0 0 52 52\"\u003e\n                                            \u003ccircle class=\"checkmark__circle\" cx=\"26\" cy=\"26\" r=\"25\" fill=\"none\"\/\u003e\n                                            \u003cpath class=\"checkmark__check\" fill=\"none\" d=\"M14.1 27.2l7.1 7.2 16.7-16.8\"\/\u003e\n                                        \u003c\/svg\u003e\n                                        \u003cdiv class=\"lines\"\u003e\n                                            \n                                                \u003cdiv class=\"line -start\"\u003e\u003c\/div\u003e\n                                            \n                                            \u003cdiv class=\"line -background\"\u003e\n                                            \u003c\/div\u003e\n                                            \u003cdiv class=\"line -progress\"\u003e\n                                            \u003c\/div\u003e\n                                        \u003c\/div\u003e  \n                                    \u003c\/div\u003e\n                                \u003c\/div\u003e\n                            \n                        \u003c\/nav\u003e\n                        \u003c\/div\u003e\n                    \u003c\/header\u003e\n                    \u003cdiv class=\"panels\"\u003e\n                        \n                        \n                        \n                        \n                        \u003cdiv class=\"panel \" data-element-id=\"group-1\" data-id=80652  data-step=\"0\" style=\"padding-top:0\"\u003e\n                            \n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='html'\u003e\n    \u003cdiv id=\"html-1\"\u003e\u003ch4\u003eCompany Info \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='text'\u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-text-1\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Company Name\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Company Name\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cinput type=\"text\"  data-type=\"text\" class=\"flat-input\" id=\"80652-text-1\" name=\"text-1\" placeholder=\"Company Name\" presence maxlength=\"100\" \u003e\n    \u003c\/div\u003e\n    \n        \u003csmall class=\"help-text globo-description\"\u003e\u003c\/small\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-3-column \"  data-type='select' data-default-value=\"United States\" data-type=\"select\" \u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-select-7\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Country\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Country\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \n    \n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cselect data-searchable=\"\" name=\"select-7\"  id=\"80652-select-7\" class=\"flat-input wide\" presence\u003e\n            \u003coption  value=\"\" disabled=\"disabled\"\u003eCountry\u003c\/option\u003e\n            \n            \u003coption value=\"United States\" selected=\"selected\"\u003eUnited States\u003c\/option\u003e\n            \n        \u003c\/select\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-3-column \"  data-type='select' data-default-value=\"\" data-type=\"select\" \u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-select-1\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Interested Product Category\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Interested Product Category\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \n    \n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cselect data-searchable=\"false\" name=\"select-1\"  id=\"80652-select-1\" class=\"flat-input wide\" presence\u003e\n            \u003coption selected=\"selected\" value=\"\" disabled=\"disabled\"\u003eInterested Product Category\u003c\/option\u003e\n            \n            \u003coption value=\"RestaurantandFoodService\" \u003eRestaurantandFoodService\u003c\/option\u003e\n            \n            \u003coption value=\"Automotive\" \u003eAutomotive\u003c\/option\u003e\n            \n            \u003coption value=\"LawnandGarden\" \u003eLawnandGarden\u003c\/option\u003e\n            \n            \u003coption value=\"Material Handling\" \u003eMaterial Handling\u003c\/option\u003e\n            \n            \u003coption value=\"Building and Construction\" \u003eBuilding and Construction\u003c\/option\u003e\n            \n            \u003coption value=\"Power Tools\" \u003ePower Tools\u003c\/option\u003e\n            \n            \u003coption value=\"AgricultureandForestry Equipment\" \u003eAgricultureandForestry Equipment\u003c\/option\u003e\n            \n        \u003c\/select\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-3-column \"  data-type='select' data-default-value=\"\" data-type=\"select\" \u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-select-2\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Annual Purchase Plan\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Annual Purchase Plan\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \n    \n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cselect data-searchable=\"false\" name=\"select-2\"  id=\"80652-select-2\" class=\"flat-input wide\" presence\u003e\n            \u003coption selected=\"selected\" value=\"\" disabled=\"disabled\"\u003eAnnual Purchase Plan\u003c\/option\u003e\n            \n            \u003coption value=\"$5,000-$25,000\" \u003e$5,000-$25,000\u003c\/option\u003e\n            \n            \u003coption value=\"$25,000-$50,000\" \u003e$25,000-$50,000\u003c\/option\u003e\n            \n            \u003coption value=\"$50,000-$100,000\" \u003e$50,000-$100,000\u003c\/option\u003e\n            \n            \u003coption value=\"$100,000-$250,000\" \u003e$100,000-$250,000\u003c\/option\u003e\n            \n            \u003coption value=\"$250,000$+\" \u003e$250,000$+\u003c\/option\u003e\n            \n        \u003c\/select\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-3-column \"  data-type='url'\u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-url-1\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Company\/Store Website\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Company\/Store Website\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cinput type=\"text\"  data-type=\"url\" class=\"flat-input\" id=\"80652-url-1\" name=\"url-1\" placeholder=\"Company\/Store Website (Optional)\"  maxlength=\"100\" \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-3-column \"  data-type='select' data-default-value=\"\" data-type=\"select\" \u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-select-3\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Industry\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Industry\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \n    \n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cselect data-searchable=\"false\" name=\"select-3\"  id=\"80652-select-3\" class=\"flat-input wide\" presence\u003e\n            \u003coption selected=\"selected\" value=\"\" disabled=\"disabled\"\u003eIndustry\u003c\/option\u003e\n            \n            \u003coption value=\"Property Investment\" \u003eProperty Investment\u003c\/option\u003e\n            \n            \u003coption value=\"Property Management,Non-Residential\" \u003eProperty Management,Non-Residential\u003c\/option\u003e\n            \n            \u003coption value=\"Property Management,Single and Multifamily\" \u003eProperty Management,Single and Multifamily\u003c\/option\u003e\n            \n            \u003coption value=\"Property Owner\" \u003eProperty Owner\u003c\/option\u003e\n            \n            \u003coption value=\"Recreation\/Entertainment\" \u003eRecreation\/Entertainment\u003c\/option\u003e\n            \n            \u003coption value=\"Roofing\" \u003eRoofing\u003c\/option\u003e\n            \n            \u003coption value=\"SingleFamilyResidentialConstruction\" \u003eSingleFamilyResidentialConstruction\u003c\/option\u003e\n            \n            \u003coption value=\"Other\" \u003eOther\u003c\/option\u003e\n            \n        \u003c\/select\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-3-column \"  data-type='select' data-default-value=\"\" data-type=\"select\" \u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-select-4\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Cooperation Type\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Cooperation Type\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \n    \n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cselect data-searchable=\"false\" name=\"select-4\"  id=\"80652-select-4\" class=\"flat-input wide\" presence\u003e\n            \u003coption selected=\"selected\" value=\"\" disabled=\"disabled\"\u003eCooperation Type\u003c\/option\u003e\n            \n            \u003coption value=\"Drop Shipping\" \u003eDrop Shipping\u003c\/option\u003e\n            \n            \u003coption value=\"Brick and Mortar Sales\" \u003eBrick and Mortar Sales\u003c\/option\u003e\n            \n            \u003coption value=\"OnlineRetailer\" \u003eOnlineRetailer\u003c\/option\u003e\n            \n            \u003coption value=\"BrandAgent\" \u003eBrandAgent\u003c\/option\u003e\n            \n        \u003c\/select\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='html'\u003e\n    \u003cdiv id=\"html-2\"\u003e\u003ch4\u003eRequirement Details \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='textarea'\u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-textarea-1\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Requirement Details\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Requirement Details\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \u003ctextarea id=\"80652-textarea-1\"  data-type=\"textarea\" class=\"flat-input\" rows=\"3\" name=\"textarea-1\" placeholder=\"Type your interested product line, procurement plan or the cooperation way here, so we can follow better, thanks!\" presence maxlength=\"1000\" \u003e\u003c\/textarea\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='select' data-default-value=\"\" data-type=\"select\" \u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-select-5\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Sales Channel\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Sales Channel\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \n    \n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cselect data-searchable=\"false\" name=\"select-5\"  id=\"80652-select-5\" class=\"flat-input wide\" presence\u003e\n            \u003coption selected=\"selected\" value=\"\" disabled=\"disabled\"\u003eWhat is your current sales channel?\u003c\/option\u003e\n            \n            \u003coption value=\"Online Platform\" \u003eOnline Platform\u003c\/option\u003e\n            \n            \u003coption value=\"Brick and MortarSales\" \u003eBrick and MortarSales\u003c\/option\u003e\n            \n            \u003coption value=\"Social Media Platform\" \u003eSocial Media Platform\u003c\/option\u003e\n            \n            \u003coption value=\"Others\" \u003eOthers\u003c\/option\u003e\n            \n        \u003c\/select\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='select' data-default-value=\"\" data-type=\"select\" \u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-select-6\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Annual Revenue\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Annual Revenue\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \n    \n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cselect data-searchable=\"false\" name=\"select-6\"  id=\"80652-select-6\" class=\"flat-input wide\" presence\u003e\n            \u003coption selected=\"selected\" value=\"\" disabled=\"disabled\"\u003eWhat is your company's annual revenue?\u003c\/option\u003e\n            \n            \u003coption value=\"$5,000-$25,000\" \u003e$5,000-$25,000\u003c\/option\u003e\n            \n            \u003coption value=\"$25,000-$50,000\" \u003e$25,000-$50,000\u003c\/option\u003e\n            \n            \u003coption value=\"$50,000-$100,000\" \u003e$50,000-$100,000\u003c\/option\u003e\n            \n            \u003coption value=\"$100,000-$250,000\" \u003e$100,000-$250,000\u003c\/option\u003e\n            \n            \u003coption value=\"$250,000$+\" \u003e$250,000$+\u003c\/option\u003e\n            \n        \u003c\/select\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='text'\u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-text-3\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Business\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Business\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cinput type=\"text\"  data-type=\"text\" class=\"flat-input\" id=\"80652-text-3\" name=\"text-3\" placeholder=\"We'd like to know more about your business (Optional)\"  maxlength=\"1000\" \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='html'\u003e\n    \u003cdiv id=\"html-3\"\u003e\u003ch4\u003eContact Person \u003cspan style=\"color: red;\"\u003e*\u003c\/span\u003e\u003c\/h4\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-1-column \"  data-type='text'\u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-text-4\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Name\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Name\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cinput type=\"text\"  data-type=\"text\" class=\"flat-input\" id=\"80652-text-4\" name=\"text-4\" placeholder=\"Name\" presence maxlength=\"100\" \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-3-column \"  data-type='text'\u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-text-5\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Job Title\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Job Title\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cinput type=\"text\"  data-type=\"text\" class=\"flat-input\" id=\"80652-text-5\" name=\"text-5\" placeholder=\"Job Title\" presence maxlength=\"100\" \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-3-column \"  data-type='email'\u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-email-1\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Business email\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Business email\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \u003cdiv class=\"globo-form-input\"\u003e\n        \n        \n        \u003cinput type=\"text\"  data-type=\"email\" class=\"flat-input\" id=\"80652-email-1\" name=\"email-1\" placeholder=\"Business email is required\" presence maxlength=\"100\" \u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                                    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n    \n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"globo-form-control layout-3-column custom-phone\"  data-type='phone' data-intl-phone\u003e\n    \n    \n        \n\u003clabel tabindex=\"0\" for=\"80652-phone-1\" class=\"flat-label globo-label gfb__label-v2 \" data-label=\"Phone Number\"\u003e\n    \u003cspan class=\"label-content\" data-label=\"Phone Number\"\u003e\u003c\/span\u003e\n    \n        \u003cspan\u003e\u003c\/span\u003e\n    \n\u003c\/label\u003e\n\n    \n\n    \u003cdiv class=\"globo-form-input gfb__phone-placeholder\" input-placeholder=\"\"\u003e\n        \n        \n        \u003cinput type=\"text\"  data-type=\"phone\" class=\"flat-input\" id=\"80652-phone-1\" name=\"phone-1\" placeholder=\"\" presence maxlength=\"100\" validate  default-country-code=\"us\"\u003e\n    \u003c\/div\u003e\n    \n    \u003csmall class=\"messages\"\u003e\u003c\/small\u003e\n\u003c\/div\u003e\n\n\n                                \n                            \n                            \n                                \n                            \n                        \u003c\/div\u003e\n                        \n                    \u003c\/div\u003e\n                    \n                    \u003cdiv class=\"message error\" data-other-error=\"Something went wrong, please try again\"\u003e\n                        \u003cdiv class=\"content\"\u003e\u003c\/div\u003e\n                        \u003cdiv class=\"dismiss\" onclick=\"Globo.FormBuilder.dismiss(this)\"\u003e\n                            \u003csvg width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n                        \u003c\/div\u003e\n                    \u003c\/div\u003e\n                    \n                        \n                        \n                        \u003cdiv class=\"message success\"\u003e\n                            \n                                \u003cdiv class=\"gfb__content-title\"\u003eThanks for getting in touch!\u003c\/div\u003e\n                            \n                            \u003cdiv class=\"gfb__discount-wrapper\" onclick=\"Globo.FormBuilder.handleCopyDiscountCode(this)\"\u003e\n                                \u003cdiv class=\"gfb__content-discount\"\u003e\n                                    \u003cspan class=\"gfb__discount-code\"\u003e\u003c\/span\u003e\n                                    \u003cdiv class=\"gfb__copy\"\u003e\n                                        \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z\"\/\u003e\u003c\/svg\u003e\n                                    \u003c\/div\u003e\n                                    \u003cdiv class=\"gfb__copied\"\u003e\n                                        \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z\"\/\u003e\u003c\/svg\u003e\n                                    \u003c\/div\u003e        \n                                \u003c\/div\u003e\n                            \u003c\/div\u003e\n                            \u003cdiv class=\"content\"\u003e\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\n\u003cp\u003e\u0026nbsp;\u003c\/p\u003e\n\u003cp\u003eHave a great day!\u003c\/p\u003e\u003c\/div\u003e\n                            \u003cdiv class=\"dismiss\" onclick=\"Globo.FormBuilder.dismiss(this)\"\u003e\n                                \u003csvg width=20 height=20 width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n                            \u003c\/div\u003e\n                        \u003c\/div\u003e\n                        \n                        \n                    \n                    \u003cdiv class=\"gfb__footer wizard__footer\"\u003e\n                        \n                            \n                            \u003cdiv class=\"description globo-description\"\u003e\u003c\/div\u003e\n                            \n                        \n                        \u003cbutton type=\"button\" class=\"action previous hidden flat-button\"\u003ePrevious\u003c\/button\u003e\n                        \u003cbutton type=\"button\" class=\"action next submit flat-button\" data-submitting-text=\"\" data-submit-text='\u003cspan class=\"spinner\"\u003e\u003c\/span\u003eSubmit' data-next-text=\"Next\" \u003e\u003cspan class=\"spinner\"\u003e\u003c\/span\u003eNext\u003c\/button\u003e\n                        \n                        \u003cp class=\"wizard__congrats-message\"\u003e\u003c\/p\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \n        \u003cinput type=\"hidden\" value=\"\" name=\"customer[id]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"customer[email]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"customer[name]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"page[title]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"page[href]\"\u003e\n        \u003cinput type=\"hidden\" value=\"\" name=\"_keyLabel\"\u003e\n    \u003c\/form\u003e\n    \n    \n    \u003cdiv class=\"message success\"\u003e\n        \n            \u003cdiv class=\"gfb__content-title\"\u003eThanks for getting in touch!\u003c\/div\u003e\n        \n        \u003cdiv class=\"gfb__discount-wrapper\" onclick=\"Globo.FormBuilder.handleCopyDiscountCode(this)\"\u003e\n            \u003cdiv class=\"gfb__content-discount\"\u003e\n                \u003cspan class=\"gfb__discount-code\"\u003e\u003c\/span\u003e\n                \u003cdiv class=\"gfb__copy\"\u003e\n                    \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z\"\/\u003e\u003c\/svg\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"gfb__copied\"\u003e\n                    \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath d=\"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z\"\/\u003e\u003c\/svg\u003e\n                \u003c\/div\u003e        \n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"content\"\u003e\u003cp\u003eWe appreciate you contacting us. One of our colleagues will get back in touch with you soon!\u003c\/p\u003e\n\u003cp\u003e\u0026nbsp;\u003c\/p\u003e\n\u003cp\u003eHave a great day!\u003c\/p\u003e\u003c\/div\u003e\n        \u003cdiv class=\"dismiss\" onclick=\"Globo.FormBuilder.dismiss(this)\"\u003e\n            \u003csvg width=20 height=20 viewBox=\"0 0 20 20\" class=\"\" focusable=\"false\" aria-hidden=\"true\"\u003e\u003cpath d=\"M11.414 10l4.293-4.293a.999.999 0 1 0-1.414-1.414L10 8.586 5.707 4.293a.999.999 0 1 0-1.414 1.414L8.586 10l-4.293 4.293a.999.999 0 1 0 1.414 1.414L10 11.414l4.293 4.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z\" fill-rule=\"evenodd\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n    \n    \n\u003c\/div\u003e\n\n\u003c\/div\u003e\n"}}[80652];
  1521.      
  1522.    
  1523.  
  1524.  window.Globo.FormBuilder.url = window.Globo.FormBuilder.shop.url;
  1525.  window.Globo.FormBuilder.CDN_URL = window.Globo.FormBuilder.shop.CDN_URL ?? window.Globo.FormBuilder.shop.url;
  1526.  window.Globo.FormBuilder.themeOs20 = true;
  1527.  window.Globo.FormBuilder.searchProductByJson = true;
  1528.  
  1529.  
  1530.  window.Globo.FormBuilder.__webpack_public_path_2__ = "https://cdn.shopify.com/extensions/c0dfd5f3-ed7b-4ea0-8fc3-b47bf3cffa45/powerful-form-builder-194/assets/";Globo.FormBuilder.page = {
  1531.    href : window.location.href,
  1532.    type: "index"
  1533.  };
  1534.  Globo.FormBuilder.page.title = document.title
  1535.  
  1536.  
  1537.  if(window.AVADA_SPEED_WHITELIST){
  1538.    const pfbs_w = new RegExp("powerful-form-builder", 'i')
  1539.    if(Array.isArray(window.AVADA_SPEED_WHITELIST)){
  1540.      window.AVADA_SPEED_WHITELIST.push(pfbs_w)
  1541.    }else{
  1542.      window.AVADA_SPEED_WHITELIST = [pfbs_w]
  1543.    }
  1544.  }
  1545. </script>
  1546. <script src="https://cdn.shopify.com/extensions/c0dfd5f3-ed7b-4ea0-8fc3-b47bf3cffa45/powerful-form-builder-194/assets/globo.formbuilder.index.js" defer="defer"></script>
  1547.  
  1548.  
  1549.  
  1550.  
  1551. <!-- END app block --><!-- BEGIN app block: shopify://apps/foxkit-sales-boost/blocks/foxkit-theme-helper/13f41957-6b79-47c1-99a2-e52431f06fff -->
  1552. <style data-shopify>
  1553.  
  1554.  :root {
  1555.   --foxkit-border-radius-btn: 10px;
  1556.   --foxkit-height-btn: 35px;
  1557.   --foxkit-btn-primary-bg: rgba(250, 66, 56, 1);
  1558.   --foxkit-btn-primary-text: rgba(255, 255, 255, 1);
  1559.   --foxkit-btn-primary-hover-bg: rgba(16, 116, 233, 1);
  1560.   --foxkit-btn-primary-hover-text: rgba(255, 255, 255, 1);
  1561.   --foxkit-btn-secondary-bg: rgba(16, 116, 233, 1);
  1562.   --foxkit-btn-secondary-text: rgba(255, 255, 255, 1);
  1563.   --foxkit-btn-secondary-hover-bg: #000000;
  1564.   --foxkit-btn-secondary-hover-text: #FFFFFF;
  1565.   --foxkit-text-color: #666666;
  1566.   --foxkit-heading-text-color: #000000;
  1567.   --foxkit-prices-color: rgba(208, 2, 27, 1);
  1568.   --foxkit-badge-color: rgba(16, 116, 233, 1);
  1569.   --foxkit-border-color: #ebebeb;
  1570.  }
  1571.  
  1572.  .foxkit-critical-hidden {
  1573.   display: none !important;
  1574.  }
  1575. </style>
  1576. <script>
  1577.   var ShopifyRootUrl = "\/";
  1578.   var _useRootBaseUrl = null
  1579.   window.FoxKitThemeHelperEnabled = true;
  1580.   window.FoxKitPlugins = window.FoxKitPlugins || {}
  1581.   window.FoxKitStrings = window.FoxKitStrings || {}
  1582.   window.FoxKitAssets = window.FoxKitAssets || {}
  1583.   window.FoxKitModules = window.FoxKitModules || {}
  1584.   window.FoxKitSettings = {
  1585.     discountPrefix: "FX",
  1586.     showWaterMark: null,
  1587.     multipleLanguages: false,
  1588.     primaryLocale: true,
  1589.     combineWithProductDiscounts: true,
  1590.     enableAjaxAtc: true,
  1591.     discountApplyBy: "shopify_functions",
  1592.     foxKitBaseUrl: "foxkit.app",
  1593.     shopDomain: "https:\/\/www.garvee.com",
  1594.     baseUrl: _useRootBaseUrl ? "/" : ShopifyRootUrl.endsWith('/') ? ShopifyRootUrl : ShopifyRootUrl + '/',
  1595.     currencyCode: "USD",
  1596.     moneyFormat: !!window.MinimogTheme ? window.MinimogSettings.money_format : "${{amount}}",
  1597.     moneyWithCurrencyFormat: "${{amount}} USD",
  1598.     template: "index",
  1599.     templateName: "index",
  1600.     optimizePerformance: false,routes: {
  1601.       root: "\/",
  1602.       cart: "\/cart",
  1603.       cart_add_url: '/cart/add',
  1604.       cart_change_url: '/cart/change',
  1605.       cart_update_url: '/cart/update'
  1606.     },
  1607.     dateNow: "2025\/06\/05 22:13:00+0800 (CST)",
  1608.     isMinimogTheme: !!window.MinimogTheme,
  1609.     designMode: false,
  1610.     pageType: "index",
  1611.     pageUrl: "\/",
  1612.     selectors: {}
  1613.   };
  1614.  
  1615.  FoxKitStrings = {"en":{"date_format":"MM\/dd\/yyyy","discount_summary":"You will get \u003cstrong\u003e{discount_value} OFF\u003c\/strong\u003e on each product","discount_title":"SPECIAL OFFER","free":"FREE","add_button":"Add","add_to_cart_button":"Add to cart","added_button":"Added","bundle_button":"Add selected item(s)","bundle_select":"Select","bundle_selected":"Selected","bundle_total":"Total price","bundle_saved":"Saved","bundle_this_item":"This item","bundle_items_added":"The products in the bundle are added to the cart.","qty_discount_title":"{item_count} item(s) get {discount_value} OFF","qty_discount_note":"on each product","prepurchase_title":"Frequently bought with \"{product_title}\"","prepurchase_added":"You just added","incart_title":"Customers also bought with \"{product_title}\"","sizechart_button":"Size chart","field_name":"Enter your name","field_email":"Enter your email","field_birthday":"Date of birth","discount_noti":"* Discount will be calculated and applied at checkout","fox_discount_noti":"* You are entitled to 1 discount offer of \u003cspan\u003e{price}\u003c\/span\u003e (\u003cspan\u003e{discount_title}\u003c\/span\u003e). This offer \u003cb\u003ecan't be combined\u003c\/b\u003e with any other discount you add here!","bis_open":"Notify me when available","bis_heading":"Back in stock alert 📬","bis_desc":"We will send you a notification as soon as this product is available again.","bis_submit":"Notify me","bis_email":"Your email","bis_name":"Your name","bis_phone":"Your phone number","bis_note":"Your note","bis_signup":"Email me with news and offers","bis_thankyou":"Thank you! We'll send you an email when this product is available!","preorder_discount_title":"🎁 Preorder now to get \u003cstrong\u003e{discount_value} OFF\u003c\/strong\u003e","preorder_shipping_note":"🚚 Item will be delivered on or before \u003cstrong\u003e{eta}\u003c\/strong\u003e","preorder_button":"Pre-order","preorder_badge":"Pre-Order","preorder_end_note":"🔥 Preorder will end at \u003cstrong\u003e{end_time}\u003c\/strong\u003e","required_fields":"Please fill all the required fields(*) before Add to cart!","view_cart":"View cart","shipping_label":"Shipping","item_added_to_cart":"{product_title} is added to cart!","email_used":"Email has already been used!","copy_button":"Copy","copied_button":"Copied"}};
  1616.  
  1617.  FoxKitAssets = {
  1618.    sizechart: "https:\/\/cdn.shopify.com\/extensions\/5cf5922f-976b-4dca-b723-47877c0bf430\/foxkit-sales-boost-394\/assets\/size-chart.js",
  1619.    preorder: "https:\/\/cdn.shopify.com\/extensions\/5cf5922f-976b-4dca-b723-47877c0bf430\/foxkit-sales-boost-394\/assets\/preorder.js",
  1620.    preorderBadge: "https:\/\/cdn.shopify.com\/extensions\/5cf5922f-976b-4dca-b723-47877c0bf430\/foxkit-sales-boost-394\/assets\/preorder-badge.js",
  1621.    prePurchase: "https:\/\/cdn.shopify.com\/extensions\/5cf5922f-976b-4dca-b723-47877c0bf430\/foxkit-sales-boost-394\/assets\/pre-purchase.js",
  1622.    prePurchaseStyle: "https:\/\/cdn.shopify.com\/extensions\/5cf5922f-976b-4dca-b723-47877c0bf430\/foxkit-sales-boost-394\/assets\/pre-purchase.css",
  1623.    inCart: "https:\/\/cdn.shopify.com\/extensions\/5cf5922f-976b-4dca-b723-47877c0bf430\/foxkit-sales-boost-394\/assets\/incart.js",
  1624.    inCartStyle: "https:\/\/cdn.shopify.com\/extensions\/5cf5922f-976b-4dca-b723-47877c0bf430\/foxkit-sales-boost-394\/assets\/incart.css",
  1625.    productCountdown: "https:\/\/cdn.shopify.com\/extensions\/5cf5922f-976b-4dca-b723-47877c0bf430\/foxkit-sales-boost-394\/assets\/product-countdown.css"
  1626.  }
  1627.  FoxKitPlugins.popUpLock = false
  1628.  FoxKitPlugins.luckyWheelLock = false
  1629.  
  1630.  
  1631.  
  1632.    FoxKitPlugins.Countdown = Object.values({"67760e7702e0bd2448ed4657":{"target_products":[],"time_unit_day":"","time_unit_hour":"hrs","time_unit_min":"mins","time_unit_sec":"secs","deleted":false,"locked":false,"_id":"67760e7702e0bd2448ed4657","active":true,"title":"🔥Price Drop🔥","duration":5,"expires_date":"2026-02-02T02:21:17.000Z","cdt_type":"evergreen","cdt_style":"style-2","applies_to":"all_products","schedule":false,"total_quantity":100,"sold_from":3,"sold_to":15,"show_flashsale":false,"schedule_time":"2025-01-15T09:19:09.024Z","shop":"mygarvee.myshopify.com","createdAt":"2025-01-02T03:56:39.059Z","updatedAt":"2025-01-15T09:19:09.668Z","__v":0}}).filter(entry => entry.active).map(entry => ({...(entry || {}), locales: !FoxKitSettings.primaryLocale && entry?.locales?.[Shopify.locale]}))
  1633.    FoxKitPlugins.PreOrder = Object.values({}).filter(entry => entry.active)
  1634.    FoxKitPlugins.PrePurchase = Object.values({}).filter(entry => entry.active)
  1635.    FoxKitPlugins.InCart = Object.values({}).filter(entry => entry.active)
  1636.    FoxKitPlugins.QuantityDiscount = Object.values({"66079889c7efa5471418b396":{"target_products":["gid:\/\/shopify\/Product\/9185499119929","gid:\/\/shopify\/Product\/9185499611449","gid:\/\/shopify\/Product\/9414585975097","gid:\/\/shopify\/Product\/9421365215545","gid:\/\/shopify\/Product\/9336422465849","gid:\/\/shopify\/Product\/9180989784377","gid:\/\/shopify\/Product\/8174557659449"],"sub_title":"  ","highlight_label":"","button_label":"Redeem Now","default_title":"{item_count} item(s) get {discount_value} OFF","sale_badge":"Save {discount_value}","default_selected":0,"discount_titles":["Unlock  Extra 5% OFF"],"deleted":false,"locked":false,"_id":"66079889c7efa5471418b396","active":true,"title":"Extra 5% Off ","offer_heading":"","applies_to":"specific_products","show_variant_selector":false,"layout":"standard","card_radius":7,"hide_submit_button":false,"discounts":[{"min_qty":1,"value":5,"type":"PERCENTAGE","highlighted":false,"title":"Unlock  Extra 5% OFF"}],"shop":"mygarvee.myshopify.com","createdAt":"2024-03-30T04:43:53.390Z","updatedAt":"2024-05-28T06:35:32.555Z","id":"quantitydiscount-1","__v":0},"661e43e819e52c158f601474":{"target_products":["gid:\/\/shopify\/Product\/9257974563129","gid:\/\/shopify\/Product\/9009236541753"],"sub_title":" ","highlight_label":"","button_label":"Unlock Code","default_title":"{item_count} item(s) get {discount_value} OFF","sale_badge":"Save {discount_value}","default_selected":0,"discount_titles":["ENJOY EXTRA $8 OFF "],"deleted":false,"locked":false,"_id":"661e43e819e52c158f601474","active":true,"title":"ENJOY EXTRA $10 OFF for  Engine Creeper","offer_heading":" ","applies_to":"specific_products","show_variant_selector":false,"layout":"standard","card_radius":7,"hide_submit_button":false,"discounts":[{"min_qty":1,"value":8,"type":"FIXED_AMOUNT","highlighted":true,"title":"ENJOY EXTRA $8 OFF "}],"shop":"mygarvee.myshopify.com","createdAt":"2024-04-16T09:24:56.811Z","updatedAt":"2024-05-30T08:55:21.196Z","id":"quantitydiscount-2","__v":0},"66383220c19b714fec7c0c70":{"target_products":["gid:\/\/shopify\/Product\/9323900502329"],"sub_title":" ","highlight_label":"","button_label":"Unlock Code","default_title":"Buy {quantity} get {discount_value} off","sale_badge":"Save {discount_value}","default_selected":0,"discount_titles":[""],"deleted":false,"locked":false,"_id":"66383220c19b714fec7c0c70","active":true,"title":"Buy 2 Get 7% OFF ","offer_heading":"Buy more save more!","applies_to":"specific_products","show_variant_selector":false,"layout":"standard","card_radius":4,"hide_submit_button":false,"discounts":[{"min_qty":2,"value":7,"type":"PERCENTAGE","highlighted":true}],"shop":"mygarvee.myshopify.com","createdAt":"2024-05-06T01:28:00.881Z","updatedAt":"2024-05-06T01:29:41.057Z","id":"quantitydiscount-14","__v":0},"666ffc9d49c36856de2a082f":{"target_products":["gid:\/\/shopify\/Product\/9491287605561","gid:\/\/shopify\/Product\/9491287834937","gid:\/\/shopify\/Product\/9491287769401","gid:\/\/shopify\/Product\/9482972889401","gid:\/\/shopify\/Product\/9482792436025","gid:\/\/shopify\/Product\/9482250879289","gid:\/\/shopify\/Product\/9482973184313"],"sub_title":"on this item","highlight_label":"Applied at checkout","button_label":"Save Now","default_title":"Buy {quantity} get {discount_value} off","sale_badge":"Save {discount_value}","default_selected":0,"discount_titles":[" ENJOY EXTRA 5% OFF "],"deleted":false,"locked":false,"_id":"666ffc9d49c36856de2a082f","active":true,"title":"ENJOY EXTRA 5% OFF for Air conditions1","offer_heading":"","applies_to":"specific_products","show_variant_selector":false,"layout":"standard","card_radius":4,"hide_submit_button":false,"discounts":[{"min_qty":1,"value":5,"type":"PERCENTAGE","highlighted":true,"title":" ENJOY EXTRA 5% OFF "}],"shop":"mygarvee.myshopify.com","createdAt":"2024-06-17T09:06:37.487Z","updatedAt":"2024-08-14T03:03:49.406Z","id":"quantitydiscount-15","__v":0}}).filter(entry => entry.active).map(entry => ({...(entry || {}), locales: !FoxKitSettings.primaryLocale && entry?.locales?.[Shopify.locale]}))
  1637.    FoxKitPlugins.Bundle = Object.values({"66f147e508e592a501d82aad":{"discount":{"value":9,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9864952414521","gid:\/\/shopify\/Product\/9491404915001"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"66f147e508e592a501d82aad","shop":"mygarvee.myshopify.com","active":true,"title":"Raised Garden Bed \u0026 Hose Reel","bundle_heading":"Buy More Save More","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9864952414521":"1","gid:\/\/shopify\/Product\/9491404915001":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9864952414521","active_discount":true,"createdAt":"2024-09-23T10:50:13.390Z","updatedAt":"2025-06-04T09:12:03.956Z","id":"bundle-2","__v":0,"productHandles":["garvee-retractable-garden-hose-reel-5-ppg-335c8xl4","garvee-garden-bed-2-pcs-4-5x2x1ft-galvanized-pho-11y9tnkg"]},"66f14e3708e592a501e321b7":{"discount":{"value":7,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9482229285177","gid:\/\/shopify\/Product\/9488651682105"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"66f14e3708e592a501e321b7","shop":"mygarvee.myshopify.com","active":true,"title":"Buy more save more-oil drain pan","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9482229285177":"1","gid:\/\/shopify\/Product\/9488651682105":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9482229285177","active_discount":true,"createdAt":"2024-09-23T11:17:11.525Z","updatedAt":"2025-05-30T06:08:05.264Z","id":"bundle-4","__v":0,"productHandles":["garvee-electric-oil-drain-pan-pau-0hsm","15-gal-fuel-caddy-pau-0j2fqqq8"]},"66f2151308e592a501ed5738":{"discount":{"value":10,"type":"FIXED_AMOUNT"},"products":["gid:\/\/shopify\/Product\/9863938244921","gid:\/\/shopify\/Product\/9484221382969"],"image_ratio":"square","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"66f2151308e592a501ed5738","shop":"mygarvee.myshopify.com","active":true,"title":"Portable Diesel Tank (GARY) \u0026 Truck Bed Tool Box","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9863938244921":"1","gid:\/\/shopify\/Product\/9484221382969":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9863938244921","active_discount":true,"createdAt":"2024-09-24T01:25:39.846Z","updatedAt":"2025-05-30T07:17:45.486Z","id":"bundle-5","__v":0,"productHandles":["garvee-portable-fuel-tank-58-gallon-pau-0j2of75e","garvee-truck-bed-tool-box-pau-0j6a5168"]},"66f2915008e592a5018b0e48":{"discount":{"value":7,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9482970104121","gid:\/\/shopify\/Product\/9482250879289","gid:\/\/shopify\/Product\/9483257643321"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"66f2915008e592a5018b0e48","shop":"mygarvee.myshopify.com","active":true,"title":"Buy More Save More in Ride On TURCK \u0026 HOME ","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9482970104121":"1","gid:\/\/shopify\/Product\/9482250879289":"1","gid:\/\/shopify\/Product\/9483257643321":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9483257643321","active_discount":true,"createdAt":"2024-09-24T10:15:44.243Z","updatedAt":"2024-10-08T03:43:58.981Z","id":"bundle-7","__v":0,"productHandles":["ride-on-tractor-pto-0ytkg9jh","24v-ride-on-tractor-pto-0z2n5mpd","garvee-kids-wooden-table-chair-set-pto-0yrox7ss"]},"6707901ce386b8d56bb8c118":{"discount":{"value":7,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9483059822905","gid:\/\/shopify\/Product\/9491359334713","gid:\/\/shopify\/Product\/9491359236409"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":false,"deleted":false,"locked":false,"_id":"6707901ce386b8d56bb8c118","shop":"mygarvee.myshopify.com","active":true,"title":"Buy more Save more in Food Holding \u0026 Warming Equipment","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9483059822905":"1","gid:\/\/shopify\/Product\/9491359334713":"1","gid:\/\/shopify\/Product\/9491359236409":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9491359236409","active_discount":true,"createdAt":"2024-10-10T08:28:12.345Z","updatedAt":"2025-05-28T03:12:23.695Z","id":"bundle-10","__v":0,"variants_mapping":{"9483059822905":["49451194712377"],"9491359334713":["49490850545977"],"9491359236409":["49490850382137"]},"productHandles":["11l-deep-fryer-pho-0ydla1ie","garvee-electric-chafer-set-temp-control-pis-00p94893","garvee-electric-chafer-set-temp-control-pis-00p9mewa"]},"6718d6e391c5c27a8698a7fb":{"discount":{"value":7,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9482983539001","gid:\/\/shopify\/Product\/9483012440377"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6718d6e391c5c27a8698a7fb","shop":"mygarvee.myshopify.com","active":true,"title":"PBE_0BSGJSI0 chair + toilet set","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9482983539001":"1","gid:\/\/shopify\/Product\/9483012440377":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9482983539001","active_discount":true,"createdAt":"2024-10-23T10:58:43.414Z","updatedAt":"2025-02-19T10:26:44.828Z","id":"bundle-12","__v":0,"variants_mapping":{"9482983539001":["49450982572345"],"9483012440377":["49451061575993"]},"productHandles":["rolling-walkers-for-seniors-pou-09u8","raised-toilet-seat-pho-0xtfkt95"]},"6758f60dc1a353d93854791a":{"discount":{"value":7,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9482830250297","gid:\/\/shopify\/Product\/9483206361401"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6758f60dc1a353d93854791a","shop":"mygarvee.myshopify.com","active":true,"title":"Easy Access, Free Movement: Ramp and Wheelchair Set","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9482830250297":"1","gid:\/\/shopify\/Product\/9483206361401":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9482830250297","active_discount":true,"createdAt":"2024-12-11T02:16:45.807Z","updatedAt":"2025-05-26T06:43:31.017Z","id":"bundle-13","__v":0,"productHandles":["garvee-transport-chair-lightweight-aluminum-alloy-pbe-0bsgjsi0","garvee-24x42x4-inch-heavy-duty-curb-pho-13zgnbqa"]},"675ff1034e1c694d9d6ab640":{"discount":{"value":15,"type":"FIXED_AMOUNT"},"products":["gid:\/\/shopify\/Product\/9483206492473"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":false,"deleted":false,"locked":false,"_id":"675ff1034e1c694d9d6ab640","shop":"mygarvee.myshopify.com","active":true,"title":"Buy More Save More in Coffee Makers \u0026 Waffle Makers","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9483206492473":"5"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9483206492473","active_discount":true,"createdAt":"2024-12-16T09:21:07.916Z","updatedAt":"2025-04-02T08:34:26.208Z","id":"bundle-14","__v":0,"variants_mapping":{"9483206492473":["49451858166073"]},"productHandles":["garvee-24x42x2-5-inch-heavy-duty-pho-13zggmfz"]},"6833f77b3a517c9056b67aa0":{"discount":{"value":8,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9482991567161","gid:\/\/shopify\/Product\/9482808164665"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6833f77b3a517c9056b67aa0","shop":"mygarvee.myshopify.com","active":true,"title":"Pets grooming products","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9482991567161":"1","gid:\/\/shopify\/Product\/9482808164665":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9482991567161","active_discount":true,"createdAt":"2025-05-26T05:09:15.124Z","updatedAt":"2025-05-29T08:11:04.371Z","id":"bundle-15","__v":0,"productHandles":["electric-dog-grooming-table-pho-130o","5-in-1-pet-grooming-kit-pho-0y50"]},"6833f9b0865bb5905755491f":{"discount":{"value":8,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9590956523833","gid:\/\/shopify\/Product\/9760512835897"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6833f9b0865bb5905755491f","shop":"mygarvee.myshopify.com","active":true,"title":"Bed Frame and Dresser","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9590956523833":"1","gid:\/\/shopify\/Product\/9760512835897":"1"},"design":"design-2","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9590956523833","active_discount":true,"createdAt":"2025-05-26T05:18:40.441Z","updatedAt":"2025-05-27T05:43:48.555Z","id":"bundle-16","__v":0,"variants_mapping":{"9590956523833":["49728413827385"],"9760512835897":["50370219147577"]},"productHandles":["garvee-gaomon-twin-size-bed-frame-pho-10vu8z60-1","garvee-black-tv-stand-pho-16ougtfe"]},"683432ec6398393b9e3f1b88":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9483013751097","gid:\/\/shopify\/Product\/9851317584185","gid:\/\/shopify\/Product\/9483015848249","gid:\/\/shopify\/Product\/9484216631609","gid:\/\/shopify\/Product\/9491407962425","gid:\/\/shopify\/Product\/9845877014841"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":false,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683432ec6398393b9e3f1b88","shop":"mygarvee.myshopify.com","active":true,"title":"Chicken Coop","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9483013751097":"1","gid:\/\/shopify\/Product\/9851317584185":"1","gid:\/\/shopify\/Product\/9483015848249":"1","gid:\/\/shopify\/Product\/9484216631609":"1","gid:\/\/shopify\/Product\/9491407962425":"1","gid:\/\/shopify\/Product\/9845877014841":"1"},"design":"design-1","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9483013751097","active_discount":true,"createdAt":"2025-05-26T09:22:52.292Z","updatedAt":"2025-05-26T09:24:04.808Z","id":"bundle-17","__v":0,"variants_mapping":{"9483013751097":["49451064590649"],"9851317584185":["50675756564793"],"9483015848249":["49451069243705"],"9484216631609":["49456563061049"],"9491407962425":["49490955305273"],"9845877014841":["50658232369465"]},"productHandles":["large-metal-chicken-coop-pho-12vj","garvee-nesting-boxes-for-chickens-6-pho-113k847o","19-gauge-hardware-cloth-pho-0zv8","23-gauge-hardware-cloth-pho-0zva","garvee-hardware-cloth-23-gauge-vinyl-pho-0zva46hb","garvee-1-4inch-48inx50ft-23-gauge-ppg-334a5khl"]},"683434a76738e93bb34e7ff1":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9704130445625","gid:\/\/shopify\/Product\/9737851994425","gid:\/\/shopify\/Product\/9851317584185","gid:\/\/shopify\/Product\/9484216631609","gid:\/\/shopify\/Product\/9491407962425","gid:\/\/shopify\/Product\/9491408552249"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":false,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683434a76738e93bb34e7ff1","shop":"mygarvee.myshopify.com","active":true,"title":"Chicken Coop 2","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9704130445625":"1","gid:\/\/shopify\/Product\/9737851994425":"1","gid:\/\/shopify\/Product\/9851317584185":"1","gid:\/\/shopify\/Product\/9484216631609":"1","gid:\/\/shopify\/Product\/9491407962425":"1","gid:\/\/shopify\/Product\/9491408552249":"1"},"design":"design-1","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9704130445625","active_discount":true,"createdAt":"2025-05-26T09:30:15.533Z","updatedAt":"2025-05-26T09:32:34.321Z","id":"bundle-18","__v":0,"variants_mapping":{"9704130445625":["50151123386681"],"9737851994425":["50281140912441"],"9851317584185":["50675756564793"],"9484216631609":["49456563061049"],"9491407962425":["49490955305273"],"9491408552249":["49490958221625"]},"productHandles":["garvee-large-metal-chicken-coop-upgrade-pho-159pp50i","garvee-chicken-nesting-box-10-compartment-pho-167fun42","garvee-nesting-boxes-for-chickens-6-pho-113k847o","23-gauge-hardware-cloth-pho-0zva","garvee-hardware-cloth-23-gauge-vinyl-pho-0zva46hb","garvee-black-hardware-cloth-1-2-pho-0zv8sn2c"]},"68356cad8b5fabade857431a":{"discount":{"value":8,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9737779347769","gid:\/\/shopify\/Product\/9482872226105"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"68356cad8b5fabade857431a","shop":"mygarvee.myshopify.com","active":true,"title":"End Table and Sofa","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9737779347769":"1","gid:\/\/shopify\/Product\/9482872226105":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9737779347769","active_discount":true,"createdAt":"2025-05-27T07:41:33.632Z","updatedAt":"2025-06-03T10:16:15.133Z","id":"bundle-20","__v":0,"productHandles":["garvee-modern-leather-couch-for-living-pho-15seznqh","garvee-idealhouse-rotating-end-table-360-pho-0zuw88an"]},"6836bfcf79510576b99f5d49":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9508471439673","gid:\/\/shopify\/Product\/9704139587897"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6836bfcf79510576b99f5d49","shop":"mygarvee.myshopify.com","active":true,"title":"10' X 20' Carport \u0026 Carport Top Cover Yellow","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9508471439673":"1","gid:\/\/shopify\/Product\/9704139587897":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9508471439673","active_discount":false,"createdAt":"2025-05-28T07:48:32.002Z","updatedAt":"2025-05-28T07:50:33.232Z","id":"bundle-21","__v":0,"variants_mapping":{"9508471439673":["49546495295801"],"9704139587897":["50151131578681"]},"productHandles":["garvee-10-x20-heavy-duty-carport-pho-113pbac9","garvee-20-x10-carport-top-cover-pau-0jyzv833"]},"6836c0ad3e8bc676b045148e":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9482787324217","gid:\/\/shopify\/Product\/9704139587897"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6836c0ad3e8bc676b045148e","shop":"mygarvee.myshopify.com","active":true,"title":"10' X 20' Carport \u0026 Carport Top Cover Green","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9482787324217":"1","gid:\/\/shopify\/Product\/9704139587897":"1"},"design":"design-2","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9482787324217","active_discount":false,"createdAt":"2025-05-28T07:52:13.371Z","updatedAt":"2025-05-28T07:52:13.371Z","id":"bundle-22","__v":0,"productHandles":["heavy-duty-carport-pho-113p","garvee-20-x10-carport-top-cover-pau-0jyzv833"]},"6836c154de59d776af2230a9":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9508471275833","gid:\/\/shopify\/Product\/9704139751737"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6836c154de59d776af2230a9","shop":"mygarvee.myshopify.com","active":true,"title":"13' X 20' Carport \u0026 Carport Top Cover Yellow","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9508471275833":"1","gid:\/\/shopify\/Product\/9704139751737":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9508471275833","active_discount":false,"createdAt":"2025-05-28T07:55:00.999Z","updatedAt":"2025-05-28T07:55:00.999Z","id":"bundle-23","__v":0,"productHandles":["garvee-13-x20-carport-heavy-duty-pho-113pmjqm","garvee-20-x13-carport-top-cover-pau-0jyzqchw"]},"6836c1c4de59d776af224e67":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9491279610169","gid:\/\/shopify\/Product\/9704130249017"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6836c1c4de59d776af224e67","shop":"mygarvee.myshopify.com","active":true,"title":"13' X 20' Carport \u0026 Carport Top Cover Grey","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9491279610169":"1","gid:\/\/shopify\/Product\/9704130249017":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9491279610169","active_discount":false,"createdAt":"2025-05-28T07:56:52.767Z","updatedAt":"2025-05-28T07:56:52.767Z","id":"bundle-24","__v":0,"productHandles":["garvee-heavy-duty-carport-pho-113p6a4n","garvee-top-cover-13x20ft-carport-gray-pau-0jyz47g2"]},"6836c3e0b69da076a9046720":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9737823912249","gid:\/\/shopify\/Product\/9864975352121"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6836c3e0b69da076a9046720","shop":"mygarvee.myshopify.com","active":true,"title":"Garden Cart \u0026 Garden Bed","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9737823912249":"1","gid:\/\/shopify\/Product\/9864975352121":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9737823912249","active_discount":false,"createdAt":"2025-05-28T08:05:52.052Z","updatedAt":"2025-05-28T08:05:52.052Z","id":"bundle-25","__v":0,"productHandles":["garvee-1400lbs-steel-garden-cart-heavy-pho-333emix4","garvee-raised-garden-bed-galvanized-outdoor-pho-15ezm81l"]},"6836c77ede59d776af23563a":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9508470456633","gid:\/\/shopify\/Product\/9864945434937"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6836c77ede59d776af23563a","shop":"mygarvee.myshopify.com","active":true,"title":"Umbrella \u0026 Outdoor Funiture","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9508470456633":"1","gid:\/\/shopify\/Product\/9864945434937":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9508470456633","active_discount":false,"createdAt":"2025-05-28T08:21:18.066Z","updatedAt":"2025-05-28T08:21:18.066Z","id":"bundle-26","__v":0,"productHandles":["garvee-patio-lounge-chairs-outdoor-pho-12e1vsgz","garvee-15ft-rectangle-patio-umbrella-with-ppg-334kkt76"]},"6836c7b03e8bc676b0464c6b":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9864936882489","gid:\/\/shopify\/Product\/9864950710585"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6836c7b03e8bc676b0464c6b","shop":"mygarvee.myshopify.com","active":true,"title":"Umbrella \u0026 Outdoor Funiture","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9864936882489":"1","gid:\/\/shopify\/Product\/9864950710585":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9864936882489","active_discount":false,"createdAt":"2025-05-28T08:22:08.862Z","updatedAt":"2025-05-28T08:22:08.862Z","id":"bundle-27","__v":0,"productHandles":["garvee-3-piece-outdoor-wicker-patio-bistro-set-pho-34tyusse","garvee-10ft-solar-lights-offset-patio-ppg-33544hte"]},"6836c855de59d776af238010":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9491403735353","gid:\/\/shopify\/Product\/9864941535545"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6836c855de59d776af238010","shop":"mygarvee.myshopify.com","active":true,"title":"Umbrella \u0026 Outdoor Funiture","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9491403735353":"1","gid:\/\/shopify\/Product\/9864941535545":"1"},"design":"design-2","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9491403735353","active_discount":false,"createdAt":"2025-05-28T08:24:53.652Z","updatedAt":"2025-05-28T08:24:53.652Z","id":"bundle-28","__v":0,"productHandles":["garvee-3-piece-patio-bistro-set-pho-0x1ajr00","garvee-9ft-patio-umbrella-with-crank-ppg-334yufq6"]},"6836c8873e8bc676b0466c6c":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9483004084537","gid:\/\/shopify\/Product\/9864941535545"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6836c8873e8bc676b0466c6c","shop":"mygarvee.myshopify.com","active":true,"title":"Umbrella \u0026 Outdoor Funiture","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9483004084537":"1","gid:\/\/shopify\/Product\/9864941535545":"1"},"design":"design-2","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9483004084537","active_discount":false,"createdAt":"2025-05-28T08:25:43.689Z","updatedAt":"2025-05-28T08:25:43.689Z","id":"bundle-29","__v":0,"productHandles":["3-piece-patio-furniture-set-pho-0x1a","garvee-9ft-patio-umbrella-with-crank-ppg-334yufq6"]},"6836d47c3e8bc676b0488b23":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9491363168569","gid:\/\/shopify\/Product\/9508442833209"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6836d47c3e8bc676b0488b23","shop":"mygarvee.myshopify.com","active":true,"title":"Cleaning Set","bundle_heading":"Cleaning Set bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9491363168569":"1","gid:\/\/shopify\/Product\/9508442833209":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9491363168569","active_discount":false,"createdAt":"2025-05-28T09:16:44.267Z","updatedAt":"2025-05-28T09:17:19.516Z","id":"bundle-30","__v":0,"variants_mapping":{"9491363168569":["49490856640825"],"9508442833209":["49546415276345"]},"productHandles":["garvee-commercial-janitorial-cart-4-cabinets-pis-00ua455z","garvee-kiarixo-20-pressure-washer-surface-pho-141oxv8b"]},"6836d5b1195d5976b7abb27b":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9483756634425","gid:\/\/shopify\/Product\/9845898182969"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6836d5b1195d5976b7abb27b","shop":"mygarvee.myshopify.com","active":true,"title":"Outdoor Furniture \u0026 Outdoor Rug","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9483756634425":"1","gid:\/\/shopify\/Product\/9845898182969":"1"},"design":"design-2","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9483756634425","active_discount":false,"createdAt":"2025-05-28T09:21:53.262Z","updatedAt":"2025-05-28T09:21:53.262Z","id":"bundle-31","__v":0,"productHandles":["outdoor-furniture-set-pho-12oc7ben","outdoor-rug-9x12-waterproof-reversible-plastic-straw-patio-camping-pho_152fxlu9"]},"6836d70cde59d776af265db4":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9864938914105","gid:\/\/shopify\/Product\/9864955855161"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"6836d70cde59d776af265db4","shop":"mygarvee.myshopify.com","active":true,"title":"Outdoor Furniture \u0026 Outdoor Rug","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9864938914105":"1","gid:\/\/shopify\/Product\/9864955855161":"1"},"design":"design-2","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9864938914105","active_discount":false,"createdAt":"2025-05-28T09:27:40.983Z","updatedAt":"2025-05-28T09:29:03.925Z","id":"bundle-32","__v":0,"variants_mapping":{"9864938914105":["50726921404729"],"9864955855161":["50726973997369"]},"productHandles":["garvee-outdoor-chair-set-3-piece-ppg-335fpwlp","garvee-8x10ft-outdoor-plastic-straw-rug-pho-152f8kjs"]},"683958decbf7fe13cf244c96":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9760500089145","gid:\/\/shopify\/Product\/9737759850809"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683958decbf7fe13cf244c96","shop":"mygarvee.myshopify.com","active":true,"title":"Truck Box \u0026 Truck Bed Tonneau Cover","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9760500089145":"1","gid:\/\/shopify\/Product\/9737759850809":"1"},"design":"design-1","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9760500089145","active_discount":false,"createdAt":"2025-05-30T07:06:06.580Z","updatedAt":"2025-05-30T07:06:06.580Z","id":"bundle-34","__v":0,"productHandles":["garvee-soft-truck-bed-tonneau-cover-pau-0kxzkzz9","garvee-24-inch-aluminum-underbody-truck-pau-0j68jj49"]},"68395ce8cbf7fe13cf2521f1":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9737773842745","gid:\/\/shopify\/Product\/9737746678073"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"68395ce8cbf7fe13cf2521f1","shop":"mygarvee.myshopify.com","active":true,"title":"Concession Window \u0026  Ice Cream Machine","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9737773842745":"1","gid:\/\/shopify\/Product\/9737746678073":"1"},"design":"design-1","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9737773842745","active_discount":false,"createdAt":"2025-05-30T07:23:20.102Z","updatedAt":"2025-05-30T07:24:14.595Z","id":"bundle-35","__v":0,"productHandles":["garvee-hot-dog-roller-18-hot-pho-14pkqi3j","garvee-concession-window-48-w-x-pau-0l19cjsu"]},"68395d4972a56c13d3e09650":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9590602400057","gid:\/\/shopify\/Product\/9878307799353"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"68395d4972a56c13d3e09650","shop":"mygarvee.myshopify.com","active":true,"title":"Concession Window \u0026  Hot Dog Roller","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9590602400057":"1","gid:\/\/shopify\/Product\/9878307799353":"1"},"design":"design-1","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9590602400057","active_discount":false,"createdAt":"2025-05-30T07:24:57.937Z","updatedAt":"2025-05-30T07:24:57.937Z","id":"bundle-36","__v":0,"productHandles":["garvee-aconee-commercial-ice-cream-machine-pho-121toxwr","garvee-36x24inch-concession-window-for-food-pae-3367g3aa"]},"683960e772a56c13d3e15fd9":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9491326599481","gid:\/\/shopify\/Product\/9652674527545"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683960e772a56c13d3e15fd9","shop":"mygarvee.myshopify.com","active":true,"title":"Hydraulic Motorcycle Hoist \u0026 Wrench Set","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9491326599481":"1","gid:\/\/shopify\/Product\/9652674527545":"1"},"design":"design-1","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9491326599481","active_discount":false,"createdAt":"2025-05-30T07:40:23.638Z","updatedAt":"2025-05-30T07:40:23.638Z","id":"bundle-37","__v":0,"productHandles":["garvee-20-piece-ratcheting-combination-wrench-pho-0ra1uahx","garvee-1100-lb-motorcycle-dirt-bike-pau-0j97gk2q"]},"683961549eca9b13d1fb075b":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9509110776121","gid:\/\/shopify\/Product\/9864974860601"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683961549eca9b13d1fb075b","shop":"mygarvee.myshopify.com","active":true,"title":"Swimming Pool Pump \u0026 Swimming Pool Cover","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9509110776121":"1","gid:\/\/shopify\/Product\/9864974860601":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9509110776121","active_discount":false,"createdAt":"2025-05-30T07:42:12.264Z","updatedAt":"2025-05-30T07:42:12.264Z","id":"bundle-38","__v":0,"productHandles":["garvee-swimming-pool-pump-pho-12lksxs0","garvee-pool-safety-inground-pool-cover-pho-3456u73c"]},"683962684f817113d27cfd2c":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9482858594617","gid:\/\/shopify\/Product\/9637687165241"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683962684f817113d27cfd2c","shop":"mygarvee.myshopify.com","active":true,"title":"Pool Cleaner Sets","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9482858594617":"1","gid:\/\/shopify\/Product\/9637687165241":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9637687165241","active_discount":false,"createdAt":"2025-05-30T07:46:48.948Z","updatedAt":"2025-05-30T07:46:48.948Z","id":"bundle-39","__v":0,"productHandles":["garvee-garveelife-pool-vacuum-powerful-suction-pho-134ol06z","automatic-robotic-pool-vacuum-cleaner-cordless-3h-fast-charging-top-loading-easy-clean-basket-smart-navigation-wall-climbing-scrubber-brush-ideal-for-above-in-ground-pools"]},"683964554f817113d27d65f1":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9851317584185","gid:\/\/shopify\/Product\/9484216631609","gid:\/\/shopify\/Product\/9491408126265","gid:\/\/shopify\/Product\/9491408191801","gid:\/\/shopify\/Product\/9491408060729"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":false,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683964554f817113d27d65f1","shop":"mygarvee.myshopify.com","active":true,"title":"Egg Laying Box","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9851317584185":"1","gid:\/\/shopify\/Product\/9484216631609":"1","gid:\/\/shopify\/Product\/9491408126265":"1","gid:\/\/shopify\/Product\/9491408191801":"1","gid:\/\/shopify\/Product\/9491408060729":"1"},"design":"design-1","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9851317584185","active_discount":false,"createdAt":"2025-05-30T07:55:01.054Z","updatedAt":"2025-05-30T07:55:01.054Z","id":"bundle-40","__v":0,"productHandles":["garvee-nesting-boxes-for-chickens-6-pho-113k847o","23-gauge-hardware-cloth-pho-0zva","garvee-hardware-cloth-23-gauge-vinyl-pho-0zvac8ps","garvee-hardware-cloth-23-gauge-vinyl-pho-0zvacg0x","garvee-hardware-cloth-23-gauge-vinyl-pho-0zva6s9u"]},"683964db4f817113d27d8e18":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9590746644793","gid:\/\/shopify\/Product\/9483229823289","gid:\/\/shopify\/Product\/9483229626681","gid:\/\/shopify\/Product\/9760522076473"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683964db4f817113d27d8e18","shop":"mygarvee.myshopify.com","active":true,"title":"Bordered Brown 8x10 Rug","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9590746644793":"1","gid:\/\/shopify\/Product\/9483229823289":"1","gid:\/\/shopify\/Product\/9483229626681":"1","gid:\/\/shopify\/Product\/9760522076473":"1"},"design":"design-1","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9760522076473","active_discount":false,"createdAt":"2025-05-30T07:57:15.240Z","updatedAt":"2025-05-30T08:25:01.573Z","id":"bundle-41","__v":0,"variants_mapping":{"9590746644793":["49728041222457"],"9483229823289":["49451954503993"],"9483229626681":["49451953357113"],"9760522076473":["50370238316857"]},"productHandles":["garvee-gaomon-area-rug-2x6-braided-pho-1168xlz3","garvee-braided-collection-modern-washable-rug-pho-1168418k","garvee-area-rug-braided-print-non-pho-1168axs5","garvee-modern-washable-rug-8x10-rug-pho-16kh57tf"]},"683965cdcbf7fe13cf26e7e2":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9483229823289","gid:\/\/shopify\/Product\/9590746644793","gid:\/\/shopify\/Product\/9483300307257","gid:\/\/shopify\/Product\/9760521879865"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683965cdcbf7fe13cf26e7e2","shop":"mygarvee.myshopify.com","active":true,"title":"Bordered Brown 9x12 Rug","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9483229823289":"1","gid:\/\/shopify\/Product\/9590746644793":"1","gid:\/\/shopify\/Product\/9483300307257":"1","gid:\/\/shopify\/Product\/9760521879865":"1"},"design":"design-1","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9760521879865","active_discount":false,"createdAt":"2025-05-30T08:01:17.900Z","updatedAt":"2025-05-30T08:25:28.005Z","id":"bundle-42","__v":0,"variants_mapping":{"9483229823289":["49451954503993"],"9590746644793":["49728041222457"],"9483300307257":["49452181913913"],"9760521879865":["50370238087481"]},"productHandles":["garvee-braided-collection-modern-washable-rug-pho-1168418k","garvee-gaomon-area-rug-2x6-braided-pho-1168xlz3","garvee-washable-9x12-area-rugs-modern-braided-print-rug-washable-rug-soft-boho-bedroom-rug-non-slip-non-shedding-floor-carpet-low-pile-foldable-thin-rug-for-dining-room-home-office-nursery-brown-garvee","garvee-washable-area-rugs-9x12-living-pho-16khd6hv"]},"683967ba72a56c13d3e2dfdb":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9483229626681","gid:\/\/shopify\/Product\/9483229823289","gid:\/\/shopify\/Product\/9590746775865","gid:\/\/shopify\/Product\/9760521912633"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":false,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683967ba72a56c13d3e2dfdb","shop":"mygarvee.myshopify.com","active":true,"title":"Bordered Brown 10x13 Rug","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9483229626681":"1","gid:\/\/shopify\/Product\/9483229823289":"1","gid:\/\/shopify\/Product\/9590746775865":"1","gid:\/\/shopify\/Product\/9760521912633":"1"},"design":"design-1","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9760521912633","active_discount":false,"createdAt":"2025-05-30T08:09:30.716Z","updatedAt":"2025-05-30T08:25:17.561Z","id":"bundle-43","__v":0,"variants_mapping":{"9483229626681":["49451953357113"],"9483229823289":["49451954503993"],"9590746775865":["49728041320761"],"9760521912633":["50370238120249"]},"productHandles":["garvee-area-rug-braided-print-non-pho-1168axs5","garvee-braided-collection-modern-washable-rug-pho-1168418k","garvee-gaomon-washable-rug-10x13-large-pho-1168kbxz","garvee-washable-area-rugs-10x13-living-pho-16khfwwy"]},"683e5d16f28464d1ad64e282":{"discount":{"value":8,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9849012257081","gid:\/\/shopify\/Product\/9737790128441"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683e5d16f28464d1ad64e282","shop":"mygarvee.myshopify.com","active":true,"title":"Chafing Dishes \u0026 Cheese Board","bundle_heading":"Best Food Plating Set","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9849012257081":"1","gid:\/\/shopify\/Product\/9737790128441":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9849012257081","active_discount":false,"createdAt":"2025-06-03T02:25:26.949Z","updatedAt":"2025-06-03T02:26:15.773Z","id":"bundle-44","__v":0,"variants_mapping":{"9849012257081":["50669025362233"],"9737790128441":["50281056076089"]},"productHandles":["garvee-3-piece-magnetic-bamboo-cheese-pho-34lehwr5","garvee-2-pack-electric-chafing-dishes-pho-16516fqm"]},"683e618a6800a1d1af55395e":{"discount":{"value":5,"type":"FIXED_AMOUNT"},"products":["gid:\/\/shopify\/Product\/9483290706233","gid:\/\/shopify\/Product\/9482978623801"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":false,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683e618a6800a1d1af55395e","shop":"mygarvee.myshopify.com","active":true,"title":"Coffee Bar \u0026 Coffee Maker","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9483290706233":"1","gid:\/\/shopify\/Product\/9482978623801":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9483290706233","active_discount":true,"createdAt":"2025-06-03T02:44:26.596Z","updatedAt":"2025-06-03T03:33:57.502Z","id":"bundle-45","__v":0,"variants_mapping":{"9483290706233":["49452163203385"],"9482978623801":["49450956259641"]},"productHandles":["garvee-kitchen-buffet-6-tier-storage-pho-0wly49dx-1","garvee-espresso-machine-coffee-maker-pst-02tzn2nu"]},"683e66276800a1d1af55d518":{"discount":{"value":5,"type":"FIXED_AMOUNT"},"products":["gid:\/\/shopify\/Product\/9483274420537","gid:\/\/shopify\/Product\/9483009032505"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683e66276800a1d1af55d518","shop":"mygarvee.myshopify.com","active":true,"title":"Bar Stools \u0026 Slushy Machine","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9483274420537":"1","gid:\/\/shopify\/Product\/9483009032505":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9483274420537","active_discount":true,"createdAt":"2025-06-03T03:04:07.569Z","updatedAt":"2025-06-03T03:33:27.645Z","id":"bundle-46","__v":0,"variants_mapping":{"9483274420537":["49452111724857"],"9483009032505":["49451054956857"]},"productHandles":["garvee-dining-bar-table-set-with-pho-0yddpube-2","36l-commercial-slushy-maker-pho-11kszm0b"]},"683e68d4f28464d1ad66801e":{"discount":{"value":5,"type":"FIXED_AMOUNT"},"products":["gid:\/\/shopify\/Product\/9590620520761","gid:\/\/shopify\/Product\/9704134607161"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683e68d4f28464d1ad66801e","shop":"mygarvee.myshopify.com","active":true,"title":"Ice Cream Machine \u0026 Bar Tools","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9590620520761":"1","gid:\/\/shopify\/Product\/9704134607161":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9590620520761","active_discount":true,"createdAt":"2025-06-03T03:15:32.539Z","updatedAt":"2025-06-03T03:33:14.533Z","id":"bundle-47","__v":0,"variants_mapping":{"9590620520761":["49727865946425"],"9704134607161":["50151127712057"]},"productHandles":["garvee-idealhouse-24-swivel-bar-stools-pho-13rk8ntt","garvee-2000w-commercial-ice-cream-machine-pho-121mzu8u"]},"683e69326800a1d1af563b8a":{"discount":{"value":5,"type":"FIXED_AMOUNT"},"products":["gid:\/\/shopify\/Product\/9590620520761","gid:\/\/shopify\/Product\/9483274420537"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683e69326800a1d1af563b8a","shop":"mygarvee.myshopify.com","active":true,"title":"Kitchen Counter","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9590620520761":"1","gid:\/\/shopify\/Product\/9483274420537":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9590620520761","active_discount":true,"createdAt":"2025-06-03T03:17:07.002Z","updatedAt":"2025-06-03T03:33:00.947Z","id":"bundle-48","__v":0,"variants_mapping":{"9590620520761":["49727865946425"],"9483274420537":["49452111724857"]},"productHandles":["garvee-idealhouse-24-swivel-bar-stools-pho-13rk8ntt","garvee-dining-bar-table-set-with-pho-0yddpube-2"]},"683e6e91ceee1cd1bb0706b2":{"discount":{"value":5,"type":"FIXED_AMOUNT"},"products":["gid:\/\/shopify\/Product\/9483274453305","gid:\/\/shopify\/Product\/9590620487993"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683e6e91ceee1cd1bb0706b2","shop":"mygarvee.myshopify.com","active":true,"title":"Counter Height Barstools","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9483274453305":"1","gid:\/\/shopify\/Product\/9590620487993":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9483274453305","active_discount":true,"createdAt":"2025-06-03T03:40:01.467Z","updatedAt":"2025-06-03T03:40:01.467Z","id":"bundle-49","__v":0,"productHandles":["garvee-dining-bar-table-set-with-pho-0yddlk9u-2","garvee-idealhouse-24-swivel-bar-stools-pho-13rk2m6x-1"]},"683e72bd1042b3d1bc14e76b":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9508452794681","gid:\/\/shopify\/Product\/9491287605561"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683e72bd1042b3d1bc14e76b","shop":"mygarvee.myshopify.com","active":true,"title":"Ride-On Tractor \u0026 Toy Storage","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9508452794681":"1","gid:\/\/shopify\/Product\/9491287605561":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9508452794681","active_discount":false,"createdAt":"2025-06-03T03:57:49.591Z","updatedAt":"2025-06-03T03:57:49.591Z","id":"bundle-50","__v":0,"productHandles":["garvee-idealhouse-kids-bookshelf-and-toy-pho-13s8k0r5","garvee-3-in-1-ride-on-tractor-24v-electric-excavator-bulldozer-remote-control-led-music-usb-bluetooth-bright-green"]},"683e74002fc3b1d1a7c48cae":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9491415073081","gid:\/\/shopify\/Product\/9652740063545"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683e74002fc3b1d1a7c48cae","shop":"mygarvee.myshopify.com","active":true,"title":" Ride on Toy \u0026 Toy Storage","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9491415073081":"1","gid:\/\/shopify\/Product\/9652740063545":"1"},"design":"design-2","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9491415073081","active_discount":false,"createdAt":"2025-06-03T04:03:12.007Z","updatedAt":"2025-06-04T05:58:26.266Z","id":"bundle-51","__v":0,"variants_mapping":{"9491415073081":["49490982633785"],"9652740063545":["49931140596025"]},"productHandles":["garvee-12v-kids-ride-on-toy-pto-0z34epve","garvee-gaomon-kids-bookshelf-toy-storage-pho-11rwhi79"]},"683fa2f534641b33705f6ac8":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9737769025849","gid:\/\/shopify\/Product\/9482297966905"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683fa2f534641b33705f6ac8","shop":"mygarvee.myshopify.com","active":true,"title":"Drywall Sander \u0026 Trash can","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9737769025849":"1","gid:\/\/shopify\/Product\/9482297966905":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9482297966905","active_discount":false,"createdAt":"2025-06-04T01:35:49.260Z","updatedAt":"2025-06-04T01:35:49.260Z","id":"bundle-52","__v":0,"productHandles":["garvee-kitchen-trash-can-8-gallon-pis-3337b57p","garvee-drywall-sander-pho-0xgarrn9"]},"683fa373732c593377ff15ac":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9491363299641","gid:\/\/shopify\/Product\/9482228400441"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683fa373732c593377ff15ac","shop":"mygarvee.myshopify.com","active":true,"title":"Oil Drain \u0026 Janitorial Cart","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9491363299641":"1","gid:\/\/shopify\/Product\/9482228400441":"1"},"design":"design-2","show_target_only":true,"target_product":"gid:\/\/shopify\/Product\/9482228400441","active_discount":false,"createdAt":"2025-06-04T01:37:55.723Z","updatedAt":"2025-06-04T02:12:46.612Z","id":"bundle-53","__v":0,"variants_mapping":{"9491363299641":["49490856837433"],"9482228400441":["49446929727801"]},"productHandles":["garvee-commercial-janitorial-cart-2-cabinets-pis-00ubwf33","17-gallon-oil-drain-pan-pau-0hsmngzx"]},"683fe49db6e796056eea6216":{"discount":{"value":10,"type":"PERCENTAGE"},"products":["gid:\/\/shopify\/Product\/9652740063545","gid:\/\/shopify\/Product\/9737786360121"],"image_ratio":"adapt","position":"inside","layout":"layout-1","show_quantity":true,"default_selected":true,"show_all_variants":true,"deleted":false,"locked":false,"_id":"683fe49db6e796056eea6216","shop":"mygarvee.myshopify.com","active":true,"title":"Kid Bed Frame\u0026Kids Bookshelf","bundle_heading":"Frequently bought together","button_label":"Add to cart","summary_heading":"Your bundle","skip_cart":false,"products_quantity":{"gid:\/\/shopify\/Product\/9652740063545":"1","gid:\/\/shopify\/Product\/9737786360121":"1"},"design":"design-2","show_target_only":false,"target_product":"gid:\/\/shopify\/Product\/9652740063545","active_discount":false,"createdAt":"2025-06-04T06:15:57.889Z","updatedAt":"2025-06-04T06:15:57.889Z","id":"bundle-54","__v":0,"productHandles":["garvee-gaomon-kids-bookshelf-toy-storage-pho-11rwhi79","garvee-twin-bed-frame-with-drawer-pho-15wpz8rp"]}}).filter(entry => entry.active).map(entry => ({...(entry || {}), locales: !FoxKitSettings.primaryLocale && entry?.locales?.[Shopify.locale]}));
  1638.    FoxKitPlugins.Menus = Object.values({"65643deeee0a40a9d12a52ae":{"id":"65643deeee0a40a9d12a52ae","data":{"orders":{"layout":["f-1701088010ZM3Gj","f-1701088041YMrCI","f-1701068273Pngnr","f-1701173629uXNER","f-1701174071j9wan","f-1701174356e2LiX","f-1713188942aI5R8"],"f-1701068273Pngnr":["f-17010881764qKaM","f-1701088695CrcBj","f-1701088746I4yj5"],"f-17010881764qKaM":["f-1701088208jRQ6W","f-170108924419C8m","f-1701089268JmX7I","f-1701089289b3PYe","f-1701089329yXqKS","f-1701089374S4M8E"],"f-1701088695CrcBj":["f-1701089554iGtc8","f-1701089584f6TEm","f-1701089611tkpiC","f-1701089629ROZZs","f-17010896683TLwF","f-1701089692iGKPk","f-1701089709ADRG1","f-1701089723AZcPm"],"f-1701173629uXNER":["f-1701173680qbMJS","f-1701173886FvhlD","f-1713266709SndR5"],"f-1701173680qbMJS":["f-1701173820YfizB","f-1701173869K6nQ3"],"f-1701173886FvhlD":["f-170117392205cAM","f-1701173980dz3hF","f-1701173997Er7lK","f-1701174005kJrf1","f-1701174021QdwQe","f-1701174039IQWsu"],"f-1701174071j9wan":["f-1701174145IkZLW","f-1701174253HFCg5","f-17131877056Ibrw"],"f-1701174145IkZLW":["f-17011742128TBRq","f-1701174230YOY70"],"f-1701174253HFCg5":["f-1701174277GBCJb","f-1701174292v7k9i","f-1701174303Uh0xQ","f-1701174314ldxRV","f-1701174335kIXCE"],"f-1701174356e2LiX":["f-1701174383SKE3L","f-1701174434tHYBT"],"f-1701174383SKE3L":["f-1701174414a3c4Q","f-1701174426wkU02"],"f-1701174434tHYBT":["f-1701174462QFCXH","f-1701174478zc2fS","f-17011744932pISc","f-1701174504v18qJ","f-1701174514UQfje","f-1701174523eJ3UO"],"f-1701088010ZM3Gj":["f-1713320564ALn5n","f-1713320478P8JVm","f-1713320599S57Hu","f-1701174551AnXFp","f-1701174582brrMH","f-1713266040BqeuL"],"f-1701088041YMrCI":["f-1701174557Z2kg7","f-1701174607SsC6d","f-17132663894yafT"],"f-1701174557Z2kg7":["f-1701174819KV7TY","f-1701174832DlqwP","f-1701174842RUOxc","f-1701174852G8bDq","f-1713188301yjfoa"],"f-1701174607SsC6d":["f-1701174871PV0tF","f-1701174881xZCXp","f-1701174892CJcOB","f-170117490335uAL","f-1701174913ZAaee"],"f-1713188942aI5R8":["f-171318912715vV5","f-1713189181W0JEp","f-1713189283U3pEQ"],"f-1713320564ALn5n":["f-1713320693Xu8ip","f-1713320713uoFq5","f-1713320729OyiBS","f-1713320745yvXYz"],"f-1713320478P8JVm":["f-1713320778C3cKt","f-1713320793sYqVG"],"f-1713320599S57Hu":["f-1713320880iej3a","f-1713320896RTCvF","f-1713320909biLQu","f-1713320922bmiCW","f-1713320943w9EsR","f-1713320987s3lvf","f-1713320999oFCg3"],"f-1701174551AnXFp":["f-1713321156rINT7","f-1713321174h3tnt"],"f-1701174582brrMH":["f-1713321214vWKzS","f-1713321225AYDPM","f-1713321237rGteK","f-171332125037pTT"]},"settings":{"renderMethod":"override","placement":"element"},"design":{"layout":"vertical","vertical_menu_width":300,"container_width":"fill","menu_bg":"","menu_text":"rgba(0,0,0,1)","menu_text_hover":"rgba(0,0,0,1)","submenu_bg":"rgba(255,255,255,1)","submenu_text":"rgba(0,0,0,1)","submenu_text_hover":"rgba(0,0,0,1)","item_space":30}}}});
  1639.    FoxKitPlugins.Menus = FoxKitPlugins.Menus?.map((item) => {
  1640.      if (typeof item === 'string') return JSON.parse(item);
  1641.      return item;
  1642.    });
  1643.    FoxKitPlugins.MenuData = Object.values({"65643deeee0a40a9d12a52ae":{"id":"65643deeee0a40a9d12a52ae","data":{"f-1701068273Pngnr":{"title":"Automotive","link":{"value":"https:\/\/www.garvee.com\/collections\/automotive","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"submenu":{"layout":"mega","container":"auto","columns":"3"},"show_on_desktop":true,"show_on_mobile":true,"type":"menu-item"},"f-1701088010ZM3Gj":{"title":"Restaurant \u0026 Food Service","link":{"value":"https:\/\/www.garvee.com\/collections\/restaurant-food-service","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"submenu":{"layout":"mega","container":"auto","columns":"auto","contentContainer":false},"show_on_desktop":true,"show_on_mobile":true,"type":"menu-item"},"f-1701088041YMrCI":{"title":"Power \u0026 Hand Tools","link":{"value":"https:\/\/www.garvee.com\/collections\/power-hand-tools","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"submenu":{"layout":"mega","container":"auto","columns":"auto"},"show_on_desktop":true,"show_on_mobile":true,"type":"menu-item"},"f-17010881764qKaM":{"title":"Shop By Categories","link":{"value":"https:\/\/www.garvee.com\/collections\/automotive","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701088208jRQ6W":{"title":"Tire \u0026 Wheel Tools","link":{"value":"https:\/\/www.garvee.com\/collections\/tire-wheel-tools","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701088695CrcBj":{"title":"Related Items","link":{"value":"","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701088746I4yj5":{"title":"Inspiration \u0026 Ideas on Automotive","link":{"value":"https:\/\/www.garvee.com\/blogs\/automotive","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"image":{"url":"https:\/\/cdn.shopify.com\/s\/files\/1\/0724\/6698\/9369\/files\/4.02-1080x1080-Starmerx-JVD-223912.png?v=1713187391","width":250,"alt":"4.02-1080x1080-Starmerx-JVD-223912.png","aspectRatio":1},"addonsBlock":"image","type":"submenu-item"},"f-170108924419C8m":{"title":"Steering \u0026 Suspension ","link":{"value":"https:\/\/www.garvee.com\/collections\/steering-suspension-tool","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701089268JmX7I":{"title":"Automotive Tools","link":{"value":"https:\/\/www.garvee.com\/collections\/automotive-accessories","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701089289b3PYe":{"title":"Cargo Management","link":{"value":"https:\/\/www.garvee.com\/collections\/cargo-management","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701089329yXqKS":{"title":"Transfer \u0026 Lubrication","link":{"value":"https:\/\/www.garvee.com\/collections\/fuel-transfer-lubrication","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701089374S4M8E":{"title":"Jacks \u0026 Jack Stands","link":{"value":"https:\/\/www.garvee.com\/collections\/jacks-jack-stands","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701089554iGtc8":{"title":"Shock Absorber","link":{"value":"https:\/\/www.garvee.com\/collections\/shock-absorber","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701089584f6TEm":{"title":"Suspension Lift Kits","link":{"value":"https:\/\/www.garvee.com\/collections\/body-suspension-lift-kits","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701089611tkpiC":{"title":"Oil Drain Pan","link":{"value":"https:\/\/www.garvee.com\/collections\/oil-drain-pan","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701089629ROZZs":{"title":"Fuel Caddy","link":{"value":"https:\/\/www.garvee.com\/collections\/fuel-caddy","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-17010896683TLwF":{"title":"Floor Jacks","link":{"value":"https:\/\/www.garvee.com\/collections\/floor-jacks","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701089692iGKPk":{"title":"Brake Tools","link":{"value":"https:\/\/www.garvee.com\/collections\/brake-tools","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701089709ADRG1":{"title":"Ladder Racks","link":{"value":"https:\/\/www.garvee.com\/collections\/ladder-racks","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701089723AZcPm":{"title":"Diesel Heater","link":{"value":"https:\/\/www.garvee.com\/collections\/diesel-heater","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701173629uXNER":{"title":"Agriculture \u0026 Garden","link":{"value":"https:\/\/www.garvee.com\/collections\/agriculture-garden","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"submenu":{"layout":"mega","container":"auto","columns":"auto"},"show_on_desktop":true,"show_on_mobile":true,"type":"menu-item"},"f-1701173680qbMJS":{"title":"Shop By Categories","link":{"value":"https:\/\/www.garvee.com\/collections\/agriculture-garden","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701173820YfizB":{"title":"Lawn \u0026 Garden","link":{"value":"https:\/\/www.garvee.com\/collections\/lawn-garden","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701173869K6nQ3":{"title":"Agriculture \u0026 Forestry Equipment","link":{"value":"https:\/\/www.garvee.com\/collections\/agriculture-forestry-equipment","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701173886FvhlD":{"title":"More Way to Shop","link":{"value":"","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-170117392205cAM":{"title":"Patio Furniture \u0026 Accessories","link":{"value":"https:\/\/www.garvee.com\/collections\/patio-furniture-accessories","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701173980dz3hF":{"title":"Pet Supplies","link":{"value":"https:\/\/www.garvee.com\/collections\/pet-supplies","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701173997Er7lK":{"title":"Pools \u0026 Spas","link":{"value":"https:\/\/www.garvee.com\/collections\/pools-spas","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174005kJrf1":{"title":"Landscaping \u0026 Shade","link":{"value":"https:\/\/www.garvee.com\/collections\/landscaping-shade","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174021QdwQe":{"title":"Watering \u0026 Irrigation","link":{"value":"https:\/\/www.garvee.com\/collections\/watering-irrigation","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174039IQWsu":{"title":"Equipment Parts \u0026 Accessories","link":{"value":"https:\/\/www.garvee.com\/collections\/equipment-parts-accessories","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174071j9wan":{"title":"Material Handling","link":{"value":"https:\/\/www.garvee.com\/collections\/material-handling","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"submenu":{"layout":"mega","container":"auto","columns":"auto"},"show_on_desktop":true,"show_on_mobile":true,"type":"menu-item"},"f-1701174145IkZLW":{"title":"Shop by Category","link":{"value":"","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-17011742128TBRq":{"title":"Moving Equipment","link":{"value":"https:\/\/www.garvee.com\/collections\/moving-equipment","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174230YOY70":{"title":"Lifting Equipment","link":{"value":"https:\/\/www.garvee.com\/collections\/lifting-equipment","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174253HFCg5":{"title":"More Way to Shop","link":{"value":"","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174277GBCJb":{"title":"Pallet Forks","link":{"value":"https:\/\/www.garvee.com\/collections\/pallet-forks","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174292v7k9i":{"title":"Ramps \u0026 Ladders","link":{"value":"https:\/\/www.garvee.com\/collections\/ramps-ladders","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174303Uh0xQ":{"title":"Hoists \u0026 Winches \u0026 Rigging","link":{"value":"https:\/\/www.garvee.com\/collections\/hoists-winches-rigging","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174314ldxRV":{"title":"Pallet Forks Extensions","link":{"value":"https:\/\/www.garvee.com\/collections\/pallet-forks-extensions","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174335kIXCE":{"title":"Heavy Equipment Accessories","link":{"value":"https:\/\/www.garvee.com\/collections\/heavy-equipment-accessories","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174356e2LiX":{"title":"Office Products","link":{"value":"https:\/\/www.garvee.com\/collections\/office-products","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"submenu":{"layout":"mega","container":"auto","columns":"auto"},"show_on_desktop":true,"show_on_mobile":true,"type":"menu-item"},"f-1701174383SKE3L":{"title":"Shop by Categories","link":{"value":"","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174414a3c4Q":{"title":"Arts \u0026 Crafts \u0026 Sewing","link":{"value":"https:\/\/www.garvee.com\/collections\/arts-crafts-sewing","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174426wkU02":{"title":"Office Supplies","link":{"value":"https:\/\/www.garvee.com\/collections\/office-supplies","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174434tHYBT":{"title":"More Way to Shop","link":{"value":"","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174462QFCXH":{"title":"Heating \u0026 Cooling","link":{"value":"https:\/\/www.garvee.com\/collections\/heating-cooling","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174478zc2fS":{"title":"Exercise \u0026 Fitness","link":{"value":"https:\/\/www.garvee.com\/collections\/exercise-fitness","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-17011744932pISc":{"title":"Security","link":{"value":"https:\/\/www.garvee.com\/collections\/security","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174504v18qJ":{"title":"Printmaking","link":{"value":"https:\/\/www.garvee.com\/collections\/printmaking","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174514UQfje":{"title":"Engraving","link":{"value":"https:\/\/www.garvee.com\/collections\/engraving","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174523eJ3UO":{"title":"Lab","link":{"value":"https:\/\/www.garvee.com\/collections\/lab","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174551AnXFp":{"title":"Storage \u0026 Organization\t","link":{"value":"https:\/\/www.garvee.com\/collections\/storage-organization","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174557Z2kg7":{"title":"Shop by Categories","link":{"value":"","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174582brrMH":{"title":"Food Holding \u0026 Warming Equipment","link":{"value":"https:\/\/www.garvee.com\/collections\/food-holding-warming-equipment","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174607SsC6d":{"title":"More Way to Shop","link":{"value":"","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174819KV7TY":{"title":"Power Tools","link":{"value":"https:\/\/www.garvee.com\/collections\/power-tools","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174832DlqwP":{"title":"Hand Tools","link":{"value":"https:\/\/www.garvee.com\/collections\/hand-tools","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174842RUOxc":{"title":"Plumbing","link":{"value":"https:\/\/www.garvee.com\/collections\/plumbing","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174852G8bDq":{"title":"Electrical","link":{"value":"https:\/\/www.garvee.com\/collections\/electrical","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174871PV0tF":{"title":"Drains \u0026 Drainage","link":{"value":"https:\/\/www.garvee.com\/collections\/drains-drainage","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174881xZCXp":{"title":"Wrenches","link":{"value":"https:\/\/www.garvee.com\/collections\/wrenches","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174892CJcOB":{"title":"Inspection \u0026 Retrieving Tools","link":{"value":"https:\/\/www.garvee.com\/collections\/inspection-retrieving-tools","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-170117490335uAL":{"title":"Electrical Tools","link":{"value":"https:\/\/www.garvee.com\/collections\/electrical-tools","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1701174913ZAaee":{"title":"Pipe \u0026 Fittings","link":{"value":"https:\/\/www.garvee.com\/collections\/pipe-fittings","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-17131877056Ibrw":{"title":"Best Selling","link":{"value":"https:\/\/www.garvee.com\/products\/garvee-pallet-forks-pau-0hkx","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"image":{"url":"https:\/\/cdn.shopify.com\/s\/files\/1\/0724\/6698\/9369\/files\/4.02-1080x1080-Starmerx-JVD-223912.png?v=1713187391","width":250,"alt":"4.02-1080x1080-Starmerx-JVD-223912.png","aspectRatio":1},"addonsBlock":"image","type":"submenu-item"},"f-1713188301yjfoa":{"title":"Menu item label","link":{"value":"","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713188942aI5R8":{"title":"Blog","link":{"value":"https:\/\/www.garvee.com\/pages\/blogs","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"submenu":{"layout":"mega","container":"full-width","columns":"6"},"show_on_desktop":true,"show_on_mobile":true,"type":"menu-item"},"f-171318912715vV5":{"title":"Automotive","link":{"value":"https:\/\/www.garvee.com\/blogs\/automotive","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"image":{"url":"https:\/\/cdn.shopify.com\/s\/files\/1\/0724\/6698\/9369\/files\/4.02-1080x1080-Starmerx-JVD-223912.png?v=1713187391","width":250,"alt":"4.02-1080x1080-Starmerx-JVD-223912.png","aspectRatio":1},"addonsBlock":"image","type":"submenu-item"},"f-1713189181W0JEp":{"title":"Restaurant \u0026 Food Service","link":{"value":"https:\/\/www.garvee.com\/blogs\/restaurant-food-service","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"image":{"url":"https:\/\/cdn.shopify.com\/s\/files\/1\/0724\/6698\/9369\/files\/withouthandle4wheel-03_f9709f92-0a4a-4182-8957-013859ad3856.jpg?v=1713178372","width":250,"alt":"","aspectRatio":1},"addonsBlock":"image","type":"submenu-item"},"f-1713189283U3pEQ":{"title":"Power \u0026 Hand Tools","link":{"value":"https:\/\/www.garvee.com\/blogs\/power-hand-tools","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"image":{"url":"https:\/\/cdn.shopify.com\/s\/files\/1\/0724\/6698\/9369\/files\/71V4tdlyb6L_3f3ce98d-cb4c-4f05-9c8f-4cafa3f52502.jpg?v=1713180770","width":250,"alt":"","aspectRatio":1},"addonsBlock":"image","type":"submenu-item"},"f-1713266040BqeuL":{"title":"Slushy Machine","link":{"value":"https:\/\/www.garvee.com\/products\/36l-commercial-slushy-maker-pho-11kszm0b","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"image":{"url":"https:\/\/cdn.shopify.com\/s\/files\/1\/0724\/6698\/9369\/files\/12Lx3-01_5483eb6a-4bdd-4b63-95d2-5fe36347e92c.jpg?v=1713256172","width":250,"alt":"","aspectRatio":1},"addonsBlock":"image","type":"submenu-item"},"f-17132663894yafT":{"title":"Drywall Sander","link":{"value":"https:\/\/www.garvee.com\/products\/garvee-drywall-sander-pho-0xgarrn9","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"image":{"url":"https:\/\/cdn.shopify.com\/s\/files\/1\/0724\/6698\/9369\/files\/4.01-1080x1080-Starmerx-JCD-228267-619021_54d7afe8-d5c8-481b-8afb-a5f188330662.jpg?v=1713266413","width":250,"alt":"4.01-1080x1080-Starmerx-JCD-228267-619021.jpg","aspectRatio":1},"banner_button_label":"","addonsBlock":"image","type":"submenu-item"},"f-1713266709SndR5":{"title":"Chicken Coop","link":{"value":"https:\/\/www.garvee.com\/products\/garvee-large-metal-chicken-coop-pho-0xqw","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"image":{"url":"https:\/\/cdn.shopify.com\/s\/files\/1\/0724\/6698\/9369\/files\/Large-Metal-Chicken-Coop-003_720x-176748_442de0b6-7cbd-4112-9656-fcf643ad2282.jpg?v=1713266794","width":250,"alt":"Large-Metal-Chicken-Coop-003_720x_ea461ca2-16fb-4017-b717-9748b2124218-176748.jpg","aspectRatio":1},"banner_button_label":"Shop Now","addonsBlock":"image","type":"submenu-item"},"f-1713320478P8JVm":{"title":"Beverage Equipment","link":{"value":"https:\/\/www.garvee.com\/collections\/beverage-equipment","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320564ALn5n":{"title":"Refrigeration \u0026 Ice Equipment","link":{"value":"https:\/\/www.garvee.com\/collections\/refrigeration-ice-equipment","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320599S57Hu":{"title":"Restaurant Furniture","link":{"value":"https:\/\/www.garvee.com\/collections\/restaurant-furniture","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"addonsBlock":"","type":"submenu-item"},"f-1713320693Xu8ip":{"title":"Ice Machine","link":{"value":"https:\/\/www.garvee.com\/collections\/ice-machines","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320713uoFq5":{"title":"Refrigerators","link":{"value":"https:\/\/www.garvee.com\/collections\/refrigerators","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320729OyiBS":{"title":"Beverage Refrigerator","link":{"value":"https:\/\/www.garvee.com\/collections\/beverage-refrigerator","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320745yvXYz":{"title":"Soft Serve Ice Cream Machines","link":{"value":"https:\/\/www.garvee.com\/collections\/soft-serve-ice-cream-machines","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320778C3cKt":{"title":"Coffee Urn","link":{"value":"https:\/\/www.garvee.com\/collections\/coffee-urn","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320793sYqVG":{"title":"Refrigerated Beverage Dispensers","link":{"value":"https:\/\/www.garvee.com\/collections\/refrigerated-beverage-dispensers","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320880iej3a":{"title":"Stainless Steel Work Table","link":{"value":"https:\/\/www.garvee.com\/collections\/stainless-steel-work-table","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320896RTCvF":{"title":"Utility Cart","link":{"value":"https:\/\/www.garvee.com\/collections\/utility-cart","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320909biLQu":{"title":"Activity Tables","link":{"value":"https:\/\/www.garvee.com\/collections\/activity-tables","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320922bmiCW":{"title":"Bar Cabinet","link":{"value":"https:\/\/www.garvee.com\/collections\/bar-cabinet","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320943w9EsR":{"title":"Bar Table Set","link":{"value":"https:\/\/www.garvee.com\/collections\/bar-table-set","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320987s3lvf":{"title":"Outdoor Kitchen Door","link":{"value":"https:\/\/www.garvee.com\/collections\/outdoor-kitchen-door","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713320999oFCg3":{"title":"Outdoor Kitchen Drawer","link":{"value":"https:\/\/www.garvee.com\/collections\/outdoor-kitchen-drawer","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713321156rINT7":{"title":"Drawers \u0026 Cabinet Organizers","link":{"value":"https:\/\/www.garvee.com\/collections\/drawers-cabinet-organizers","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713321174h3tnt":{"title":"Pull Out Trash Cans","link":{"value":"https:\/\/www.garvee.com\/collections\/pull-out-trash-cans","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713321214vWKzS":{"title":"Chafing Dishes","link":{"value":"https:\/\/www.garvee.com\/collections\/chafing-dishes","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713321225AYDPM":{"title":"Cotton Candy Machines","link":{"value":"https:\/\/www.garvee.com\/collections\/cotton-candy-machines","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-1713321237rGteK":{"title":"Popcorn Poppers","link":{"value":"https:\/\/www.garvee.com\/collections\/popcorn-poppers","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"},"f-171332125037pTT":{"title":"Stock Pots","link":{"value":"https:\/\/www.garvee.com\/collections\/stock-pots","external":false},"icon":{"html":"","url":"","size":24,"color":"#000000"},"show_on_desktop":true,"show_on_mobile":true,"type":"submenu-item"}}}});
  1644.    FoxKitPlugins.MenuData = FoxKitPlugins.MenuData?.map((item) => {
  1645.      if (typeof item === 'string') return JSON.parse(item);
  1646.      return item;
  1647.    });
  1648.  
  1649.    
  1650.  
  1651.  
  1652.  
  1653.  
  1654.  FoxKitPlugins.StockCountdown = {"target_collections":[],"target_products":[],"deleted":false,"_id":"65645236ee0a40a9d14f5a28","shop":"mygarvee.myshopify.com","active":true,"applies_to":"all_products","countdown_type":"use_quantity","from":5,"message":"Only {{stock_number}} item(s) left in stock!","to":10,"productHandles":[]};
  1655.  if(FoxKitPlugins.StockCountdown) FoxKitPlugins.StockCountdown.locales = !FoxKitSettings.primaryLocale && FoxKitPlugins.StockCountdown?.locales?.[Shopify.locale];
  1656.  
  1657.  
  1658.  
  1659.  
  1660.  
  1661. </script>
  1662.  
  1663. <link href="//cdn.shopify.com/extensions/5cf5922f-976b-4dca-b723-47877c0bf430/foxkit-sales-boost-394/assets/main.css" rel="stylesheet" type="text/css" media="all" />
  1664. <script src='https://cdn.shopify.com/extensions/5cf5922f-976b-4dca-b723-47877c0bf430/foxkit-sales-boost-394/assets/vendor.js' defer='defer' fetchpriority='high'></script>
  1665. <script src='https://cdn.shopify.com/extensions/5cf5922f-976b-4dca-b723-47877c0bf430/foxkit-sales-boost-394/assets/main.js' defer='defer' fetchpriority='high'></script>
  1666. <script src='https://cdn.shopify.com/extensions/5cf5922f-976b-4dca-b723-47877c0bf430/foxkit-sales-boost-394/assets/global.js' defer='defer' fetchpriority='low'></script>
  1667.  
  1668.  
  1669.  
  1670.  
  1671.  
  1672.  
  1673.  
  1674.  <link href="//cdn.shopify.com/extensions/5cf5922f-976b-4dca-b723-47877c0bf430/foxkit-sales-boost-394/assets/menu.css" rel="stylesheet" type="text/css" media="all" />
  1675.  <script src='https://cdn.shopify.com/extensions/5cf5922f-976b-4dca-b723-47877c0bf430/foxkit-sales-boost-394/assets/mega-menu.js' fetchpriority='high' defer='defer'></script>
  1676.  
  1677.  
  1678.  
  1679.  
  1680.  
  1681.  
  1682.  
  1683.  
  1684.  
  1685.  
  1686.  
  1687.  
  1688.  
  1689.  <style id='FoxKit-Custom-CSS'>
  1690.    .foxkit-product-countdown--style-2 .foxkit-product-countdown__wrapper {    background: linear-gradient(90deg, #ffffff, #cd2215);    border-radius: 70px; /* 可选,添加圆角 */    text-align: center; /* 文本居中 */    padding: 5px 10px;    border: 1px solid white !important;    margin-top:-5px;}.foxkit-product-countdown__number{  color: white;}.foxkit-product-countdown__title.foxkit-flex.text-xl.font-medium{  color: #cd2215;  font-weight: bold;}.foxkit-product-countdown--style-2 .time-block {  padding: 0px 1px !important;}.foxkit-product-countdown .time-block{  color: white;}
  1691.  </style>
  1692.  
  1693.  
  1694.  <script>
  1695.  document.addEventListener('DOMContentLoaded', function () {
  1696.  
  1697.  const productPriceElement = document.querySelector('.product-block-group--price .m-price-item--sale.m-price-item--last'); // 当前价格
  1698.  const compareAtPriceElement = document.querySelector('.product-block-group--price .m-price__sale s'); // 原价
  1699.  
  1700.  
  1701.  if (productPriceElement && compareAtPriceElement) {
  1702.    const productPrice = parseFloat(productPriceElement.innerText.replace('$', '').trim());
  1703.    const compareAtPrice = parseFloat(compareAtPriceElement.innerText.replace('$', '').trim());
  1704.  
  1705.    if (compareAtPrice > productPrice) {
  1706.      document.querySelector('.foxkit-product-countdown').style.display = 'block';
  1707.    } else {
  1708.      document.querySelector('.foxkit-product-countdown').style.display = 'none';
  1709.    }
  1710.  } else {
  1711.    document.querySelector('.foxkit-product-countdown').style.display = 'none';
  1712.  }
  1713. });
  1714.  
  1715. </script>
  1716.  
  1717.  
  1718.  
  1719. <!-- END app block --><!-- BEGIN app block: shopify://apps/videowise-video-commerce/blocks/script_embed/b48d6c0c-3e3f-4791-a9ab-a5ab7ec82f4d -->
  1720. <link
  1721.  rel="preload"
  1722.  as="style"
  1723.  onload="this.onload=null;this.rel='stylesheet'"
  1724.  href="https://assets.videowise.com/style.css.gz"
  1725.  id="videowise-style-css">
  1726. <script
  1727.  defer
  1728.  src="https://assets.videowise.com/vendors.js.gz"
  1729.  id="videowise-vendors-js"></script>
  1730. <script
  1731.  defer
  1732.  src="https://assets.videowise.com/client.js.gz"
  1733.  id="videowise-client-js"></script>
  1734.  
  1735. <link rel="dns-prefetch" href="https://assets.videowise.com/" />
  1736.  
  1737. <link rel="dns-prefetch" href="https://cdn2.videowise.com/" />
  1738.  
  1739. <link rel="dns-prefetch" href="https://api-cdn.videowise.com/" />
  1740.  
  1741. <link rel="dns-prefetch" href="https://images.videowise.com/" />
  1742.  
  1743. <link rel="dns-prefetch" href="https://cdn.videowise.com/" />
  1744.  
  1745. <!-- END app block --><!-- BEGIN app block: shopify://apps/simprosys-google-shopping-feed/blocks/core_settings_block/1f0b859e-9fa6-4007-97e8-4513aff5ff3b --><!-- BEGIN: GSF App Core Tags & Scripts by Simprosys Google Shopping Feed -->
  1746.  
  1747.    <!-- BEGIN app snippet: gsf_verification_code -->
  1748.    <meta name="google-site-verification" content="ejhTLpzjV-nEv_eOqhFwQXeBJrXPq5MTWwucbtVlGqs" />
  1749.  
  1750.  
  1751.  
  1752. <!-- END app snippet -->
  1753.  
  1754.  
  1755.  
  1756.    <!-- BEGIN app snippet: gsf_tracking_data -->
  1757.    
  1758.    <script>
  1759.        
  1760.        
  1761.        
  1762.        
  1763.        
  1764.        
  1765.        var gsf_conversion_data = {page_type : 'home', event : 'page_view', data : {product_data : [{variant_id : 49595377942841, product_id : 9522973475129, name : "&quot;GARVEE Heavy Duty Aluminum Folding Hand Truck, Convertible 4-Wheel and 2-Wheel Dolly Cart, Industrial Collapsible Cart for Office Moving", price : "181.99", currency : "USD", sku : "PHO_14SSCCWO", brand : "GARVEE", variant : "Silver", category : "Material Handling &gt; Carts &amp; Trucks &gt; Folding Cart"}, {variant_id : 50281055519033, product_id : 9737789538617, name : "430 Stainless Steel Commercial Baffle Grease Filter | 5FT UL Listed Restaurant Hood Filter | NSF Certified", price : "538.99", currency : "USD", sku : "PHO_14XZXGJV", brand : "GARVEE", variant : "5FT", category : "Restaurant &amp; Food Service &gt; Cooking Equipment &gt; Range Hood"}], total_price :"720.98", shop_currency : "USD"}};
  1766.        
  1767.        
  1768.    </script>
  1769.    
  1770.  
  1771.    
  1772.  
  1773.    
  1774.  
  1775.  
  1776.  
  1777. <!-- END app snippet -->
  1778.  
  1779.  
  1780.  
  1781.  
  1782.  
  1783.  
  1784.  
  1785. <!-- END: GSF App Core Tags & Scripts by Simprosys Google Shopping Feed -->
  1786. <!-- END app block --><script src="https://cdn.shopify.com/extensions/8da3c03a-8d96-476d-9242-69479294b470/pushowl-brevo-email-push-sms-98/assets/pushowl-shopify.js" type="text/javascript" defer="defer"></script>
  1787. <script src="https://cdn.shopify.com/extensions/7ab8ff98-1d3a-4496-bdfd-41ed77339d28/smile-io-180/assets/smile-loader.js" type="text/javascript" defer="defer"></script>
  1788. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  1789. <script>(function(){if ("sendBeacon" in navigator && "performance" in window) {var session_token = document.cookie.match(/_shopify_s=([^;]*)/);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: 72466989369,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token: session_token && session_token.length === 2 ? session_token[1] : "",page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
  1790. <script id="web-pixels-manager-setup">(function e(e,d,r,n,o,i){if(void 0===i&&(i={}),!Boolean(null===(t=null===(a=window.Shopify)||void 0===a?void 0:a.analytics)||void 0===t?void 0:t.replayQueue)){var a,t;window.Shopify=window.Shopify||{};var s=window.Shopify;s.analytics=s.analytics||{};var l=s.analytics;l.replayQueue=[],l.publish=function(e,d,r){return l.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var u=function(){var e={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+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),c="modern"===u?"modern":"legacy",f=(null!=o?o:{modern:"",legacy:""})[c],m=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:r,hashVersion:n,buildTarget:c}),p=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:n,bundleTarget:u,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{i.browserTarget=u,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=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,a&&(l.integrity=a,l.crossOrigin="anonymous"),s)for(var f in s)if(Object.prototype.hasOwnProperty.call(s,f))try{l.dataset[f]=s[f]}catch(e){}if(o&&l.addEventListener("load",o),i&&l.addEventListener("error",i),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:m,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?void 0:d.initialized)}()){var r=window.webPixelsManager.init(e)||void 0;if(r){d(r);var n=window.Shopify.analytics;n.replayQueue.forEach((function(e){var d=e[0],n=e[1],o=e[2];r.publishCustomEvent(d,n,o)})),n.replayQueue=[],n.publish=r.publishCustomEvent,n.visitor=r.visitor,n.initialized=!0}}},onerror:function(){return p.emit({status:"failed",errorMsg:"".concat(m," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(f)?f:"",scriptDataAttributes:i}),p.emit({status:"loading"})}catch(e){p.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 72466989369,storefrontBaseUrl: "https://www.garvee.com",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["ac843a20"],webPixelsConfigList: [{"id":"1395032377","configuration":"{\"shopDomain\":\"mygarvee.myshopify.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"c6461d5a144e49a75a12576eff5a7a45","type":"APP","apiClientId":2436932,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"1325367609","configuration":"{\"shopId\":\"209336\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"add313bb78133d77dcf1e8980a5b431e","type":"APP","apiClientId":2773553,"privacyPurposes":["SALE_OF_DATA"]},{"id":"1218740537","configuration":"{\"accountID\":\"VfwWsT\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"4dc2bf2f415d498931f502e99c2a3863","type":"APP","apiClientId":123074,"privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"1187447097","configuration":"{\"tagID\":\"2613660806468\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"a89c2bcc8138c8634a19a76241c7876a","type":"APP","apiClientId":3009811,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"1056735545","configuration":"{\"accountID\":\"0rdcos\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"219ec19a744f4aff2da134bac3704727","type":"APP","apiClientId":5206611,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"971899193","configuration":"{\"endpoint\":\"https:\\/\\/api.parcelpanel.com\",\"debugMode\":\"false\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"80f7ab1c83d56434772453c4e99e612e","type":"APP","apiClientId":2681387,"privacyPurposes":["ANALYTICS"]},{"id":"934248761","configuration":"{\"accountID\":\"db776b72-fd88-4a3d-b0f5-b52d74d6bf1c\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"1cebfd6263fb0f972c009b4449073a15","type":"APP","apiClientId":2441839,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"892928313","configuration":"{\"masterTagID\":\"52725\",\"merchantID\":\"141723\",\"appPath\":\"https://daedalus.shareasale.com\",\"storeID\":\"NaN\",\"xTypeMode\":\"NaN\",\"xTypeValue\":\"NaN\",\"channelDedup\":\"true\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"630a98b3fb48984bbf4a09b4ac42defc","type":"APP","apiClientId":4929191,"privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"863109433","configuration":"{\"subdomain\": \"mygarvee\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"4b1503cefaacd403b3b8fbb6a9344c9b","type":"APP","apiClientId":1615517,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"761168185","configuration":"{\"config\":\"{\\\"google_tag_ids\\\":[\\\"G-TQ8F7PNDJ6\\\",\\\"AW-16555251919\\\",\\\"GT-PZM42ZZT\\\"],\\\"target_country\\\":\\\"US\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":[\\\"G-TQ8F7PNDJ6\\\",\\\"AW-16453378943\\/uQzPCLmsttsZEP_GyqU9\\\"]},{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":[\\\"G-TQ8F7PNDJ6\\\",\\\"AW-16453378943\\/Mb8sCLOsttsZEP_GyqU9\\\"]},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-TQ8F7PNDJ6\\\",\\\"AW-16453378943\\/nSGJCLCsttsZEP_GyqU9\\\",\\\"MC-NM8S71V27S\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-TQ8F7PNDJ6\\\",\\\"AW-16453378943\\/LkI2CKSkitMaEP_GyqU9\\\",\\\"MC-NM8S71V27S\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-TQ8F7PNDJ6\\\",\\\"AW-16453378943\\/WkaqCK2sttsZEP_GyqU9\\\",\\\"MC-NM8S71V27S\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":[\\\"G-TQ8F7PNDJ6\\\",\\\"AW-16453378943\\/GUtxCLysttsZEP_GyqU9\\\"]},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":[\\\"G-TQ8F7PNDJ6\\\",\\\"AW-16453378943\\/MHDTCLasttsZEP_GyqU9\\\"]}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"09e7b128a944de91d6beface5c53c2d8","type":"APP","apiClientId":1780363,"privacyPurposes":[]},{"id":"692650297","configuration":"{\"pixelCode\":\"CP3GCOBC77U8LMPJIOA0\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"22e92c2ad45662f435e4801458fb78cc","type":"APP","apiClientId":4383523,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"367427897","configuration":"{\"pixel_id\":\"243010765233892\",\"pixel_type\":\"facebook_pixel\",\"metaapp_system_user_token\":\"-\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"8d894c63179843e74a9691414b5ad83d","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"227443001","configuration":"{\"shopId\":\"mygarvee.myshopify.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"5f2d219fe6f30dc82b1d95f56fd436a9","type":"APP","apiClientId":2753413,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"125796665","configuration":"{\"accountID\":\"82f25811-b8d7-463e-980a-687c6e4ebc88\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"d0369370d97f2cca6d5c273406637796","type":"APP","apiClientId":5433881,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"122224953","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"2","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","PREFERENCES","SALE_OF_DATA"],"name":"ShareASale Tracking"},{"id":"129696057","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"cj-network-integration-pixel"},{"id":"132383033","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"heatmap-pixel"},{"id":"144113977","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"2","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"brainx_purchase"},{"id":"166396217","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"BING ADS"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0420","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0420","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,effectiveTopLevelDomain: "com",initData: {"shop":{"name":"GARVEE","paymentSettings":{"currencyCode":"USD"},"myshopifyDomain":"mygarvee.myshopify.com","countryCode":"US","storefrontUrl":"https://www.garvee.com"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},function pageEvents(webPixelsManagerAPI) {webPixelsManagerAPI.publish("page_viewed", {});},"https://www.garvee.com/cdn","c1af55d5w80908667pd8ba33fbm6f3737ec",{"modern":"","legacy":""},{"shopId":"72466989369","storefrontBaseUrl":"https://www.garvee.com","extensionBaseUrl":"https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"ac843a20\"]","isMerchantRequest":"false","hashVersion":"c1af55d5w80908667pd8ba33fbm6f3737ec"});</script><script>
  1791.  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  1792.  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  1793.  window.ShopifyAnalytics.meta.currency = 'USD';
  1794.  var meta = {"page":{"pageType":"home"}};
  1795.  for (var attr in meta) {
  1796.    window.ShopifyAnalytics.meta[attr] = meta[attr];
  1797.  }
  1798. </script>
  1799. <script class="analytics">
  1800.  (function () {
  1801.    var customDocumentWrite = function(content) {
  1802.      var jquery = null;
  1803.  
  1804.      if (window.jQuery) {
  1805.        jquery = window.jQuery;
  1806.      } else if (window.Checkout && window.Checkout.$) {
  1807.        jquery = window.Checkout.$;
  1808.      }
  1809.  
  1810.      if (jquery) {
  1811.        jquery('body').append(content);
  1812.      }
  1813.    };
  1814.  
  1815.    var hasLoggedConversion = function(token) {
  1816.      if (token) {
  1817.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  1818.      }
  1819.      return false;
  1820.    }
  1821.  
  1822.    var setCookieIfConversion = function(token) {
  1823.      if (token) {
  1824.        var twoMonthsFromNow = new Date(Date.now());
  1825.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  1826.  
  1827.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  1828.      }
  1829.    }
  1830.  
  1831.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  1832.    if (trekkie.integrations) {
  1833.      return;
  1834.    }
  1835.    trekkie.methods = [
  1836.      'identify',
  1837.      'page',
  1838.      'ready',
  1839.      'track',
  1840.      'trackForm',
  1841.      'trackLink'
  1842.    ];
  1843.    trekkie.factory = function(method) {
  1844.      return function() {
  1845.        var args = Array.prototype.slice.call(arguments);
  1846.        args.unshift(method);
  1847.        trekkie.push(args);
  1848.        return trekkie;
  1849.      };
  1850.    };
  1851.    for (var i = 0; i < trekkie.methods.length; i++) {
  1852.      var key = trekkie.methods[i];
  1853.      trekkie[key] = trekkie.factory(key);
  1854.    }
  1855.    trekkie.load = function(config) {
  1856.      trekkie.config = config || {};
  1857.      trekkie.config.initialDocumentCookie = document.cookie;
  1858.      var first = document.getElementsByTagName('script')[0];
  1859.      var script = document.createElement('script');
  1860.      script.type = 'text/javascript';
  1861.      script.onerror = function(e) {
  1862.        var scriptFallback = document.createElement('script');
  1863.        scriptFallback.type = 'text/javascript';
  1864.        scriptFallback.onerror = function(error) {
  1865.                var Monorail = {
  1866.      produce: function produce(monorailDomain, schemaId, payload) {
  1867.        var currentMs = new Date().getTime();
  1868.        var event = {
  1869.          schema_id: schemaId,
  1870.          payload: payload,
  1871.          metadata: {
  1872.            event_created_at_ms: currentMs,
  1873.            event_sent_at_ms: currentMs
  1874.          }
  1875.        };
  1876.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  1877.      },
  1878.      sendRequest: function sendRequest(endpointUrl, payload) {
  1879.        // Try the sendBeacon API
  1880.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  1881.          var blobData = new window.Blob([payload], {
  1882.            type: 'text/plain'
  1883.          });
  1884.  
  1885.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  1886.            return true;
  1887.          } // sendBeacon was not successful
  1888.  
  1889.        } // XHR beacon
  1890.  
  1891.        var xhr = new XMLHttpRequest();
  1892.  
  1893.        try {
  1894.          xhr.open('POST', endpointUrl);
  1895.          xhr.setRequestHeader('Content-Type', 'text/plain');
  1896.          xhr.send(payload);
  1897.        } catch (e) {
  1898.          console.log(e);
  1899.        }
  1900.  
  1901.        return false;
  1902.      },
  1903.      isIos12: function isIos12() {
  1904.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  1905.      }
  1906.    };
  1907.    Monorail.produce('monorail-edge.shopifysvc.com',
  1908.      'trekkie_storefront_load_errors/1.1',
  1909.      {shop_id: 72466989369,
  1910.      theme_id: 176060563769,
  1911.      app_name: "storefront",
  1912.      context_url: window.location.href,
  1913.      source_url: "//www.garvee.com/cdn/s/trekkie.storefront.f0d5693ccbd1fc3a366a05ea27b0943896b4a200.min.js"});
  1914.  
  1915.        };
  1916.        scriptFallback.async = true;
  1917.        scriptFallback.src = '//www.garvee.com/cdn/s/trekkie.storefront.f0d5693ccbd1fc3a366a05ea27b0943896b4a200.min.js';
  1918.        first.parentNode.insertBefore(scriptFallback, first);
  1919.      };
  1920.      script.async = true;
  1921.      script.src = '//www.garvee.com/cdn/s/trekkie.storefront.f0d5693ccbd1fc3a366a05ea27b0943896b4a200.min.js';
  1922.      first.parentNode.insertBefore(script, first);
  1923.    };
  1924.    trekkie.load(
  1925.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":72466989369,"isMerchantRequest":null,"themeId":176060563769,"themeCityHash":"13747637745480764994","contentLanguage":"en","currency":"USD"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  1926.    );
  1927.  
  1928.    var loaded = false;
  1929.    trekkie.ready(function() {
  1930.      if (loaded) return;
  1931.      loaded = true;
  1932.  
  1933.      window.ShopifyAnalytics.lib = window.trekkie;
  1934.  
  1935.      var originalDocumentWrite = document.write;
  1936.      document.write = customDocumentWrite;
  1937.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  1938.      document.write = originalDocumentWrite;
  1939.  
  1940.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
  1941.  
  1942.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  1943.      var token = match? match[1]: undefined;
  1944.      if (!hasLoggedConversion(token)) {
  1945.        setCookieIfConversion(token);
  1946.        
  1947.      }
  1948.    });
  1949.  
  1950.  
  1951.        var eventsListenerScript = document.createElement('script');
  1952.        eventsListenerScript.async = true;
  1953.        eventsListenerScript.src = "//www.garvee.com/cdn/shopifycloud/shopify/assets/shop_events_listener-f55dd2979ec32029c7d9e0b454ab8b33f79c01ca039d17a6f5c9b95647564b19.js";
  1954.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  1955.  
  1956. })();</script>
  1957. <script
  1958.  defer
  1959.  src="https://www.garvee.com/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.6.5.min.js"
  1960.  data-application="storefront-renderer"
  1961.  data-shop-id="72466989369"
  1962.  data-render-region="gcp-us-east1"
  1963.  data-page-type="index"
  1964.  data-theme-instance-id="176060563769"
  1965.  data-theme-name="Megamog"
  1966.  data-theme-version="1.0.0"
  1967.  data-monorail-region="shop_domain"
  1968.  data-resource-timing-sampling-rate="10"
  1969.  data-shs="true"
  1970. ></script>
  1971. </head>
  1972.  
  1973.  <body
  1974.    id="m-theme"
  1975.    class="template-index "
  1976.    
  1977.  >
  1978.    <!-- brainx dsp start,not delete -->
  1979.    <script type="text/javascript">
  1980.  (function(e,a,c,u,t,n,i){e.bxtag||(t=e.bxtag=function(){t.invokeFunc?t.invokeFunc.apply(t,arguments):t.qu.push(arguments)},e._tecq||(e._tecq=t),t.push=t,t.qu=[],n=a.createElement(c),n.async=!0,n.src=u,i=a.getElementsByTagName(c)[0],i.parentNode.insertBefore(n,i))})(window,document,"script","//pixel.bxtag.com/tag/brainx.min.js");
  1981.  bxtag("init",'X-H0UNNYCLX57I');
  1982.  bxtag("event","page_view",{desc: document.title});
  1983. </script>
  1984.  
  1985.  
  1986.  
  1987.  
  1988. <script type="text/javascript">
  1989.  bxtag('event', 'home');
  1990. </script>
  1991.  
  1992.  
  1993.  
  1994.  
  1995.  
  1996.  
  1997.  
  1998.  
  1999.  
  2000.  
  2001.    <!-- brainx dsp end,not delete -->
  2002.    
  2003.  
  2004.  <style data-shopify>
  2005.    .m-button--scroll-top {
  2006.      position: fixed;
  2007.      right: 16px;
  2008.      bottom: 148px;
  2009.      z-index: 99;
  2010.      border-radius: 50%;
  2011.      padding: 0;
  2012.      display: inline-flex;
  2013.      align-items: center;
  2014.      justify-content: center;
  2015.      width: 46px;
  2016.      height: 46px;
  2017.      opacity: 0;
  2018.    }
  2019.  
  2020.    .m-button--scroll-top.is-show {
  2021.      opacity: 1;
  2022.    }
  2023.  
  2024.    .m-scroll-top-target {
  2025.      width: 0;
  2026.      height: 0;
  2027.      visibility: hidden;
  2028.      opacity: 0;
  2029.    }
  2030.    @media (max-width: 767px) {
  2031.      .m-button--scroll-top {
  2032.        display: none;
  2033.        width: 40px;
  2034.        height: 40px;
  2035.      }
  2036.      .m-button--scroll-top svg {
  2037.        width: 14px;
  2038.        height: 14px;
  2039.      }
  2040.    }
  2041.  </style>
  2042.  
  2043. <div id="scroll-to-top-target" class="m-scroll-top-target"></div>
  2044.  
  2045. <button
  2046.  id="scroll-to-top-button"
  2047.  class="m-button m-button--primary m-button--scroll-top"
  2048.  aria-label="Scroll to Top"
  2049. >
  2050.  <svg class="m-svg-icon m-svg-icon--medium" fill="currentColor" stroke="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M4.465 263.536l7.07 7.071c4.686 4.686 12.284 4.686 16.971 0L207 92.113V468c0 6.627 5.373 12 12 12h10c6.627 0 12-5.373 12-12V92.113l178.494 178.493c4.686 4.686 12.284 4.686 16.971 0l7.07-7.071c4.686-4.686 4.686-12.284 0-16.97l-211.05-211.05c-4.686-4.686-12.284-4.686-16.971 0L4.465 246.566c-4.687 4.686-4.687 12.284 0 16.97z"/></svg>
  2051. </button>
  2052.  
  2053. <!-- BEGIN sections: header-group -->
  2054. <div id="shopify-section-sections--24257709441337__729ed7ff-cd70-41ab-97b7-db284c5764d5" class="shopify-section shopify-section-group-header-group m-section-header"><link href="//www.garvee.com/cdn/shop/t/132/assets/section-header.css?v=65667843881238260991740986011" rel="stylesheet" type="text/css" media="all" />
  2055. <link href="//www.garvee.com/cdn/shop/t/132/assets/foxkit-mega-menu.css?v=118870949526784010331740986012" rel="stylesheet" type="text/css" media="all" />
  2056. <link
  2057.  rel="stylesheet"
  2058.  href="//www.garvee.com/cdn/shop/t/132/assets/component-country-flag.css?v=119660723418744181771740986011"
  2059.  media="print"
  2060.  onload="this.media='all'"
  2061. >
  2062. <script defer src="//www.garvee.com/cdn/shop/t/132/assets/search-form.js?v=163862797776246759571747730334"></script>
  2063. <script defer src="//www.garvee.com/cdn/shop/t/132/assets/localization-form.js?v=167225527161991589831740986011"></script>
  2064. <script src="https://analytics.ahrefs.com/analytics.js" data-key="oVZTh3tLW9ZVynB2iYvmpw" async></script><sticky-header data-sticky-type="on-scroll-up"
  2065.  class="m-header m:block "
  2066.  
  2067. >
  2068.  <div
  2069.    class="m-header__top-wrapper m-section--padding m-color-scheme-7ce8c1c8-ab1a-4e9a-bd79-38bb88965f8f m-gradient"
  2070.    style="--section-padding-top: 0px;"
  2071.  >
  2072.  <div
  2073.    class="m-header__top m-page-width"
  2074.  ><header-drawer class="m:block xl:m:hidden">
  2075.  <div class="m-menu-drawer-container m:display-flex" data-main-details-toggle>
  2076.    <button class="m-menu-drawer__icon-menu" data-summary-button aria-label="Menu">
  2077.      <span>
  2078.        <svg
  2079.          class="m-icon-hamburger m-svg-icon--large"
  2080.          viewBox="0 0 24 24"
  2081.          fill="none"
  2082.          xmlns="http://www.w3.org/2000/svg"
  2083.        >
  2084.          <path d="M3.75 12H20.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2085.          <path d="M3.75 6H20.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2086.          <path d="M3.75 18H20.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2087.        </svg>
  2088.        <svg
  2089.          class="m-icon-close m-svg-icon--large"
  2090.          viewBox="0 0 24 24"
  2091.          fill="none"
  2092.          xmlns="http://www.w3.org/2000/svg"
  2093.        >
  2094.          <path d="M18.75 5.25L5.25 18.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2095.          <path d="M18.75 18.75L5.25 5.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2096.        </svg>
  2097.      </span>
  2098.    </button>
  2099.    <div class="m-menu-drawer m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7">
  2100.      <div class="m-menu-drawer__inner-container">
  2101.        <div class="m-menu-drawer__navigation-container">
  2102.          <ul class="m-menu-drawer__menu m-has-submenu" role="list">
  2103. <li
  2104.                  class="m-menu-drawer__menu-item m-list-menu__item "
  2105.                >
  2106.                  <a href="/collections/ride-ons" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  2107.                    Ride On Toys
  2108.                  </a>
  2109.                </li><li
  2110.                  class="m-menu-drawer__menu-item m-list-menu__item "
  2111.                  data-main-details-toggle
  2112.                >
  2113.                  <a href="#" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  2114.                    Outdoor Living
  2115.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  2116.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  2117.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2118.                      </svg>
  2119.                    </span>
  2120.                  </a>
  2121.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  2122.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  2123.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  2124.                        <svg
  2125.                          class="m-svg-icon--small"
  2126.                          viewBox="0 0 12 12"
  2127.                          fill="none"
  2128.                          xmlns="http://www.w3.org/2000/svg"
  2129.                        >
  2130.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2131.                        </svg>
  2132.                        Outdoor Living
  2133.                      </button>
  2134.                      <header-dropdown-menu class="m:block">
  2135.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2136.                                <a href="#" class="m-link m-link--text m:display-flex m:items-center">
  2137.                                  Grills&amp; Outdoor cooking
  2138.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2139.                                    <svg
  2140.                                      class="m-svg-icon--small"
  2141.                                      viewBox="0 0 12 12"
  2142.                                      fill="none"
  2143.                                      xmlns="http://www.w3.org/2000/svg"
  2144.                                    >
  2145.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2146.                                    </svg>
  2147.                                  </span>
  2148.                                </a>
  2149.                                <ul
  2150.                                  class="m-menu-dropdown__submenu"
  2151.                                  role="list"
  2152.                                  tabindex="-1"
  2153.                                ><li class="m-menu-dropdown__submenu-item ">
  2154.                                      <a
  2155.                                        href="/collections/fire-pits-outdoor-fireplaces"
  2156.                                        class="m-link m-link--text m:display-flex"
  2157.                                        
  2158.                                      >
  2159.                                        Fire Pits
  2160.                                      </a>
  2161.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2162.                                      <a
  2163.                                        href="/collections/outdoor-patio-furniture"
  2164.                                        class="m-link m-link--text m:display-flex"
  2165.                                        
  2166.                                      >
  2167.                                        Outdoor &amp; Patio Furniture
  2168.                                      </a>
  2169.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2170.                                      <a
  2171.                                        href="/collections/canopy-tent"
  2172.                                        class="m-link m-link--text m:display-flex"
  2173.                                        
  2174.                                      >
  2175.                                        Canopies &amp; Tents
  2176.                                      </a>
  2177.                                    </li></ul>
  2178.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2179.                                <a href="#" class="m-link m-link--text m:display-flex m:items-center">
  2180.                                  Outdoor Cooking &amp; Grilling Fuel
  2181.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2182.                                    <svg
  2183.                                      class="m-svg-icon--small"
  2184.                                      viewBox="0 0 12 12"
  2185.                                      fill="none"
  2186.                                      xmlns="http://www.w3.org/2000/svg"
  2187.                                    >
  2188.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2189.                                    </svg>
  2190.                                  </span>
  2191.                                </a>
  2192.                                <ul
  2193.                                  class="m-menu-dropdown__submenu"
  2194.                                  role="list"
  2195.                                  tabindex="-1"
  2196.                                ><li class="m-menu-dropdown__submenu-item ">
  2197.                                      <a
  2198.                                        href="/collections/gazebo"
  2199.                                        class="m-link m-link--text m:display-flex"
  2200.                                        
  2201.                                      >
  2202.                                        Gazebos
  2203.                                      </a>
  2204.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2205.                                      <a
  2206.                                        href="/collections/pool-safety-cover"
  2207.                                        class="m-link m-link--text m:display-flex"
  2208.                                        
  2209.                                      >
  2210.                                        Pool Safety Covers
  2211.                                      </a>
  2212.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2213.                                      <a
  2214.                                        href="/collections/swimming-pool-rail"
  2215.                                        class="m-link m-link--text m:display-flex"
  2216.                                        
  2217.                                      >
  2218.                                        Swimming Pool Rails
  2219.                                      </a>
  2220.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2221.                                      <a
  2222.                                        href="/collections/fire-pit-tables"
  2223.                                        class="m-link m-link--text m:display-flex"
  2224.                                        
  2225.                                      >
  2226.                                        Fire Pit Tables
  2227.                                      </a>
  2228.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2229.                                      <a
  2230.                                        href="/collections/patio-heaters"
  2231.                                        class="m-link m-link--text m:display-flex"
  2232.                                        
  2233.                                      >
  2234.                                        Patio Heaters
  2235.                                      </a>
  2236.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2237.                                      <a
  2238.                                        href="/collections/fire-kit-cover"
  2239.                                        class="m-link m-link--text m:display-flex"
  2240.                                        
  2241.                                      >
  2242.                                        Fire Pit Cover
  2243.                                      </a>
  2244.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2245.                                      <a
  2246.                                        href="/collections/outdoor-rugs"
  2247.                                        class="m-link m-link--text m:display-flex"
  2248.                                        
  2249.                                      >
  2250.                                        Outdoor Rugs
  2251.                                      </a>
  2252.                                    </li></ul>
  2253.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2254.                                <a href="#" class="m-link m-link--text m:display-flex m:items-center">
  2255.                                  Propane Refill
  2256.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2257.                                    <svg
  2258.                                      class="m-svg-icon--small"
  2259.                                      viewBox="0 0 12 12"
  2260.                                      fill="none"
  2261.                                      xmlns="http://www.w3.org/2000/svg"
  2262.                                    >
  2263.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2264.                                    </svg>
  2265.                                  </span>
  2266.                                </a>
  2267.                                <ul
  2268.                                  class="m-menu-dropdown__submenu"
  2269.                                  role="list"
  2270.                                  tabindex="-1"
  2271.                                ><li class="m-menu-dropdown__submenu-item ">
  2272.                                      <a
  2273.                                        href="/collections/carports"
  2274.                                        class="m-link m-link--text m:display-flex"
  2275.                                        
  2276.                                      >
  2277.                                        Carports &amp; Garages
  2278.                                      </a>
  2279.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2280.                                      <a
  2281.                                        href="/collections/greenhouses-plant-germination-equipment"
  2282.                                        class="m-link m-link--text m:display-flex"
  2283.                                        
  2284.                                      >
  2285.                                        Greenhouses &amp; Plant Germination Equipment
  2286.                                      </a>
  2287.                                    </li></ul>
  2288.                              </li></ul>
  2289.                      </header-dropdown-menu>
  2290.                    </div>
  2291.                  </div>
  2292.                </li><li
  2293.                  class="m-menu-drawer__menu-item m-list-menu__item "
  2294.                  data-main-details-toggle
  2295.                >
  2296.                  <a href="/collections/lawn-garden" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  2297.                    Lawn &amp; Garden
  2298.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  2299.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  2300.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2301.                      </svg>
  2302.                    </span>
  2303.                  </a>
  2304.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  2305.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  2306.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  2307.                        <svg
  2308.                          class="m-svg-icon--small"
  2309.                          viewBox="0 0 12 12"
  2310.                          fill="none"
  2311.                          xmlns="http://www.w3.org/2000/svg"
  2312.                        >
  2313.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2314.                        </svg>
  2315.                        Lawn &amp; Garden
  2316.                      </button>
  2317.                      <header-dropdown-menu class="m:block">
  2318.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2319.                                <a href="/collections/outdoorshade" class="m-link m-link--text m:display-flex m:items-center">
  2320.                                  Outdoor Shade
  2321.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2322.                                    <svg
  2323.                                      class="m-svg-icon--small"
  2324.                                      viewBox="0 0 12 12"
  2325.                                      fill="none"
  2326.                                      xmlns="http://www.w3.org/2000/svg"
  2327.                                    >
  2328.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2329.                                    </svg>
  2330.                                  </span>
  2331.                                </a>
  2332.                                <ul
  2333.                                  class="m-menu-dropdown__submenu"
  2334.                                  role="list"
  2335.                                  tabindex="-1"
  2336.                                ><li class="m-menu-dropdown__submenu-item ">
  2337.                                      <a
  2338.                                        href="/collections/carports"
  2339.                                        class="m-link m-link--text m:display-flex"
  2340.                                        
  2341.                                      >
  2342.                                        Carports
  2343.                                      </a>
  2344.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2345.                                      <a
  2346.                                        href="/collections/carport-replacement-cover"
  2347.                                        class="m-link m-link--text m:display-flex"
  2348.                                        
  2349.                                      >
  2350.                                        Carport Replacement Covers
  2351.                                      </a>
  2352.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2353.                                      <a
  2354.                                        href="/collections/gazebo"
  2355.                                        class="m-link m-link--text m:display-flex"
  2356.                                        
  2357.                                      >
  2358.                                        Gazebos
  2359.                                      </a>
  2360.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2361.                                      <a
  2362.                                        href="/collections/canopy-tent"
  2363.                                        class="m-link m-link--text m:display-flex"
  2364.                                        
  2365.                                      >
  2366.                                        Canopy Tents
  2367.                                      </a>
  2368.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2369.                                      <a
  2370.                                        href="/collections/pergola"
  2371.                                        class="m-link m-link--text m:display-flex"
  2372.                                        
  2373.                                      >
  2374.                                        Pergolas
  2375.                                      </a>
  2376.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2377.                                      <a
  2378.                                        href="/collections/awning"
  2379.                                        class="m-link m-link--text m:display-flex"
  2380.                                        
  2381.                                      >
  2382.                                        Awnings
  2383.                                      </a>
  2384.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2385.                                      <a
  2386.                                        href="/collections/umbrella"
  2387.                                        class="m-link m-link--text m:display-flex"
  2388.                                        
  2389.                                      >
  2390.                                        Umbrellas
  2391.                                      </a>
  2392.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2393.                                      <a
  2394.                                        href="/collections/camping-tent"
  2395.                                        class="m-link m-link--text m:display-flex"
  2396.                                        
  2397.                                      >
  2398.                                        Camping Tents
  2399.                                      </a>
  2400.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2401.                                      <a
  2402.                                        href="/collections/outdoor-storage-tent"
  2403.                                        class="m-link m-link--text m:display-flex"
  2404.                                        
  2405.                                      >
  2406.                                        Outdoor Storage Tents
  2407.                                      </a>
  2408.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2409.                                      <a
  2410.                                        href="/collections/ice-fishing-tent"
  2411.                                        class="m-link m-link--text m:display-flex"
  2412.                                        
  2413.                                      >
  2414.                                        Ice Fishing Tents
  2415.                                      </a>
  2416.                                    </li></ul>
  2417.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2418.                                <a href="/collections/garden-supplies" class="m-link m-link--text m:display-flex m:items-center">
  2419.                                  Garden Supplies
  2420.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2421.                                    <svg
  2422.                                      class="m-svg-icon--small"
  2423.                                      viewBox="0 0 12 12"
  2424.                                      fill="none"
  2425.                                      xmlns="http://www.w3.org/2000/svg"
  2426.                                    >
  2427.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2428.                                    </svg>
  2429.                                  </span>
  2430.                                </a>
  2431.                                <ul
  2432.                                  class="m-menu-dropdown__submenu"
  2433.                                  role="list"
  2434.                                  tabindex="-1"
  2435.                                ><li class="m-menu-dropdown__submenu-item ">
  2436.                                      <a
  2437.                                        href="/collections/greenhouses"
  2438.                                        class="m-link m-link--text m:display-flex"
  2439.                                        
  2440.                                      >
  2441.                                        Greenhouses
  2442.                                      </a>
  2443.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2444.                                      <a
  2445.                                        href="/collections/storage-sheds"
  2446.                                        class="m-link m-link--text m:display-flex"
  2447.                                        
  2448.                                      >
  2449.                                        Storage Sheds
  2450.                                      </a>
  2451.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2452.                                      <a
  2453.                                        href="/collections/raised-garden-bed"
  2454.                                        class="m-link m-link--text m:display-flex"
  2455.                                        
  2456.                                      >
  2457.                                        Raised Garden Beds
  2458.                                      </a>
  2459.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2460.                                      <a
  2461.                                        href="/collections/plant-pots"
  2462.                                        class="m-link m-link--text m:display-flex"
  2463.                                        
  2464.                                      >
  2465.                                        Plant Pots
  2466.                                      </a>
  2467.                                    </li></ul>
  2468.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2469.                                <a href="/collections/hydroponics" class="m-link m-link--text m:display-flex m:items-center">
  2470.                                  Hydroponics
  2471.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2472.                                    <svg
  2473.                                      class="m-svg-icon--small"
  2474.                                      viewBox="0 0 12 12"
  2475.                                      fill="none"
  2476.                                      xmlns="http://www.w3.org/2000/svg"
  2477.                                    >
  2478.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2479.                                    </svg>
  2480.                                  </span>
  2481.                                </a>
  2482.                                <ul
  2483.                                  class="m-menu-dropdown__submenu"
  2484.                                  role="list"
  2485.                                  tabindex="-1"
  2486.                                ><li class="m-menu-dropdown__submenu-item ">
  2487.                                      <a
  2488.                                        href="/collections/growing-kits-systems"
  2489.                                        class="m-link m-link--text m:display-flex"
  2490.                                        
  2491.                                      >
  2492.                                        Growing Kits &amp; Systems
  2493.                                      </a>
  2494.                                    </li></ul>
  2495.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2496.                                <a href="/collections/landscaping-shade" class="m-link m-link--text m:display-flex m:items-center">
  2497.                                  Landscaping &amp; Shade
  2498.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2499.                                    <svg
  2500.                                      class="m-svg-icon--small"
  2501.                                      viewBox="0 0 12 12"
  2502.                                      fill="none"
  2503.                                      xmlns="http://www.w3.org/2000/svg"
  2504.                                    >
  2505.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2506.                                    </svg>
  2507.                                  </span>
  2508.                                </a>
  2509.                                <ul
  2510.                                  class="m-menu-dropdown__submenu"
  2511.                                  role="list"
  2512.                                  tabindex="-1"
  2513.                                ><li class="m-menu-dropdown__submenu-item ">
  2514.                                      <a
  2515.                                        href="/collections/artificial-grass-1"
  2516.                                        class="m-link m-link--text m:display-flex"
  2517.                                        
  2518.                                      >
  2519.                                        Artificial Grass
  2520.                                      </a>
  2521.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2522.                                      <a
  2523.                                        href="/collections/greenhouses-plant-germination-equipment"
  2524.                                        class="m-link m-link--text m:display-flex"
  2525.                                        
  2526.                                      >
  2527.                                        Greenhouses &amp; Plant Germination Equipment
  2528.                                      </a>
  2529.                                    </li></ul>
  2530.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2531.                                <a href="/collections/lawn-care" class="m-link m-link--text m:display-flex m:items-center">
  2532.                                  Lawn Care
  2533.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2534.                                    <svg
  2535.                                      class="m-svg-icon--small"
  2536.                                      viewBox="0 0 12 12"
  2537.                                      fill="none"
  2538.                                      xmlns="http://www.w3.org/2000/svg"
  2539.                                    >
  2540.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2541.                                    </svg>
  2542.                                  </span>
  2543.                                </a>
  2544.                                <ul
  2545.                                  class="m-menu-dropdown__submenu"
  2546.                                  role="list"
  2547.                                  tabindex="-1"
  2548.                                ><li class="m-menu-dropdown__submenu-item ">
  2549.                                      <a
  2550.                                        href="/collections/landscape-fabric"
  2551.                                        class="m-link m-link--text m:display-flex"
  2552.                                        
  2553.                                      >
  2554.                                        Landscape Fabric
  2555.                                      </a>
  2556.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2557.                                      <a
  2558.                                        href="/collections/commercial-grade-driveway-fabric"
  2559.                                        class="m-link m-link--text m:display-flex"
  2560.                                        
  2561.                                      >
  2562.                                        Commercial Grade Driveway Fabric
  2563.                                      </a>
  2564.                                    </li></ul>
  2565.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2566.                                <a href="/collections/patio-furniture-accessories" class="m-link m-link--text m:display-flex m:items-center">
  2567.                                  Patio Furniture &amp; Accessories
  2568.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2569.                                    <svg
  2570.                                      class="m-svg-icon--small"
  2571.                                      viewBox="0 0 12 12"
  2572.                                      fill="none"
  2573.                                      xmlns="http://www.w3.org/2000/svg"
  2574.                                    >
  2575.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2576.                                    </svg>
  2577.                                  </span>
  2578.                                </a>
  2579.                                <ul
  2580.                                  class="m-menu-dropdown__submenu"
  2581.                                  role="list"
  2582.                                  tabindex="-1"
  2583.                                ><li class="m-menu-dropdown__submenu-item ">
  2584.                                      <a
  2585.                                        href="/collections/camp-kitchen"
  2586.                                        class="m-link m-link--text m:display-flex"
  2587.                                        
  2588.                                      >
  2589.                                        Camp Kitchen
  2590.                                      </a>
  2591.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2592.                                      <a
  2593.                                        href="/collections/garden-cart"
  2594.                                        class="m-link m-link--text m:display-flex"
  2595.                                        
  2596.                                      >
  2597.                                        Garden Cart
  2598.                                      </a>
  2599.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2600.                                      <a
  2601.                                        href="/collections/firewood-cart"
  2602.                                        class="m-link m-link--text m:display-flex"
  2603.                                        
  2604.                                      >
  2605.                                        Firewood Cart
  2606.                                      </a>
  2607.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2608.                                      <a
  2609.                                        href="/collections/outdoor-garden-storage-workbench"
  2610.                                        class="m-link m-link--text m:display-flex"
  2611.                                        
  2612.                                      >
  2613.                                        Outdoor Garden Storage Workbench
  2614.                                      </a>
  2615.                                    </li></ul>
  2616.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2617.                                <a href="/collections/pools-spas" class="m-link m-link--text m:display-flex m:items-center">
  2618.                                  Pools &amp; Spas
  2619.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2620.                                    <svg
  2621.                                      class="m-svg-icon--small"
  2622.                                      viewBox="0 0 12 12"
  2623.                                      fill="none"
  2624.                                      xmlns="http://www.w3.org/2000/svg"
  2625.                                    >
  2626.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2627.                                    </svg>
  2628.                                  </span>
  2629.                                </a>
  2630.                                <ul
  2631.                                  class="m-menu-dropdown__submenu"
  2632.                                  role="list"
  2633.                                  tabindex="-1"
  2634.                                ><li class="m-menu-dropdown__submenu-item ">
  2635.                                      <a
  2636.                                        href="/collections/swimming-pool-rail"
  2637.                                        class="m-link m-link--text m:display-flex"
  2638.                                        
  2639.                                      >
  2640.                                        Swimming Pool Rail
  2641.                                      </a>
  2642.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2643.                                      <a
  2644.                                        href="/collections/pool-safety-cover"
  2645.                                        class="m-link m-link--text m:display-flex"
  2646.                                        
  2647.                                      >
  2648.                                        Pool Safety Cover
  2649.                                      </a>
  2650.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2651.                                      <a
  2652.                                        href="/collections/poolside-storage"
  2653.                                        class="m-link m-link--text m:display-flex"
  2654.                                        
  2655.                                      >
  2656.                                        Poolside Storage
  2657.                                      </a>
  2658.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2659.                                      <a
  2660.                                        href="/collections/screen"
  2661.                                        class="m-link m-link--text m:display-flex"
  2662.                                        
  2663.                                      >
  2664.                                        Screen
  2665.                                      </a>
  2666.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2667.                                      <a
  2668.                                        href="/collections/robotic-pool-cleaners"
  2669.                                        class="m-link m-link--text m:display-flex"
  2670.                                        
  2671.                                      >
  2672.                                        Robotic Pool Cleaners
  2673.                                      </a>
  2674.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2675.                                      <a
  2676.                                        href="/collections/pool-liner"
  2677.                                        class="m-link m-link--text m:display-flex"
  2678.                                        
  2679.                                      >
  2680.                                        Pool Liner
  2681.                                      </a>
  2682.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2683.                                      <a
  2684.                                        href="/collections/hot-tubs"
  2685.                                        class="m-link m-link--text m:display-flex"
  2686.                                        
  2687.                                      >
  2688.                                        Hot Tubs
  2689.                                      </a>
  2690.                                    </li></ul>
  2691.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2692.                                <a href="/collections/outdoor-decoration" class="m-link m-link--text m:display-flex m:items-center">
  2693.                                  Outdoor Decoration
  2694.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2695.                                    <svg
  2696.                                      class="m-svg-icon--small"
  2697.                                      viewBox="0 0 12 12"
  2698.                                      fill="none"
  2699.                                      xmlns="http://www.w3.org/2000/svg"
  2700.                                    >
  2701.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2702.                                    </svg>
  2703.                                  </span>
  2704.                                </a>
  2705.                                <ul
  2706.                                  class="m-menu-dropdown__submenu"
  2707.                                  role="list"
  2708.                                  tabindex="-1"
  2709.                                ><li class="m-menu-dropdown__submenu-item ">
  2710.                                      <a
  2711.                                        href="/collections/decking-fencing"
  2712.                                        class="m-link m-link--text m:display-flex"
  2713.                                        
  2714.                                      >
  2715.                                        Decking &amp; Fencing
  2716.                                      </a>
  2717.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2718.                                      <a
  2719.                                        href="/collections/retractable-yard-flagpole"
  2720.                                        class="m-link m-link--text m:display-flex"
  2721.                                        
  2722.                                      >
  2723.                                        Retractable yard flagpole
  2724.                                      </a>
  2725.                                    </li></ul>
  2726.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2727.                                <a href="/collections/water-gardens-ponds" class="m-link m-link--text m:display-flex m:items-center">
  2728.                                  Water Gardens &amp; Ponds
  2729.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2730.                                    <svg
  2731.                                      class="m-svg-icon--small"
  2732.                                      viewBox="0 0 12 12"
  2733.                                      fill="none"
  2734.                                      xmlns="http://www.w3.org/2000/svg"
  2735.                                    >
  2736.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2737.                                    </svg>
  2738.                                  </span>
  2739.                                </a>
  2740.                                <ul
  2741.                                  class="m-menu-dropdown__submenu"
  2742.                                  role="list"
  2743.                                  tabindex="-1"
  2744.                                ><li class="m-menu-dropdown__submenu-item ">
  2745.                                      <a
  2746.                                        href="/collections/pond-liner"
  2747.                                        class="m-link m-link--text m:display-flex"
  2748.                                        
  2749.                                      >
  2750.                                        Pond Liner
  2751.                                      </a>
  2752.                                    </li></ul>
  2753.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2754.                                <a href="/collections/pots-planters-container-accessories" class="m-link m-link--text m:display-flex m:items-center">
  2755.                                  Planters &amp; Container Accessories
  2756.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2757.                                    <svg
  2758.                                      class="m-svg-icon--small"
  2759.                                      viewBox="0 0 12 12"
  2760.                                      fill="none"
  2761.                                      xmlns="http://www.w3.org/2000/svg"
  2762.                                    >
  2763.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2764.                                    </svg>
  2765.                                  </span>
  2766.                                </a>
  2767.                                <ul
  2768.                                  class="m-menu-dropdown__submenu"
  2769.                                  role="list"
  2770.                                  tabindex="-1"
  2771.                                ><li class="m-menu-dropdown__submenu-item ">
  2772.                                      <a
  2773.                                        href="/collections/raised-garden-bed"
  2774.                                        class="m-link m-link--text m:display-flex"
  2775.                                        
  2776.                                      >
  2777.                                        Raised Garden Bed
  2778.                                      </a>
  2779.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2780.                                      <a
  2781.                                        href="/collections/stands"
  2782.                                        class="m-link m-link--text m:display-flex"
  2783.                                        
  2784.                                      >
  2785.                                        Stands
  2786.                                      </a>
  2787.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2788.                                      <a
  2789.                                        href="/collections/plant-pots"
  2790.                                        class="m-link m-link--text m:display-flex"
  2791.                                        
  2792.                                      >
  2793.                                        Plant Pots
  2794.                                      </a>
  2795.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2796.                                      <a
  2797.                                        href="/collections/trellises"
  2798.                                        class="m-link m-link--text m:display-flex"
  2799.                                        
  2800.                                      >
  2801.                                        Trellises
  2802.                                      </a>
  2803.                                    </li></ul>
  2804.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2805.                                <a href="/collections/watering-irrigation" class="m-link m-link--text m:display-flex m:items-center">
  2806.                                  Watering &amp; Irrigation
  2807.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2808.                                    <svg
  2809.                                      class="m-svg-icon--small"
  2810.                                      viewBox="0 0 12 12"
  2811.                                      fill="none"
  2812.                                      xmlns="http://www.w3.org/2000/svg"
  2813.                                    >
  2814.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2815.                                    </svg>
  2816.                                  </span>
  2817.                                </a>
  2818.                                <ul
  2819.                                  class="m-menu-dropdown__submenu"
  2820.                                  role="list"
  2821.                                  tabindex="-1"
  2822.                                ><li class="m-menu-dropdown__submenu-item ">
  2823.                                      <a
  2824.                                        href="/collections/hose-reel"
  2825.                                        class="m-link m-link--text m:display-flex"
  2826.                                        
  2827.                                      >
  2828.                                        Hose Reel
  2829.                                      </a>
  2830.                                    </li></ul>
  2831.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2832.                                <a href="/collections/outdoor-power-equipment" class="m-link m-link--text m:display-flex m:items-center">
  2833.                                  Outdoor Power Equipment
  2834.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2835.                                    <svg
  2836.                                      class="m-svg-icon--small"
  2837.                                      viewBox="0 0 12 12"
  2838.                                      fill="none"
  2839.                                      xmlns="http://www.w3.org/2000/svg"
  2840.                                    >
  2841.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2842.                                    </svg>
  2843.                                  </span>
  2844.                                </a>
  2845.                                <ul
  2846.                                  class="m-menu-dropdown__submenu"
  2847.                                  role="list"
  2848.                                  tabindex="-1"
  2849.                                ><li class="m-menu-dropdown__submenu-item ">
  2850.                                      <a
  2851.                                        href="/collections/pressure-washers"
  2852.                                        class="m-link m-link--text m:display-flex"
  2853.                                        
  2854.                                      >
  2855.                                        Pressure Washers
  2856.                                      </a>
  2857.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2858.                                      <a
  2859.                                        href="/collections/lawn-mowers-tractors"
  2860.                                        class="m-link m-link--text m:display-flex"
  2861.                                        
  2862.                                      >
  2863.                                        Lawn Mowers &amp; Tractors
  2864.                                      </a>
  2865.                                    </li></ul>
  2866.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2867.                                <a href="/collections/outdoor-hand-tools" class="m-link m-link--text m:display-flex m:items-center">
  2868.                                  Outdoor Hand Tools
  2869.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2870.                                    <svg
  2871.                                      class="m-svg-icon--small"
  2872.                                      viewBox="0 0 12 12"
  2873.                                      fill="none"
  2874.                                      xmlns="http://www.w3.org/2000/svg"
  2875.                                    >
  2876.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2877.                                    </svg>
  2878.                                  </span>
  2879.                                </a>
  2880.                                <ul
  2881.                                  class="m-menu-dropdown__submenu"
  2882.                                  role="list"
  2883.                                  tabindex="-1"
  2884.                                ><li class="m-menu-dropdown__submenu-item ">
  2885.                                      <a
  2886.                                        href="/collections/compost-spreader"
  2887.                                        class="m-link m-link--text m:display-flex"
  2888.                                        
  2889.                                      >
  2890.                                        Compost Spreader
  2891.                                      </a>
  2892.                                    </li></ul>
  2893.                              </li></ul>
  2894.                      </header-dropdown-menu>
  2895.                    </div>
  2896.                  </div>
  2897.                </li><li
  2898.                  class="m-menu-drawer__menu-item m-list-menu__item "
  2899.                  data-main-details-toggle
  2900.                >
  2901.                  <a href="/collections/air-conditioners-accessories" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  2902.                    Air Conditioners
  2903.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  2904.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  2905.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2906.                      </svg>
  2907.                    </span>
  2908.                  </a>
  2909.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  2910.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  2911.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  2912.                        <svg
  2913.                          class="m-svg-icon--small"
  2914.                          viewBox="0 0 12 12"
  2915.                          fill="none"
  2916.                          xmlns="http://www.w3.org/2000/svg"
  2917.                        >
  2918.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2919.                        </svg>
  2920.                        Air Conditioners
  2921.                      </button>
  2922.                      <header-dropdown-menu class="m:block">
  2923.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2924.                                <a href="/collections/mini-split-air-conditioners" class="m-link m-link--text m:display-flex m:items-center">
  2925.                                  Mini Split Air Conditioners
  2926.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2927.                                    <svg
  2928.                                      class="m-svg-icon--small"
  2929.                                      viewBox="0 0 12 12"
  2930.                                      fill="none"
  2931.                                      xmlns="http://www.w3.org/2000/svg"
  2932.                                    >
  2933.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2934.                                    </svg>
  2935.                                  </span>
  2936.                                </a>
  2937.                                <ul
  2938.                                  class="m-menu-dropdown__submenu"
  2939.                                  role="list"
  2940.                                  tabindex="-1"
  2941.                                ><li class="m-menu-dropdown__submenu-item ">
  2942.                                      <a
  2943.                                        href="/collections/inverter"
  2944.                                        class="m-link m-link--text m:display-flex"
  2945.                                        
  2946.                                      >
  2947.                                        Inverter
  2948.                                      </a>
  2949.                                    </li></ul>
  2950.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2951.                                <a href="/collections/window-air-conditioner" class="m-link m-link--text m:display-flex m:items-center">
  2952.                                  Windows Air Conditioners
  2953.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2954.                                    <svg
  2955.                                      class="m-svg-icon--small"
  2956.                                      viewBox="0 0 12 12"
  2957.                                      fill="none"
  2958.                                      xmlns="http://www.w3.org/2000/svg"
  2959.                                    >
  2960.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2961.                                    </svg>
  2962.                                  </span>
  2963.                                </a>
  2964.                                <ul
  2965.                                  class="m-menu-dropdown__submenu"
  2966.                                  role="list"
  2967.                                  tabindex="-1"
  2968.                                ><li class="m-menu-dropdown__submenu-item ">
  2969.                                      <a
  2970.                                        href="/collections/fixed-frequency"
  2971.                                        class="m-link m-link--text m:display-flex"
  2972.                                        
  2973.                                      >
  2974.                                        Fixed frequency
  2975.                                      </a>
  2976.                                    </li><li class="m-menu-dropdown__submenu-item ">
  2977.                                      <a
  2978.                                        href="/collections/inverter"
  2979.                                        class="m-link m-link--text m:display-flex"
  2980.                                        
  2981.                                      >
  2982.                                        Inverter
  2983.                                      </a>
  2984.                                    </li></ul>
  2985.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  2986.                                <a href="/collections/portable-air-conditioners" class="m-link m-link--text m:display-flex m:items-center">
  2987.                                  Portable Air Conditioner
  2988.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  2989.                                    <svg
  2990.                                      class="m-svg-icon--small"
  2991.                                      viewBox="0 0 12 12"
  2992.                                      fill="none"
  2993.                                      xmlns="http://www.w3.org/2000/svg"
  2994.                                    >
  2995.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  2996.                                    </svg>
  2997.                                  </span>
  2998.                                </a>
  2999.                                <ul
  3000.                                  class="m-menu-dropdown__submenu"
  3001.                                  role="list"
  3002.                                  tabindex="-1"
  3003.                                ><li class="m-menu-dropdown__submenu-item ">
  3004.                                      <a
  3005.                                        href="/collections/fixed-frequency"
  3006.                                        class="m-link m-link--text m:display-flex"
  3007.                                        
  3008.                                      >
  3009.                                        Fixed frequency
  3010.                                      </a>
  3011.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3012.                                      <a
  3013.                                        href="/collections/inverter"
  3014.                                        class="m-link m-link--text m:display-flex"
  3015.                                        
  3016.                                      >
  3017.                                        Inverter
  3018.                                      </a>
  3019.                                    </li></ul>
  3020.                              </li></ul>
  3021.                      </header-dropdown-menu>
  3022.                    </div>
  3023.                  </div>
  3024.                </li><li
  3025.                  class="m-menu-drawer__menu-item m-list-menu__item "
  3026.                  data-main-details-toggle
  3027.                >
  3028.                  <a href="/collections/restaurant-food-service" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  3029.                    Restaurant &amp; Food Service
  3030.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  3031.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  3032.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3033.                      </svg>
  3034.                    </span>
  3035.                  </a>
  3036.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  3037.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  3038.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  3039.                        <svg
  3040.                          class="m-svg-icon--small"
  3041.                          viewBox="0 0 12 12"
  3042.                          fill="none"
  3043.                          xmlns="http://www.w3.org/2000/svg"
  3044.                        >
  3045.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3046.                        </svg>
  3047.                        Restaurant &amp; Food Service
  3048.                      </button>
  3049.                      <header-dropdown-menu class="m:block">
  3050.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  3051.                                <a href="/collections/refrigeration-ice-equipment" class="m-link m-link--text m:display-flex m:items-center">
  3052.                                  Refrigeration &amp; Ice Equipment
  3053.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  3054.                                    <svg
  3055.                                      class="m-svg-icon--small"
  3056.                                      viewBox="0 0 12 12"
  3057.                                      fill="none"
  3058.                                      xmlns="http://www.w3.org/2000/svg"
  3059.                                    >
  3060.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3061.                                    </svg>
  3062.                                  </span>
  3063.                                </a>
  3064.                                <ul
  3065.                                  class="m-menu-dropdown__submenu"
  3066.                                  role="list"
  3067.                                  tabindex="-1"
  3068.                                ><li class="m-menu-dropdown__submenu-item ">
  3069.                                      <a
  3070.                                        href="/collections/ice-machines"
  3071.                                        class="m-link m-link--text m:display-flex"
  3072.                                        
  3073.                                      >
  3074.                                        Ice Machines
  3075.                                      </a>
  3076.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3077.                                      <a
  3078.                                        href="/collections/beverage-refrigerator"
  3079.                                        class="m-link m-link--text m:display-flex"
  3080.                                        
  3081.                                      >
  3082.                                        Beverage Refrigerator
  3083.                                      </a>
  3084.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3085.                                      <a
  3086.                                        href="/collections/merchandising-refrigerators"
  3087.                                        class="m-link m-link--text m:display-flex"
  3088.                                        
  3089.                                      >
  3090.                                        Merchandising Refrigerators
  3091.                                      </a>
  3092.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3093.                                      <a
  3094.                                        href="/collections/car-refrigerator"
  3095.                                        class="m-link m-link--text m:display-flex"
  3096.                                        
  3097.                                      >
  3098.                                        Car Refrigerator
  3099.                                      </a>
  3100.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3101.                                      <a
  3102.                                        href="/collections/reach-in-refrigerators-and-freezers"
  3103.                                        class="m-link m-link--text m:display-flex"
  3104.                                        
  3105.                                      >
  3106.                                        Reach-In Refrigerators and Freezers
  3107.                                      </a>
  3108.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3109.                                      <a
  3110.                                        href="/collections/soft-serve-ice-cream-machines"
  3111.                                        class="m-link m-link--text m:display-flex"
  3112.                                        
  3113.                                      >
  3114.                                        Soft Serve Ice Cream Machines
  3115.                                      </a>
  3116.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3117.                                      <a
  3118.                                        href="/collections/refrigerators"
  3119.                                        class="m-link m-link--text m:display-flex"
  3120.                                        
  3121.                                      >
  3122.                                        Refrigerators
  3123.                                      </a>
  3124.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3125.                                      <a
  3126.                                        href="/collections/refrigerated-condiment-holder"
  3127.                                        class="m-link m-link--text m:display-flex"
  3128.                                        
  3129.                                      >
  3130.                                        Refrigerated Condiment Holder
  3131.                                      </a>
  3132.                                    </li></ul>
  3133.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  3134.                                <a href="/collections/restaurant-furniture" class="m-link m-link--text m:display-flex m:items-center">
  3135.                                  Restaurant Furniture
  3136.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  3137.                                    <svg
  3138.                                      class="m-svg-icon--small"
  3139.                                      viewBox="0 0 12 12"
  3140.                                      fill="none"
  3141.                                      xmlns="http://www.w3.org/2000/svg"
  3142.                                    >
  3143.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3144.                                    </svg>
  3145.                                  </span>
  3146.                                </a>
  3147.                                <ul
  3148.                                  class="m-menu-dropdown__submenu"
  3149.                                  role="list"
  3150.                                  tabindex="-1"
  3151.                                ><li class="m-menu-dropdown__submenu-item ">
  3152.                                      <a
  3153.                                        href="/collections/stainless-steel-work-table-1"
  3154.                                        class="m-link m-link--text m:display-flex"
  3155.                                        
  3156.                                      >
  3157.                                        Stainless Steel Work Table
  3158.                                      </a>
  3159.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3160.                                      <a
  3161.                                        href="/collections/bar-cabinet"
  3162.                                        class="m-link m-link--text m:display-flex"
  3163.                                        
  3164.                                      >
  3165.                                        Bar Cabinet
  3166.                                      </a>
  3167.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3168.                                      <a
  3169.                                        href="/collections/bar-cart"
  3170.                                        class="m-link m-link--text m:display-flex"
  3171.                                        
  3172.                                      >
  3173.                                        Bar cart
  3174.                                      </a>
  3175.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3176.                                      <a
  3177.                                        href="/collections/bar-table-set"
  3178.                                        class="m-link m-link--text m:display-flex"
  3179.                                        
  3180.                                      >
  3181.                                        Bar Table Set
  3182.                                      </a>
  3183.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3184.                                      <a
  3185.                                        href="/collections/outdoor-kitchen-drawer"
  3186.                                        class="m-link m-link--text m:display-flex"
  3187.                                        
  3188.                                      >
  3189.                                        Outdoor Kitchen Drawer
  3190.                                      </a>
  3191.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3192.                                      <a
  3193.                                        href="/collections/wine-rack-table"
  3194.                                        class="m-link m-link--text m:display-flex"
  3195.                                        
  3196.                                      >
  3197.                                        Wine Rack Table
  3198.                                      </a>
  3199.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3200.                                      <a
  3201.                                        href="/collections/outdoor-kitchen-door"
  3202.                                        class="m-link m-link--text m:display-flex"
  3203.                                        
  3204.                                      >
  3205.                                        Outdoor Kitchen Door
  3206.                                      </a>
  3207.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3208.                                      <a
  3209.                                        href="/collections/cutting-boards"
  3210.                                        class="m-link m-link--text m:display-flex"
  3211.                                        
  3212.                                      >
  3213.                                        Cutting Boards
  3214.                                      </a>
  3215.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3216.                                      <a
  3217.                                        href="/collections/activity-tables"
  3218.                                        class="m-link m-link--text m:display-flex"
  3219.                                        
  3220.                                      >
  3221.                                        Activity Tables
  3222.                                      </a>
  3223.                                    </li></ul>
  3224.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  3225.                                <a href="/collections/restaurant-faucets-plumbing-sinks" class="m-link m-link--text m:display-flex m:items-center">
  3226.                                  Restaurant Faucets &amp; Plumbing &amp; Sinks
  3227.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  3228.                                    <svg
  3229.                                      class="m-svg-icon--small"
  3230.                                      viewBox="0 0 12 12"
  3231.                                      fill="none"
  3232.                                      xmlns="http://www.w3.org/2000/svg"
  3233.                                    >
  3234.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3235.                                    </svg>
  3236.                                  </span>
  3237.                                </a>
  3238.                                <ul
  3239.                                  class="m-menu-dropdown__submenu"
  3240.                                  role="list"
  3241.                                  tabindex="-1"
  3242.                                ><li class="m-menu-dropdown__submenu-item ">
  3243.                                      <a
  3244.                                        href="/collections/commercial-sinks"
  3245.                                        class="m-link m-link--text m:display-flex"
  3246.                                        
  3247.                                      >
  3248.                                        Commercial Sinks
  3249.                                      </a>
  3250.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3251.                                      <a
  3252.                                        href="/collections/kitchen-fixtures"
  3253.                                        class="m-link m-link--text m:display-flex"
  3254.                                        
  3255.                                      >
  3256.                                        Kitchen Fixtures
  3257.                                      </a>
  3258.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3259.                                      <a
  3260.                                        href="/collections/water-filters"
  3261.                                        class="m-link m-link--text m:display-flex"
  3262.                                        
  3263.                                      >
  3264.                                        Water Filters
  3265.                                      </a>
  3266.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3267.                                      <a
  3268.                                        href="/collections/stainless-steel-backsplash"
  3269.                                        class="m-link m-link--text m:display-flex"
  3270.                                        
  3271.                                      >
  3272.                                        Stainless Steel Backsplash
  3273.                                      </a>
  3274.                                    </li></ul>
  3275.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  3276.                                <a href="/collections/cooking-equipment" class="m-link m-link--text m:display-flex m:items-center">
  3277.                                  Cooking Equipment
  3278.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  3279.                                    <svg
  3280.                                      class="m-svg-icon--small"
  3281.                                      viewBox="0 0 12 12"
  3282.                                      fill="none"
  3283.                                      xmlns="http://www.w3.org/2000/svg"
  3284.                                    >
  3285.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3286.                                    </svg>
  3287.                                  </span>
  3288.                                </a>
  3289.                                <ul
  3290.                                  class="m-menu-dropdown__submenu"
  3291.                                  role="list"
  3292.                                  tabindex="-1"
  3293.                                ><li class="m-menu-dropdown__submenu-item ">
  3294.                                      <a
  3295.                                        href="/collections/range-hood"
  3296.                                        class="m-link m-link--text m:display-flex"
  3297.                                        
  3298.                                      >
  3299.                                        Range Hood
  3300.                                      </a>
  3301.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3302.                                      <a
  3303.                                        href="/collections/commercial-pizza-oven"
  3304.                                        class="m-link m-link--text m:display-flex"
  3305.                                        
  3306.                                      >
  3307.                                        Commercial Pizza Oven
  3308.                                      </a>
  3309.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3310.                                      <a
  3311.                                        href="/collections/commercial-convection-oven"
  3312.                                        class="m-link m-link--text m:display-flex"
  3313.                                        
  3314.                                      >
  3315.                                        Commercial Convection Oven
  3316.                                      </a>
  3317.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3318.                                      <a
  3319.                                        href="/collections/fryer-oil-filtration-equipment"
  3320.                                        class="m-link m-link--text m:display-flex"
  3321.                                        
  3322.                                      >
  3323.                                        Fryer Oil Filtration Equipment
  3324.                                      </a>
  3325.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3326.                                      <a
  3327.                                        href="/collections/flat-top-griddle"
  3328.                                        class="m-link m-link--text m:display-flex"
  3329.                                        
  3330.                                      >
  3331.                                        Flat Top Griddle
  3332.                                      </a>
  3333.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3334.                                      <a
  3335.                                        href="/collections/commercial-deep-fryers"
  3336.                                        class="m-link m-link--text m:display-flex"
  3337.                                        
  3338.                                      >
  3339.                                        Commercial Deep Fryers
  3340.                                      </a>
  3341.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3342.                                      <a
  3343.                                        href="/collections/commercial-waffle-makers"
  3344.                                        class="m-link m-link--text m:display-flex"
  3345.                                        
  3346.                                      >
  3347.                                        Commercial Waffle Makers
  3348.                                      </a>
  3349.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3350.                                      <a
  3351.                                        href="/collections/grill-carts"
  3352.                                        class="m-link m-link--text m:display-flex"
  3353.                                        
  3354.                                      >
  3355.                                        Grill Carts
  3356.                                      </a>
  3357.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3358.                                      <a
  3359.                                        href="/collections/commercial-outdoor-grills"
  3360.                                        class="m-link m-link--text m:display-flex"
  3361.                                        
  3362.                                      >
  3363.                                        Commercial Outdoor Grills
  3364.                                      </a>
  3365.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3366.                                      <a
  3367.                                        href="/collections/air-fryers"
  3368.                                        class="m-link m-link--text m:display-flex"
  3369.                                        
  3370.                                      >
  3371.                                        Air Fryers
  3372.                                      </a>
  3373.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3374.                                      <a
  3375.                                        href="/collections/kitchen-fixtures"
  3376.                                        class="m-link m-link--text m:display-flex"
  3377.                                        
  3378.                                      >
  3379.                                        Kitchen Fixtures
  3380.                                      </a>
  3381.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3382.                                      <a
  3383.                                        href="/collections/electric-hot-pot-grill"
  3384.                                        class="m-link m-link--text m:display-flex"
  3385.                                        
  3386.                                      >
  3387.                                        Electric Hot Pot Grill
  3388.                                      </a>
  3389.                                    </li></ul>
  3390.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  3391.                                <a href="/collections/beverage-equipment" class="m-link m-link--text m:display-flex m:items-center">
  3392.                                  Beverage Equipment
  3393.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  3394.                                    <svg
  3395.                                      class="m-svg-icon--small"
  3396.                                      viewBox="0 0 12 12"
  3397.                                      fill="none"
  3398.                                      xmlns="http://www.w3.org/2000/svg"
  3399.                                    >
  3400.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3401.                                    </svg>
  3402.                                  </span>
  3403.                                </a>
  3404.                                <ul
  3405.                                  class="m-menu-dropdown__submenu"
  3406.                                  role="list"
  3407.                                  tabindex="-1"
  3408.                                ><li class="m-menu-dropdown__submenu-item ">
  3409.                                      <a
  3410.                                        href="/collections/refrigerated-beverage-dispensers"
  3411.                                        class="m-link m-link--text m:display-flex"
  3412.                                        
  3413.                                      >
  3414.                                        Refrigerated Beverage Dispensers
  3415.                                      </a>
  3416.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3417.                                      <a
  3418.                                        href="/collections/coffee-urn"
  3419.                                        class="m-link m-link--text m:display-flex"
  3420.                                        
  3421.                                      >
  3422.                                        Coffee Urn
  3423.                                      </a>
  3424.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3425.                                      <a
  3426.                                        href="/collections/fruit-wine-press"
  3427.                                        class="m-link m-link--text m:display-flex"
  3428.                                        
  3429.                                      >
  3430.                                        Fruit Wine Press
  3431.                                      </a>
  3432.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3433.                                      <a
  3434.                                        href="/collections/coffee-makers"
  3435.                                        class="m-link m-link--text m:display-flex"
  3436.                                        
  3437.                                      >
  3438.                                        Coffee Makers
  3439.                                      </a>
  3440.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3441.                                      <a
  3442.                                        href="/collections/commercial-juicers"
  3443.                                        class="m-link m-link--text m:display-flex"
  3444.                                        
  3445.                                      >
  3446.                                        Commercial Juicers
  3447.                                      </a>
  3448.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3449.                                      <a
  3450.                                        href="/collections/beer-kegerator"
  3451.                                        class="m-link m-link--text m:display-flex"
  3452.                                        
  3453.                                      >
  3454.                                        Beer Kegerator
  3455.                                      </a>
  3456.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3457.                                      <a
  3458.                                        href="/collections/electric-milkshake-maker"
  3459.                                        class="m-link m-link--text m:display-flex"
  3460.                                        
  3461.                                      >
  3462.                                        Electric Milkshake Maker
  3463.                                      </a>
  3464.                                    </li></ul>
  3465.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  3466.                                <a href="/collections/food-holding-warming-equipment" class="m-link m-link--text m:display-flex m:items-center">
  3467.                                  Food Holding &amp; Warming Equipment
  3468.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  3469.                                    <svg
  3470.                                      class="m-svg-icon--small"
  3471.                                      viewBox="0 0 12 12"
  3472.                                      fill="none"
  3473.                                      xmlns="http://www.w3.org/2000/svg"
  3474.                                    >
  3475.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3476.                                    </svg>
  3477.                                  </span>
  3478.                                </a>
  3479.                                <ul
  3480.                                  class="m-menu-dropdown__submenu"
  3481.                                  role="list"
  3482.                                  tabindex="-1"
  3483.                                ><li class="m-menu-dropdown__submenu-item ">
  3484.                                      <a
  3485.                                        href="/collections/chafing-dishes-accessories"
  3486.                                        class="m-link m-link--text m:display-flex"
  3487.                                        
  3488.                                      >
  3489.                                        Chafing Dishes &amp; Accessories
  3490.                                      </a>
  3491.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3492.                                      <a
  3493.                                        href="/collections/steam-table-food-warmer"
  3494.                                        class="m-link m-link--text m:display-flex"
  3495.                                        
  3496.                                      >
  3497.                                        Steam Table Food Warmer
  3498.                                      </a>
  3499.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3500.                                      <a
  3501.                                        href="/collections/holding-proofing-cabinets"
  3502.                                        class="m-link m-link--text m:display-flex"
  3503.                                        
  3504.                                      >
  3505.                                        Holding &amp; Proofing Cabinets
  3506.                                      </a>
  3507.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3508.                                      <a
  3509.                                        href="/collections/stock-pots"
  3510.                                        class="m-link m-link--text m:display-flex"
  3511.                                        
  3512.                                      >
  3513.                                        Stock Pots
  3514.                                      </a>
  3515.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3516.                                      <a
  3517.                                        href="/collections/french-fry-warmer"
  3518.                                        class="m-link m-link--text m:display-flex"
  3519.                                        
  3520.                                      >
  3521.                                        French Fry Warmer
  3522.                                      </a>
  3523.                                    </li></ul>
  3524.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  3525.                                <a href="/collections/food-preparation-equipment-1" class="m-link m-link--text m:display-flex m:items-center">
  3526.                                  Food Preparation Equipment
  3527.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  3528.                                    <svg
  3529.                                      class="m-svg-icon--small"
  3530.                                      viewBox="0 0 12 12"
  3531.                                      fill="none"
  3532.                                      xmlns="http://www.w3.org/2000/svg"
  3533.                                    >
  3534.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3535.                                    </svg>
  3536.                                  </span>
  3537.                                </a>
  3538.                                <ul
  3539.                                  class="m-menu-dropdown__submenu"
  3540.                                  role="list"
  3541.                                  tabindex="-1"
  3542.                                ><li class="m-menu-dropdown__submenu-item ">
  3543.                                      <a
  3544.                                        href="/collections/cutters-slicers"
  3545.                                        class="m-link m-link--text m:display-flex"
  3546.                                        
  3547.                                      >
  3548.                                        Cutters &amp; Slicers
  3549.                                      </a>
  3550.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3551.                                      <a
  3552.                                        href="/collections/commercial-mixers"
  3553.                                        class="m-link m-link--text m:display-flex"
  3554.                                        
  3555.                                      >
  3556.                                        Commercial Mixers
  3557.                                      </a>
  3558.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3559.                                      <a
  3560.                                        href="/collections/bone-saw-machine"
  3561.                                        class="m-link m-link--text m:display-flex"
  3562.                                        
  3563.                                      >
  3564.                                        Bone Saw Machine
  3565.                                      </a>
  3566.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3567.                                      <a
  3568.                                        href="/collections/dough-sheeters-rounders-dividers"
  3569.                                        class="m-link m-link--text m:display-flex"
  3570.                                        
  3571.                                      >
  3572.                                        Dough Sheeters &amp; Rounders &amp; Dividers
  3573.                                      </a>
  3574.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3575.                                      <a
  3576.                                        href="/collections/commercial-can-openers"
  3577.                                        class="m-link m-link--text m:display-flex"
  3578.                                        
  3579.                                      >
  3580.                                        Commercial Can Openers
  3581.                                      </a>
  3582.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3583.                                      <a
  3584.                                        href="/collections/meat-choppers-meat-grinders"
  3585.                                        class="m-link m-link--text m:display-flex"
  3586.                                        
  3587.                                      >
  3588.                                        Meat Choppers &amp; Meat Grinders
  3589.                                      </a>
  3590.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3591.                                      <a
  3592.                                        href="/collections/commercial-sausage-stuffers-jerky-shooters"
  3593.                                        class="m-link m-link--text m:display-flex"
  3594.                                        
  3595.                                      >
  3596.                                        Commercial Sausage Stuffers &amp; Jerky Shooters
  3597.                                      </a>
  3598.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3599.                                      <a
  3600.                                        href="/collections/bar-cart"
  3601.                                        class="m-link m-link--text m:display-flex"
  3602.                                        
  3603.                                      >
  3604.                                        Bar cart
  3605.                                      </a>
  3606.                                    </li></ul>
  3607.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  3608.                                <a href="/collections/storage-organization-1" class="m-link m-link--text m:display-flex m:items-center">
  3609.                                  Storage &amp; Organization
  3610.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  3611.                                    <svg
  3612.                                      class="m-svg-icon--small"
  3613.                                      viewBox="0 0 12 12"
  3614.                                      fill="none"
  3615.                                      xmlns="http://www.w3.org/2000/svg"
  3616.                                    >
  3617.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3618.                                    </svg>
  3619.                                  </span>
  3620.                                </a>
  3621.                                <ul
  3622.                                  class="m-menu-dropdown__submenu"
  3623.                                  role="list"
  3624.                                  tabindex="-1"
  3625.                                ><li class="m-menu-dropdown__submenu-item ">
  3626.                                      <a
  3627.                                        href="/collections/food-pan-carrier"
  3628.                                        class="m-link m-link--text m:display-flex"
  3629.                                        
  3630.                                      >
  3631.                                        Food Pan Carrier
  3632.                                      </a>
  3633.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3634.                                      <a
  3635.                                        href="/collections/drawers-cabinet-organizers"
  3636.                                        class="m-link m-link--text m:display-flex"
  3637.                                        
  3638.                                      >
  3639.                                        Drawers &amp; Cabinet Organizers
  3640.                                      </a>
  3641.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3642.                                      <a
  3643.                                        href="/collections/wine-racks"
  3644.                                        class="m-link m-link--text m:display-flex"
  3645.                                        
  3646.                                      >
  3647.                                        Wine Racks
  3648.                                      </a>
  3649.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3650.                                      <a
  3651.                                        href="/collections/countertop-dishwashers"
  3652.                                        class="m-link m-link--text m:display-flex"
  3653.                                        
  3654.                                      >
  3655.                                        Countertop Dishwashers
  3656.                                      </a>
  3657.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3658.                                      <a
  3659.                                        href="/collections/wall-shelf"
  3660.                                        class="m-link m-link--text m:display-flex"
  3661.                                        
  3662.                                      >
  3663.                                        Wall Shelf
  3664.                                      </a>
  3665.                                    </li></ul>
  3666.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  3667.                                <a href="/collections/food-display-merchandising-equipment" class="m-link m-link--text m:display-flex m:items-center">
  3668.                                  Food Display &amp; Merchandising Equipment
  3669.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  3670.                                    <svg
  3671.                                      class="m-svg-icon--small"
  3672.                                      viewBox="0 0 12 12"
  3673.                                      fill="none"
  3674.                                      xmlns="http://www.w3.org/2000/svg"
  3675.                                    >
  3676.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3677.                                    </svg>
  3678.                                  </span>
  3679.                                </a>
  3680.                                <ul
  3681.                                  class="m-menu-dropdown__submenu"
  3682.                                  role="list"
  3683.                                  tabindex="-1"
  3684.                                ><li class="m-menu-dropdown__submenu-item ">
  3685.                                      <a
  3686.                                        href="/collections/popcorn-poppers"
  3687.                                        class="m-link m-link--text m:display-flex"
  3688.                                        
  3689.                                      >
  3690.                                        Popcorn Poppers
  3691.                                      </a>
  3692.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3693.                                      <a
  3694.                                        href="/collections/cotton-candy-machines"
  3695.                                        class="m-link m-link--text m:display-flex"
  3696.                                        
  3697.                                      >
  3698.                                        Cotton Candy Machines
  3699.                                      </a>
  3700.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3701.                                      <a
  3702.                                        href="/collections/commercial-hot-dog-roller"
  3703.                                        class="m-link m-link--text m:display-flex"
  3704.                                        
  3705.                                      >
  3706.                                        Commercial Hot Dog Roller
  3707.                                      </a>
  3708.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3709.                                      <a
  3710.                                        href="/collections/liquor-bottle-display"
  3711.                                        class="m-link m-link--text m:display-flex"
  3712.                                        
  3713.                                      >
  3714.                                        Liquor Bottle Display
  3715.                                      </a>
  3716.                                    </li></ul>
  3717.                              </li></ul>
  3718.                      </header-dropdown-menu>
  3719.                    </div>
  3720.                  </div>
  3721.                </li><li
  3722.                  class="m-menu-drawer__menu-item m-list-menu__item "
  3723.                  data-main-details-toggle
  3724.                >
  3725.                  <a href="/collections/agriculture-forestry-equipment" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  3726.                    Agriculture &amp; Forestry Equipment
  3727.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  3728.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  3729.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3730.                      </svg>
  3731.                    </span>
  3732.                  </a>
  3733.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  3734.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  3735.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  3736.                        <svg
  3737.                          class="m-svg-icon--small"
  3738.                          viewBox="0 0 12 12"
  3739.                          fill="none"
  3740.                          xmlns="http://www.w3.org/2000/svg"
  3741.                        >
  3742.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3743.                        </svg>
  3744.                        Agriculture &amp; Forestry Equipment
  3745.                      </button>
  3746.                      <header-dropdown-menu class="m:block">
  3747.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  3748.                                <a href="/collections/equipment-parts-accessories" class="m-link m-link--text m:display-flex m:items-center">
  3749.                                  Equipment Parts &amp; Accessories
  3750.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  3751.                                    <svg
  3752.                                      class="m-svg-icon--small"
  3753.                                      viewBox="0 0 12 12"
  3754.                                      fill="none"
  3755.                                      xmlns="http://www.w3.org/2000/svg"
  3756.                                    >
  3757.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3758.                                    </svg>
  3759.                                  </span>
  3760.                                </a>
  3761.                                <ul
  3762.                                  class="m-menu-dropdown__submenu"
  3763.                                  role="list"
  3764.                                  tabindex="-1"
  3765.                                ><li class="m-menu-dropdown__submenu-item ">
  3766.                                      <a
  3767.                                        href="/collections/driveway-drag"
  3768.                                        class="m-link m-link--text m:display-flex"
  3769.                                        
  3770.                                      >
  3771.                                        Driveway Drag
  3772.                                      </a>
  3773.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3774.                                      <a
  3775.                                        href="/collections/drag-chain-harrow"
  3776.                                        class="m-link m-link--text m:display-flex"
  3777.                                        
  3778.                                      >
  3779.                                        Drag Chain Harrow
  3780.                                      </a>
  3781.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3782.                                      <a
  3783.                                        href="/collections/trailer-hitch"
  3784.                                        class="m-link m-link--text m:display-flex"
  3785.                                        
  3786.                                      >
  3787.                                        Trailer Hitch
  3788.                                      </a>
  3789.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3790.                                      <a
  3791.                                        href="/collections/hay-spear"
  3792.                                        class="m-link m-link--text m:display-flex"
  3793.                                        
  3794.                                      >
  3795.                                        Hay Spear
  3796.                                      </a>
  3797.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3798.                                      <a
  3799.                                        href="/collections/cant-hook"
  3800.                                        class="m-link m-link--text m:display-flex"
  3801.                                        
  3802.                                      >
  3803.                                        Cant Hook
  3804.                                      </a>
  3805.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3806.                                      <a
  3807.                                        href="/collections/rakes"
  3808.                                        class="m-link m-link--text m:display-flex"
  3809.                                        
  3810.                                      >
  3811.                                        Rakes
  3812.                                      </a>
  3813.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3814.                                      <a
  3815.                                        href="/collections/scarifier-shank"
  3816.                                        class="m-link m-link--text m:display-flex"
  3817.                                        
  3818.                                      >
  3819.                                        Scarifier Shank
  3820.                                      </a>
  3821.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3822.                                      <a
  3823.                                        href="/collections/pallet-forks"
  3824.                                        class="m-link m-link--text m:display-flex"
  3825.                                        
  3826.                                      >
  3827.                                        Pallet Forks
  3828.                                      </a>
  3829.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3830.                                      <a
  3831.                                        href="/collections/bucket-cutting-edge"
  3832.                                        class="m-link m-link--text m:display-flex"
  3833.                                        
  3834.                                      >
  3835.                                        Bucket Cutting Edge
  3836.                                      </a>
  3837.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3838.                                      <a
  3839.                                        href="/collections/tractor-bucket-protector"
  3840.                                        class="m-link m-link--text m:display-flex"
  3841.                                        
  3842.                                      >
  3843.                                        Tractor Bucket Protector
  3844.                                      </a>
  3845.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3846.                                      <a
  3847.                                        href="/collections/disc-harrows"
  3848.                                        class="m-link m-link--text m:display-flex"
  3849.                                        
  3850.                                      >
  3851.                                        Disc Harrows
  3852.                                      </a>
  3853.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3854.                                      <a
  3855.                                        href="/collections/chainsaw-mill"
  3856.                                        class="m-link m-link--text m:display-flex"
  3857.                                        
  3858.                                      >
  3859.                                        Chainsaw Mill
  3860.                                      </a>
  3861.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3862.                                      <a
  3863.                                        href="/collections/log-tongs"
  3864.                                        class="m-link m-link--text m:display-flex"
  3865.                                        
  3866.                                      >
  3867.                                        Log Tongs
  3868.                                      </a>
  3869.                                    </li></ul>
  3870.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  3871.                                <a href="/collections/livestock-poultry-supplies" class="m-link m-link--text m:display-flex m:items-center">
  3872.                                  Livestock &amp; Poultry Supplies
  3873.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  3874.                                    <svg
  3875.                                      class="m-svg-icon--small"
  3876.                                      viewBox="0 0 12 12"
  3877.                                      fill="none"
  3878.                                      xmlns="http://www.w3.org/2000/svg"
  3879.                                    >
  3880.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3881.                                    </svg>
  3882.                                  </span>
  3883.                                </a>
  3884.                                <ul
  3885.                                  class="m-menu-dropdown__submenu"
  3886.                                  role="list"
  3887.                                  tabindex="-1"
  3888.                                ><li class="m-menu-dropdown__submenu-item ">
  3889.                                      <a
  3890.                                        href="/collections/automatic-poultry-feeder"
  3891.                                        class="m-link m-link--text m:display-flex"
  3892.                                        
  3893.                                      >
  3894.                                        Automatic Poultry Feeder
  3895.                                      </a>
  3896.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3897.                                      <a
  3898.                                        href="/collections/chicken-coop"
  3899.                                        class="m-link m-link--text m:display-flex"
  3900.                                        
  3901.                                      >
  3902.                                        Chicken Coop
  3903.                                      </a>
  3904.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3905.                                      <a
  3906.                                        href="/collections/egg-laying-box"
  3907.                                        class="m-link m-link--text m:display-flex"
  3908.                                        
  3909.                                      >
  3910.                                        Egg Laying Box
  3911.                                      </a>
  3912.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3913.                                      <a
  3914.                                        href="/collections/chicken-plucker"
  3915.                                        class="m-link m-link--text m:display-flex"
  3916.                                        
  3917.                                      >
  3918.                                        Chicken Plucker
  3919.                                      </a>
  3920.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3921.                                      <a
  3922.                                        href="/collections/electric-milking-machine"
  3923.                                        class="m-link m-link--text m:display-flex"
  3924.                                        
  3925.                                      >
  3926.                                        Electric Milking Machine
  3927.                                      </a>
  3928.                                    </li></ul>
  3929.                              </li></ul>
  3930.                      </header-dropdown-menu>
  3931.                    </div>
  3932.                  </div>
  3933.                </li><li
  3934.                  class="m-menu-drawer__menu-item m-list-menu__item "
  3935.                  data-main-details-toggle
  3936.                >
  3937.                  <a href="/collections/automotive" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  3938.                    Automotive
  3939.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  3940.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  3941.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3942.                      </svg>
  3943.                    </span>
  3944.                  </a>
  3945.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  3946.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  3947.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  3948.                        <svg
  3949.                          class="m-svg-icon--small"
  3950.                          viewBox="0 0 12 12"
  3951.                          fill="none"
  3952.                          xmlns="http://www.w3.org/2000/svg"
  3953.                        >
  3954.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3955.                        </svg>
  3956.                        Automotive
  3957.                      </button>
  3958.                      <header-dropdown-menu class="m:block">
  3959.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  3960.                                <a href="/collections/exterior-accessories" class="m-link m-link--text m:display-flex m:items-center">
  3961.                                  Exterior Accessories
  3962.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  3963.                                    <svg
  3964.                                      class="m-svg-icon--small"
  3965.                                      viewBox="0 0 12 12"
  3966.                                      fill="none"
  3967.                                      xmlns="http://www.w3.org/2000/svg"
  3968.                                    >
  3969.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  3970.                                    </svg>
  3971.                                  </span>
  3972.                                </a>
  3973.                                <ul
  3974.                                  class="m-menu-dropdown__submenu"
  3975.                                  role="list"
  3976.                                  tabindex="-1"
  3977.                                ><li class="m-menu-dropdown__submenu-item ">
  3978.                                      <a
  3979.                                        href="/collections/running-boards"
  3980.                                        class="m-link m-link--text m:display-flex"
  3981.                                        
  3982.                                      >
  3983.                                        Running Boards
  3984.                                      </a>
  3985.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3986.                                      <a
  3987.                                        href="/collections/brake-system"
  3988.                                        class="m-link m-link--text m:display-flex"
  3989.                                        
  3990.                                      >
  3991.                                        Brake System
  3992.                                      </a>
  3993.                                    </li><li class="m-menu-dropdown__submenu-item ">
  3994.                                      <a
  3995.                                        href="/collections/jeep-door"
  3996.                                        class="m-link m-link--text m:display-flex"
  3997.                                        
  3998.                                      >
  3999.                                        Jeep door
  4000.                                      </a>
  4001.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4002.                                      <a
  4003.                                        href="/collections/truck-running-boards"
  4004.                                        class="m-link m-link--text m:display-flex"
  4005.                                        
  4006.                                      >
  4007.                                        Truck Running Boards
  4008.                                      </a>
  4009.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4010.                                      <a
  4011.                                        href="/collections/grille-brush-guards"
  4012.                                        class="m-link m-link--text m:display-flex"
  4013.                                        
  4014.                                      >
  4015.                                        Grille &amp; Brush Guards
  4016.                                      </a>
  4017.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4018.                                      <a
  4019.                                        href="/collections/front-bumper"
  4020.                                        class="m-link m-link--text m:display-flex"
  4021.                                        
  4022.                                      >
  4023.                                        Front bumper
  4024.                                      </a>
  4025.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4026.                                      <a
  4027.                                        href="/collections/fender-flares"
  4028.                                        class="m-link m-link--text m:display-flex"
  4029.                                        
  4030.                                      >
  4031.                                        Fender Flares
  4032.                                      </a>
  4033.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4034.                                      <a
  4035.                                        href="/collections/bumper-guards"
  4036.                                        class="m-link m-link--text m:display-flex"
  4037.                                        
  4038.                                      >
  4039.                                        Bumper Guards
  4040.                                      </a>
  4041.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4042.                                      <a
  4043.                                        href="/collections/fenders"
  4044.                                        class="m-link m-link--text m:display-flex"
  4045.                                        
  4046.                                      >
  4047.                                        Fenders
  4048.                                      </a>
  4049.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4050.                                      <a
  4051.                                        href="/collections/suspension-bracket"
  4052.                                        class="m-link m-link--text m:display-flex"
  4053.                                        
  4054.                                      >
  4055.                                        suspension bracket
  4056.                                      </a>
  4057.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4058.                                      <a
  4059.                                        href="/collections/reflectors"
  4060.                                        class="m-link m-link--text m:display-flex"
  4061.                                        
  4062.                                      >
  4063.                                        Reflectors
  4064.                                      </a>
  4065.                                    </li></ul>
  4066.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4067.                                <a href="/collections/automotive-accessories" class="m-link m-link--text m:display-flex m:items-center">
  4068.                                  Automotive Accessories
  4069.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4070.                                    <svg
  4071.                                      class="m-svg-icon--small"
  4072.                                      viewBox="0 0 12 12"
  4073.                                      fill="none"
  4074.                                      xmlns="http://www.w3.org/2000/svg"
  4075.                                    >
  4076.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4077.                                    </svg>
  4078.                                  </span>
  4079.                                </a>
  4080.                                <ul
  4081.                                  class="m-menu-dropdown__submenu"
  4082.                                  role="list"
  4083.                                  tabindex="-1"
  4084.                                ><li class="m-menu-dropdown__submenu-item ">
  4085.                                      <a
  4086.                                        href="/collections/truck-tool-boxes"
  4087.                                        class="m-link m-link--text m:display-flex"
  4088.                                        
  4089.                                      >
  4090.                                        Truck Tool Boxes
  4091.                                      </a>
  4092.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4093.                                      <a
  4094.                                        href="/collections/replacement-parts"
  4095.                                        class="m-link m-link--text m:display-flex"
  4096.                                        
  4097.                                      >
  4098.                                        Replacement Parts
  4099.                                      </a>
  4100.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4101.                                      <a
  4102.                                        href="/collections/tonneau-cover"
  4103.                                        class="m-link m-link--text m:display-flex"
  4104.                                        
  4105.                                      >
  4106.                                        Tonneau Cover
  4107.                                      </a>
  4108.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4109.                                      <a
  4110.                                        href="/collections/brake-tools"
  4111.                                        class="m-link m-link--text m:display-flex"
  4112.                                        
  4113.                                      >
  4114.                                        Brake Tools
  4115.                                      </a>
  4116.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4117.                                      <a
  4118.                                        href="/collections/headlight-assembly"
  4119.                                        class="m-link m-link--text m:display-flex"
  4120.                                        
  4121.                                      >
  4122.                                        Headlight Assembly
  4123.                                      </a>
  4124.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4125.                                      <a
  4126.                                        href="/collections/windshield-wiper-tools"
  4127.                                        class="m-link m-link--text m:display-flex"
  4128.                                        
  4129.                                      >
  4130.                                        Windshield Wiper Tools
  4131.                                      </a>
  4132.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4133.                                      <a
  4134.                                        href="/collections/car-lights-lighting-accessories"
  4135.                                        class="m-link m-link--text m:display-flex"
  4136.                                        
  4137.                                      >
  4138.                                        Car Lights &amp; Lighting Accessories
  4139.                                      </a>
  4140.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4141.                                      <a
  4142.                                        href="/collections/interior-accessories"
  4143.                                        class="m-link m-link--text m:display-flex"
  4144.                                        
  4145.                                      >
  4146.                                        Interior Accessories
  4147.                                      </a>
  4148.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4149.                                      <a
  4150.                                        href="/collections/tractor-seat"
  4151.                                        class="m-link m-link--text m:display-flex"
  4152.                                        
  4153.                                      >
  4154.                                        Tractor Seat
  4155.                                      </a>
  4156.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4157.                                      <a
  4158.                                        href="/collections/z-creeper-seat"
  4159.                                        class="m-link m-link--text m:display-flex"
  4160.                                        
  4161.                                      >
  4162.                                        Z-Creeper Seat
  4163.                                      </a>
  4164.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4165.                                      <a
  4166.                                        href="/collections/engines-tools-components"
  4167.                                        class="m-link m-link--text m:display-flex"
  4168.                                        
  4169.                                      >
  4170.                                        Engines Tools &amp; Components
  4171.                                      </a>
  4172.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4173.                                      <a
  4174.                                        href="/collections/air-tools-accessories"
  4175.                                        class="m-link m-link--text m:display-flex"
  4176.                                        
  4177.                                      >
  4178.                                        Air Tools &amp; Accessories
  4179.                                      </a>
  4180.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4181.                                      <a
  4182.                                        href="/collections/truck-bed-mats"
  4183.                                        class="m-link m-link--text m:display-flex"
  4184.                                        
  4185.                                      >
  4186.                                        Truck Bed Mats
  4187.                                      </a>
  4188.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4189.                                      <a
  4190.                                        href="/collections/wheel-dolly"
  4191.                                        class="m-link m-link--text m:display-flex"
  4192.                                        
  4193.                                      >
  4194.                                        Wheel Dolly
  4195.                                      </a>
  4196.                                    </li></ul>
  4197.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4198.                                <a href="/collections/tire-wheel-tools" class="m-link m-link--text m:display-flex m:items-center">
  4199.                                  Tire &amp; Wheel Tools
  4200.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4201.                                    <svg
  4202.                                      class="m-svg-icon--small"
  4203.                                      viewBox="0 0 12 12"
  4204.                                      fill="none"
  4205.                                      xmlns="http://www.w3.org/2000/svg"
  4206.                                    >
  4207.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4208.                                    </svg>
  4209.                                  </span>
  4210.                                </a>
  4211.                                <ul
  4212.                                  class="m-menu-dropdown__submenu"
  4213.                                  role="list"
  4214.                                  tabindex="-1"
  4215.                                ><li class="m-menu-dropdown__submenu-item ">
  4216.                                      <a
  4217.                                        href="/collections/go-kart-wheels"
  4218.                                        class="m-link m-link--text m:display-flex"
  4219.                                        
  4220.                                      >
  4221.                                        Go Kart Wheels
  4222.                                      </a>
  4223.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4224.                                      <a
  4225.                                        href="/collections/lawn-mower-tires"
  4226.                                        class="m-link m-link--text m:display-flex"
  4227.                                        
  4228.                                      >
  4229.                                        Lawn Mower Tires
  4230.                                      </a>
  4231.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4232.                                      <a
  4233.                                        href="/collections/trailer-tires"
  4234.                                        class="m-link m-link--text m:display-flex"
  4235.                                        
  4236.                                      >
  4237.                                        Trailer Tires
  4238.                                      </a>
  4239.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4240.                                      <a
  4241.                                        href="/collections/tires-wheels"
  4242.                                        class="m-link m-link--text m:display-flex"
  4243.                                        
  4244.                                      >
  4245.                                        Tires &amp; Wheels
  4246.                                      </a>
  4247.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4248.                                      <a
  4249.                                        href="/collections/tire-repair-tools"
  4250.                                        class="m-link m-link--text m:display-flex"
  4251.                                        
  4252.                                      >
  4253.                                        Tire Repair Tools
  4254.                                      </a>
  4255.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4256.                                      <a
  4257.                                        href="/collections/tire-changing-machines"
  4258.                                        class="m-link m-link--text m:display-flex"
  4259.                                        
  4260.                                      >
  4261.                                        Tire Changing Machines
  4262.                                      </a>
  4263.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4264.                                      <a
  4265.                                        href="/collections/wheel-adapters-spacers"
  4266.                                        class="m-link m-link--text m:display-flex"
  4267.                                        
  4268.                                      >
  4269.                                        Wheel Adapters &amp; Spacers
  4270.                                      </a>
  4271.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4272.                                      <a
  4273.                                        href="/collections/atv-trail-tires"
  4274.                                        class="m-link m-link--text m:display-flex"
  4275.                                        
  4276.                                      >
  4277.                                        ATV Trail Tires
  4278.                                      </a>
  4279.                                    </li></ul>
  4280.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4281.                                <a href="/collections/steering-suspension-tool" class="m-link m-link--text m:display-flex m:items-center">
  4282.                                  Steering &amp; Suspension Tool
  4283.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4284.                                    <svg
  4285.                                      class="m-svg-icon--small"
  4286.                                      viewBox="0 0 12 12"
  4287.                                      fill="none"
  4288.                                      xmlns="http://www.w3.org/2000/svg"
  4289.                                    >
  4290.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4291.                                    </svg>
  4292.                                  </span>
  4293.                                </a>
  4294.                                <ul
  4295.                                  class="m-menu-dropdown__submenu"
  4296.                                  role="list"
  4297.                                  tabindex="-1"
  4298.                                ><li class="m-menu-dropdown__submenu-item ">
  4299.                                      <a
  4300.                                        href="/collections/shock-absorber"
  4301.                                        class="m-link m-link--text m:display-flex"
  4302.                                        
  4303.                                      >
  4304.                                        Shock Absorber
  4305.                                      </a>
  4306.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4307.                                      <a
  4308.                                        href="/collections/body-suspension-lift-kits"
  4309.                                        class="m-link m-link--text m:display-flex"
  4310.                                        
  4311.                                      >
  4312.                                        Body &amp; Suspension Lift Kits
  4313.                                      </a>
  4314.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4315.                                      <a
  4316.                                        href="/collections/towing-winches"
  4317.                                        class="m-link m-link--text m:display-flex"
  4318.                                        
  4319.                                      >
  4320.                                        Towing Winches
  4321.                                      </a>
  4322.                                    </li></ul>
  4323.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4324.                                <a href="/collections/replacement-parts" class="m-link m-link--text m:display-flex m:items-center">
  4325.                                  Replacement Parts
  4326.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4327.                                    <svg
  4328.                                      class="m-svg-icon--small"
  4329.                                      viewBox="0 0 12 12"
  4330.                                      fill="none"
  4331.                                      xmlns="http://www.w3.org/2000/svg"
  4332.                                    >
  4333.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4334.                                    </svg>
  4335.                                  </span>
  4336.                                </a>
  4337.                                <ul
  4338.                                  class="m-menu-dropdown__submenu"
  4339.                                  role="list"
  4340.                                  tabindex="-1"
  4341.                                ><li class="m-menu-dropdown__submenu-item ">
  4342.                                      <a
  4343.                                        href="/collections/brake-pads"
  4344.                                        class="m-link m-link--text m:display-flex"
  4345.                                        
  4346.                                      >
  4347.                                        Brake Pads
  4348.                                      </a>
  4349.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4350.                                      <a
  4351.                                        href="/collections/control-arms"
  4352.                                        class="m-link m-link--text m:display-flex"
  4353.                                        
  4354.                                      >
  4355.                                        Control Arms
  4356.                                      </a>
  4357.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4358.                                      <a
  4359.                                        href="/collections/engine-parts"
  4360.                                        class="m-link m-link--text m:display-flex"
  4361.                                        
  4362.                                      >
  4363.                                        Engine Parts
  4364.                                      </a>
  4365.                                    </li></ul>
  4366.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4367.                                <a href="/collections/fuel-transfer-lubrication" class="m-link m-link--text m:display-flex m:items-center">
  4368.                                  Fuel Transfer &amp; Lubrication
  4369.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4370.                                    <svg
  4371.                                      class="m-svg-icon--small"
  4372.                                      viewBox="0 0 12 12"
  4373.                                      fill="none"
  4374.                                      xmlns="http://www.w3.org/2000/svg"
  4375.                                    >
  4376.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4377.                                    </svg>
  4378.                                  </span>
  4379.                                </a>
  4380.                                <ul
  4381.                                  class="m-menu-dropdown__submenu"
  4382.                                  role="list"
  4383.                                  tabindex="-1"
  4384.                                ><li class="m-menu-dropdown__submenu-item ">
  4385.                                      <a
  4386.                                        href="/collections/oil-drain-pan"
  4387.                                        class="m-link m-link--text m:display-flex"
  4388.                                        
  4389.                                      >
  4390.                                        Oil Drain Pan
  4391.                                      </a>
  4392.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4393.                                      <a
  4394.                                        href="/collections/fuel-caddy"
  4395.                                        class="m-link m-link--text m:display-flex"
  4396.                                        
  4397.                                      >
  4398.                                        Fuel Caddy
  4399.                                      </a>
  4400.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4401.                                      <a
  4402.                                        href="/collections/portable-fuel-tank"
  4403.                                        class="m-link m-link--text m:display-flex"
  4404.                                        
  4405.                                      >
  4406.                                        Portable Fuel Tank
  4407.                                      </a>
  4408.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4409.                                      <a
  4410.                                        href="/collections/hydraulic-oil-tank"
  4411.                                        class="m-link m-link--text m:display-flex"
  4412.                                        
  4413.                                      >
  4414.                                        Hydraulic Oil Tank
  4415.                                      </a>
  4416.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4417.                                      <a
  4418.                                        href="/collections/fuel-injectors"
  4419.                                        class="m-link m-link--text m:display-flex"
  4420.                                        
  4421.                                      >
  4422.                                        Fuel Injectors
  4423.                                      </a>
  4424.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4425.                                      <a
  4426.                                        href="/collections/oil-transfer-pump"
  4427.                                        class="m-link m-link--text m:display-flex"
  4428.                                        
  4429.                                      >
  4430.                                        Oil Transfer Pump
  4431.                                      </a>
  4432.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4433.                                      <a
  4434.                                        href="/collections/hydraulic-rams-tools"
  4435.                                        class="m-link m-link--text m:display-flex"
  4436.                                        
  4437.                                      >
  4438.                                        Hydraulic Rams &amp; Tools
  4439.                                      </a>
  4440.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4441.                                      <a
  4442.                                        href="/collections/fuel-hose-reel"
  4443.                                        class="m-link m-link--text m:display-flex"
  4444.                                        
  4445.                                      >
  4446.                                        Fuel Hose Reel
  4447.                                      </a>
  4448.                                    </li></ul>
  4449.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4450.                                <a href="/collections/cargo-management" class="m-link m-link--text m:display-flex m:items-center">
  4451.                                  Cargo Management
  4452.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4453.                                    <svg
  4454.                                      class="m-svg-icon--small"
  4455.                                      viewBox="0 0 12 12"
  4456.                                      fill="none"
  4457.                                      xmlns="http://www.w3.org/2000/svg"
  4458.                                    >
  4459.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4460.                                    </svg>
  4461.                                  </span>
  4462.                                </a>
  4463.                                <ul
  4464.                                  class="m-menu-dropdown__submenu"
  4465.                                  role="list"
  4466.                                  tabindex="-1"
  4467.                                ><li class="m-menu-dropdown__submenu-item ">
  4468.                                      <a
  4469.                                        href="/collections/roof-rack-cross-bars"
  4470.                                        class="m-link m-link--text m:display-flex"
  4471.                                        
  4472.                                      >
  4473.                                        Roof Rack Cross Bars
  4474.                                      </a>
  4475.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4476.                                      <a
  4477.                                        href="/collections/ladder-racks"
  4478.                                        class="m-link m-link--text m:display-flex"
  4479.                                        
  4480.                                      >
  4481.                                        Cargo Racks
  4482.                                      </a>
  4483.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4484.                                      <a
  4485.                                        href="/collections/cargo-carrier"
  4486.                                        class="m-link m-link--text m:display-flex"
  4487.                                        
  4488.                                      >
  4489.                                        Cargo Carrier
  4490.                                      </a>
  4491.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4492.                                      <a
  4493.                                        href="/collections/towing-system"
  4494.                                        class="m-link m-link--text m:display-flex"
  4495.                                        
  4496.                                      >
  4497.                                        Towing System
  4498.                                      </a>
  4499.                                    </li></ul>
  4500.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4501.                                <a href="/collections/rv-parts-accessories" class="m-link m-link--text m:display-flex m:items-center">
  4502.                                  Rv Parts &amp; Accessories
  4503.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4504.                                    <svg
  4505.                                      class="m-svg-icon--small"
  4506.                                      viewBox="0 0 12 12"
  4507.                                      fill="none"
  4508.                                      xmlns="http://www.w3.org/2000/svg"
  4509.                                    >
  4510.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4511.                                    </svg>
  4512.                                  </span>
  4513.                                </a>
  4514.                                <ul
  4515.                                  class="m-menu-dropdown__submenu"
  4516.                                  role="list"
  4517.                                  tabindex="-1"
  4518.                                ><li class="m-menu-dropdown__submenu-item ">
  4519.                                      <a
  4520.                                        href="/collections/rv-cover"
  4521.                                        class="m-link m-link--text m:display-flex"
  4522.                                        
  4523.                                      >
  4524.                                        RV Cover
  4525.                                      </a>
  4526.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4527.                                      <a
  4528.                                        href="/collections/trailer-jack"
  4529.                                        class="m-link m-link--text m:display-flex"
  4530.                                        
  4531.                                      >
  4532.                                        Trailer Jack
  4533.                                      </a>
  4534.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4535.                                      <a
  4536.                                        href="/collections/trailer-dolly"
  4537.                                        class="m-link m-link--text m:display-flex"
  4538.                                        
  4539.                                      >
  4540.                                        Trailer Dolly
  4541.                                      </a>
  4542.                                    </li></ul>
  4543.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4544.                                <a href="/collections/lifts-hoists-jacks" class="m-link m-link--text m:display-flex m:items-center">
  4545.                                  Lifts &amp; Hoists &amp; Jacks
  4546.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4547.                                    <svg
  4548.                                      class="m-svg-icon--small"
  4549.                                      viewBox="0 0 12 12"
  4550.                                      fill="none"
  4551.                                      xmlns="http://www.w3.org/2000/svg"
  4552.                                    >
  4553.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4554.                                    </svg>
  4555.                                  </span>
  4556.                                </a>
  4557.                                <ul
  4558.                                  class="m-menu-dropdown__submenu"
  4559.                                  role="list"
  4560.                                  tabindex="-1"
  4561.                                ><li class="m-menu-dropdown__submenu-item ">
  4562.                                      <a
  4563.                                        href="/collections/jack-stands"
  4564.                                        class="m-link m-link--text m:display-flex"
  4565.                                        
  4566.                                      >
  4567.                                        Jack stands
  4568.                                      </a>
  4569.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4570.                                      <a
  4571.                                        href="/collections/pneumatic-car-jack"
  4572.                                        class="m-link m-link--text m:display-flex"
  4573.                                        
  4574.                                      >
  4575.                                        Pneumatic Car Jack
  4576.                                      </a>
  4577.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4578.                                      <a
  4579.                                        href="/collections/motorcycle-lift-stand"
  4580.                                        class="m-link m-link--text m:display-flex"
  4581.                                        
  4582.                                      >
  4583.                                        Motorcycle Lift Stand
  4584.                                      </a>
  4585.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4586.                                      <a
  4587.                                        href="/collections/hydraulic-motorcycle-hoist"
  4588.                                        class="m-link m-link--text m:display-flex"
  4589.                                        
  4590.                                      >
  4591.                                        Hydraulic Motorcycle Hoist
  4592.                                      </a>
  4593.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4594.                                      <a
  4595.                                        href="/collections/engine-hoists-stands"
  4596.                                        class="m-link m-link--text m:display-flex"
  4597.                                        
  4598.                                      >
  4599.                                        Engine Hoists &amp; Stands
  4600.                                      </a>
  4601.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4602.                                      <a
  4603.                                        href="/collections/hydraulic-scissor-cart"
  4604.                                        class="m-link m-link--text m:display-flex"
  4605.                                        
  4606.                                      >
  4607.                                        Hydraulic Scissor Cart
  4608.                                      </a>
  4609.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4610.                                      <a
  4611.                                        href="/collections/floor-jacks"
  4612.                                        class="m-link m-link--text m:display-flex"
  4613.                                        
  4614.                                      >
  4615.                                        Floor Jacks
  4616.                                      </a>
  4617.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4618.                                      <a
  4619.                                        href="/collections/transmission-jacks"
  4620.                                        class="m-link m-link--text m:display-flex"
  4621.                                        
  4622.                                      >
  4623.                                        Transmission Jacks
  4624.                                      </a>
  4625.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4626.                                      <a
  4627.                                        href="/collections/engine-stand"
  4628.                                        class="m-link m-link--text m:display-flex"
  4629.                                        
  4630.                                      >
  4631.                                        Engine Stand
  4632.                                      </a>
  4633.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4634.                                      <a
  4635.                                        href="/collections/hitch-receivers"
  4636.                                        class="m-link m-link--text m:display-flex"
  4637.                                        
  4638.                                      >
  4639.                                        Hitch Receivers
  4640.                                      </a>
  4641.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4642.                                      <a
  4643.                                        href="/collections/toe-jacks"
  4644.                                        class="m-link m-link--text m:display-flex"
  4645.                                        
  4646.                                      >
  4647.                                        Toe Jacks
  4648.                                      </a>
  4649.                                    </li></ul>
  4650.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4651.                                <a href="/collections/boat-parts-accessories" class="m-link m-link--text m:display-flex m:items-center">
  4652.                                  Boat Parts &amp; Accessories
  4653.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4654.                                    <svg
  4655.                                      class="m-svg-icon--small"
  4656.                                      viewBox="0 0 12 12"
  4657.                                      fill="none"
  4658.                                      xmlns="http://www.w3.org/2000/svg"
  4659.                                    >
  4660.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4661.                                    </svg>
  4662.                                  </span>
  4663.                                </a>
  4664.                                <ul
  4665.                                  class="m-menu-dropdown__submenu"
  4666.                                  role="list"
  4667.                                  tabindex="-1"
  4668.                                ><li class="m-menu-dropdown__submenu-item ">
  4669.                                      <a
  4670.                                        href="/collections/bimini-tops"
  4671.                                        class="m-link m-link--text m:display-flex"
  4672.                                        
  4673.                                      >
  4674.                                        Bimini Tops
  4675.                                      </a>
  4676.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4677.                                      <a
  4678.                                        href="/collections/boat-trailer-guides"
  4679.                                        class="m-link m-link--text m:display-flex"
  4680.                                        
  4681.                                      >
  4682.                                        Boat Trailer Guides
  4683.                                      </a>
  4684.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4685.                                      <a
  4686.                                        href="/collections/boat-cover"
  4687.                                        class="m-link m-link--text m:display-flex"
  4688.                                        
  4689.                                      >
  4690.                                        Boat Cover
  4691.                                      </a>
  4692.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4693.                                      <a
  4694.                                        href="/collections/boat-anchor"
  4695.                                        class="m-link m-link--text m:display-flex"
  4696.                                        
  4697.                                      >
  4698.                                        Boat Anchor
  4699.                                      </a>
  4700.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4701.                                      <a
  4702.                                        href="/collections/boat-fenders"
  4703.                                        class="m-link m-link--text m:display-flex"
  4704.                                        
  4705.                                      >
  4706.                                        Boat Fenders
  4707.                                      </a>
  4708.                                    </li></ul>
  4709.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4710.                                <a href="/collections/interior-accessories" class="m-link m-link--text m:display-flex m:items-center">
  4711.                                  Interior Accessories
  4712.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4713.                                    <svg
  4714.                                      class="m-svg-icon--small"
  4715.                                      viewBox="0 0 12 12"
  4716.                                      fill="none"
  4717.                                      xmlns="http://www.w3.org/2000/svg"
  4718.                                    >
  4719.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4720.                                    </svg>
  4721.                                  </span>
  4722.                                </a>
  4723.                                <ul
  4724.                                  class="m-menu-dropdown__submenu"
  4725.                                  role="list"
  4726.                                  tabindex="-1"
  4727.                                ><li class="m-menu-dropdown__submenu-item ">
  4728.                                      <a
  4729.                                        href="/collections/floor-mats"
  4730.                                        class="m-link m-link--text m:display-flex"
  4731.                                        
  4732.                                      >
  4733.                                        Floor Mats
  4734.                                      </a>
  4735.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4736.                                      <a
  4737.                                        href="/collections/igniter"
  4738.                                        class="m-link m-link--text m:display-flex"
  4739.                                        
  4740.                                      >
  4741.                                        Igniter
  4742.                                      </a>
  4743.                                    </li></ul>
  4744.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4745.                                <a href="/collections/hydraulic-rams-tools" class="m-link m-link--text m:display-flex m:items-center">
  4746.                                  Hydraulic Rams &amp; Tools
  4747.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4748.                                    <svg
  4749.                                      class="m-svg-icon--small"
  4750.                                      viewBox="0 0 12 12"
  4751.                                      fill="none"
  4752.                                      xmlns="http://www.w3.org/2000/svg"
  4753.                                    >
  4754.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4755.                                    </svg>
  4756.                                  </span>
  4757.                                </a>
  4758.                                <ul
  4759.                                  class="m-menu-dropdown__submenu"
  4760.                                  role="list"
  4761.                                  tabindex="-1"
  4762.                                ><li class="m-menu-dropdown__submenu-item ">
  4763.                                      <a
  4764.                                        href="/collections/rotary-tool-kit"
  4765.                                        class="m-link m-link--text m:display-flex"
  4766.                                        
  4767.                                      >
  4768.                                        Rotary Tool Kit
  4769.                                      </a>
  4770.                                    </li></ul>
  4771.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4772.                                <a href="/collections/repair-tools" class="m-link m-link--text m:display-flex m:items-center">
  4773.                                  Repair Tools
  4774.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4775.                                    <svg
  4776.                                      class="m-svg-icon--small"
  4777.                                      viewBox="0 0 12 12"
  4778.                                      fill="none"
  4779.                                      xmlns="http://www.w3.org/2000/svg"
  4780.                                    >
  4781.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4782.                                    </svg>
  4783.                                  </span>
  4784.                                </a>
  4785.                                <ul
  4786.                                  class="m-menu-dropdown__submenu"
  4787.                                  role="list"
  4788.                                  tabindex="-1"
  4789.                                ><li class="m-menu-dropdown__submenu-item ">
  4790.                                      <a
  4791.                                        href="/collections/magnetic-induction-heater"
  4792.                                        class="m-link m-link--text m:display-flex"
  4793.                                        
  4794.                                      >
  4795.                                        Magnetic Induction Heater
  4796.                                      </a>
  4797.                                    </li></ul>
  4798.                              </li></ul>
  4799.                      </header-dropdown-menu>
  4800.                    </div>
  4801.                  </div>
  4802.                </li><li
  4803.                  class="m-menu-drawer__menu-item m-list-menu__item "
  4804.                  data-main-details-toggle
  4805.                >
  4806.                  <a href="/collections/power-hand-tools" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  4807.                    Power &amp; Hand Tools
  4808.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  4809.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  4810.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4811.                      </svg>
  4812.                    </span>
  4813.                  </a>
  4814.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  4815.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  4816.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  4817.                        <svg
  4818.                          class="m-svg-icon--small"
  4819.                          viewBox="0 0 12 12"
  4820.                          fill="none"
  4821.                          xmlns="http://www.w3.org/2000/svg"
  4822.                        >
  4823.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4824.                        </svg>
  4825.                        Power &amp; Hand Tools
  4826.                      </button>
  4827.                      <header-dropdown-menu class="m:block">
  4828.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4829.                                <a href="/collections/drills-drivers" class="m-link m-link--text m:display-flex m:items-center">
  4830.                                  Drills &amp; Drivers
  4831.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4832.                                    <svg
  4833.                                      class="m-svg-icon--small"
  4834.                                      viewBox="0 0 12 12"
  4835.                                      fill="none"
  4836.                                      xmlns="http://www.w3.org/2000/svg"
  4837.                                    >
  4838.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4839.                                    </svg>
  4840.                                  </span>
  4841.                                </a>
  4842.                                <ul
  4843.                                  class="m-menu-dropdown__submenu"
  4844.                                  role="list"
  4845.                                  tabindex="-1"
  4846.                                ><li class="m-menu-dropdown__submenu-item ">
  4847.                                      <a
  4848.                                        href="/collections/drill-press"
  4849.                                        class="m-link m-link--text m:display-flex"
  4850.                                        
  4851.                                      >
  4852.                                        Drill Press
  4853.                                      </a>
  4854.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4855.                                      <a
  4856.                                        href="/collections/magnetic-drill"
  4857.                                        class="m-link m-link--text m:display-flex"
  4858.                                        
  4859.                                      >
  4860.                                        Magnetic Drill
  4861.                                      </a>
  4862.                                    </li></ul>
  4863.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4864.                                <a href="/collections/hand-tools-1" class="m-link m-link--text m:display-flex m:items-center">
  4865.                                  Hand Tools
  4866.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4867.                                    <svg
  4868.                                      class="m-svg-icon--small"
  4869.                                      viewBox="0 0 12 12"
  4870.                                      fill="none"
  4871.                                      xmlns="http://www.w3.org/2000/svg"
  4872.                                    >
  4873.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4874.                                    </svg>
  4875.                                  </span>
  4876.                                </a>
  4877.                                <ul
  4878.                                  class="m-menu-dropdown__submenu"
  4879.                                  role="list"
  4880.                                  tabindex="-1"
  4881.                                ><li class="m-menu-dropdown__submenu-item ">
  4882.                                      <a
  4883.                                        href="/collections/magnetic-sweepers"
  4884.                                        class="m-link m-link--text m:display-flex"
  4885.                                        
  4886.                                      >
  4887.                                        Magnetic Sweepers
  4888.                                      </a>
  4889.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4890.                                      <a
  4891.                                        href="/collections/test-measure-inspect-1"
  4892.                                        class="m-link m-link--text m:display-flex"
  4893.                                        
  4894.                                      >
  4895.                                        Test &amp; Measure &amp; Inspect
  4896.                                      </a>
  4897.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4898.                                      <a
  4899.                                        href="/collections/measuring-tools"
  4900.                                        class="m-link m-link--text m:display-flex"
  4901.                                        
  4902.                                      >
  4903.                                        Measuring Tools
  4904.                                      </a>
  4905.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4906.                                      <a
  4907.                                        href="/collections/sockets-bits"
  4908.                                        class="m-link m-link--text m:display-flex"
  4909.                                        
  4910.                                      >
  4911.                                        Sockets &amp; Bits
  4912.                                      </a>
  4913.                                    </li></ul>
  4914.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4915.                                <a href="/collections/demolition-tools-equipment" class="m-link m-link--text m:display-flex m:items-center">
  4916.                                  Demolition Tools &amp; Equipment
  4917.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4918.                                    <svg
  4919.                                      class="m-svg-icon--small"
  4920.                                      viewBox="0 0 12 12"
  4921.                                      fill="none"
  4922.                                      xmlns="http://www.w3.org/2000/svg"
  4923.                                    >
  4924.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4925.                                    </svg>
  4926.                                  </span>
  4927.                                </a>
  4928.                                <ul
  4929.                                  class="m-menu-dropdown__submenu"
  4930.                                  role="list"
  4931.                                  tabindex="-1"
  4932.                                ><li class="m-menu-dropdown__submenu-item ">
  4933.                                      <a
  4934.                                        href="/collections/jack-hammer"
  4935.                                        class="m-link m-link--text m:display-flex"
  4936.                                        
  4937.                                      >
  4938.                                        Jack Hammer
  4939.                                      </a>
  4940.                                    </li></ul>
  4941.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4942.                                <a href="/collections/wrenches" class="m-link m-link--text m:display-flex m:items-center">
  4943.                                  Wrenches
  4944.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4945.                                    <svg
  4946.                                      class="m-svg-icon--small"
  4947.                                      viewBox="0 0 12 12"
  4948.                                      fill="none"
  4949.                                      xmlns="http://www.w3.org/2000/svg"
  4950.                                    >
  4951.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  4952.                                    </svg>
  4953.                                  </span>
  4954.                                </a>
  4955.                                <ul
  4956.                                  class="m-menu-dropdown__submenu"
  4957.                                  role="list"
  4958.                                  tabindex="-1"
  4959.                                ><li class="m-menu-dropdown__submenu-item ">
  4960.                                      <a
  4961.                                        href="/collections/pipe-wrench"
  4962.                                        class="m-link m-link--text m:display-flex"
  4963.                                        
  4964.                                      >
  4965.                                        Pipe Wrench
  4966.                                      </a>
  4967.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4968.                                      <a
  4969.                                        href="/collections/combination-wrenches"
  4970.                                        class="m-link m-link--text m:display-flex"
  4971.                                        
  4972.                                      >
  4973.                                        Combination Wrenches
  4974.                                      </a>
  4975.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4976.                                      <a
  4977.                                        href="/collections/wrench-sets"
  4978.                                        class="m-link m-link--text m:display-flex"
  4979.                                        
  4980.                                      >
  4981.                                        Wrench Sets
  4982.                                      </a>
  4983.                                    </li><li class="m-menu-dropdown__submenu-item ">
  4984.                                      <a
  4985.                                        href="/collections/mill-vise"
  4986.                                        class="m-link m-link--text m:display-flex"
  4987.                                        
  4988.                                      >
  4989.                                        Mill Vise
  4990.                                      </a>
  4991.                                    </li></ul>
  4992.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  4993.                                <a href="/collections/power-tools" class="m-link m-link--text m:display-flex m:items-center">
  4994.                                  Power Tools
  4995.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  4996.                                    <svg
  4997.                                      class="m-svg-icon--small"
  4998.                                      viewBox="0 0 12 12"
  4999.                                      fill="none"
  5000.                                      xmlns="http://www.w3.org/2000/svg"
  5001.                                    >
  5002.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5003.                                    </svg>
  5004.                                  </span>
  5005.                                </a>
  5006.                                <ul
  5007.                                  class="m-menu-dropdown__submenu"
  5008.                                  role="list"
  5009.                                  tabindex="-1"
  5010.                                ><li class="m-menu-dropdown__submenu-item ">
  5011.                                      <a
  5012.                                        href="/collections/power-tool-parts-accessories"
  5013.                                        class="m-link m-link--text m:display-flex"
  5014.                                        
  5015.                                      >
  5016.                                        Power Tool Parts &amp; Accessories
  5017.                                      </a>
  5018.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5019.                                      <a
  5020.                                        href="/collections/saws-accessories"
  5021.                                        class="m-link m-link--text m:display-flex"
  5022.                                        
  5023.                                      >
  5024.                                        Saws &amp; Accessories
  5025.                                      </a>
  5026.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5027.                                      <a
  5028.                                        href="/collections/grinding-sanding-finishing-tools"
  5029.                                        class="m-link m-link--text m:display-flex"
  5030.                                        
  5031.                                      >
  5032.                                        Grinding &amp; Sanding &amp; Finishing Tools
  5033.                                      </a>
  5034.                                    </li></ul>
  5035.                              </li><li class="m-menu-dropdown__menu-item">
  5036.                                <a href="/collections/saws" class="m-link m-link--text m:display-flex m:items-center">
  5037.                                  Saws
  5038.                                </a>
  5039.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5040.                                <a href="/collections/grinding-sanding-finishing-tools" class="m-link m-link--text m:display-flex m:items-center">
  5041.                                  Grinding &amp; Sanding &amp; Finishing Tools
  5042.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5043.                                    <svg
  5044.                                      class="m-svg-icon--small"
  5045.                                      viewBox="0 0 12 12"
  5046.                                      fill="none"
  5047.                                      xmlns="http://www.w3.org/2000/svg"
  5048.                                    >
  5049.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5050.                                    </svg>
  5051.                                  </span>
  5052.                                </a>
  5053.                                <ul
  5054.                                  class="m-menu-dropdown__submenu"
  5055.                                  role="list"
  5056.                                  tabindex="-1"
  5057.                                ><li class="m-menu-dropdown__submenu-item ">
  5058.                                      <a
  5059.                                        href="/collections/saw-blade-sharpener"
  5060.                                        class="m-link m-link--text m:display-flex"
  5061.                                        
  5062.                                      >
  5063.                                        Saw Blade Sharpener
  5064.                                      </a>
  5065.                                    </li></ul>
  5066.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5067.                                <a href="/collections/inspection-retrieving-tools" class="m-link m-link--text m:display-flex m:items-center">
  5068.                                  Inspection &amp; Retrieving Tools
  5069.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5070.                                    <svg
  5071.                                      class="m-svg-icon--small"
  5072.                                      viewBox="0 0 12 12"
  5073.                                      fill="none"
  5074.                                      xmlns="http://www.w3.org/2000/svg"
  5075.                                    >
  5076.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5077.                                    </svg>
  5078.                                  </span>
  5079.                                </a>
  5080.                                <ul
  5081.                                  class="m-menu-dropdown__submenu"
  5082.                                  role="list"
  5083.                                  tabindex="-1"
  5084.                                ><li class="m-menu-dropdown__submenu-item ">
  5085.                                      <a
  5086.                                        href="/collections/pipe-inspection-camera"
  5087.                                        class="m-link m-link--text m:display-flex"
  5088.                                        
  5089.                                      >
  5090.                                        Pipe Inspection Camera
  5091.                                      </a>
  5092.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5093.                                      <a
  5094.                                        href="/collections/metal-detectors"
  5095.                                        class="m-link m-link--text m:display-flex"
  5096.                                        
  5097.                                      >
  5098.                                        Metal Detectors
  5099.                                      </a>
  5100.                                    </li></ul>
  5101.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5102.                                <a href="/collections/punching-tools" class="m-link m-link--text m:display-flex m:items-center">
  5103.                                  Punching Tools
  5104.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5105.                                    <svg
  5106.                                      class="m-svg-icon--small"
  5107.                                      viewBox="0 0 12 12"
  5108.                                      fill="none"
  5109.                                      xmlns="http://www.w3.org/2000/svg"
  5110.                                    >
  5111.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5112.                                    </svg>
  5113.                                  </span>
  5114.                                </a>
  5115.                                <ul
  5116.                                  class="m-menu-dropdown__submenu"
  5117.                                  role="list"
  5118.                                  tabindex="-1"
  5119.                                ><li class="m-menu-dropdown__submenu-item ">
  5120.                                      <a
  5121.                                        href="/collections/hydraulic-knockout-punch"
  5122.                                        class="m-link m-link--text m:display-flex"
  5123.                                        
  5124.                                      >
  5125.                                        Hydraulic Knockout Punch
  5126.                                      </a>
  5127.                                    </li></ul>
  5128.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5129.                                <a href="/collections/power-tool-parts-accessories" class="m-link m-link--text m:display-flex m:items-center">
  5130.                                  Power Tool Parts &amp; Accessories
  5131.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5132.                                    <svg
  5133.                                      class="m-svg-icon--small"
  5134.                                      viewBox="0 0 12 12"
  5135.                                      fill="none"
  5136.                                      xmlns="http://www.w3.org/2000/svg"
  5137.                                    >
  5138.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5139.                                    </svg>
  5140.                                  </span>
  5141.                                </a>
  5142.                                <ul
  5143.                                  class="m-menu-dropdown__submenu"
  5144.                                  role="list"
  5145.                                  tabindex="-1"
  5146.                                ><li class="m-menu-dropdown__submenu-item ">
  5147.                                      <a
  5148.                                        href="/collections/air-hose-reel"
  5149.                                        class="m-link m-link--text m:display-flex"
  5150.                                        
  5151.                                      >
  5152.                                        Air Hose Reel
  5153.                                      </a>
  5154.                                    </li></ul>
  5155.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5156.                                <a href="/collections/electrical" class="m-link m-link--text m:display-flex m:items-center">
  5157.                                  Electrical
  5158.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5159.                                    <svg
  5160.                                      class="m-svg-icon--small"
  5161.                                      viewBox="0 0 12 12"
  5162.                                      fill="none"
  5163.                                      xmlns="http://www.w3.org/2000/svg"
  5164.                                    >
  5165.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5166.                                    </svg>
  5167.                                  </span>
  5168.                                </a>
  5169.                                <ul
  5170.                                  class="m-menu-dropdown__submenu"
  5171.                                  role="list"
  5172.                                  tabindex="-1"
  5173.                                ><li class="m-menu-dropdown__submenu-item ">
  5174.                                      <a
  5175.                                        href="/collections/electrical-tools"
  5176.                                        class="m-link m-link--text m:display-flex"
  5177.                                        
  5178.                                      >
  5179.                                        Electrical Tools
  5180.                                      </a>
  5181.                                    </li></ul>
  5182.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5183.                                <a href="/collections/workbenches-accessories" class="m-link m-link--text m:display-flex m:items-center">
  5184.                                  Workbenches &amp; Accessories
  5185.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5186.                                    <svg
  5187.                                      class="m-svg-icon--small"
  5188.                                      viewBox="0 0 12 12"
  5189.                                      fill="none"
  5190.                                      xmlns="http://www.w3.org/2000/svg"
  5191.                                    >
  5192.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5193.                                    </svg>
  5194.                                  </span>
  5195.                                </a>
  5196.                                <ul
  5197.                                  class="m-menu-dropdown__submenu"
  5198.                                  role="list"
  5199.                                  tabindex="-1"
  5200.                                ><li class="m-menu-dropdown__submenu-item ">
  5201.                                      <a
  5202.                                        href="/collections/adjustable-workbench"
  5203.                                        class="m-link m-link--text m:display-flex"
  5204.                                        
  5205.                                      >
  5206.                                        Adjustable Workbench
  5207.                                      </a>
  5208.                                    </li></ul>
  5209.                              </li></ul>
  5210.                      </header-dropdown-menu>
  5211.                    </div>
  5212.                  </div>
  5213.                </li><li
  5214.                  class="m-menu-drawer__menu-item m-list-menu__item "
  5215.                  data-main-details-toggle
  5216.                >
  5217.                  <a href="/collections/appliances" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  5218.                    Appliances
  5219.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  5220.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  5221.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5222.                      </svg>
  5223.                    </span>
  5224.                  </a>
  5225.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  5226.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  5227.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  5228.                        <svg
  5229.                          class="m-svg-icon--small"
  5230.                          viewBox="0 0 12 12"
  5231.                          fill="none"
  5232.                          xmlns="http://www.w3.org/2000/svg"
  5233.                        >
  5234.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5235.                        </svg>
  5236.                        Appliances
  5237.                      </button>
  5238.                      <header-dropdown-menu class="m:block">
  5239.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5240.                                <a href="/collections/air-treatment" class="m-link m-link--text m:display-flex m:items-center">
  5241.                                  Air Treatment
  5242.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5243.                                    <svg
  5244.                                      class="m-svg-icon--small"
  5245.                                      viewBox="0 0 12 12"
  5246.                                      fill="none"
  5247.                                      xmlns="http://www.w3.org/2000/svg"
  5248.                                    >
  5249.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5250.                                    </svg>
  5251.                                  </span>
  5252.                                </a>
  5253.                                <ul
  5254.                                  class="m-menu-dropdown__submenu"
  5255.                                  role="list"
  5256.                                  tabindex="-1"
  5257.                                ><li class="m-menu-dropdown__submenu-item ">
  5258.                                      <a
  5259.                                        href="/collections/cordless-fan"
  5260.                                        class="m-link m-link--text m:display-flex"
  5261.                                        
  5262.                                      >
  5263.                                        Cordless Fan
  5264.                                      </a>
  5265.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5266.                                      <a
  5267.                                        href="/collections/commercial-dehumidifiers"
  5268.                                        class="m-link m-link--text m:display-flex"
  5269.                                        
  5270.                                      >
  5271.                                        Commercial Dehumidifiers
  5272.                                      </a>
  5273.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5274.                                      <a
  5275.                                        href="/collections/dehumidifiers"
  5276.                                        class="m-link m-link--text m:display-flex"
  5277.                                        
  5278.                                      >
  5279.                                        Dehumidifiers
  5280.                                      </a>
  5281.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5282.                                      <a
  5283.                                        href="/collections/air-purifiers"
  5284.                                        class="m-link m-link--text m:display-flex"
  5285.                                        
  5286.                                      >
  5287.                                        Air Purifiers
  5288.                                      </a>
  5289.                                    </li></ul>
  5290.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5291.                                <a href="/collections/fireplaces-stoves" class="m-link m-link--text m:display-flex m:items-center">
  5292.                                  Fireplaces &amp; Stoves
  5293.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5294.                                    <svg
  5295.                                      class="m-svg-icon--small"
  5296.                                      viewBox="0 0 12 12"
  5297.                                      fill="none"
  5298.                                      xmlns="http://www.w3.org/2000/svg"
  5299.                                    >
  5300.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5301.                                    </svg>
  5302.                                  </span>
  5303.                                </a>
  5304.                                <ul
  5305.                                  class="m-menu-dropdown__submenu"
  5306.                                  role="list"
  5307.                                  tabindex="-1"
  5308.                                ><li class="m-menu-dropdown__submenu-item ">
  5309.                                      <a
  5310.                                        href="/collections/electric-fireplace"
  5311.                                        class="m-link m-link--text m:display-flex"
  5312.                                        
  5313.                                      >
  5314.                                        Electric Fireplace
  5315.                                      </a>
  5316.                                    </li></ul>
  5317.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5318.                                <a href="/collections/small-appliances" class="m-link m-link--text m:display-flex m:items-center">
  5319.                                  Small Appliances
  5320.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5321.                                    <svg
  5322.                                      class="m-svg-icon--small"
  5323.                                      viewBox="0 0 12 12"
  5324.                                      fill="none"
  5325.                                      xmlns="http://www.w3.org/2000/svg"
  5326.                                    >
  5327.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5328.                                    </svg>
  5329.                                  </span>
  5330.                                </a>
  5331.                                <ul
  5332.                                  class="m-menu-dropdown__submenu"
  5333.                                  role="list"
  5334.                                  tabindex="-1"
  5335.                                ><li class="m-menu-dropdown__submenu-item ">
  5336.                                      <a
  5337.                                        href="/collections/clothes-dryer"
  5338.                                        class="m-link m-link--text m:display-flex"
  5339.                                        
  5340.                                      >
  5341.                                        Clothes dryer
  5342.                                      </a>
  5343.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5344.                                      <a
  5345.                                        href="/collections/hairdryer"
  5346.                                        class="m-link m-link--text m:display-flex"
  5347.                                        
  5348.                                      >
  5349.                                        Hairdryer
  5350.                                      </a>
  5351.                                    </li></ul>
  5352.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5353.                                <a href="/collections/heater-accessories" class="m-link m-link--text m:display-flex m:items-center">
  5354.                                  Heater &amp; Accessories
  5355.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5356.                                    <svg
  5357.                                      class="m-svg-icon--small"
  5358.                                      viewBox="0 0 12 12"
  5359.                                      fill="none"
  5360.                                      xmlns="http://www.w3.org/2000/svg"
  5361.                                    >
  5362.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5363.                                    </svg>
  5364.                                  </span>
  5365.                                </a>
  5366.                                <ul
  5367.                                  class="m-menu-dropdown__submenu"
  5368.                                  role="list"
  5369.                                  tabindex="-1"
  5370.                                ><li class="m-menu-dropdown__submenu-item ">
  5371.                                      <a
  5372.                                        href="/collections/electric-space-heaters"
  5373.                                        class="m-link m-link--text m:display-flex"
  5374.                                        
  5375.                                      >
  5376.                                        Electric Space Heaters
  5377.                                      </a>
  5378.                                    </li></ul>
  5379.                              </li></ul>
  5380.                      </header-dropdown-menu>
  5381.                    </div>
  5382.                  </div>
  5383.                </li><li
  5384.                  class="m-menu-drawer__menu-item m-list-menu__item "
  5385.                  data-main-details-toggle
  5386.                >
  5387.                  <a href="/collections/sports-recreation" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  5388.                    Sports &amp; Outdoors
  5389.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  5390.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  5391.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5392.                      </svg>
  5393.                    </span>
  5394.                  </a>
  5395.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  5396.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  5397.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  5398.                        <svg
  5399.                          class="m-svg-icon--small"
  5400.                          viewBox="0 0 12 12"
  5401.                          fill="none"
  5402.                          xmlns="http://www.w3.org/2000/svg"
  5403.                        >
  5404.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5405.                        </svg>
  5406.                        Sports &amp; Outdoors
  5407.                      </button>
  5408.                      <header-dropdown-menu class="m:block">
  5409.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5410.                                <a href="/collections/outdoor-recreation" class="m-link m-link--text m:display-flex m:items-center">
  5411.                                  Outdoor Recreation
  5412.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5413.                                    <svg
  5414.                                      class="m-svg-icon--small"
  5415.                                      viewBox="0 0 12 12"
  5416.                                      fill="none"
  5417.                                      xmlns="http://www.w3.org/2000/svg"
  5418.                                    >
  5419.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5420.                                    </svg>
  5421.                                  </span>
  5422.                                </a>
  5423.                                <ul
  5424.                                  class="m-menu-dropdown__submenu"
  5425.                                  role="list"
  5426.                                  tabindex="-1"
  5427.                                ><li class="m-menu-dropdown__submenu-item ">
  5428.                                      <a
  5429.                                        href="/collections/water-sports"
  5430.                                        class="m-link m-link--text m:display-flex"
  5431.                                        
  5432.                                      >
  5433.                                        Water Sports
  5434.                                      </a>
  5435.                                    </li></ul>
  5436.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5437.                                <a href="/collections/sports" class="m-link m-link--text m:display-flex m:items-center">
  5438.                                  Sports
  5439.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5440.                                    <svg
  5441.                                      class="m-svg-icon--small"
  5442.                                      viewBox="0 0 12 12"
  5443.                                      fill="none"
  5444.                                      xmlns="http://www.w3.org/2000/svg"
  5445.                                    >
  5446.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5447.                                    </svg>
  5448.                                  </span>
  5449.                                </a>
  5450.                                <ul
  5451.                                  class="m-menu-dropdown__submenu"
  5452.                                  role="list"
  5453.                                  tabindex="-1"
  5454.                                ><li class="m-menu-dropdown__submenu-item ">
  5455.                                      <a
  5456.                                        href="/collections/leisure-sports-game-room"
  5457.                                        class="m-link m-link--text m:display-flex"
  5458.                                        
  5459.                                      >
  5460.                                        Leisure Sports &amp; Game Room
  5461.                                      </a>
  5462.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5463.                                      <a
  5464.                                        href="/collections/ping-pong"
  5465.                                        class="m-link m-link--text m:display-flex"
  5466.                                        
  5467.                                      >
  5468.                                        Ping Pong
  5469.                                      </a>
  5470.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5471.                                      <a
  5472.                                        href="/collections/basketball-hoops-goals"
  5473.                                        class="m-link m-link--text m:display-flex"
  5474.                                        
  5475.                                      >
  5476.                                        Basketball Hoops &amp; Goals
  5477.                                      </a>
  5478.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5479.                                      <a
  5480.                                        href="/collections/other-sports"
  5481.                                        class="m-link m-link--text m:display-flex"
  5482.                                        
  5483.                                      >
  5484.                                        Other Sports
  5485.                                      </a>
  5486.                                    </li></ul>
  5487.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5488.                                <a href="/collections/exercise-fitness" class="m-link m-link--text m:display-flex m:items-center">
  5489.                                  Exercise &amp; Fitness
  5490.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5491.                                    <svg
  5492.                                      class="m-svg-icon--small"
  5493.                                      viewBox="0 0 12 12"
  5494.                                      fill="none"
  5495.                                      xmlns="http://www.w3.org/2000/svg"
  5496.                                    >
  5497.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5498.                                    </svg>
  5499.                                  </span>
  5500.                                </a>
  5501.                                <ul
  5502.                                  class="m-menu-dropdown__submenu"
  5503.                                  role="list"
  5504.                                  tabindex="-1"
  5505.                                ><li class="m-menu-dropdown__submenu-item ">
  5506.                                      <a
  5507.                                        href="/collections/fitness-technology"
  5508.                                        class="m-link m-link--text m:display-flex"
  5509.                                        
  5510.                                      >
  5511.                                        Fitness Technology
  5512.                                      </a>
  5513.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5514.                                      <a
  5515.                                        href="/collections/treadmill"
  5516.                                        class="m-link m-link--text m:display-flex"
  5517.                                        
  5518.                                      >
  5519.                                        Treadmill
  5520.                                      </a>
  5521.                                    </li></ul>
  5522.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5523.                                <a href="/collections/action-aids" class="m-link m-link--text m:display-flex m:items-center">
  5524.                                  Action Aids
  5525.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5526.                                    <svg
  5527.                                      class="m-svg-icon--small"
  5528.                                      viewBox="0 0 12 12"
  5529.                                      fill="none"
  5530.                                      xmlns="http://www.w3.org/2000/svg"
  5531.                                    >
  5532.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5533.                                    </svg>
  5534.                                  </span>
  5535.                                </a>
  5536.                                <ul
  5537.                                  class="m-menu-dropdown__submenu"
  5538.                                  role="list"
  5539.                                  tabindex="-1"
  5540.                                ><li class="m-menu-dropdown__submenu-item ">
  5541.                                      <a
  5542.                                        href="/collections/walkers-rollators"
  5543.                                        class="m-link m-link--text m:display-flex"
  5544.                                        
  5545.                                      >
  5546.                                        Walkers &amp; Rollators
  5547.                                      </a>
  5548.                                    </li></ul>
  5549.                              </li></ul>
  5550.                      </header-dropdown-menu>
  5551.                    </div>
  5552.                  </div>
  5553.                </li><li
  5554.                  class="m-menu-drawer__menu-item m-list-menu__item "
  5555.                  data-main-details-toggle
  5556.                >
  5557.                  <a href="/collections/material-handling" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  5558.                    Material Handling
  5559.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  5560.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  5561.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5562.                      </svg>
  5563.                    </span>
  5564.                  </a>
  5565.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  5566.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  5567.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  5568.                        <svg
  5569.                          class="m-svg-icon--small"
  5570.                          viewBox="0 0 12 12"
  5571.                          fill="none"
  5572.                          xmlns="http://www.w3.org/2000/svg"
  5573.                        >
  5574.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5575.                        </svg>
  5576.                        Material Handling
  5577.                      </button>
  5578.                      <header-dropdown-menu class="m:block">
  5579.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5580.                                <a href="/collections/pallet-moving-equipment-accessories" class="m-link m-link--text m:display-flex m:items-center">
  5581.                                  Pallet Moving Equipment &amp; Accessories
  5582.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5583.                                    <svg
  5584.                                      class="m-svg-icon--small"
  5585.                                      viewBox="0 0 12 12"
  5586.                                      fill="none"
  5587.                                      xmlns="http://www.w3.org/2000/svg"
  5588.                                    >
  5589.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5590.                                    </svg>
  5591.                                  </span>
  5592.                                </a>
  5593.                                <ul
  5594.                                  class="m-menu-dropdown__submenu"
  5595.                                  role="list"
  5596.                                  tabindex="-1"
  5597.                                ><li class="m-menu-dropdown__submenu-item ">
  5598.                                      <a
  5599.                                        href="/collections/pallet-forks-extensions"
  5600.                                        class="m-link m-link--text m:display-flex"
  5601.                                        
  5602.                                      >
  5603.                                        Pallet Forks Extensions
  5604.                                      </a>
  5605.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5606.                                      <a
  5607.                                        href="/collections/pallet-forks"
  5608.                                        class="m-link m-link--text m:display-flex"
  5609.                                        
  5610.                                      >
  5611.                                        Pallet Forks
  5612.                                      </a>
  5613.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5614.                                      <a
  5615.                                        href="/collections/forklift-safety-cage"
  5616.                                        class="m-link m-link--text m:display-flex"
  5617.                                        
  5618.                                      >
  5619.                                        Forklift Safety Cage
  5620.                                      </a>
  5621.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5622.                                      <a
  5623.                                        href="/collections/forklift-hook"
  5624.                                        class="m-link m-link--text m:display-flex"
  5625.                                        
  5626.                                      >
  5627.                                        Forklift Hook
  5628.                                      </a>
  5629.                                    </li></ul>
  5630.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5631.                                <a href="/collections/carts-trucks" class="m-link m-link--text m:display-flex m:items-center">
  5632.                                  Carts &amp; Trucks
  5633.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5634.                                    <svg
  5635.                                      class="m-svg-icon--small"
  5636.                                      viewBox="0 0 12 12"
  5637.                                      fill="none"
  5638.                                      xmlns="http://www.w3.org/2000/svg"
  5639.                                    >
  5640.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5641.                                    </svg>
  5642.                                  </span>
  5643.                                </a>
  5644.                                <ul
  5645.                                  class="m-menu-dropdown__submenu"
  5646.                                  role="list"
  5647.                                  tabindex="-1"
  5648.                                ><li class="m-menu-dropdown__submenu-item ">
  5649.                                      <a
  5650.                                        href="/collections/utility-cart"
  5651.                                        class="m-link m-link--text m:display-flex"
  5652.                                        
  5653.                                      >
  5654.                                        Utility Cart
  5655.                                      </a>
  5656.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5657.                                      <a
  5658.                                        href="/collections/hydraulic-scissor-cart"
  5659.                                        class="m-link m-link--text m:display-flex"
  5660.                                        
  5661.                                      >
  5662.                                        Hydraulic Scissor Cart
  5663.                                      </a>
  5664.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5665.                                      <a
  5666.                                        href="/collections/book-cart"
  5667.                                        class="m-link m-link--text m:display-flex"
  5668.                                        
  5669.                                      >
  5670.                                        Book Cart
  5671.                                      </a>
  5672.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5673.                                      <a
  5674.                                        href="/collections/stair-climbing-cart"
  5675.                                        class="m-link m-link--text m:display-flex"
  5676.                                        
  5677.                                      >
  5678.                                        Stair Climbing Cart
  5679.                                      </a>
  5680.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5681.                                      <a
  5682.                                        href="/collections/panel-trucks"
  5683.                                        class="m-link m-link--text m:display-flex"
  5684.                                        
  5685.                                      >
  5686.                                        Panel Trucks
  5687.                                      </a>
  5688.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5689.                                      <a
  5690.                                        href="/collections/folding-cart"
  5691.                                        class="m-link m-link--text m:display-flex"
  5692.                                        
  5693.                                      >
  5694.                                        Folding Cart
  5695.                                      </a>
  5696.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5697.                                      <a
  5698.                                        href="/collections/welding-cart"
  5699.                                        class="m-link m-link--text m:display-flex"
  5700.                                        
  5701.                                      >
  5702.                                        Welding Cart
  5703.                                      </a>
  5704.                                    </li></ul>
  5705.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5706.                                <a href="/collections/ramps-ladders" class="m-link m-link--text m:display-flex m:items-center">
  5707.                                  Ramps &amp; Ladders
  5708.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5709.                                    <svg
  5710.                                      class="m-svg-icon--small"
  5711.                                      viewBox="0 0 12 12"
  5712.                                      fill="none"
  5713.                                      xmlns="http://www.w3.org/2000/svg"
  5714.                                    >
  5715.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5716.                                    </svg>
  5717.                                  </span>
  5718.                                </a>
  5719.                                <ul
  5720.                                  class="m-menu-dropdown__submenu"
  5721.                                  role="list"
  5722.                                  tabindex="-1"
  5723.                                ><li class="m-menu-dropdown__submenu-item ">
  5724.                                      <a
  5725.                                        href="/collections/aluminum-dock-ladder"
  5726.                                        class="m-link m-link--text m:display-flex"
  5727.                                        
  5728.                                      >
  5729.                                        Aluminum Dock Ladder
  5730.                                      </a>
  5731.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5732.                                      <a
  5733.                                        href="/collections/loading-ramps"
  5734.                                        class="m-link m-link--text m:display-flex"
  5735.                                        
  5736.                                      >
  5737.                                        Loading Ramps
  5738.                                      </a>
  5739.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5740.                                      <a
  5741.                                        href="/collections/curb-ramp"
  5742.                                        class="m-link m-link--text m:display-flex"
  5743.                                        
  5744.                                      >
  5745.                                        Curb Ramp
  5746.                                      </a>
  5747.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5748.                                      <a
  5749.                                        href="/collections/wheelchair-ramps"
  5750.                                        class="m-link m-link--text m:display-flex"
  5751.                                        
  5752.                                      >
  5753.                                        Wheelchair Ramps
  5754.                                      </a>
  5755.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5756.                                      <a
  5757.                                        href="/collections/rv-stairs"
  5758.                                        class="m-link m-link--text m:display-flex"
  5759.                                        
  5760.                                      >
  5761.                                        RV Stairs
  5762.                                      </a>
  5763.                                    </li></ul>
  5764.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5765.                                <a href="/collections/hoists-winches-rigging" class="m-link m-link--text m:display-flex m:items-center">
  5766.                                  Hoists &amp; Winches &amp; Rigging
  5767.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5768.                                    <svg
  5769.                                      class="m-svg-icon--small"
  5770.                                      viewBox="0 0 12 12"
  5771.                                      fill="none"
  5772.                                      xmlns="http://www.w3.org/2000/svg"
  5773.                                    >
  5774.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5775.                                    </svg>
  5776.                                  </span>
  5777.                                </a>
  5778.                                <ul
  5779.                                  class="m-menu-dropdown__submenu"
  5780.                                  role="list"
  5781.                                  tabindex="-1"
  5782.                                ><li class="m-menu-dropdown__submenu-item ">
  5783.                                      <a
  5784.                                        href="/collections/manual-chain-hoist"
  5785.                                        class="m-link m-link--text m:display-flex"
  5786.                                        
  5787.                                      >
  5788.                                        Manual Chain Hoist
  5789.                                      </a>
  5790.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5791.                                      <a
  5792.                                        href="/collections/load-binders"
  5793.                                        class="m-link m-link--text m:display-flex"
  5794.                                        
  5795.                                      >
  5796.                                        Load Binders
  5797.                                      </a>
  5798.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5799.                                      <a
  5800.                                        href="/collections/electric-wire-rope-hoist"
  5801.                                        class="m-link m-link--text m:display-flex"
  5802.                                        
  5803.                                      >
  5804.                                        Electric Wire Rope Hoist
  5805.                                      </a>
  5806.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5807.                                      <a
  5808.                                        href="/collections/drywall-lift"
  5809.                                        class="m-link m-link--text m:display-flex"
  5810.                                        
  5811.                                      >
  5812.                                        Drywall Lift
  5813.                                      </a>
  5814.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5815.                                      <a
  5816.                                        href="/collections/davit-crane"
  5817.                                        class="m-link m-link--text m:display-flex"
  5818.                                        
  5819.                                      >
  5820.                                        Davit Crane
  5821.                                      </a>
  5822.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5823.                                      <a
  5824.                                        href="/collections/push-beam-trolley"
  5825.                                        class="m-link m-link--text m:display-flex"
  5826.                                        
  5827.                                      >
  5828.                                        Push Beam Trolley
  5829.                                      </a>
  5830.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5831.                                      <a
  5832.                                        href="/collections/magnetic-lifter"
  5833.                                        class="m-link m-link--text m:display-flex"
  5834.                                        
  5835.                                      >
  5836.                                        Magnetic Lifter
  5837.                                      </a>
  5838.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5839.                                      <a
  5840.                                        href="/collections/mounted-deer-hoist"
  5841.                                        class="m-link m-link--text m:display-flex"
  5842.                                        
  5843.                                      >
  5844.                                        Mounted Deer Hoist
  5845.                                      </a>
  5846.                                    </li></ul>
  5847.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5848.                                <a href="/collections/heavy-equipment-accessories-1" class="m-link m-link--text m:display-flex m:items-center">
  5849.                                  Heavy Equipment Accessories
  5850.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5851.                                    <svg
  5852.                                      class="m-svg-icon--small"
  5853.                                      viewBox="0 0 12 12"
  5854.                                      fill="none"
  5855.                                      xmlns="http://www.w3.org/2000/svg"
  5856.                                    >
  5857.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5858.                                    </svg>
  5859.                                  </span>
  5860.                                </a>
  5861.                                <ul
  5862.                                  class="m-menu-dropdown__submenu"
  5863.                                  role="list"
  5864.                                  tabindex="-1"
  5865.                                ><li class="m-menu-dropdown__submenu-item ">
  5866.                                      <a
  5867.                                        href="/collections/quick-tach-mount-plate"
  5868.                                        class="m-link m-link--text m:display-flex"
  5869.                                        
  5870.                                      >
  5871.                                        Quick Tach Mount Plate
  5872.                                      </a>
  5873.                                    </li></ul>
  5874.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5875.                                <a href="/collections/dollies-movers" class="m-link m-link--text m:display-flex m:items-center">
  5876.                                  Dollies &amp; Movers
  5877.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5878.                                    <svg
  5879.                                      class="m-svg-icon--small"
  5880.                                      viewBox="0 0 12 12"
  5881.                                      fill="none"
  5882.                                      xmlns="http://www.w3.org/2000/svg"
  5883.                                    >
  5884.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5885.                                    </svg>
  5886.                                  </span>
  5887.                                </a>
  5888.                                <ul
  5889.                                  class="m-menu-dropdown__submenu"
  5890.                                  role="list"
  5891.                                  tabindex="-1"
  5892.                                ><li class="m-menu-dropdown__submenu-item ">
  5893.                                      <a
  5894.                                        href="/collections/drum-dolly"
  5895.                                        class="m-link m-link--text m:display-flex"
  5896.                                        
  5897.                                      >
  5898.                                        Drum Dolly
  5899.                                      </a>
  5900.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5901.                                      <a
  5902.                                        href="/collections/prylever-bar"
  5903.                                        class="m-link m-link--text m:display-flex"
  5904.                                        
  5905.                                      >
  5906.                                        Prylever Bar
  5907.                                      </a>
  5908.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5909.                                      <a
  5910.                                        href="/collections/machinery-mover"
  5911.                                        class="m-link m-link--text m:display-flex"
  5912.                                        
  5913.                                      >
  5914.                                        Machinery Mover
  5915.                                      </a>
  5916.                                    </li></ul>
  5917.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5918.                                <a href="/collections/filling-sealing-machine" class="m-link m-link--text m:display-flex m:items-center">
  5919.                                  Filling &amp; Sealing Machine
  5920.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5921.                                    <svg
  5922.                                      class="m-svg-icon--small"
  5923.                                      viewBox="0 0 12 12"
  5924.                                      fill="none"
  5925.                                      xmlns="http://www.w3.org/2000/svg"
  5926.                                    >
  5927.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5928.                                    </svg>
  5929.                                  </span>
  5930.                                </a>
  5931.                                <ul
  5932.                                  class="m-menu-dropdown__submenu"
  5933.                                  role="list"
  5934.                                  tabindex="-1"
  5935.                                ><li class="m-menu-dropdown__submenu-item ">
  5936.                                      <a
  5937.                                        href="/collections/liquid-filling-machine"
  5938.                                        class="m-link m-link--text m:display-flex"
  5939.                                        
  5940.                                      >
  5941.                                        Liquid Filling Machine
  5942.                                      </a>
  5943.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5944.                                      <a
  5945.                                        href="/collections/sealing-machine"
  5946.                                        class="m-link m-link--text m:display-flex"
  5947.                                        
  5948.                                      >
  5949.                                        Sealing Machine
  5950.                                      </a>
  5951.                                    </li></ul>
  5952.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  5953.                                <a href="/collections/shelving-storage" class="m-link m-link--text m:display-flex m:items-center">
  5954.                                  Shelving &amp; Storage
  5955.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  5956.                                    <svg
  5957.                                      class="m-svg-icon--small"
  5958.                                      viewBox="0 0 12 12"
  5959.                                      fill="none"
  5960.                                      xmlns="http://www.w3.org/2000/svg"
  5961.                                    >
  5962.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  5963.                                    </svg>
  5964.                                  </span>
  5965.                                </a>
  5966.                                <ul
  5967.                                  class="m-menu-dropdown__submenu"
  5968.                                  role="list"
  5969.                                  tabindex="-1"
  5970.                                ><li class="m-menu-dropdown__submenu-item ">
  5971.                                      <a
  5972.                                        href="/collections/cylinder-storage-cabinet"
  5973.                                        class="m-link m-link--text m:display-flex"
  5974.                                        
  5975.                                      >
  5976.                                        Cylinder Storage Cabinet
  5977.                                      </a>
  5978.                                    </li><li class="m-menu-dropdown__submenu-item ">
  5979.                                      <a
  5980.                                        href="/collections/garage-storage-rack"
  5981.                                        class="m-link m-link--text m:display-flex"
  5982.                                        
  5983.                                      >
  5984.                                        Garage Storage Rack
  5985.                                      </a>
  5986.                                    </li></ul>
  5987.                              </li></ul>
  5988.                      </header-dropdown-menu>
  5989.                    </div>
  5990.                  </div>
  5991.                </li><li
  5992.                  class="m-menu-drawer__menu-item m-list-menu__item "
  5993.                  data-main-details-toggle
  5994.                >
  5995.                  <a href="/collections/building-construction" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  5996.                    Building &amp; Construction
  5997.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  5998.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  5999.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6000.                      </svg>
  6001.                    </span>
  6002.                  </a>
  6003.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  6004.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  6005.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  6006.                        <svg
  6007.                          class="m-svg-icon--small"
  6008.                          viewBox="0 0 12 12"
  6009.                          fill="none"
  6010.                          xmlns="http://www.w3.org/2000/svg"
  6011.                        >
  6012.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6013.                        </svg>
  6014.                        Building &amp; Construction
  6015.                      </button>
  6016.                      <header-dropdown-menu class="m:block">
  6017.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6018.                                <a href="/collections/building-supplies" class="m-link m-link--text m:display-flex m:items-center">
  6019.                                  Building Supplies
  6020.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6021.                                    <svg
  6022.                                      class="m-svg-icon--small"
  6023.                                      viewBox="0 0 12 12"
  6024.                                      fill="none"
  6025.                                      xmlns="http://www.w3.org/2000/svg"
  6026.                                    >
  6027.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6028.                                    </svg>
  6029.                                  </span>
  6030.                                </a>
  6031.                                <ul
  6032.                                  class="m-menu-dropdown__submenu"
  6033.                                  role="list"
  6034.                                  tabindex="-1"
  6035.                                ><li class="m-menu-dropdown__submenu-item ">
  6036.                                      <a
  6037.                                        href="/collections/stainless-steel-backsplash"
  6038.                                        class="m-link m-link--text m:display-flex"
  6039.                                        
  6040.                                      >
  6041.                                        Stainless Steel Backsplash
  6042.                                      </a>
  6043.                                    </li><li class="m-menu-dropdown__submenu-item ">
  6044.                                      <a
  6045.                                        href="/collections/stair-handrail"
  6046.                                        class="m-link m-link--text m:display-flex"
  6047.                                        
  6048.                                      >
  6049.                                        Stair Handrail
  6050.                                      </a>
  6051.                                    </li><li class="m-menu-dropdown__submenu-item ">
  6052.                                      <a
  6053.                                        href="/collections/chimney-cap"
  6054.                                        class="m-link m-link--text m:display-flex"
  6055.                                        
  6056.                                      >
  6057.                                        Chimney Cap
  6058.                                      </a>
  6059.                                    </li></ul>
  6060.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6061.                                <a href="/collections/masonry-concrete-tile-tools" class="m-link m-link--text m:display-flex m:items-center">
  6062.                                  Masonry &amp; Concrete &amp; Tile Tools
  6063.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6064.                                    <svg
  6065.                                      class="m-svg-icon--small"
  6066.                                      viewBox="0 0 12 12"
  6067.                                      fill="none"
  6068.                                      xmlns="http://www.w3.org/2000/svg"
  6069.                                    >
  6070.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6071.                                    </svg>
  6072.                                  </span>
  6073.                                </a>
  6074.                                <ul
  6075.                                  class="m-menu-dropdown__submenu"
  6076.                                  role="list"
  6077.                                  tabindex="-1"
  6078.                                ><li class="m-menu-dropdown__submenu-item ">
  6079.                                      <a
  6080.                                        href="/collections/electric-rebar-bender"
  6081.                                        class="m-link m-link--text m:display-flex"
  6082.                                        
  6083.                                      >
  6084.                                        Electric Rebar Bender
  6085.                                      </a>
  6086.                                    </li><li class="m-menu-dropdown__submenu-item ">
  6087.                                      <a
  6088.                                        href="/collections/electric-rebar-cutter"
  6089.                                        class="m-link m-link--text m:display-flex"
  6090.                                        
  6091.                                      >
  6092.                                        Electric Rebar Cutter
  6093.                                      </a>
  6094.                                    </li><li class="m-menu-dropdown__submenu-item ">
  6095.                                      <a
  6096.                                        href="/collections/bull-float"
  6097.                                        class="m-link m-link--text m:display-flex"
  6098.                                        
  6099.                                      >
  6100.                                        Bull Float
  6101.                                      </a>
  6102.                                    </li><li class="m-menu-dropdown__submenu-item ">
  6103.                                      <a
  6104.                                        href="/collections/electric-concrete-vibrator"
  6105.                                        class="m-link m-link--text m:display-flex"
  6106.                                        
  6107.                                      >
  6108.                                        Electric Concrete Vibrator
  6109.                                      </a>
  6110.                                    </li></ul>
  6111.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6112.                                <a href="/collections/scaffolds-mobile-bases" class="m-link m-link--text m:display-flex m:items-center">
  6113.                                  Scaffolds &amp; Mobile Bases
  6114.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6115.                                    <svg
  6116.                                      class="m-svg-icon--small"
  6117.                                      viewBox="0 0 12 12"
  6118.                                      fill="none"
  6119.                                      xmlns="http://www.w3.org/2000/svg"
  6120.                                    >
  6121.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6122.                                    </svg>
  6123.                                  </span>
  6124.                                </a>
  6125.                                <ul
  6126.                                  class="m-menu-dropdown__submenu"
  6127.                                  role="list"
  6128.                                  tabindex="-1"
  6129.                                ><li class="m-menu-dropdown__submenu-item ">
  6130.                                      <a
  6131.                                        href="/collections/aluminum-work-plank"
  6132.                                        class="m-link m-link--text m:display-flex"
  6133.                                        
  6134.                                      >
  6135.                                        Aluminum Work Plank
  6136.                                      </a>
  6137.                                    </li></ul>
  6138.                              </li></ul>
  6139.                      </header-dropdown-menu>
  6140.                    </div>
  6141.                  </div>
  6142.                </li><li
  6143.                  class="m-menu-drawer__menu-item m-list-menu__item "
  6144.                  data-main-details-toggle
  6145.                >
  6146.                  <a href="/collections/arts-crafts-sewing" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  6147.                    Arts &amp; Crafts &amp; Sewing
  6148.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  6149.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  6150.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6151.                      </svg>
  6152.                    </span>
  6153.                  </a>
  6154.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  6155.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  6156.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  6157.                        <svg
  6158.                          class="m-svg-icon--small"
  6159.                          viewBox="0 0 12 12"
  6160.                          fill="none"
  6161.                          xmlns="http://www.w3.org/2000/svg"
  6162.                        >
  6163.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6164.                        </svg>
  6165.                        Arts &amp; Crafts &amp; Sewing
  6166.                      </button>
  6167.                      <header-dropdown-menu class="m:block">
  6168.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6169.                                <a href="/collections/jewelry-making-repair" class="m-link m-link--text m:display-flex m:items-center">
  6170.                                  Jewelry Making &amp; Repair
  6171.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6172.                                    <svg
  6173.                                      class="m-svg-icon--small"
  6174.                                      viewBox="0 0 12 12"
  6175.                                      fill="none"
  6176.                                      xmlns="http://www.w3.org/2000/svg"
  6177.                                    >
  6178.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6179.                                    </svg>
  6180.                                  </span>
  6181.                                </a>
  6182.                                <ul
  6183.                                  class="m-menu-dropdown__submenu"
  6184.                                  role="list"
  6185.                                  tabindex="-1"
  6186.                                ><li class="m-menu-dropdown__submenu-item ">
  6187.                                      <a
  6188.                                        href="/collections/melting-furnace"
  6189.                                        class="m-link m-link--text m:display-flex"
  6190.                                        
  6191.                                      >
  6192.                                        Melting Furnace
  6193.                                      </a>
  6194.                                    </li></ul>
  6195.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6196.                                <a href="/collections/engraving" class="m-link m-link--text m:display-flex m:items-center">
  6197.                                  Engraving
  6198.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6199.                                    <svg
  6200.                                      class="m-svg-icon--small"
  6201.                                      viewBox="0 0 12 12"
  6202.                                      fill="none"
  6203.                                      xmlns="http://www.w3.org/2000/svg"
  6204.                                    >
  6205.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6206.                                    </svg>
  6207.                                  </span>
  6208.                                </a>
  6209.                                <ul
  6210.                                  class="m-menu-dropdown__submenu"
  6211.                                  role="list"
  6212.                                  tabindex="-1"
  6213.                                ><li class="m-menu-dropdown__submenu-item ">
  6214.                                      <a
  6215.                                        href="/collections/water-chiller"
  6216.                                        class="m-link m-link--text m:display-flex"
  6217.                                        
  6218.                                      >
  6219.                                        Water Chiller
  6220.                                      </a>
  6221.                                    </li></ul>
  6222.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6223.                                <a href="/collections/printmaking" class="m-link m-link--text m:display-flex m:items-center">
  6224.                                  Printmaking
  6225.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6226.                                    <svg
  6227.                                      class="m-svg-icon--small"
  6228.                                      viewBox="0 0 12 12"
  6229.                                      fill="none"
  6230.                                      xmlns="http://www.w3.org/2000/svg"
  6231.                                    >
  6232.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6233.                                    </svg>
  6234.                                  </span>
  6235.                                </a>
  6236.                                <ul
  6237.                                  class="m-menu-dropdown__submenu"
  6238.                                  role="list"
  6239.                                  tabindex="-1"
  6240.                                ><li class="m-menu-dropdown__submenu-item ">
  6241.                                      <a
  6242.                                        href="/collections/heat-press-machines"
  6243.                                        class="m-link m-link--text m:display-flex"
  6244.                                        
  6245.                                      >
  6246.                                        Heat Press Machines
  6247.                                      </a>
  6248.                                    </li><li class="m-menu-dropdown__submenu-item ">
  6249.                                      <a
  6250.                                        href="/collections/silk-screen-frame"
  6251.                                        class="m-link m-link--text m:display-flex"
  6252.                                        
  6253.                                      >
  6254.                                        Silk Screen Frame
  6255.                                      </a>
  6256.                                    </li></ul>
  6257.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6258.                                <a href="/collections/painting-equipment-supplies" class="m-link m-link--text m:display-flex m:items-center">
  6259.                                  Painting Equipment &amp; Supplies
  6260.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6261.                                    <svg
  6262.                                      class="m-svg-icon--small"
  6263.                                      viewBox="0 0 12 12"
  6264.                                      fill="none"
  6265.                                      xmlns="http://www.w3.org/2000/svg"
  6266.                                    >
  6267.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6268.                                    </svg>
  6269.                                  </span>
  6270.                                </a>
  6271.                                <ul
  6272.                                  class="m-menu-dropdown__submenu"
  6273.                                  role="list"
  6274.                                  tabindex="-1"
  6275.                                ><li class="m-menu-dropdown__submenu-item ">
  6276.                                      <a
  6277.                                        href="/collections/powder-coating-machine"
  6278.                                        class="m-link m-link--text m:display-flex"
  6279.                                        
  6280.                                      >
  6281.                                        Powder Coating Machine
  6282.                                      </a>
  6283.                                    </li></ul>
  6284.                              </li></ul>
  6285.                      </header-dropdown-menu>
  6286.                    </div>
  6287.                  </div>
  6288.                </li><li
  6289.                  class="m-menu-drawer__menu-item m-list-menu__item "
  6290.                  data-main-details-toggle
  6291.                >
  6292.                  <a href="/collections/electrical" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  6293.                    Electrical
  6294.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  6295.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  6296.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6297.                      </svg>
  6298.                    </span>
  6299.                  </a>
  6300.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  6301.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  6302.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  6303.                        <svg
  6304.                          class="m-svg-icon--small"
  6305.                          viewBox="0 0 12 12"
  6306.                          fill="none"
  6307.                          xmlns="http://www.w3.org/2000/svg"
  6308.                        >
  6309.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6310.                        </svg>
  6311.                        Electrical
  6312.                      </button>
  6313.                      <header-dropdown-menu class="m:block">
  6314.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6315.                                <a href="/collections/electrical-boxes-panels-fittings" class="m-link m-link--text m:display-flex m:items-center">
  6316.                                  Electrical Boxes &amp; Panels &amp; Fittings
  6317.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6318.                                    <svg
  6319.                                      class="m-svg-icon--small"
  6320.                                      viewBox="0 0 12 12"
  6321.                                      fill="none"
  6322.                                      xmlns="http://www.w3.org/2000/svg"
  6323.                                    >
  6324.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6325.                                    </svg>
  6326.                                  </span>
  6327.                                </a>
  6328.                                <ul
  6329.                                  class="m-menu-dropdown__submenu"
  6330.                                  role="list"
  6331.                                  tabindex="-1"
  6332.                                ><li class="m-menu-dropdown__submenu-item ">
  6333.                                      <a
  6334.                                        href="/collections/electrical-enclosure"
  6335.                                        class="m-link m-link--text m:display-flex"
  6336.                                        
  6337.                                      >
  6338.                                        Electrical Enclosure
  6339.                                      </a>
  6340.                                    </li></ul>
  6341.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6342.                                <a href="/collections/electrical-tools" class="m-link m-link--text m:display-flex m:items-center">
  6343.                                  Electrical Tools
  6344.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6345.                                    <svg
  6346.                                      class="m-svg-icon--small"
  6347.                                      viewBox="0 0 12 12"
  6348.                                      fill="none"
  6349.                                      xmlns="http://www.w3.org/2000/svg"
  6350.                                    >
  6351.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6352.                                    </svg>
  6353.                                  </span>
  6354.                                </a>
  6355.                                <ul
  6356.                                  class="m-menu-dropdown__submenu"
  6357.                                  role="list"
  6358.                                  tabindex="-1"
  6359.                                ><li class="m-menu-dropdown__submenu-item ">
  6360.                                      <a
  6361.                                        href="/collections/electric-wire-stripping-machine"
  6362.                                        class="m-link m-link--text m:display-flex"
  6363.                                        
  6364.                                      >
  6365.                                        Electric Wire Stripping Machine
  6366.                                      </a>
  6367.                                    </li><li class="m-menu-dropdown__submenu-item ">
  6368.                                      <a
  6369.                                        href="/collections/manual-wire-stripping-machine"
  6370.                                        class="m-link m-link--text m:display-flex"
  6371.                                        
  6372.                                      >
  6373.                                        Manual Wire Stripping Machine
  6374.                                      </a>
  6375.                                    </li><li class="m-menu-dropdown__submenu-item ">
  6376.                                      <a
  6377.                                        href="/collections/fusion-fiber-splicer"
  6378.                                        class="m-link m-link--text m:display-flex"
  6379.                                        
  6380.                                      >
  6381.                                        Fusion Fiber Splicer
  6382.                                      </a>
  6383.                                    </li></ul>
  6384.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6385.                                <a href="/collections/wire-cable-conduit" class="m-link m-link--text m:display-flex m:items-center">
  6386.                                  Wire &amp; Cable &amp; Conduit
  6387.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6388.                                    <svg
  6389.                                      class="m-svg-icon--small"
  6390.                                      viewBox="0 0 12 12"
  6391.                                      fill="none"
  6392.                                      xmlns="http://www.w3.org/2000/svg"
  6393.                                    >
  6394.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6395.                                    </svg>
  6396.                                  </span>
  6397.                                </a>
  6398.                                <ul
  6399.                                  class="m-menu-dropdown__submenu"
  6400.                                  role="list"
  6401.                                  tabindex="-1"
  6402.                                ><li class="m-menu-dropdown__submenu-item ">
  6403.                                      <a
  6404.                                        href="/collections/cable-ramp"
  6405.                                        class="m-link m-link--text m:display-flex"
  6406.                                        
  6407.                                      >
  6408.                                        Cable Ramp
  6409.                                      </a>
  6410.                                    </li></ul>
  6411.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6412.                                <a href="/collections/generators" class="m-link m-link--text m:display-flex m:items-center">
  6413.                                  Generators
  6414.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6415.                                    <svg
  6416.                                      class="m-svg-icon--small"
  6417.                                      viewBox="0 0 12 12"
  6418.                                      fill="none"
  6419.                                      xmlns="http://www.w3.org/2000/svg"
  6420.                                    >
  6421.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6422.                                    </svg>
  6423.                                  </span>
  6424.                                </a>
  6425.                                <ul
  6426.                                  class="m-menu-dropdown__submenu"
  6427.                                  role="list"
  6428.                                  tabindex="-1"
  6429.                                ><li class="m-menu-dropdown__submenu-item ">
  6430.                                      <a
  6431.                                        href="/collections/portable-power-station"
  6432.                                        class="m-link m-link--text m:display-flex"
  6433.                                        
  6434.                                      >
  6435.                                        Power Station
  6436.                                      </a>
  6437.                                    </li></ul>
  6438.                              </li></ul>
  6439.                      </header-dropdown-menu>
  6440.                    </div>
  6441.                  </div>
  6442.                </li><li
  6443.                  class="m-menu-drawer__menu-item m-list-menu__item "
  6444.                  data-main-details-toggle
  6445.                >
  6446.                  <a href="/collections/lab" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  6447.                    Lab
  6448.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  6449.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  6450.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6451.                      </svg>
  6452.                    </span>
  6453.                  </a>
  6454.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  6455.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  6456.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  6457.                        <svg
  6458.                          class="m-svg-icon--small"
  6459.                          viewBox="0 0 12 12"
  6460.                          fill="none"
  6461.                          xmlns="http://www.w3.org/2000/svg"
  6462.                        >
  6463.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6464.                        </svg>
  6465.                        Lab
  6466.                      </button>
  6467.                      <header-dropdown-menu class="m:block">
  6468.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6469.                                <a href="/collections/cleaning-equipment" class="m-link m-link--text m:display-flex m:items-center">
  6470.                                  Cleaning Equipment
  6471.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6472.                                    <svg
  6473.                                      class="m-svg-icon--small"
  6474.                                      viewBox="0 0 12 12"
  6475.                                      fill="none"
  6476.                                      xmlns="http://www.w3.org/2000/svg"
  6477.                                    >
  6478.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6479.                                    </svg>
  6480.                                  </span>
  6481.                                </a>
  6482.                                <ul
  6483.                                  class="m-menu-dropdown__submenu"
  6484.                                  role="list"
  6485.                                  tabindex="-1"
  6486.                                ><li class="m-menu-dropdown__submenu-item ">
  6487.                                      <a
  6488.                                        href="/collections/ultrasonic-cleaner"
  6489.                                        class="m-link m-link--text m:display-flex"
  6490.                                        
  6491.                                      >
  6492.                                        Ultrasonic Cleaner
  6493.                                      </a>
  6494.                                    </li></ul>
  6495.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6496.                                <a href="/collections/heating-cooling-equipment" class="m-link m-link--text m:display-flex m:items-center">
  6497.                                  Heating &amp; Cooling Equipment
  6498.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6499.                                    <svg
  6500.                                      class="m-svg-icon--small"
  6501.                                      viewBox="0 0 12 12"
  6502.                                      fill="none"
  6503.                                      xmlns="http://www.w3.org/2000/svg"
  6504.                                    >
  6505.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6506.                                    </svg>
  6507.                                  </span>
  6508.                                </a>
  6509.                                <ul
  6510.                                  class="m-menu-dropdown__submenu"
  6511.                                  role="list"
  6512.                                  tabindex="-1"
  6513.                                ><li class="m-menu-dropdown__submenu-item ">
  6514.                                      <a
  6515.                                        href="/collections/reptile-incubator"
  6516.                                        class="m-link m-link--text m:display-flex"
  6517.                                        
  6518.                                      >
  6519.                                        Lab Incubator
  6520.                                      </a>
  6521.                                    </li></ul>
  6522.                              </li></ul>
  6523.                      </header-dropdown-menu>
  6524.                    </div>
  6525.                  </div>
  6526.                </li><li
  6527.                  class="m-menu-drawer__menu-item m-list-menu__item "
  6528.                  data-main-details-toggle
  6529.                >
  6530.                  <a href="/collections/plumbing" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  6531.                    Plumbing
  6532.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  6533.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  6534.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6535.                      </svg>
  6536.                    </span>
  6537.                  </a>
  6538.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  6539.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  6540.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  6541.                        <svg
  6542.                          class="m-svg-icon--small"
  6543.                          viewBox="0 0 12 12"
  6544.                          fill="none"
  6545.                          xmlns="http://www.w3.org/2000/svg"
  6546.                        >
  6547.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6548.                        </svg>
  6549.                        Plumbing
  6550.                      </button>
  6551.                      <header-dropdown-menu class="m:block">
  6552.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6553.                                <a href="/collections/drains-drainage" class="m-link m-link--text m:display-flex m:items-center">
  6554.                                  Drains &amp; Drainage
  6555.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6556.                                    <svg
  6557.                                      class="m-svg-icon--small"
  6558.                                      viewBox="0 0 12 12"
  6559.                                      fill="none"
  6560.                                      xmlns="http://www.w3.org/2000/svg"
  6561.                                    >
  6562.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6563.                                    </svg>
  6564.                                  </span>
  6565.                                </a>
  6566.                                <ul
  6567.                                  class="m-menu-dropdown__submenu"
  6568.                                  role="list"
  6569.                                  tabindex="-1"
  6570.                                ><li class="m-menu-dropdown__submenu-item ">
  6571.                                      <a
  6572.                                        href="/collections/drain-cleaner-machine"
  6573.                                        class="m-link m-link--text m:display-flex"
  6574.                                        
  6575.                                      >
  6576.                                        Drain Cleaner Machine
  6577.                                      </a>
  6578.                                    </li></ul>
  6579.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6580.                                <a href="/collections/pipe-stands-vises" class="m-link m-link--text m:display-flex m:items-center">
  6581.                                  Pipe Stands &amp; Vises
  6582.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6583.                                    <svg
  6584.                                      class="m-svg-icon--small"
  6585.                                      viewBox="0 0 12 12"
  6586.                                      fill="none"
  6587.                                      xmlns="http://www.w3.org/2000/svg"
  6588.                                    >
  6589.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6590.                                    </svg>
  6591.                                  </span>
  6592.                                </a>
  6593.                                <ul
  6594.                                  class="m-menu-dropdown__submenu"
  6595.                                  role="list"
  6596.                                  tabindex="-1"
  6597.                                ><li class="m-menu-dropdown__submenu-item ">
  6598.                                      <a
  6599.                                        href="/collections/roller-head-pipe-stand"
  6600.                                        class="m-link m-link--text m:display-flex"
  6601.                                        
  6602.                                      >
  6603.                                        Roller Head Pipe Stand
  6604.                                      </a>
  6605.                                    </li></ul>
  6606.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6607.                                <a href="/collections/plumbing-tools" class="m-link m-link--text m:display-flex m:items-center">
  6608.                                  Plumbing Tools
  6609.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6610.                                    <svg
  6611.                                      class="m-svg-icon--small"
  6612.                                      viewBox="0 0 12 12"
  6613.                                      fill="none"
  6614.                                      xmlns="http://www.w3.org/2000/svg"
  6615.                                    >
  6616.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6617.                                    </svg>
  6618.                                  </span>
  6619.                                </a>
  6620.                                <ul
  6621.                                  class="m-menu-dropdown__submenu"
  6622.                                  role="list"
  6623.                                  tabindex="-1"
  6624.                                ><li class="m-menu-dropdown__submenu-item ">
  6625.                                      <a
  6626.                                        href="/collections/pipe-tube-bender"
  6627.                                        class="m-link m-link--text m:display-flex"
  6628.                                        
  6629.                                      >
  6630.                                        Pipe Tube Bender
  6631.                                      </a>
  6632.                                    </li></ul>
  6633.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6634.                                <a href="/collections/pipe-fittings" class="m-link m-link--text m:display-flex m:items-center">
  6635.                                  Pipe &amp; Fittings
  6636.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6637.                                    <svg
  6638.                                      class="m-svg-icon--small"
  6639.                                      viewBox="0 0 12 12"
  6640.                                      fill="none"
  6641.                                      xmlns="http://www.w3.org/2000/svg"
  6642.                                    >
  6643.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6644.                                    </svg>
  6645.                                  </span>
  6646.                                </a>
  6647.                                <ul
  6648.                                  class="m-menu-dropdown__submenu"
  6649.                                  role="list"
  6650.                                  tabindex="-1"
  6651.                                ><li class="m-menu-dropdown__submenu-item ">
  6652.                                      <a
  6653.                                        href="/collections/pex-tubing"
  6654.                                        class="m-link m-link--text m:display-flex"
  6655.                                        
  6656.                                      >
  6657.                                        PEX Tubing
  6658.                                      </a>
  6659.                                    </li></ul>
  6660.                              </li></ul>
  6661.                      </header-dropdown-menu>
  6662.                    </div>
  6663.                  </div>
  6664.                </li><li
  6665.                  class="m-menu-drawer__menu-item m-list-menu__item "
  6666.                  data-main-details-toggle
  6667.                >
  6668.                  <a href="/collections/pumps" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  6669.                    Pumps
  6670.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  6671.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  6672.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6673.                      </svg>
  6674.                    </span>
  6675.                  </a>
  6676.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  6677.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  6678.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  6679.                        <svg
  6680.                          class="m-svg-icon--small"
  6681.                          viewBox="0 0 12 12"
  6682.                          fill="none"
  6683.                          xmlns="http://www.w3.org/2000/svg"
  6684.                        >
  6685.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6686.                        </svg>
  6687.                        Pumps
  6688.                      </button>
  6689.                      <header-dropdown-menu class="m:block">
  6690.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6691.                                <a href="/collections/water-pumps" class="m-link m-link--text m:display-flex m:items-center">
  6692.                                  Water Pumps
  6693.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6694.                                    <svg
  6695.                                      class="m-svg-icon--small"
  6696.                                      viewBox="0 0 12 12"
  6697.                                      fill="none"
  6698.                                      xmlns="http://www.w3.org/2000/svg"
  6699.                                    >
  6700.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6701.                                    </svg>
  6702.                                  </span>
  6703.                                </a>
  6704.                                <ul
  6705.                                  class="m-menu-dropdown__submenu"
  6706.                                  role="list"
  6707.                                  tabindex="-1"
  6708.                                ><li class="m-menu-dropdown__submenu-item ">
  6709.                                      <a
  6710.                                        href="/collections/water-transfer-pump"
  6711.                                        class="m-link m-link--text m:display-flex"
  6712.                                        
  6713.                                      >
  6714.                                        Water Transfer Pump
  6715.                                      </a>
  6716.                                    </li><li class="m-menu-dropdown__submenu-item ">
  6717.                                      <a
  6718.                                        href="/collections/swimming-pool-pump-1"
  6719.                                        class="m-link m-link--text m:display-flex"
  6720.                                        
  6721.                                      >
  6722.                                        Swimming Pool Pump
  6723.                                      </a>
  6724.                                    </li></ul>
  6725.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6726.                                <a href="/collections/oil-pumps" class="m-link m-link--text m:display-flex m:items-center">
  6727.                                  Oil Pumps
  6728.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6729.                                    <svg
  6730.                                      class="m-svg-icon--small"
  6731.                                      viewBox="0 0 12 12"
  6732.                                      fill="none"
  6733.                                      xmlns="http://www.w3.org/2000/svg"
  6734.                                    >
  6735.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6736.                                    </svg>
  6737.                                  </span>
  6738.                                </a>
  6739.                                <ul
  6740.                                  class="m-menu-dropdown__submenu"
  6741.                                  role="list"
  6742.                                  tabindex="-1"
  6743.                                ><li class="m-menu-dropdown__submenu-item ">
  6744.                                      <a
  6745.                                        href="/collections/electric-fuel-pumps"
  6746.                                        class="m-link m-link--text m:display-flex"
  6747.                                        
  6748.                                      >
  6749.                                        Electric Fuel Pumps
  6750.                                      </a>
  6751.                                    </li></ul>
  6752.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6753.                                <a href="/collections/vacuum-pumps" class="m-link m-link--text m:display-flex m:items-center">
  6754.                                  Vacuum Pumps
  6755.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6756.                                    <svg
  6757.                                      class="m-svg-icon--small"
  6758.                                      viewBox="0 0 12 12"
  6759.                                      fill="none"
  6760.                                      xmlns="http://www.w3.org/2000/svg"
  6761.                                    >
  6762.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6763.                                    </svg>
  6764.                                  </span>
  6765.                                </a>
  6766.                                <ul
  6767.                                  class="m-menu-dropdown__submenu"
  6768.                                  role="list"
  6769.                                  tabindex="-1"
  6770.                                ><li class="m-menu-dropdown__submenu-item ">
  6771.                                      <a
  6772.                                        href="/collections/vacuum-pumps"
  6773.                                        class="m-link m-link--text m:display-flex"
  6774.                                        
  6775.                                      >
  6776.                                        Vacuum Pumps
  6777.                                      </a>
  6778.                                    </li></ul>
  6779.                              </li></ul>
  6780.                      </header-dropdown-menu>
  6781.                    </div>
  6782.                  </div>
  6783.                </li><li
  6784.                  class="m-menu-drawer__menu-item m-list-menu__item "
  6785.                  data-main-details-toggle
  6786.                >
  6787.                  <a href="/collections/security" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  6788.                    Security
  6789.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  6790.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  6791.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6792.                      </svg>
  6793.                    </span>
  6794.                  </a>
  6795.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  6796.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  6797.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  6798.                        <svg
  6799.                          class="m-svg-icon--small"
  6800.                          viewBox="0 0 12 12"
  6801.                          fill="none"
  6802.                          xmlns="http://www.w3.org/2000/svg"
  6803.                        >
  6804.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6805.                        </svg>
  6806.                        Security
  6807.                      </button>
  6808.                      <header-dropdown-menu class="m:block">
  6809.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6810.                                <a href="/collections/access-barriers-crowd-control" class="m-link m-link--text m:display-flex m:items-center">
  6811.                                  Access Barriers &amp; Crowd Control
  6812.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6813.                                    <svg
  6814.                                      class="m-svg-icon--small"
  6815.                                      viewBox="0 0 12 12"
  6816.                                      fill="none"
  6817.                                      xmlns="http://www.w3.org/2000/svg"
  6818.                                    >
  6819.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6820.                                    </svg>
  6821.                                  </span>
  6822.                                </a>
  6823.                                <ul
  6824.                                  class="m-menu-dropdown__submenu"
  6825.                                  role="list"
  6826.                                  tabindex="-1"
  6827.                                ><li class="m-menu-dropdown__submenu-item ">
  6828.                                      <a
  6829.                                        href="/collections/safety-bollard"
  6830.                                        class="m-link m-link--text m:display-flex"
  6831.                                        
  6832.                                      >
  6833.                                        Safety Bollard
  6834.                                      </a>
  6835.                                    </li><li class="m-menu-dropdown__submenu-item ">
  6836.                                      <a
  6837.                                        href="/collections/folding-security-gate"
  6838.                                        class="m-link m-link--text m:display-flex"
  6839.                                        
  6840.                                      >
  6841.                                        Folding Security Gate
  6842.                                      </a>
  6843.                                    </li></ul>
  6844.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6845.                                <a href="/collections/safes" class="m-link m-link--text m:display-flex m:items-center">
  6846.                                  Safes
  6847.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6848.                                    <svg
  6849.                                      class="m-svg-icon--small"
  6850.                                      viewBox="0 0 12 12"
  6851.                                      fill="none"
  6852.                                      xmlns="http://www.w3.org/2000/svg"
  6853.                                    >
  6854.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6855.                                    </svg>
  6856.                                  </span>
  6857.                                </a>
  6858.                                <ul
  6859.                                  class="m-menu-dropdown__submenu"
  6860.                                  role="list"
  6861.                                  tabindex="-1"
  6862.                                ><li class="m-menu-dropdown__submenu-item ">
  6863.                                      <a
  6864.                                        href="/collections/electronic-safes"
  6865.                                        class="m-link m-link--text m:display-flex"
  6866.                                        
  6867.                                      >
  6868.                                        Electronic Safes
  6869.                                      </a>
  6870.                                    </li><li class="m-menu-dropdown__submenu-item ">
  6871.                                      <a
  6872.                                        href="/collections/biometric-safes"
  6873.                                        class="m-link m-link--text m:display-flex"
  6874.                                        
  6875.                                      >
  6876.                                        Biometric Safes
  6877.                                      </a>
  6878.                                    </li></ul>
  6879.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6880.                                <a href="/collections/traffic-safety" class="m-link m-link--text m:display-flex m:items-center">
  6881.                                  Traffic Safety
  6882.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6883.                                    <svg
  6884.                                      class="m-svg-icon--small"
  6885.                                      viewBox="0 0 12 12"
  6886.                                      fill="none"
  6887.                                      xmlns="http://www.w3.org/2000/svg"
  6888.                                    >
  6889.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6890.                                    </svg>
  6891.                                  </span>
  6892.                                </a>
  6893.                                <ul
  6894.                                  class="m-menu-dropdown__submenu"
  6895.                                  role="list"
  6896.                                  tabindex="-1"
  6897.                                ><li class="m-menu-dropdown__submenu-item ">
  6898.                                      <a
  6899.                                        href="/collections/traffic-cone"
  6900.                                        class="m-link m-link--text m:display-flex"
  6901.                                        
  6902.                                      >
  6903.                                        Traffic Cone
  6904.                                      </a>
  6905.                                    </li><li class="m-menu-dropdown__submenu-item ">
  6906.                                      <a
  6907.                                        href="/collections/sign-post"
  6908.                                        class="m-link m-link--text m:display-flex"
  6909.                                        
  6910.                                      >
  6911.                                        Sign Post
  6912.                                      </a>
  6913.                                    </li></ul>
  6914.                              </li></ul>
  6915.                      </header-dropdown-menu>
  6916.                    </div>
  6917.                  </div>
  6918.                </li><li
  6919.                  class="m-menu-drawer__menu-item m-list-menu__item "
  6920.                  data-main-details-toggle
  6921.                >
  6922.                  <a href="/collections/hydraulics" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  6923.                    Hydraulics
  6924.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  6925.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  6926.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6927.                      </svg>
  6928.                    </span>
  6929.                  </a>
  6930.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  6931.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  6932.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  6933.                        <svg
  6934.                          class="m-svg-icon--small"
  6935.                          viewBox="0 0 12 12"
  6936.                          fill="none"
  6937.                          xmlns="http://www.w3.org/2000/svg"
  6938.                        >
  6939.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6940.                        </svg>
  6941.                        Hydraulics
  6942.                      </button>
  6943.                      <header-dropdown-menu class="m:block">
  6944.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6945.                                <a href="/collections/hydraulic-equipment" class="m-link m-link--text m:display-flex m:items-center">
  6946.                                  Hydraulic Equipment
  6947.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6948.                                    <svg
  6949.                                      class="m-svg-icon--small"
  6950.                                      viewBox="0 0 12 12"
  6951.                                      fill="none"
  6952.                                      xmlns="http://www.w3.org/2000/svg"
  6953.                                    >
  6954.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6955.                                    </svg>
  6956.                                  </span>
  6957.                                </a>
  6958.                                <ul
  6959.                                  class="m-menu-dropdown__submenu"
  6960.                                  role="list"
  6961.                                  tabindex="-1"
  6962.                                ><li class="m-menu-dropdown__submenu-item ">
  6963.                                      <a
  6964.                                        href="/collections/hydraulic-power-unit"
  6965.                                        class="m-link m-link--text m:display-flex"
  6966.                                        
  6967.                                      >
  6968.                                        Hydraulic Power Unit
  6969.                                      </a>
  6970.                                    </li><li class="m-menu-dropdown__submenu-item ">
  6971.                                      <a
  6972.                                        href="/collections/hydraulic-shop-press"
  6973.                                        class="m-link m-link--text m:display-flex"
  6974.                                        
  6975.                                      >
  6976.                                        Hydraulic Shop Press
  6977.                                      </a>
  6978.                                    </li></ul>
  6979.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  6980.                                <a href="/collections/hydraulic-pumps" class="m-link m-link--text m:display-flex m:items-center">
  6981.                                  Hydraulic Pumps
  6982.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  6983.                                    <svg
  6984.                                      class="m-svg-icon--small"
  6985.                                      viewBox="0 0 12 12"
  6986.                                      fill="none"
  6987.                                      xmlns="http://www.w3.org/2000/svg"
  6988.                                    >
  6989.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  6990.                                    </svg>
  6991.                                  </span>
  6992.                                </a>
  6993.                                <ul
  6994.                                  class="m-menu-dropdown__submenu"
  6995.                                  role="list"
  6996.                                  tabindex="-1"
  6997.                                ><li class="m-menu-dropdown__submenu-item ">
  6998.                                      <a
  6999.                                        href="/collections/manual-hydraulic-pump"
  7000.                                        class="m-link m-link--text m:display-flex"
  7001.                                        
  7002.                                      >
  7003.                                        Manual Hydraulic Pump
  7004.                                      </a>
  7005.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7006.                                      <a
  7007.                                        href="/collections/air-hydraulic-pump"
  7008.                                        class="m-link m-link--text m:display-flex"
  7009.                                        
  7010.                                      >
  7011.                                        Air Hydraulic Pump
  7012.                                      </a>
  7013.                                    </li></ul>
  7014.                              </li></ul>
  7015.                      </header-dropdown-menu>
  7016.                    </div>
  7017.                  </div>
  7018.                </li><li
  7019.                  class="m-menu-drawer__menu-item m-list-menu__item "
  7020.                  data-main-details-toggle
  7021.                >
  7022.                  <a href="/collections/toys-games" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  7023.                    Toys &amp; Games
  7024.                    <span class="m-menu-drawer__menu-icon" data-summary-button>
  7025.                      <svg class="m-svg-icon--small" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  7026.                          <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7027.                      </svg>
  7028.                    </span>
  7029.                  </a>
  7030.                  <div class="m-menu-drawer__submenu m-has-submenu" tabindex="-1">
  7031.                    <div class="m-menu-drawer__inner-submenu m-scrollbar--vertical">
  7032.                      <button class="m-menu-drawer__close-button m-link m-link--text" aria-expanded="true">
  7033.                        <svg
  7034.                          class="m-svg-icon--small"
  7035.                          viewBox="0 0 12 12"
  7036.                          fill="none"
  7037.                          xmlns="http://www.w3.org/2000/svg"
  7038.                        >
  7039.                          <path d="M7.5 2.25L3.75 6L7.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7040.                        </svg>
  7041.                        Toys &amp; Games
  7042.                      </button>
  7043.                      <header-dropdown-menu class="m:block">
  7044.                        <ul class="m-menu-dropdown__menu"><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  7045.                                <a href="/collections/ride-ons" class="m-link m-link--text m:display-flex m:items-center">
  7046.                                  Ride On Toy
  7047.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  7048.                                    <svg
  7049.                                      class="m-svg-icon--small"
  7050.                                      viewBox="0 0 12 12"
  7051.                                      fill="none"
  7052.                                      xmlns="http://www.w3.org/2000/svg"
  7053.                                    >
  7054.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7055.                                    </svg>
  7056.                                  </span>
  7057.                                </a>
  7058.                                <ul
  7059.                                  class="m-menu-dropdown__submenu"
  7060.                                  role="list"
  7061.                                  tabindex="-1"
  7062.                                ><li class="m-menu-dropdown__submenu-item ">
  7063.                                      <a
  7064.                                        href="/collections/ride-on-cars"
  7065.                                        class="m-link m-link--text m:display-flex"
  7066.                                        
  7067.                                      >
  7068.                                        Ride On Cars
  7069.                                      </a>
  7070.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7071.                                      <a
  7072.                                        href="/collections/ride-on-tractors"
  7073.                                        class="m-link m-link--text m:display-flex"
  7074.                                        
  7075.                                      >
  7076.                                        Ride On Tractors
  7077.                                      </a>
  7078.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7079.                                      <a
  7080.                                        href="/collections/ride-on-jeeps"
  7081.                                        class="m-link m-link--text m:display-flex"
  7082.                                        
  7083.                                      >
  7084.                                        Ride On Jeeps
  7085.                                      </a>
  7086.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7087.                                      <a
  7088.                                        href="/collections/ride-on-atvs"
  7089.                                        class="m-link m-link--text m:display-flex"
  7090.                                        
  7091.                                      >
  7092.                                        Ride On ATVs
  7093.                                      </a>
  7094.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7095.                                      <a
  7096.                                        href="/collections/ride-on-utvs"
  7097.                                        class="m-link m-link--text m:display-flex"
  7098.                                        
  7099.                                      >
  7100.                                        Ride On UTVs
  7101.                                      </a>
  7102.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7103.                                      <a
  7104.                                        href="/collections/ride-on-motorcycles"
  7105.                                        class="m-link m-link--text m:display-flex"
  7106.                                        
  7107.                                      >
  7108.                                        Ride On Motorcycles
  7109.                                      </a>
  7110.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7111.                                      <a
  7112.                                        href="/collections/ride-ons-go-kart"
  7113.                                        class="m-link m-link--text m:display-flex"
  7114.                                        
  7115.                                      >
  7116.                                        Ride Ons Go Kart
  7117.                                      </a>
  7118.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7119.                                      <a
  7120.                                        href="/collections/ride-on-bumper-cars"
  7121.                                        class="m-link m-link--text m:display-flex"
  7122.                                        
  7123.                                      >
  7124.                                        Ride On Bumper Cars
  7125.                                      </a>
  7126.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7127.                                      <a
  7128.                                        href="/collections/push-pedal"
  7129.                                        class="m-link m-link--text m:display-flex"
  7130.                                        
  7131.                                      >
  7132.                                        Push &amp; Pedal
  7133.                                      </a>
  7134.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7135.                                      <a
  7136.                                        href="/collections/ride-on-truck"
  7137.                                        class="m-link m-link--text m:display-flex"
  7138.                                        
  7139.                                      >
  7140.                                        Ride On Truck
  7141.                                      </a>
  7142.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7143.                                      <a
  7144.                                        href="/collections/kids-bikes"
  7145.                                        class="m-link m-link--text m:display-flex"
  7146.                                        
  7147.                                      >
  7148.                                        Kids Bikes
  7149.                                      </a>
  7150.                                    </li></ul>
  7151.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  7152.                                <a href="/collections/musical-instruments" class="m-link m-link--text m:display-flex m:items-center">
  7153.                                  Musical Instruments
  7154.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  7155.                                    <svg
  7156.                                      class="m-svg-icon--small"
  7157.                                      viewBox="0 0 12 12"
  7158.                                      fill="none"
  7159.                                      xmlns="http://www.w3.org/2000/svg"
  7160.                                    >
  7161.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7162.                                    </svg>
  7163.                                  </span>
  7164.                                </a>
  7165.                                <ul
  7166.                                  class="m-menu-dropdown__submenu"
  7167.                                  role="list"
  7168.                                  tabindex="-1"
  7169.                                ><li class="m-menu-dropdown__submenu-item ">
  7170.                                      <a
  7171.                                        href="/collections/musical-instrument-keyboards"
  7172.                                        class="m-link m-link--text m:display-flex"
  7173.                                        
  7174.                                      >
  7175.                                        Musical Instrument Keyboards
  7176.                                      </a>
  7177.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7178.                                      <a
  7179.                                        href="/collections/guitars"
  7180.                                        class="m-link m-link--text m:display-flex"
  7181.                                        
  7182.                                      >
  7183.                                        Guitars
  7184.                                      </a>
  7185.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7186.                                      <a
  7187.                                        href="/collections/drums-percussion"
  7188.                                        class="m-link m-link--text m:display-flex"
  7189.                                        
  7190.                                      >
  7191.                                        Drums &amp; Percussion
  7192.                                      </a>
  7193.                                    </li></ul>
  7194.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  7195.                                <a href="/collections/kids-dress-up-pretend-play" class="m-link m-link--text m:display-flex m:items-center">
  7196.                                  Kids&#39; Dress Up &amp; Pretend Play
  7197.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  7198.                                    <svg
  7199.                                      class="m-svg-icon--small"
  7200.                                      viewBox="0 0 12 12"
  7201.                                      fill="none"
  7202.                                      xmlns="http://www.w3.org/2000/svg"
  7203.                                    >
  7204.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7205.                                    </svg>
  7206.                                  </span>
  7207.                                </a>
  7208.                                <ul
  7209.                                  class="m-menu-dropdown__submenu"
  7210.                                  role="list"
  7211.                                  tabindex="-1"
  7212.                                ><li class="m-menu-dropdown__submenu-item ">
  7213.                                      <a
  7214.                                        href="/collections/toy-kitchen-products"
  7215.                                        class="m-link m-link--text m:display-flex"
  7216.                                        
  7217.                                      >
  7218.                                        Toy Kitchen Products
  7219.                                      </a>
  7220.                                    </li></ul>
  7221.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  7222.                                <a href="/collections/learning-education-toys" class="m-link m-link--text m:display-flex m:items-center">
  7223.                                  Learning &amp; Education Toys
  7224.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  7225.                                    <svg
  7226.                                      class="m-svg-icon--small"
  7227.                                      viewBox="0 0 12 12"
  7228.                                      fill="none"
  7229.                                      xmlns="http://www.w3.org/2000/svg"
  7230.                                    >
  7231.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7232.                                    </svg>
  7233.                                  </span>
  7234.                                </a>
  7235.                                <ul
  7236.                                  class="m-menu-dropdown__submenu"
  7237.                                  role="list"
  7238.                                  tabindex="-1"
  7239.                                ><li class="m-menu-dropdown__submenu-item ">
  7240.                                      <a
  7241.                                        href="/collections/early-development-activity-toys"
  7242.                                        class="m-link m-link--text m:display-flex"
  7243.                                        
  7244.                                      >
  7245.                                        Early Development &amp; Activity Toys
  7246.                                      </a>
  7247.                                    </li><li class="m-menu-dropdown__submenu-item ">
  7248.                                      <a
  7249.                                        href="/collections/education-toys"
  7250.                                        class="m-link m-link--text m:display-flex"
  7251.                                        
  7252.                                      >
  7253.                                        Education Toys
  7254.                                      </a>
  7255.                                    </li></ul>
  7256.                              </li><li class="m-menu-dropdown__menu-item m-has-submenu" data-main-toggle-dropdown>
  7257.                                <a href="/collections/games-accessories" class="m-link m-link--text m:display-flex m:items-center">
  7258.                                  Games &amp; Accessories
  7259.                                  <span class="m-menu-drawer__menu-icon" data-toggle-dropdown>
  7260.                                    <svg
  7261.                                      class="m-svg-icon--small"
  7262.                                      viewBox="0 0 12 12"
  7263.                                      fill="none"
  7264.                                      xmlns="http://www.w3.org/2000/svg"
  7265.                                    >
  7266.                                      <path d="M2.25 4.5L6 8.25L9.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7267.                                    </svg>
  7268.                                  </span>
  7269.                                </a>
  7270.                                <ul
  7271.                                  class="m-menu-dropdown__submenu"
  7272.                                  role="list"
  7273.                                  tabindex="-1"
  7274.                                ><li class="m-menu-dropdown__submenu-item ">
  7275.                                      <a
  7276.                                        href="/collections/game-accessories"
  7277.                                        class="m-link m-link--text m:display-flex"
  7278.                                        
  7279.                                      >
  7280.                                        Game Accessories
  7281.                                      </a>
  7282.                                    </li></ul>
  7283.                              </li></ul>
  7284.                      </header-dropdown-menu>
  7285.                    </div>
  7286.                  </div>
  7287.                </li><li style="background-color:#F4F4F4;height:10px;"></li><li
  7288.                  class="m-menu-drawer__menu-item m-list-menu__item "
  7289.                >
  7290.                  <a href="https://www.17track.net/en" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  7291.                    Track My Order
  7292.                  </a>
  7293.                </li><li
  7294.                  class="m-menu-drawer__menu-item m-list-menu__item "
  7295.                >
  7296.                  <a href="https://www.garvee.com/pages/shipping-policy" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  7297.                    Shipping
  7298.                  </a>
  7299.                </li><li
  7300.                  class="m-menu-drawer__menu-item m-list-menu__item "
  7301.                >
  7302.                  <a href="https://support.garvee.com/" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  7303.                    Help Center
  7304.                  </a>
  7305.                </li><li
  7306.                  class="m-menu-drawer__menu-item m-list-menu__item "
  7307.                >
  7308.                  <a href="/pages/share-and-win" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  7309.                    Share And Win
  7310.                  </a>
  7311.                </li><li
  7312.                  class="m-menu-drawer__menu-item m-list-menu__item "
  7313.                >
  7314.                  <a href="/pages/contact" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  7315.                    Contact Us
  7316.                  </a>
  7317.                </li><li
  7318.                  class="m-menu-drawer__menu-item m-list-menu__item "
  7319.                >
  7320.                  <a href="/pages/extended-service-protection" class="m-link m-link--text m:display-flex m:justify-between m:w-full">
  7321.                    Protection Plans
  7322.                  </a>
  7323.                </li><li style="background-color:#F4F4F4;height:10px;"></li>
  7324.            
  7325.          </ul>
  7326.          <div class="m-menu-drawer__utility-links"><a
  7327.                href="https://shopify.com/72466989369/account?locale=en&region_country=US"
  7328.                class="m-menu-drawer__account m:display-flex m:items-center"
  7329.              >
  7330.                <span>
  7331.                  <svg class="m-svg-icon--xlarge" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  7332.                    <path d="M12 15C15.3137 15 18 12.3137 18 9C18 5.68629 15.3137 3 12 3C8.68629 3 6 5.68629 6 9C6 12.3137 8.68629 15 12 15Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7333.                    <path d="M3 20.25C4.81594 17.1122 8.11406 15 12 15C15.8859 15 19.1841 17.1122 21 20.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7334.                  </svg>
  7335.                </span>
  7336.                <span class="m:display-flex m:flex-col">
  7337.                  <span class="m:text-small">Welcome</span>
  7338.                  <span>Sign In/Register</span>
  7339.                </span>
  7340.              </a></div>
  7341.          <div class="m-menu-drawer__orther-links m:display-flex m:flex-col">
  7342.            
  7343. <div class="m-menu-drawer__blocks m:display-flex m:flex-col">
  7344.                
  7345.                  <ul class="">
  7346.                    
  7347.                      
  7348.                    
  7349.                  </ul>
  7350.                
  7351.                
  7352.                  
  7353.                    
  7354.                  
  7355.                
  7356.              </div>
  7357.            
  7358. <div class="m-menu-drawer__localization">
  7359.                <localization-form><form method="post" action="/localization" id="HeaderDrawerCountryForm" accept-charset="UTF-8" class="m-localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/" /><div class="m-disclosure">
  7360.  <button
  7361.    type="button"
  7362.    class="m-disclosure__button m-localization-form__select m-localization-selector"
  7363.    aria-expanded="false"
  7364.    aria-controls="HeaderDrawerCountryList"
  7365.    aria-describedby="HeaderDrawerCountryLabel"
  7366.  >
  7367.    <span class="m-country-flags m-country-flags--US"></span>
  7368.    <span>
  7369.      United States ( USD$ )
  7370.    </span>
  7371.    <span class="m-disclosure__button-icon">
  7372.      <svg class="m-svg-icon--small" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  7373.        <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7374.      </svg>
  7375.    </span>
  7376.  </button>
  7377.  <div class="m-disclosure__list-wrapper m-gradient m-color- m-disclosure__list-wrapper--top">
  7378.    <ul id="HeaderDrawerCountryList" role="list" class="m-disclosure__list"><li class="m-disclosure__item" tabindex="-1">
  7379.          <a
  7380.            class="m-disclosure__link  m-disclosure__link--active"
  7381.            href="#"
  7382.            
  7383.              aria-current="true"
  7384.            
  7385.            data-value="US"
  7386.          >
  7387.            <span class="m-country-flags m-country-flags--US"></span>
  7388.            <span class="m-localization-form__currency">
  7389.              United States ( USD$ )
  7390.            </span>
  7391.          </a>
  7392.        </li></ul>
  7393.  </div>
  7394. </div>
  7395. <input type="hidden" name="country_code" value="US">
  7396. </form></localization-form>
  7397.                <localization-form><form method="post" action="/localization" id="HeaderDrawerLanguageForm" accept-charset="UTF-8" class="m-localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/" /><div class="m-disclosure">
  7398.  <button
  7399.    type="button"
  7400.    class="m-disclosure__button m-localization-form__select m-localization-selector"
  7401.    aria-expanded="false"
  7402.    aria-controls="HeaderDrawerLanguageList"
  7403.    aria-describedby="HeaderDrawerLanguageLabel"
  7404.  >
  7405.    <span>English</span>
  7406.    <span class="m-disclosure__button-icon">
  7407.      <svg class="m-svg-icon--small" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  7408.        <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7409.      </svg>
  7410.    </span>
  7411.  </button>
  7412.  <div class="m-disclosure__list-wrapper m-gradient m-color- m-disclosure__list-wrapper--top">
  7413.    <ul id="HeaderDrawerLanguageList" role="list" class="m-disclosure__list"><li class="disclosure__item" tabindex="-1">
  7414.          <a
  7415.            class="m-disclosure__link m-disclosure__link--active"
  7416.            href="#"
  7417.            hreflang="en"
  7418.            lang="en"
  7419.            
  7420.              aria-current="true"
  7421.            
  7422.            data-value="en"
  7423.          >
  7424.            English
  7425.          </a>
  7426.        </li></ul>
  7427.  </div>
  7428. </div>
  7429. <input type="hidden" name="locale_code" value="en">
  7430. </form></localization-form>
  7431.              </div>
  7432.              <div class="m-menu-drawer__social-media-links"><div class="social-media-links ">
  7433.  
  7434.    <a
  7435.      target="_blank"
  7436.      class="social-media-links--item"
  7437.      href="https://www.pinterest.com/garvee_official/"
  7438.      rel="noreferrer"
  7439.      aria-label="Pinterest"
  7440.    >
  7441.      <svg class="m-svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
  7442.        <path fill="currentColor" d="M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"></path>
  7443.      </svg>
  7444.    </a>
  7445.  
  7446.  
  7447.    <a
  7448.      target="_blank"
  7449.      class="social-media-links--item"
  7450.      href="https://www.facebook.com/garveeglobal"
  7451.      rel="noreferrer"
  7452.      aria-label="Facebook"
  7453.    >
  7454.      <svg class="m-svg-icon" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
  7455.        <path d="M14.6875 0.375C15.1562 0.375 15.5547 0.539062 15.8828 0.867188C16.2109 1.19531 16.375 1.59375 16.375 2.0625V14.4375C16.375 14.9062 16.2109 15.3047 15.8828 15.6328C15.5547 15.9609 15.1562 16.125 14.6875 16.125H9.87109V10.7812H11.9102L12.2969 8.25H9.87109V6.59766C9.87109 5.70703 10.3398 5.26172 11.2773 5.26172H12.3672V3.11719C11.7109 3 11.0664 2.94141 10.4336 2.94141C9.75391 2.94141 9.16797 3.07031 8.67578 3.32812C8.20703 3.58594 7.83203 3.97266 7.55078 4.48828C7.26953 5.00391 7.12891 5.61328 7.12891 6.31641V8.25H4.91406V10.7812H7.12891V16.125H2.3125C1.84375 16.125 1.44531 15.9609 1.11719 15.6328C0.789062 15.3047 0.625 14.9062 0.625 14.4375V2.0625C0.625 1.59375 0.789062 1.19531 1.11719 0.867188C1.44531 0.539062 1.84375 0.375 2.3125 0.375H14.6875Z" fill="currentColor"/>
  7456.      </svg>
  7457.    </a>
  7458.  
  7459.  
  7460.    <a
  7461.      target="_blank"
  7462.      class="social-media-links--item"
  7463.      href="https://www.instagram.com/garvee_official/"
  7464.      rel="noreferrer"
  7465.      aria-label="Instagram"
  7466.    >
  7467.      <svg class="m-svg-icon" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
  7468.        <path d="M5.65234 5.40234C6.44922 4.60547 7.41016 4.20703 8.53516 4.20703C9.66016 4.20703 10.6094 4.60547 11.3828 5.40234C12.1797 6.17578 12.5781 7.125 12.5781 8.25C12.5781 9.375 12.1797 10.3359 11.3828 11.1328C10.6094 11.9062 9.66016 12.293 8.53516 12.293C7.41016 12.293 6.44922 11.9062 5.65234 11.1328C4.87891 10.3359 4.49219 9.375 4.49219 8.25C4.49219 7.125 4.87891 6.17578 5.65234 5.40234ZM6.67188 10.1133C7.1875 10.6289 7.80859 10.8867 8.53516 10.8867C9.26172 10.8867 9.88281 10.6289 10.3984 10.1133C10.9141 9.59766 11.1719 8.97656 11.1719 8.25C11.1719 7.52344 10.9141 6.90234 10.3984 6.38672C9.88281 5.87109 9.26172 5.61328 8.53516 5.61328C7.80859 5.61328 7.1875 5.87109 6.67188 6.38672C6.15625 6.90234 5.89844 7.52344 5.89844 8.25C5.89844 8.97656 6.15625 9.59766 6.67188 10.1133ZM13.3867 3.39844C13.5742 3.5625 13.668 3.77344 13.668 4.03125C13.668 4.28906 13.5742 4.51172 13.3867 4.69922C13.2227 4.88672 13.0117 4.98047 12.7539 4.98047C12.4961 4.98047 12.2734 4.88672 12.0859 4.69922C11.8984 4.51172 11.8047 4.28906 11.8047 4.03125C11.8047 3.77344 11.8984 3.5625 12.0859 3.39844C12.2734 3.21094 12.4961 3.11719 12.7539 3.11719C13.0117 3.11719 13.2227 3.21094 13.3867 3.39844ZM16.375 5.01562C16.3984 5.64844 16.4102 6.72656 16.4102 8.25C16.4102 9.77344 16.3984 10.8516 16.375 11.4844C16.3047 12.9141 15.8711 14.0273 15.0742 14.8242C14.3008 15.5977 13.1992 16.0078 11.7695 16.0547C11.1367 16.1016 10.0586 16.125 8.53516 16.125C7.01172 16.125 5.93359 16.1016 5.30078 16.0547C3.87109 15.9844 2.76953 15.5625 1.99609 14.7891C1.69141 14.5078 1.44531 14.1797 1.25781 13.8047C1.07031 13.4297 0.929688 13.0664 0.835938 12.7148C0.765625 12.3633 0.730469 11.9531 0.730469 11.4844C0.683594 10.8516 0.660156 9.77344 0.660156 8.25C0.660156 6.72656 0.683594 5.63672 0.730469 4.98047C0.800781 3.57422 1.22266 2.48438 1.99609 1.71094C2.76953 0.914062 3.87109 0.480469 5.30078 0.410156C5.93359 0.386719 7.01172 0.375 8.53516 0.375C10.0586 0.375 11.1367 0.386719 11.7695 0.410156C13.1992 0.480469 14.3008 0.914062 15.0742 1.71094C15.8711 2.48438 16.3047 3.58594 16.375 5.01562ZM14.6875 12.8906C14.7578 12.7031 14.8164 12.4688 14.8633 12.1875C14.9102 11.8828 14.9453 11.5312 14.9688 11.1328C14.9922 10.7109 15.0039 10.3711 15.0039 10.1133C15.0039 9.85547 15.0039 9.49219 15.0039 9.02344C15.0039 8.55469 15.0039 8.29688 15.0039 8.25C15.0039 8.17969 15.0039 7.92188 15.0039 7.47656C15.0039 7.00781 15.0039 6.64453 15.0039 6.38672C15.0039 6.12891 14.9922 5.80078 14.9688 5.40234C14.9453 4.98047 14.9102 4.62891 14.8633 4.34766C14.8164 4.04297 14.7578 3.79688 14.6875 3.60938C14.4062 2.88281 13.9023 2.37891 13.1758 2.09766C12.9883 2.02734 12.7422 1.96875 12.4375 1.92188C12.1562 1.875 11.8047 1.83984 11.3828 1.81641C10.9844 1.79297 10.6562 1.78125 10.3984 1.78125C10.1641 1.78125 9.80078 1.78125 9.30859 1.78125C8.83984 1.78125 8.58203 1.78125 8.53516 1.78125C8.48828 1.78125 8.23047 1.78125 7.76172 1.78125C7.29297 1.78125 6.92969 1.78125 6.67188 1.78125C6.41406 1.78125 6.07422 1.79297 5.65234 1.81641C5.25391 1.83984 4.90234 1.875 4.59766 1.92188C4.31641 1.96875 4.08203 2.02734 3.89453 2.09766C3.16797 2.37891 2.66406 2.88281 2.38281 3.60938C2.3125 3.79688 2.25391 4.04297 2.20703 4.34766C2.16016 4.62891 2.125 4.98047 2.10156 5.40234C2.07812 5.80078 2.06641 6.12891 2.06641 6.38672C2.06641 6.62109 2.06641 6.98438 2.06641 7.47656C2.06641 7.94531 2.06641 8.20312 2.06641 8.25C2.06641 8.34375 2.06641 8.56641 2.06641 8.91797C2.06641 9.24609 2.06641 9.52734 2.06641 9.76172C2.06641 9.97266 2.06641 10.2539 2.06641 10.6055C2.08984 10.957 2.11328 11.2617 2.13672 11.5195C2.16016 11.7539 2.19531 12 2.24219 12.2578C2.28906 12.5156 2.33594 12.7266 2.38281 12.8906C2.6875 13.6172 3.19141 14.1211 3.89453 14.4023C4.08203 14.4727 4.31641 14.5312 4.59766 14.5781C4.90234 14.625 5.25391 14.6602 5.65234 14.6836C6.07422 14.707 6.40234 14.7188 6.63672 14.7188C6.89453 14.7188 7.25781 14.7188 7.72656 14.7188C8.21875 14.7188 8.48828 14.7188 8.53516 14.7188C8.60547 14.7188 8.86328 14.7188 9.30859 14.7188C9.77734 14.7188 10.1406 14.7188 10.3984 14.7188C10.6562 14.7188 10.9844 14.707 11.3828 14.6836C11.8047 14.6602 12.1562 14.625 12.4375 14.5781C12.7422 14.5312 12.9883 14.4727 13.1758 14.4023C13.9023 14.0977 14.4062 13.5938 14.6875 12.8906Z" fill="currentColor"/>
  7469.      </svg>
  7470.    </a>
  7471.  
  7472.  
  7473.  
  7474.  
  7475.  
  7476.  
  7477.    <a
  7478.      target="_blank"
  7479.      class="social-media-links--item"
  7480.      href="https://www.youtube.com/channel/UCvt0kZI7qgY2leAZrwI9DKA"
  7481.      rel="noreferrer"
  7482.      aria-label="Youtube"
  7483.    >
  7484.      <svg class="m-svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512">
  7485.        <path fill="currentColor" d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/>
  7486.      </svg>
  7487.    </a>
  7488.  
  7489.  
  7490.  
  7491.    <a
  7492.      target="_blank"
  7493.      class="social-media-links--item"
  7494.      href="https://www.tiktok.com/@garvee_official"
  7495.      rel="noreferrer"
  7496.      aria-label="Tiktok"
  7497.    >
  7498.      <svg class="m-svg-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
  7499.        <path fill="currentColor" d="M448 209.91a210.06 210.06 0 01-122.77-39.25v178.72A162.55 162.55 0 11185 188.31v89.89a74.62 74.62 0 1052.23 71.18V0h88a121.18 121.18 0 001.86 22.17A122.18 122.18 0 00381 102.39a121.43 121.43 0 0067 20.14z"/>
  7500.      </svg>
  7501.    </a>
  7502.  
  7503.  
  7504.  
  7505.  
  7506.  
  7507. </div>
  7508. </div></div>
  7509.        </div>
  7510.      </div>
  7511.    </div>
  7512.  </div>
  7513. </header-drawer>
  7514. <div class="m-header__heading">
  7515.        <button class="m-header-menu-icon">
  7516.          <span class="m-header-menu-icon--open">
  7517.            <svg class="m-svg-icon--medium m-icon-hamburger" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
  7518.              <path d="M3.125 10H16.875" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
  7519.              <path d="M3.125 5H16.875" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
  7520.              <path d="M3.125 15H16.875" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
  7521.            </svg>
  7522.          </span>
  7523.          <span class="m-header-menu-icon--close">
  7524.            <svg class="m-icon-close m-svg-icon--large" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  7525.              <path d="M18.75 5.25L5.25 18.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
  7526.              <path d="M18.75 18.75L5.25 5.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
  7527.            </svg>
  7528.          </span>
  7529.        </button><h1 class="m:inline-flex"><a href="/" class="m-header__heading--link m:inline-flex"><div class="m-header__heading--logo-wrapper">
  7530.              
  7531.              <img src="//www.garvee.com/cdn/shop/files/3123123123232.png?v=1739354092&amp;width=600" alt="GARVEE" srcset="//www.garvee.com/cdn/shop/files/3123123123232.png?v=1739354092&amp;width=125 125w, //www.garvee.com/cdn/shop/files/3123123123232.png?v=1739354092&amp;width=188 188w, //www.garvee.com/cdn/shop/files/3123123123232.png?v=1739354092&amp;width=250 250w" width="125" height="65.41666666666667" loading="eager" class="header__heading-logo" sizes="(max-width: 250px) 50vw, 125px">
  7532.            </div></a></h1></div>
  7533.      <div class="m-header__search m:hidden lg:m:flex"><link rel="stylesheet" href="//www.garvee.com/cdn/shop/t/132/assets/search.css?v=69655803015470906401740986013">
  7534. <link rel="stylesheet" href="//www.garvee.com/cdn/shop/t/132/assets/cart.css?v=20275170661226782211740986011"><predictive-search class="m-search m:flex-1" data-loading-text="Loading..."><form action="/search" method="get" role="search" class="m-search-form">
  7535.  <div class="m-search-form__wrapper">
  7536.    
  7537.    <input
  7538.      class="search__input field__input form-field form-field--input m-search__input"
  7539.      id=""
  7540.      type="search"
  7541.      name="q"
  7542.      value=""
  7543.      placeholder="Search products and categories"role="combobox"
  7544.        aria-expanded="false"
  7545.        aria-owns="predictive-search-results"
  7546.        aria-controls="predictive-search-results"
  7547.        aria-haspopup="listbox"
  7548.        aria-autocomplete="list"
  7549.        autocorrect="off"
  7550.        autocomplete="off"
  7551.        autocapitalize="off"
  7552.        spellcheck="false">
  7553.    <input type="hidden" name="options[prefix]" value="last">
  7554.    <input type="hidden" id="product_type_input" name="filter.p.product_type">
  7555.    <div class="m-search-form__buttons">
  7556.      <button
  7557.        type="reset"
  7558.        class="reset__button m-search-form__reset--button  m:hidden"
  7559.        aria-label="Clear search term"
  7560.      >
  7561.        <svg class="m-svg-icon--large" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  7562.          <path d="M18.75 5.25L5.25 18.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7563.          <path d="M18.75 18.75L5.25 5.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7564.        </svg>
  7565.      </button>
  7566.      <button class="search__button m-search-form__search--button m-spinner-button search__button--icon-plain" aria-label="Search">
  7567.        
  7568.          <svg class="m-svg-icon--large" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  7569.            <path d="M10.5 18C14.6421 18 18 14.6421 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  7570.            <path d="M15.8032 15.8035L20.9998 21" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  7571.          </svg>
  7572.        
  7573.        <span class="m-spinner-icon">
  7574.          <svg
  7575.            class="animate-spin m-svg-icon--medium"
  7576.            xmlns="http://www.w3.org/2000/svg"
  7577.            viewBox="0 0 24 24"
  7578.            fill="none"
  7579.          >
  7580.            <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="2"></circle>
  7581.            <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  7582.          </svg>
  7583.        </span>
  7584.      </button>
  7585.    </div>
  7586.  </div><div class="m-predictive-search m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7" tabindex="-1" data-predictive-search>
  7587.    </div>
  7588.    <span class="m-predictive-search-status m:visually-hidden" role="status" aria-hidden="true"></span></form></predictive-search></div>
  7589.      <div class="m-header__icons">
  7590.        
  7591. <a href="https://shopify.com/72466989369/account?locale=en&region_country=US" class="m-header__icon m-header__icon--account m:hidden xl:m:block">
  7592.    <span class="m:block m-header__icon-group"
  7593.      
  7594.    >
  7595.      <svg class="m-svg-icon--xlarge" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  7596.        <path d="M12 15C15.3137 15 18 12.3137 18 9C18 5.68629 15.3137 3 12 3C8.68629 3 6 5.68629 6 9C6 12.3137 8.68629 15 12 15Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7597.        <path d="M3 20.25C4.81594 17.1122 8.11406 15 12 15C15.8859 15 19.1841 17.1122 21 20.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7598.      </svg>
  7599.      
  7600.        <div class="m:flex-col m:display-flex">
  7601.          <span class="m-header__icon-text-small m:text-small">Welcome</span>
  7602.          <span class="m-icon-text">Sign In/Register</span>
  7603.        </div>
  7604.      
  7605.    </span>
  7606.  </a>
  7607.  
  7608.  
  7609.  
  7610.  
  7611. <details-modal class="m:display-flex m:items-center lg:m:hidden">
  7612.  <div class="m-modal__container m:display-flex">
  7613.    <button class="m-modal__toggle" aria-label="Search">
  7614.      <svg class="m-svg-icon--large" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  7615.        <path d="M10.5 18C14.6421 18 18 14.6421 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7616.        <path d="M15.8032 15.8035L20.9998 21" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7617.      </svg>
  7618.    </button>
  7619.    <div class="m-modal__content m-search-modal">
  7620.      <div class="m-modal-overlay"></div>
  7621.      <div class="m-search-modal__content" tabindex="-1">
  7622.        <div class="m-search-modal__header m:block md:m:hidden">
  7623.          <h5>Search</h5>
  7624.          <button type="button" class="m-search-modal__close-button m-modal__close-button m:block md:m:hidden" aria-label="Close">
  7625.            <svg
  7626.              class="m-icon-close m-svg-icon--large"
  7627.              viewBox="0 0 24 24"
  7628.              fill="none"
  7629.              xmlns="http://www.w3.org/2000/svg"
  7630.            >
  7631.              <path d="M18.75 5.25L5.25 18.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7632.              <path d="M18.75 18.75L5.25 5.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7633.            </svg>
  7634.          </button>
  7635.        </div><link rel="stylesheet" href="//www.garvee.com/cdn/shop/t/132/assets/search.css?v=69655803015470906401740986013">
  7636. <link rel="stylesheet" href="//www.garvee.com/cdn/shop/t/132/assets/cart.css?v=20275170661226782211740986011"><predictive-search class="m-search m:w-full" data-loading-text="Loading..."><form action="/search" method="get" role="search" class="m-search-form">
  7637.  <div class="m-search-form__wrapper">
  7638.    
  7639.    <input
  7640.      class="search__input field__input form-field form-field--input m-search__input"
  7641.      id=""
  7642.      type="search"
  7643.      name="q"
  7644.      value=""
  7645.      placeholder="Search products and categories"role="combobox"
  7646.        aria-expanded="false"
  7647.        aria-owns="predictive-search-results"
  7648.        aria-controls="predictive-search-results"
  7649.        aria-haspopup="listbox"
  7650.        aria-autocomplete="list"
  7651.        autocorrect="off"
  7652.        autocomplete="off"
  7653.        autocapitalize="off"
  7654.        spellcheck="false">
  7655.    <input type="hidden" name="options[prefix]" value="last">
  7656.    <input type="hidden" id="product_type_input" name="filter.p.product_type">
  7657.    <div class="m-search-form__buttons">
  7658.      <button
  7659.        type="reset"
  7660.        class="reset__button m-search-form__reset--button  m:hidden"
  7661.        aria-label="Clear search term"
  7662.      >
  7663.        <svg class="m-svg-icon--large" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  7664.          <path d="M18.75 5.25L5.25 18.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7665.          <path d="M18.75 18.75L5.25 5.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7666.        </svg>
  7667.      </button>
  7668.      <button class="search__button m-search-form__search--button m-spinner-button search__button--icon-plain" aria-label="Search">
  7669.        
  7670.          <svg class="m-svg-icon--large" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  7671.            <path d="M10.5 18C14.6421 18 18 14.6421 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  7672.            <path d="M15.8032 15.8035L20.9998 21" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  7673.          </svg>
  7674.        
  7675.        <span class="m-spinner-icon">
  7676.          <svg
  7677.            class="animate-spin m-svg-icon--medium"
  7678.            xmlns="http://www.w3.org/2000/svg"
  7679.            viewBox="0 0 24 24"
  7680.            fill="none"
  7681.          >
  7682.            <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="2"></circle>
  7683.            <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  7684.          </svg>
  7685.        </span>
  7686.      </button>
  7687.    </div>
  7688.  </div><div class="m-predictive-search m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7" tabindex="-1" data-predictive-search>
  7689.    </div>
  7690.    <span class="m-predictive-search-status m:visually-hidden" role="status" aria-hidden="true"></span></form></predictive-search><button type="button" class="m-search-modal__close-button m-modal__close-button m:hidden md:m:block" aria-label="Close">
  7691.          <svg
  7692.            class="m-icon-close m-svg-icon--large"
  7693.            viewBox="0 0 24 24"
  7694.            fill="none"
  7695.            xmlns="http://www.w3.org/2000/svg"
  7696.          >
  7697.            <path d="M18.75 5.25L5.25 18.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7698.            <path d="M18.75 18.75L5.25 5.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7699.          </svg>
  7700.        </button>
  7701.      </div>
  7702.    </div>
  7703.  </div>
  7704. </details-modal><a
  7705.  href="/cart"
  7706.  class="m-cart-icon-bubble m-header__icon m-header__icon--cart"
  7707.  id="m-cart-icon-bubble"
  7708.  aria-label="Cart"
  7709. >
  7710.  <span class="m:block" data-tippy-theme="m-color-scheme-7ce8c1c8-ab1a-4e9a-bd79-38bb88965f8f" data-tippy-content="Cart" data-tippy-placement="bottom">
  7711.    <svg class="m-svg-icon--xlarge" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  7712.      <path d="M7.5 21.75C8.32843 21.75 9 21.0784 9 20.25C9 19.4216 8.32843 18.75 7.5 18.75C6.67157 18.75 6 19.4216 6 20.25C6 21.0784 6.67157 21.75 7.5 21.75Z" fill="currentColor"/>
  7713.      <path d="M17.25 21.75C18.0784 21.75 18.75 21.0784 18.75 20.25C18.75 19.4216 18.0784 18.75 17.25 18.75C16.4216 18.75 15.75 19.4216 15.75 20.25C15.75 21.0784 16.4216 21.75 17.25 21.75Z" fill="currentColor"/>
  7714.      <path d="M3.96469 6.75H21L18.3262 15.4416C18.2318 15.7482 18.0415 16.0165 17.7833 16.207C17.5252 16.3975 17.2127 16.5002 16.8919 16.5H7.88156C7.55556 16.5001 7.23839 16.3941 6.97806 16.1978C6.71772 16.0016 6.5284 15.7259 6.43875 15.4125L3.04781 3.54375C3.00301 3.38711 2.90842 3.24932 2.77835 3.15122C2.64828 3.05311 2.4898 3.00003 2.32687 3H0.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7715.    </svg>
  7716.    <span class="m-cart-count-bubble m-cart-count m:hidden">0</span>
  7717.  </span>
  7718. </a>
  7719. </div>
  7720.    </div>
  7721.  </div>
  7722.  
  7723.  <div class='mobile-header__search m-color-scheme-7ce8c1c8-ab1a-4e9a-bd79-38bb88965f8f'><link rel="stylesheet" href="//www.garvee.com/cdn/shop/t/132/assets/search.css?v=69655803015470906401740986013">
  7724. <link rel="stylesheet" href="//www.garvee.com/cdn/shop/t/132/assets/cart.css?v=20275170661226782211740986011"><predictive-search class="m-search m:w-full" data-loading-text="Loading..."><form action="/search" method="get" role="search" class="m-search-form">
  7725.  <div class="m-search-form__wrapper">
  7726.    
  7727.    <input
  7728.      class="search__input field__input form-field form-field--input m-search__input"
  7729.      id=""
  7730.      type="search"
  7731.      name="q"
  7732.      value=""
  7733.      placeholder="Search products and categories"role="combobox"
  7734.        aria-expanded="false"
  7735.        aria-owns="predictive-search-results"
  7736.        aria-controls="predictive-search-results"
  7737.        aria-haspopup="listbox"
  7738.        aria-autocomplete="list"
  7739.        autocorrect="off"
  7740.        autocomplete="off"
  7741.        autocapitalize="off"
  7742.        spellcheck="false">
  7743.    <input type="hidden" name="options[prefix]" value="last">
  7744.    <input type="hidden" id="product_type_input" name="filter.p.product_type">
  7745.    <div class="m-search-form__buttons">
  7746.      <button
  7747.        type="reset"
  7748.        class="reset__button m-search-form__reset--button  m:hidden"
  7749.        aria-label="Clear search term"
  7750.      >
  7751.        <svg class="m-svg-icon--large" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  7752.          <path d="M18.75 5.25L5.25 18.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7753.          <path d="M18.75 18.75L5.25 5.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7754.        </svg>
  7755.      </button>
  7756.      <button class="search__button m-search-form__search--button m-spinner-button search__button--icon-plain" aria-label="Search">
  7757.        
  7758.          <svg class="m-svg-icon--large" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  7759.            <path d="M10.5 18C14.6421 18 18 14.6421 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  7760.            <path d="M15.8032 15.8035L20.9998 21" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  7761.          </svg>
  7762.        
  7763.        <span class="m-spinner-icon">
  7764.          <svg
  7765.            class="animate-spin m-svg-icon--medium"
  7766.            xmlns="http://www.w3.org/2000/svg"
  7767.            viewBox="0 0 24 24"
  7768.            fill="none"
  7769.          >
  7770.            <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="2"></circle>
  7771.            <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  7772.          </svg>
  7773.        </span>
  7774.      </button>
  7775.    </div>
  7776.  </div><div class="m-predictive-search m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7" tabindex="-1" data-predictive-search>
  7777.    </div>
  7778.    <span class="m-predictive-search-status m:visually-hidden" role="status" aria-hidden="true"></span></form></predictive-search></div>
  7779.  
  7780.  <div
  7781.    class="m-header__nav m-section--padding m-color-scheme-7ce8c1c8-ab1a-4e9a-bd79-38bb88965f8f m-gradient m:hidden xl:m:block"
  7782.    style="--section-padding-bottom: 0px;"
  7783.  >
  7784.    <div class="m-page-width">
  7785.      <div class="m-header__menu">
  7786.        
  7787.        <div class="m-header__menu-center">
  7788.          <div class="smart_menu_wrapper"><nav class="m:h-full">
  7789.  <ul class="m-list-menu m-list-menu--inline m:h-full" role="list">
  7790.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent" style="--m-menu-item-padding-l: 0;">
  7791.        <a
  7792.          href="/collections/ride-ons"
  7793.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  7794.          
  7795.        >
  7796.          <div class="m-link--content m:display-flex m:items-center">
  7797.            <span
  7798.            >Ride On Toys</span>
  7799.          </div>
  7800.        </a>
  7801.      </li>
  7802.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  7803.        <a
  7804.          href="#"
  7805.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  7806.          
  7807.        >
  7808.          <div class="m-link--content m:display-flex m:items-center">
  7809.            <span
  7810.            >Outdoor Living</span><span class="m-header__menu-item--icon">
  7811.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  7812.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7813.              </svg>
  7814.            </span>
  7815.            
  7816.          </div>
  7817.        </a><ul
  7818.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  7819.            role="list"
  7820.            tabindex="-1"
  7821.          ><li class="m-header__menu-item m-list-menu__item">
  7822.                  <a
  7823.                    href="#"
  7824.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  7825.                    
  7826.                  >
  7827.                    <span>Grills&amp; Outdoor cooking</span>
  7828.                    <span class="m-header__menu-item--icon">
  7829.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  7830.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7831.                      </svg>
  7832.                    </span>
  7833.                  </a>
  7834.                  <ul
  7835.                    class="m-header__submenu m-header__submenu-level3"
  7836.                  ><li class="m-header__menu-item m-list-menu__item">
  7837.                        <a
  7838.                          href="/collections/fire-pits-outdoor-fireplaces"
  7839.                          class="m-link m-link--text focus-inset"
  7840.                          
  7841.                        >
  7842.                          Fire Pits
  7843.                        </a>
  7844.                      </li><li class="m-header__menu-item m-list-menu__item">
  7845.                        <a
  7846.                          href="/collections/outdoor-patio-furniture"
  7847.                          class="m-link m-link--text focus-inset"
  7848.                          
  7849.                        >
  7850.                          Outdoor &amp; Patio Furniture
  7851.                        </a>
  7852.                      </li><li class="m-header__menu-item m-list-menu__item">
  7853.                        <a
  7854.                          href="/collections/canopy-tent"
  7855.                          class="m-link m-link--text focus-inset"
  7856.                          
  7857.                        >
  7858.                          Canopies &amp; Tents
  7859.                        </a>
  7860.                      </li></ul>
  7861.                </li><li class="m-header__menu-item m-list-menu__item">
  7862.                  <a
  7863.                    href="#"
  7864.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  7865.                    
  7866.                  >
  7867.                    <span>Outdoor Cooking &amp; Grilling Fuel</span>
  7868.                    <span class="m-header__menu-item--icon">
  7869.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  7870.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7871.                      </svg>
  7872.                    </span>
  7873.                  </a>
  7874.                  <ul
  7875.                    class="m-header__submenu m-header__submenu-level3"
  7876.                  ><li class="m-header__menu-item m-list-menu__item">
  7877.                        <a
  7878.                          href="/collections/gazebo"
  7879.                          class="m-link m-link--text focus-inset"
  7880.                          
  7881.                        >
  7882.                          Gazebos
  7883.                        </a>
  7884.                      </li><li class="m-header__menu-item m-list-menu__item">
  7885.                        <a
  7886.                          href="/collections/pool-safety-cover"
  7887.                          class="m-link m-link--text focus-inset"
  7888.                          
  7889.                        >
  7890.                          Pool Safety Covers
  7891.                        </a>
  7892.                      </li><li class="m-header__menu-item m-list-menu__item">
  7893.                        <a
  7894.                          href="/collections/swimming-pool-rail"
  7895.                          class="m-link m-link--text focus-inset"
  7896.                          
  7897.                        >
  7898.                          Swimming Pool Rails
  7899.                        </a>
  7900.                      </li><li class="m-header__menu-item m-list-menu__item">
  7901.                        <a
  7902.                          href="/collections/fire-pit-tables"
  7903.                          class="m-link m-link--text focus-inset"
  7904.                          
  7905.                        >
  7906.                          Fire Pit Tables
  7907.                        </a>
  7908.                      </li><li class="m-header__menu-item m-list-menu__item">
  7909.                        <a
  7910.                          href="/collections/patio-heaters"
  7911.                          class="m-link m-link--text focus-inset"
  7912.                          
  7913.                        >
  7914.                          Patio Heaters
  7915.                        </a>
  7916.                      </li><li class="m-header__menu-item m-list-menu__item">
  7917.                        <a
  7918.                          href="/collections/fire-kit-cover"
  7919.                          class="m-link m-link--text focus-inset"
  7920.                          
  7921.                        >
  7922.                          Fire Pit Cover
  7923.                        </a>
  7924.                      </li><li class="m-header__menu-item m-list-menu__item">
  7925.                        <a
  7926.                          href="/collections/outdoor-rugs"
  7927.                          class="m-link m-link--text focus-inset"
  7928.                          
  7929.                        >
  7930.                          Outdoor Rugs
  7931.                        </a>
  7932.                      </li></ul>
  7933.                </li><li class="m-header__menu-item m-list-menu__item">
  7934.                  <a
  7935.                    href="#"
  7936.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  7937.                    
  7938.                  >
  7939.                    <span>Propane Refill</span>
  7940.                    <span class="m-header__menu-item--icon">
  7941.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  7942.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7943.                      </svg>
  7944.                    </span>
  7945.                  </a>
  7946.                  <ul
  7947.                    class="m-header__submenu m-header__submenu-level3"
  7948.                  ><li class="m-header__menu-item m-list-menu__item">
  7949.                        <a
  7950.                          href="/collections/carports"
  7951.                          class="m-link m-link--text focus-inset"
  7952.                          
  7953.                        >
  7954.                          Carports &amp; Garages
  7955.                        </a>
  7956.                      </li><li class="m-header__menu-item m-list-menu__item">
  7957.                        <a
  7958.                          href="/collections/greenhouses-plant-germination-equipment"
  7959.                          class="m-link m-link--text focus-inset"
  7960.                          
  7961.                        >
  7962.                          Greenhouses &amp; Plant Germination Equipment
  7963.                        </a>
  7964.                      </li></ul>
  7965.                </li></ul>
  7966.        
  7967.      </li>
  7968.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  7969.        <a
  7970.          href="/collections/lawn-garden"
  7971.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  7972.          
  7973.        >
  7974.          <div class="m-link--content m:display-flex m:items-center">
  7975.            <span
  7976.            >Lawn &amp; Garden</span><span class="m-header__menu-item--icon">
  7977.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  7978.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7979.              </svg>
  7980.            </span>
  7981.            
  7982.          </div>
  7983.        </a><ul
  7984.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  7985.            role="list"
  7986.            tabindex="-1"
  7987.          ><li class="m-header__menu-item m-list-menu__item">
  7988.                  <a
  7989.                    href="/collections/outdoorshade"
  7990.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  7991.                    
  7992.                  >
  7993.                    <span>Outdoor Shade</span>
  7994.                    <span class="m-header__menu-item--icon">
  7995.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  7996.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  7997.                      </svg>
  7998.                    </span>
  7999.                  </a>
  8000.                  <ul
  8001.                    class="m-header__submenu m-header__submenu-level3"
  8002.                  ><li class="m-header__menu-item m-list-menu__item">
  8003.                        <a
  8004.                          href="/collections/carports"
  8005.                          class="m-link m-link--text focus-inset"
  8006.                          
  8007.                        >
  8008.                          Carports
  8009.                        </a>
  8010.                      </li><li class="m-header__menu-item m-list-menu__item">
  8011.                        <a
  8012.                          href="/collections/carport-replacement-cover"
  8013.                          class="m-link m-link--text focus-inset"
  8014.                          
  8015.                        >
  8016.                          Carport Replacement Covers
  8017.                        </a>
  8018.                      </li><li class="m-header__menu-item m-list-menu__item">
  8019.                        <a
  8020.                          href="/collections/gazebo"
  8021.                          class="m-link m-link--text focus-inset"
  8022.                          
  8023.                        >
  8024.                          Gazebos
  8025.                        </a>
  8026.                      </li><li class="m-header__menu-item m-list-menu__item">
  8027.                        <a
  8028.                          href="/collections/canopy-tent"
  8029.                          class="m-link m-link--text focus-inset"
  8030.                          
  8031.                        >
  8032.                          Canopy Tents
  8033.                        </a>
  8034.                      </li><li class="m-header__menu-item m-list-menu__item">
  8035.                        <a
  8036.                          href="/collections/pergola"
  8037.                          class="m-link m-link--text focus-inset"
  8038.                          
  8039.                        >
  8040.                          Pergolas
  8041.                        </a>
  8042.                      </li><li class="m-header__menu-item m-list-menu__item">
  8043.                        <a
  8044.                          href="/collections/awning"
  8045.                          class="m-link m-link--text focus-inset"
  8046.                          
  8047.                        >
  8048.                          Awnings
  8049.                        </a>
  8050.                      </li><li class="m-header__menu-item m-list-menu__item">
  8051.                        <a
  8052.                          href="/collections/umbrella"
  8053.                          class="m-link m-link--text focus-inset"
  8054.                          
  8055.                        >
  8056.                          Umbrellas
  8057.                        </a>
  8058.                      </li><li class="m-header__menu-item m-list-menu__item">
  8059.                        <a
  8060.                          href="/collections/camping-tent"
  8061.                          class="m-link m-link--text focus-inset"
  8062.                          
  8063.                        >
  8064.                          Camping Tents
  8065.                        </a>
  8066.                      </li><li class="m-header__menu-item m-list-menu__item">
  8067.                        <a
  8068.                          href="/collections/outdoor-storage-tent"
  8069.                          class="m-link m-link--text focus-inset"
  8070.                          
  8071.                        >
  8072.                          Outdoor Storage Tents
  8073.                        </a>
  8074.                      </li><li class="m-header__menu-item m-list-menu__item">
  8075.                        <a
  8076.                          href="/collections/ice-fishing-tent"
  8077.                          class="m-link m-link--text focus-inset"
  8078.                          
  8079.                        >
  8080.                          Ice Fishing Tents
  8081.                        </a>
  8082.                      </li></ul>
  8083.                </li><li class="m-header__menu-item m-list-menu__item">
  8084.                  <a
  8085.                    href="/collections/garden-supplies"
  8086.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8087.                    
  8088.                  >
  8089.                    <span>Garden Supplies</span>
  8090.                    <span class="m-header__menu-item--icon">
  8091.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8092.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8093.                      </svg>
  8094.                    </span>
  8095.                  </a>
  8096.                  <ul
  8097.                    class="m-header__submenu m-header__submenu-level3"
  8098.                  ><li class="m-header__menu-item m-list-menu__item">
  8099.                        <a
  8100.                          href="/collections/greenhouses"
  8101.                          class="m-link m-link--text focus-inset"
  8102.                          
  8103.                        >
  8104.                          Greenhouses
  8105.                        </a>
  8106.                      </li><li class="m-header__menu-item m-list-menu__item">
  8107.                        <a
  8108.                          href="/collections/storage-sheds"
  8109.                          class="m-link m-link--text focus-inset"
  8110.                          
  8111.                        >
  8112.                          Storage Sheds
  8113.                        </a>
  8114.                      </li><li class="m-header__menu-item m-list-menu__item">
  8115.                        <a
  8116.                          href="/collections/raised-garden-bed"
  8117.                          class="m-link m-link--text focus-inset"
  8118.                          
  8119.                        >
  8120.                          Raised Garden Beds
  8121.                        </a>
  8122.                      </li><li class="m-header__menu-item m-list-menu__item">
  8123.                        <a
  8124.                          href="/collections/plant-pots"
  8125.                          class="m-link m-link--text focus-inset"
  8126.                          
  8127.                        >
  8128.                          Plant Pots
  8129.                        </a>
  8130.                      </li></ul>
  8131.                </li><li class="m-header__menu-item m-list-menu__item">
  8132.                  <a
  8133.                    href="/collections/hydroponics"
  8134.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8135.                    
  8136.                  >
  8137.                    <span>Hydroponics</span>
  8138.                    <span class="m-header__menu-item--icon">
  8139.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8140.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8141.                      </svg>
  8142.                    </span>
  8143.                  </a>
  8144.                  <ul
  8145.                    class="m-header__submenu m-header__submenu-level3"
  8146.                  ><li class="m-header__menu-item m-list-menu__item">
  8147.                        <a
  8148.                          href="/collections/growing-kits-systems"
  8149.                          class="m-link m-link--text focus-inset"
  8150.                          
  8151.                        >
  8152.                          Growing Kits &amp; Systems
  8153.                        </a>
  8154.                      </li></ul>
  8155.                </li><li class="m-header__menu-item m-list-menu__item">
  8156.                  <a
  8157.                    href="/collections/landscaping-shade"
  8158.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8159.                    
  8160.                  >
  8161.                    <span>Landscaping &amp; Shade</span>
  8162.                    <span class="m-header__menu-item--icon">
  8163.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8164.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8165.                      </svg>
  8166.                    </span>
  8167.                  </a>
  8168.                  <ul
  8169.                    class="m-header__submenu m-header__submenu-level3"
  8170.                  ><li class="m-header__menu-item m-list-menu__item">
  8171.                        <a
  8172.                          href="/collections/artificial-grass-1"
  8173.                          class="m-link m-link--text focus-inset"
  8174.                          
  8175.                        >
  8176.                          Artificial Grass
  8177.                        </a>
  8178.                      </li><li class="m-header__menu-item m-list-menu__item">
  8179.                        <a
  8180.                          href="/collections/greenhouses-plant-germination-equipment"
  8181.                          class="m-link m-link--text focus-inset"
  8182.                          
  8183.                        >
  8184.                          Greenhouses &amp; Plant Germination Equipment
  8185.                        </a>
  8186.                      </li></ul>
  8187.                </li><li class="m-header__menu-item m-list-menu__item">
  8188.                  <a
  8189.                    href="/collections/lawn-care"
  8190.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8191.                    
  8192.                  >
  8193.                    <span>Lawn Care</span>
  8194.                    <span class="m-header__menu-item--icon">
  8195.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8196.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8197.                      </svg>
  8198.                    </span>
  8199.                  </a>
  8200.                  <ul
  8201.                    class="m-header__submenu m-header__submenu-level3"
  8202.                  ><li class="m-header__menu-item m-list-menu__item">
  8203.                        <a
  8204.                          href="/collections/landscape-fabric"
  8205.                          class="m-link m-link--text focus-inset"
  8206.                          
  8207.                        >
  8208.                          Landscape Fabric
  8209.                        </a>
  8210.                      </li><li class="m-header__menu-item m-list-menu__item">
  8211.                        <a
  8212.                          href="/collections/commercial-grade-driveway-fabric"
  8213.                          class="m-link m-link--text focus-inset"
  8214.                          
  8215.                        >
  8216.                          Commercial Grade Driveway Fabric
  8217.                        </a>
  8218.                      </li></ul>
  8219.                </li><li class="m-header__menu-item m-list-menu__item">
  8220.                  <a
  8221.                    href="/collections/patio-furniture-accessories"
  8222.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8223.                    
  8224.                  >
  8225.                    <span>Patio Furniture &amp; Accessories</span>
  8226.                    <span class="m-header__menu-item--icon">
  8227.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8228.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8229.                      </svg>
  8230.                    </span>
  8231.                  </a>
  8232.                  <ul
  8233.                    class="m-header__submenu m-header__submenu-level3"
  8234.                  ><li class="m-header__menu-item m-list-menu__item">
  8235.                        <a
  8236.                          href="/collections/camp-kitchen"
  8237.                          class="m-link m-link--text focus-inset"
  8238.                          
  8239.                        >
  8240.                          Camp Kitchen
  8241.                        </a>
  8242.                      </li><li class="m-header__menu-item m-list-menu__item">
  8243.                        <a
  8244.                          href="/collections/garden-cart"
  8245.                          class="m-link m-link--text focus-inset"
  8246.                          
  8247.                        >
  8248.                          Garden Cart
  8249.                        </a>
  8250.                      </li><li class="m-header__menu-item m-list-menu__item">
  8251.                        <a
  8252.                          href="/collections/firewood-cart"
  8253.                          class="m-link m-link--text focus-inset"
  8254.                          
  8255.                        >
  8256.                          Firewood Cart
  8257.                        </a>
  8258.                      </li><li class="m-header__menu-item m-list-menu__item">
  8259.                        <a
  8260.                          href="/collections/outdoor-garden-storage-workbench"
  8261.                          class="m-link m-link--text focus-inset"
  8262.                          
  8263.                        >
  8264.                          Outdoor Garden Storage Workbench
  8265.                        </a>
  8266.                      </li></ul>
  8267.                </li><li class="m-header__menu-item m-list-menu__item">
  8268.                  <a
  8269.                    href="/collections/pools-spas"
  8270.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8271.                    
  8272.                  >
  8273.                    <span>Pools &amp; Spas</span>
  8274.                    <span class="m-header__menu-item--icon">
  8275.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8276.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8277.                      </svg>
  8278.                    </span>
  8279.                  </a>
  8280.                  <ul
  8281.                    class="m-header__submenu m-header__submenu-level3"
  8282.                  ><li class="m-header__menu-item m-list-menu__item">
  8283.                        <a
  8284.                          href="/collections/swimming-pool-rail"
  8285.                          class="m-link m-link--text focus-inset"
  8286.                          
  8287.                        >
  8288.                          Swimming Pool Rail
  8289.                        </a>
  8290.                      </li><li class="m-header__menu-item m-list-menu__item">
  8291.                        <a
  8292.                          href="/collections/pool-safety-cover"
  8293.                          class="m-link m-link--text focus-inset"
  8294.                          
  8295.                        >
  8296.                          Pool Safety Cover
  8297.                        </a>
  8298.                      </li><li class="m-header__menu-item m-list-menu__item">
  8299.                        <a
  8300.                          href="/collections/poolside-storage"
  8301.                          class="m-link m-link--text focus-inset"
  8302.                          
  8303.                        >
  8304.                          Poolside Storage
  8305.                        </a>
  8306.                      </li><li class="m-header__menu-item m-list-menu__item">
  8307.                        <a
  8308.                          href="/collections/screen"
  8309.                          class="m-link m-link--text focus-inset"
  8310.                          
  8311.                        >
  8312.                          Screen
  8313.                        </a>
  8314.                      </li><li class="m-header__menu-item m-list-menu__item">
  8315.                        <a
  8316.                          href="/collections/robotic-pool-cleaners"
  8317.                          class="m-link m-link--text focus-inset"
  8318.                          
  8319.                        >
  8320.                          Robotic Pool Cleaners
  8321.                        </a>
  8322.                      </li><li class="m-header__menu-item m-list-menu__item">
  8323.                        <a
  8324.                          href="/collections/pool-liner"
  8325.                          class="m-link m-link--text focus-inset"
  8326.                          
  8327.                        >
  8328.                          Pool Liner
  8329.                        </a>
  8330.                      </li><li class="m-header__menu-item m-list-menu__item">
  8331.                        <a
  8332.                          href="/collections/hot-tubs"
  8333.                          class="m-link m-link--text focus-inset"
  8334.                          
  8335.                        >
  8336.                          Hot Tubs
  8337.                        </a>
  8338.                      </li></ul>
  8339.                </li><li class="m-header__menu-item m-list-menu__item">
  8340.                  <a
  8341.                    href="/collections/outdoor-decoration"
  8342.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8343.                    
  8344.                  >
  8345.                    <span>Outdoor Decoration</span>
  8346.                    <span class="m-header__menu-item--icon">
  8347.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8348.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8349.                      </svg>
  8350.                    </span>
  8351.                  </a>
  8352.                  <ul
  8353.                    class="m-header__submenu m-header__submenu-level3"
  8354.                  ><li class="m-header__menu-item m-list-menu__item">
  8355.                        <a
  8356.                          href="/collections/decking-fencing"
  8357.                          class="m-link m-link--text focus-inset"
  8358.                          
  8359.                        >
  8360.                          Decking &amp; Fencing
  8361.                        </a>
  8362.                      </li><li class="m-header__menu-item m-list-menu__item">
  8363.                        <a
  8364.                          href="/collections/retractable-yard-flagpole"
  8365.                          class="m-link m-link--text focus-inset"
  8366.                          
  8367.                        >
  8368.                          Retractable yard flagpole
  8369.                        </a>
  8370.                      </li></ul>
  8371.                </li><li class="m-header__menu-item m-list-menu__item">
  8372.                  <a
  8373.                    href="/collections/water-gardens-ponds"
  8374.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8375.                    
  8376.                  >
  8377.                    <span>Water Gardens &amp; Ponds</span>
  8378.                    <span class="m-header__menu-item--icon">
  8379.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8380.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8381.                      </svg>
  8382.                    </span>
  8383.                  </a>
  8384.                  <ul
  8385.                    class="m-header__submenu m-header__submenu-level3"
  8386.                  ><li class="m-header__menu-item m-list-menu__item">
  8387.                        <a
  8388.                          href="/collections/pond-liner"
  8389.                          class="m-link m-link--text focus-inset"
  8390.                          
  8391.                        >
  8392.                          Pond Liner
  8393.                        </a>
  8394.                      </li></ul>
  8395.                </li><li class="m-header__menu-item m-list-menu__item">
  8396.                  <a
  8397.                    href="/collections/pots-planters-container-accessories"
  8398.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8399.                    
  8400.                  >
  8401.                    <span>Planters &amp; Container Accessories</span>
  8402.                    <span class="m-header__menu-item--icon">
  8403.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8404.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8405.                      </svg>
  8406.                    </span>
  8407.                  </a>
  8408.                  <ul
  8409.                    class="m-header__submenu m-header__submenu-level3"
  8410.                  ><li class="m-header__menu-item m-list-menu__item">
  8411.                        <a
  8412.                          href="/collections/raised-garden-bed"
  8413.                          class="m-link m-link--text focus-inset"
  8414.                          
  8415.                        >
  8416.                          Raised Garden Bed
  8417.                        </a>
  8418.                      </li><li class="m-header__menu-item m-list-menu__item">
  8419.                        <a
  8420.                          href="/collections/stands"
  8421.                          class="m-link m-link--text focus-inset"
  8422.                          
  8423.                        >
  8424.                          Stands
  8425.                        </a>
  8426.                      </li><li class="m-header__menu-item m-list-menu__item">
  8427.                        <a
  8428.                          href="/collections/plant-pots"
  8429.                          class="m-link m-link--text focus-inset"
  8430.                          
  8431.                        >
  8432.                          Plant Pots
  8433.                        </a>
  8434.                      </li><li class="m-header__menu-item m-list-menu__item">
  8435.                        <a
  8436.                          href="/collections/trellises"
  8437.                          class="m-link m-link--text focus-inset"
  8438.                          
  8439.                        >
  8440.                          Trellises
  8441.                        </a>
  8442.                      </li></ul>
  8443.                </li><li class="m-header__menu-item m-list-menu__item">
  8444.                  <a
  8445.                    href="/collections/watering-irrigation"
  8446.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8447.                    
  8448.                  >
  8449.                    <span>Watering &amp; Irrigation</span>
  8450.                    <span class="m-header__menu-item--icon">
  8451.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8452.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8453.                      </svg>
  8454.                    </span>
  8455.                  </a>
  8456.                  <ul
  8457.                    class="m-header__submenu m-header__submenu-level3"
  8458.                  ><li class="m-header__menu-item m-list-menu__item">
  8459.                        <a
  8460.                          href="/collections/hose-reel"
  8461.                          class="m-link m-link--text focus-inset"
  8462.                          
  8463.                        >
  8464.                          Hose Reel
  8465.                        </a>
  8466.                      </li></ul>
  8467.                </li><li class="m-header__menu-item m-list-menu__item">
  8468.                  <a
  8469.                    href="/collections/outdoor-power-equipment"
  8470.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8471.                    
  8472.                  >
  8473.                    <span>Outdoor Power Equipment</span>
  8474.                    <span class="m-header__menu-item--icon">
  8475.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8476.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8477.                      </svg>
  8478.                    </span>
  8479.                  </a>
  8480.                  <ul
  8481.                    class="m-header__submenu m-header__submenu-level3"
  8482.                  ><li class="m-header__menu-item m-list-menu__item">
  8483.                        <a
  8484.                          href="/collections/pressure-washers"
  8485.                          class="m-link m-link--text focus-inset"
  8486.                          
  8487.                        >
  8488.                          Pressure Washers
  8489.                        </a>
  8490.                      </li><li class="m-header__menu-item m-list-menu__item">
  8491.                        <a
  8492.                          href="/collections/lawn-mowers-tractors"
  8493.                          class="m-link m-link--text focus-inset"
  8494.                          
  8495.                        >
  8496.                          Lawn Mowers &amp; Tractors
  8497.                        </a>
  8498.                      </li></ul>
  8499.                </li><li class="m-header__menu-item m-list-menu__item">
  8500.                  <a
  8501.                    href="/collections/outdoor-hand-tools"
  8502.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8503.                    
  8504.                  >
  8505.                    <span>Outdoor Hand Tools</span>
  8506.                    <span class="m-header__menu-item--icon">
  8507.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8508.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8509.                      </svg>
  8510.                    </span>
  8511.                  </a>
  8512.                  <ul
  8513.                    class="m-header__submenu m-header__submenu-level3"
  8514.                  ><li class="m-header__menu-item m-list-menu__item">
  8515.                        <a
  8516.                          href="/collections/compost-spreader"
  8517.                          class="m-link m-link--text focus-inset"
  8518.                          
  8519.                        >
  8520.                          Compost Spreader
  8521.                        </a>
  8522.                      </li></ul>
  8523.                </li></ul>
  8524.        
  8525.      </li>
  8526.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  8527.        <a
  8528.          href="/collections/air-conditioners-accessories"
  8529.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  8530.          
  8531.        >
  8532.          <div class="m-link--content m:display-flex m:items-center">
  8533.            <span
  8534.            >Air Conditioners </span><span class="m-header__menu-item--icon">
  8535.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  8536.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8537.              </svg>
  8538.            </span>
  8539.            
  8540.          </div>
  8541.        </a><ul
  8542.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  8543.            role="list"
  8544.            tabindex="-1"
  8545.          ><li class="m-header__menu-item m-list-menu__item">
  8546.                  <a
  8547.                    href="/collections/mini-split-air-conditioners"
  8548.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8549.                    
  8550.                  >
  8551.                    <span>Mini Split Air Conditioners</span>
  8552.                    <span class="m-header__menu-item--icon">
  8553.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8554.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8555.                      </svg>
  8556.                    </span>
  8557.                  </a>
  8558.                  <ul
  8559.                    class="m-header__submenu m-header__submenu-level3"
  8560.                  ><li class="m-header__menu-item m-list-menu__item">
  8561.                        <a
  8562.                          href="/collections/inverter"
  8563.                          class="m-link m-link--text focus-inset"
  8564.                          
  8565.                        >
  8566.                          Inverter
  8567.                        </a>
  8568.                      </li></ul>
  8569.                </li><li class="m-header__menu-item m-list-menu__item">
  8570.                  <a
  8571.                    href="/collections/window-air-conditioner"
  8572.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8573.                    
  8574.                  >
  8575.                    <span>Windows Air Conditioners</span>
  8576.                    <span class="m-header__menu-item--icon">
  8577.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8578.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8579.                      </svg>
  8580.                    </span>
  8581.                  </a>
  8582.                  <ul
  8583.                    class="m-header__submenu m-header__submenu-level3"
  8584.                  ><li class="m-header__menu-item m-list-menu__item">
  8585.                        <a
  8586.                          href="/collections/fixed-frequency"
  8587.                          class="m-link m-link--text focus-inset"
  8588.                          
  8589.                        >
  8590.                          Fixed frequency
  8591.                        </a>
  8592.                      </li><li class="m-header__menu-item m-list-menu__item">
  8593.                        <a
  8594.                          href="/collections/inverter"
  8595.                          class="m-link m-link--text focus-inset"
  8596.                          
  8597.                        >
  8598.                          Inverter
  8599.                        </a>
  8600.                      </li></ul>
  8601.                </li><li class="m-header__menu-item m-list-menu__item">
  8602.                  <a
  8603.                    href="/collections/portable-air-conditioners"
  8604.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8605.                    
  8606.                  >
  8607.                    <span>Portable Air Conditioner</span>
  8608.                    <span class="m-header__menu-item--icon">
  8609.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8610.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8611.                      </svg>
  8612.                    </span>
  8613.                  </a>
  8614.                  <ul
  8615.                    class="m-header__submenu m-header__submenu-level3"
  8616.                  ><li class="m-header__menu-item m-list-menu__item">
  8617.                        <a
  8618.                          href="/collections/fixed-frequency"
  8619.                          class="m-link m-link--text focus-inset"
  8620.                          
  8621.                        >
  8622.                          Fixed frequency
  8623.                        </a>
  8624.                      </li><li class="m-header__menu-item m-list-menu__item">
  8625.                        <a
  8626.                          href="/collections/inverter"
  8627.                          class="m-link m-link--text focus-inset"
  8628.                          
  8629.                        >
  8630.                          Inverter
  8631.                        </a>
  8632.                      </li></ul>
  8633.                </li></ul>
  8634.        
  8635.      </li>
  8636.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  8637.        <a
  8638.          href="/collections/restaurant-food-service"
  8639.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  8640.          
  8641.        >
  8642.          <div class="m-link--content m:display-flex m:items-center">
  8643.            <span
  8644.            >Restaurant &amp; Food Service</span><span class="m-header__menu-item--icon">
  8645.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  8646.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8647.              </svg>
  8648.            </span>
  8649.            
  8650.          </div>
  8651.        </a><ul
  8652.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  8653.            role="list"
  8654.            tabindex="-1"
  8655.          ><li class="m-header__menu-item m-list-menu__item">
  8656.                  <a
  8657.                    href="/collections/refrigeration-ice-equipment"
  8658.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8659.                    
  8660.                  >
  8661.                    <span>Refrigeration &amp; Ice Equipment</span>
  8662.                    <span class="m-header__menu-item--icon">
  8663.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8664.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8665.                      </svg>
  8666.                    </span>
  8667.                  </a>
  8668.                  <ul
  8669.                    class="m-header__submenu m-header__submenu-level3"
  8670.                  ><li class="m-header__menu-item m-list-menu__item">
  8671.                        <a
  8672.                          href="/collections/ice-machines"
  8673.                          class="m-link m-link--text focus-inset"
  8674.                          
  8675.                        >
  8676.                          Ice Machines
  8677.                        </a>
  8678.                      </li><li class="m-header__menu-item m-list-menu__item">
  8679.                        <a
  8680.                          href="/collections/beverage-refrigerator"
  8681.                          class="m-link m-link--text focus-inset"
  8682.                          
  8683.                        >
  8684.                          Beverage Refrigerator
  8685.                        </a>
  8686.                      </li><li class="m-header__menu-item m-list-menu__item">
  8687.                        <a
  8688.                          href="/collections/merchandising-refrigerators"
  8689.                          class="m-link m-link--text focus-inset"
  8690.                          
  8691.                        >
  8692.                          Merchandising Refrigerators
  8693.                        </a>
  8694.                      </li><li class="m-header__menu-item m-list-menu__item">
  8695.                        <a
  8696.                          href="/collections/car-refrigerator"
  8697.                          class="m-link m-link--text focus-inset"
  8698.                          
  8699.                        >
  8700.                          Car Refrigerator
  8701.                        </a>
  8702.                      </li><li class="m-header__menu-item m-list-menu__item">
  8703.                        <a
  8704.                          href="/collections/reach-in-refrigerators-and-freezers"
  8705.                          class="m-link m-link--text focus-inset"
  8706.                          
  8707.                        >
  8708.                          Reach-In Refrigerators and Freezers
  8709.                        </a>
  8710.                      </li><li class="m-header__menu-item m-list-menu__item">
  8711.                        <a
  8712.                          href="/collections/soft-serve-ice-cream-machines"
  8713.                          class="m-link m-link--text focus-inset"
  8714.                          
  8715.                        >
  8716.                          Soft Serve Ice Cream Machines
  8717.                        </a>
  8718.                      </li><li class="m-header__menu-item m-list-menu__item">
  8719.                        <a
  8720.                          href="/collections/refrigerators"
  8721.                          class="m-link m-link--text focus-inset"
  8722.                          
  8723.                        >
  8724.                          Refrigerators
  8725.                        </a>
  8726.                      </li><li class="m-header__menu-item m-list-menu__item">
  8727.                        <a
  8728.                          href="/collections/refrigerated-condiment-holder"
  8729.                          class="m-link m-link--text focus-inset"
  8730.                          
  8731.                        >
  8732.                          Refrigerated Condiment Holder
  8733.                        </a>
  8734.                      </li></ul>
  8735.                </li><li class="m-header__menu-item m-list-menu__item">
  8736.                  <a
  8737.                    href="/collections/restaurant-furniture"
  8738.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8739.                    
  8740.                  >
  8741.                    <span>Restaurant Furniture</span>
  8742.                    <span class="m-header__menu-item--icon">
  8743.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8744.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8745.                      </svg>
  8746.                    </span>
  8747.                  </a>
  8748.                  <ul
  8749.                    class="m-header__submenu m-header__submenu-level3"
  8750.                  ><li class="m-header__menu-item m-list-menu__item">
  8751.                        <a
  8752.                          href="/collections/stainless-steel-work-table-1"
  8753.                          class="m-link m-link--text focus-inset"
  8754.                          
  8755.                        >
  8756.                          Stainless Steel Work Table
  8757.                        </a>
  8758.                      </li><li class="m-header__menu-item m-list-menu__item">
  8759.                        <a
  8760.                          href="/collections/bar-cabinet"
  8761.                          class="m-link m-link--text focus-inset"
  8762.                          
  8763.                        >
  8764.                          Bar Cabinet
  8765.                        </a>
  8766.                      </li><li class="m-header__menu-item m-list-menu__item">
  8767.                        <a
  8768.                          href="/collections/bar-cart"
  8769.                          class="m-link m-link--text focus-inset"
  8770.                          
  8771.                        >
  8772.                          Bar cart
  8773.                        </a>
  8774.                      </li><li class="m-header__menu-item m-list-menu__item">
  8775.                        <a
  8776.                          href="/collections/bar-table-set"
  8777.                          class="m-link m-link--text focus-inset"
  8778.                          
  8779.                        >
  8780.                          Bar Table Set
  8781.                        </a>
  8782.                      </li><li class="m-header__menu-item m-list-menu__item">
  8783.                        <a
  8784.                          href="/collections/outdoor-kitchen-drawer"
  8785.                          class="m-link m-link--text focus-inset"
  8786.                          
  8787.                        >
  8788.                          Outdoor Kitchen Drawer
  8789.                        </a>
  8790.                      </li><li class="m-header__menu-item m-list-menu__item">
  8791.                        <a
  8792.                          href="/collections/wine-rack-table"
  8793.                          class="m-link m-link--text focus-inset"
  8794.                          
  8795.                        >
  8796.                          Wine Rack Table
  8797.                        </a>
  8798.                      </li><li class="m-header__menu-item m-list-menu__item">
  8799.                        <a
  8800.                          href="/collections/outdoor-kitchen-door"
  8801.                          class="m-link m-link--text focus-inset"
  8802.                          
  8803.                        >
  8804.                          Outdoor Kitchen Door
  8805.                        </a>
  8806.                      </li><li class="m-header__menu-item m-list-menu__item">
  8807.                        <a
  8808.                          href="/collections/cutting-boards"
  8809.                          class="m-link m-link--text focus-inset"
  8810.                          
  8811.                        >
  8812.                          Cutting Boards
  8813.                        </a>
  8814.                      </li><li class="m-header__menu-item m-list-menu__item">
  8815.                        <a
  8816.                          href="/collections/activity-tables"
  8817.                          class="m-link m-link--text focus-inset"
  8818.                          
  8819.                        >
  8820.                          Activity Tables
  8821.                        </a>
  8822.                      </li></ul>
  8823.                </li><li class="m-header__menu-item m-list-menu__item">
  8824.                  <a
  8825.                    href="/collections/restaurant-faucets-plumbing-sinks"
  8826.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8827.                    
  8828.                  >
  8829.                    <span>Restaurant Faucets &amp; Plumbing &amp; Sinks</span>
  8830.                    <span class="m-header__menu-item--icon">
  8831.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8832.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8833.                      </svg>
  8834.                    </span>
  8835.                  </a>
  8836.                  <ul
  8837.                    class="m-header__submenu m-header__submenu-level3"
  8838.                  ><li class="m-header__menu-item m-list-menu__item">
  8839.                        <a
  8840.                          href="/collections/commercial-sinks"
  8841.                          class="m-link m-link--text focus-inset"
  8842.                          
  8843.                        >
  8844.                          Commercial Sinks
  8845.                        </a>
  8846.                      </li><li class="m-header__menu-item m-list-menu__item">
  8847.                        <a
  8848.                          href="/collections/kitchen-fixtures"
  8849.                          class="m-link m-link--text focus-inset"
  8850.                          
  8851.                        >
  8852.                          Kitchen Fixtures
  8853.                        </a>
  8854.                      </li><li class="m-header__menu-item m-list-menu__item">
  8855.                        <a
  8856.                          href="/collections/water-filters"
  8857.                          class="m-link m-link--text focus-inset"
  8858.                          
  8859.                        >
  8860.                          Water Filters
  8861.                        </a>
  8862.                      </li><li class="m-header__menu-item m-list-menu__item">
  8863.                        <a
  8864.                          href="/collections/stainless-steel-backsplash"
  8865.                          class="m-link m-link--text focus-inset"
  8866.                          
  8867.                        >
  8868.                          Stainless Steel Backsplash
  8869.                        </a>
  8870.                      </li></ul>
  8871.                </li><li class="m-header__menu-item m-list-menu__item">
  8872.                  <a
  8873.                    href="/collections/cooking-equipment"
  8874.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8875.                    
  8876.                  >
  8877.                    <span>Cooking Equipment</span>
  8878.                    <span class="m-header__menu-item--icon">
  8879.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8880.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8881.                      </svg>
  8882.                    </span>
  8883.                  </a>
  8884.                  <ul
  8885.                    class="m-header__submenu m-header__submenu-level3"
  8886.                  ><li class="m-header__menu-item m-list-menu__item">
  8887.                        <a
  8888.                          href="/collections/range-hood"
  8889.                          class="m-link m-link--text focus-inset"
  8890.                          
  8891.                        >
  8892.                          Range Hood
  8893.                        </a>
  8894.                      </li><li class="m-header__menu-item m-list-menu__item">
  8895.                        <a
  8896.                          href="/collections/commercial-pizza-oven"
  8897.                          class="m-link m-link--text focus-inset"
  8898.                          
  8899.                        >
  8900.                          Commercial Pizza Oven
  8901.                        </a>
  8902.                      </li><li class="m-header__menu-item m-list-menu__item">
  8903.                        <a
  8904.                          href="/collections/commercial-convection-oven"
  8905.                          class="m-link m-link--text focus-inset"
  8906.                          
  8907.                        >
  8908.                          Commercial Convection Oven
  8909.                        </a>
  8910.                      </li><li class="m-header__menu-item m-list-menu__item">
  8911.                        <a
  8912.                          href="/collections/fryer-oil-filtration-equipment"
  8913.                          class="m-link m-link--text focus-inset"
  8914.                          
  8915.                        >
  8916.                          Fryer Oil Filtration Equipment
  8917.                        </a>
  8918.                      </li><li class="m-header__menu-item m-list-menu__item">
  8919.                        <a
  8920.                          href="/collections/flat-top-griddle"
  8921.                          class="m-link m-link--text focus-inset"
  8922.                          
  8923.                        >
  8924.                          Flat Top Griddle
  8925.                        </a>
  8926.                      </li><li class="m-header__menu-item m-list-menu__item">
  8927.                        <a
  8928.                          href="/collections/commercial-deep-fryers"
  8929.                          class="m-link m-link--text focus-inset"
  8930.                          
  8931.                        >
  8932.                          Commercial Deep Fryers
  8933.                        </a>
  8934.                      </li><li class="m-header__menu-item m-list-menu__item">
  8935.                        <a
  8936.                          href="/collections/commercial-waffle-makers"
  8937.                          class="m-link m-link--text focus-inset"
  8938.                          
  8939.                        >
  8940.                          Commercial Waffle Makers
  8941.                        </a>
  8942.                      </li><li class="m-header__menu-item m-list-menu__item">
  8943.                        <a
  8944.                          href="/collections/grill-carts"
  8945.                          class="m-link m-link--text focus-inset"
  8946.                          
  8947.                        >
  8948.                          Grill Carts
  8949.                        </a>
  8950.                      </li><li class="m-header__menu-item m-list-menu__item">
  8951.                        <a
  8952.                          href="/collections/commercial-outdoor-grills"
  8953.                          class="m-link m-link--text focus-inset"
  8954.                          
  8955.                        >
  8956.                          Commercial Outdoor Grills
  8957.                        </a>
  8958.                      </li><li class="m-header__menu-item m-list-menu__item">
  8959.                        <a
  8960.                          href="/collections/air-fryers"
  8961.                          class="m-link m-link--text focus-inset"
  8962.                          
  8963.                        >
  8964.                          Air Fryers
  8965.                        </a>
  8966.                      </li><li class="m-header__menu-item m-list-menu__item">
  8967.                        <a
  8968.                          href="/collections/kitchen-fixtures"
  8969.                          class="m-link m-link--text focus-inset"
  8970.                          
  8971.                        >
  8972.                          Kitchen Fixtures
  8973.                        </a>
  8974.                      </li><li class="m-header__menu-item m-list-menu__item">
  8975.                        <a
  8976.                          href="/collections/electric-hot-pot-grill"
  8977.                          class="m-link m-link--text focus-inset"
  8978.                          
  8979.                        >
  8980.                          Electric Hot Pot Grill
  8981.                        </a>
  8982.                      </li></ul>
  8983.                </li><li class="m-header__menu-item m-list-menu__item">
  8984.                  <a
  8985.                    href="/collections/beverage-equipment"
  8986.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  8987.                    
  8988.                  >
  8989.                    <span>Beverage Equipment</span>
  8990.                    <span class="m-header__menu-item--icon">
  8991.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  8992.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  8993.                      </svg>
  8994.                    </span>
  8995.                  </a>
  8996.                  <ul
  8997.                    class="m-header__submenu m-header__submenu-level3"
  8998.                  ><li class="m-header__menu-item m-list-menu__item">
  8999.                        <a
  9000.                          href="/collections/refrigerated-beverage-dispensers"
  9001.                          class="m-link m-link--text focus-inset"
  9002.                          
  9003.                        >
  9004.                          Refrigerated Beverage Dispensers
  9005.                        </a>
  9006.                      </li><li class="m-header__menu-item m-list-menu__item">
  9007.                        <a
  9008.                          href="/collections/coffee-urn"
  9009.                          class="m-link m-link--text focus-inset"
  9010.                          
  9011.                        >
  9012.                          Coffee Urn
  9013.                        </a>
  9014.                      </li><li class="m-header__menu-item m-list-menu__item">
  9015.                        <a
  9016.                          href="/collections/fruit-wine-press"
  9017.                          class="m-link m-link--text focus-inset"
  9018.                          
  9019.                        >
  9020.                          Fruit Wine Press
  9021.                        </a>
  9022.                      </li><li class="m-header__menu-item m-list-menu__item">
  9023.                        <a
  9024.                          href="/collections/coffee-makers"
  9025.                          class="m-link m-link--text focus-inset"
  9026.                          
  9027.                        >
  9028.                          Coffee Makers
  9029.                        </a>
  9030.                      </li><li class="m-header__menu-item m-list-menu__item">
  9031.                        <a
  9032.                          href="/collections/commercial-juicers"
  9033.                          class="m-link m-link--text focus-inset"
  9034.                          
  9035.                        >
  9036.                          Commercial Juicers
  9037.                        </a>
  9038.                      </li><li class="m-header__menu-item m-list-menu__item">
  9039.                        <a
  9040.                          href="/collections/beer-kegerator"
  9041.                          class="m-link m-link--text focus-inset"
  9042.                          
  9043.                        >
  9044.                          Beer Kegerator
  9045.                        </a>
  9046.                      </li><li class="m-header__menu-item m-list-menu__item">
  9047.                        <a
  9048.                          href="/collections/electric-milkshake-maker"
  9049.                          class="m-link m-link--text focus-inset"
  9050.                          
  9051.                        >
  9052.                          Electric Milkshake Maker
  9053.                        </a>
  9054.                      </li></ul>
  9055.                </li><li class="m-header__menu-item m-list-menu__item">
  9056.                  <a
  9057.                    href="/collections/food-holding-warming-equipment"
  9058.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  9059.                    
  9060.                  >
  9061.                    <span>Food Holding &amp; Warming Equipment</span>
  9062.                    <span class="m-header__menu-item--icon">
  9063.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  9064.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9065.                      </svg>
  9066.                    </span>
  9067.                  </a>
  9068.                  <ul
  9069.                    class="m-header__submenu m-header__submenu-level3"
  9070.                  ><li class="m-header__menu-item m-list-menu__item">
  9071.                        <a
  9072.                          href="/collections/chafing-dishes-accessories"
  9073.                          class="m-link m-link--text focus-inset"
  9074.                          
  9075.                        >
  9076.                          Chafing Dishes &amp; Accessories
  9077.                        </a>
  9078.                      </li><li class="m-header__menu-item m-list-menu__item">
  9079.                        <a
  9080.                          href="/collections/steam-table-food-warmer"
  9081.                          class="m-link m-link--text focus-inset"
  9082.                          
  9083.                        >
  9084.                          Steam Table Food Warmer
  9085.                        </a>
  9086.                      </li><li class="m-header__menu-item m-list-menu__item">
  9087.                        <a
  9088.                          href="/collections/holding-proofing-cabinets"
  9089.                          class="m-link m-link--text focus-inset"
  9090.                          
  9091.                        >
  9092.                          Holding &amp; Proofing Cabinets
  9093.                        </a>
  9094.                      </li><li class="m-header__menu-item m-list-menu__item">
  9095.                        <a
  9096.                          href="/collections/stock-pots"
  9097.                          class="m-link m-link--text focus-inset"
  9098.                          
  9099.                        >
  9100.                          Stock Pots
  9101.                        </a>
  9102.                      </li><li class="m-header__menu-item m-list-menu__item">
  9103.                        <a
  9104.                          href="/collections/french-fry-warmer"
  9105.                          class="m-link m-link--text focus-inset"
  9106.                          
  9107.                        >
  9108.                          French Fry Warmer
  9109.                        </a>
  9110.                      </li></ul>
  9111.                </li><li class="m-header__menu-item m-list-menu__item">
  9112.                  <a
  9113.                    href="/collections/food-preparation-equipment-1"
  9114.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  9115.                    
  9116.                  >
  9117.                    <span>Food Preparation Equipment</span>
  9118.                    <span class="m-header__menu-item--icon">
  9119.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  9120.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9121.                      </svg>
  9122.                    </span>
  9123.                  </a>
  9124.                  <ul
  9125.                    class="m-header__submenu m-header__submenu-level3"
  9126.                  ><li class="m-header__menu-item m-list-menu__item">
  9127.                        <a
  9128.                          href="/collections/cutters-slicers"
  9129.                          class="m-link m-link--text focus-inset"
  9130.                          
  9131.                        >
  9132.                          Cutters &amp; Slicers
  9133.                        </a>
  9134.                      </li><li class="m-header__menu-item m-list-menu__item">
  9135.                        <a
  9136.                          href="/collections/commercial-mixers"
  9137.                          class="m-link m-link--text focus-inset"
  9138.                          
  9139.                        >
  9140.                          Commercial Mixers
  9141.                        </a>
  9142.                      </li><li class="m-header__menu-item m-list-menu__item">
  9143.                        <a
  9144.                          href="/collections/bone-saw-machine"
  9145.                          class="m-link m-link--text focus-inset"
  9146.                          
  9147.                        >
  9148.                          Bone Saw Machine
  9149.                        </a>
  9150.                      </li><li class="m-header__menu-item m-list-menu__item">
  9151.                        <a
  9152.                          href="/collections/dough-sheeters-rounders-dividers"
  9153.                          class="m-link m-link--text focus-inset"
  9154.                          
  9155.                        >
  9156.                          Dough Sheeters &amp; Rounders &amp; Dividers
  9157.                        </a>
  9158.                      </li><li class="m-header__menu-item m-list-menu__item">
  9159.                        <a
  9160.                          href="/collections/commercial-can-openers"
  9161.                          class="m-link m-link--text focus-inset"
  9162.                          
  9163.                        >
  9164.                          Commercial Can Openers
  9165.                        </a>
  9166.                      </li><li class="m-header__menu-item m-list-menu__item">
  9167.                        <a
  9168.                          href="/collections/meat-choppers-meat-grinders"
  9169.                          class="m-link m-link--text focus-inset"
  9170.                          
  9171.                        >
  9172.                          Meat Choppers &amp; Meat Grinders
  9173.                        </a>
  9174.                      </li><li class="m-header__menu-item m-list-menu__item">
  9175.                        <a
  9176.                          href="/collections/commercial-sausage-stuffers-jerky-shooters"
  9177.                          class="m-link m-link--text focus-inset"
  9178.                          
  9179.                        >
  9180.                          Commercial Sausage Stuffers &amp; Jerky Shooters
  9181.                        </a>
  9182.                      </li><li class="m-header__menu-item m-list-menu__item">
  9183.                        <a
  9184.                          href="/collections/bar-cart"
  9185.                          class="m-link m-link--text focus-inset"
  9186.                          
  9187.                        >
  9188.                          Bar cart
  9189.                        </a>
  9190.                      </li></ul>
  9191.                </li><li class="m-header__menu-item m-list-menu__item">
  9192.                  <a
  9193.                    href="/collections/storage-organization-1"
  9194.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  9195.                    
  9196.                  >
  9197.                    <span>Storage &amp; Organization</span>
  9198.                    <span class="m-header__menu-item--icon">
  9199.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  9200.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9201.                      </svg>
  9202.                    </span>
  9203.                  </a>
  9204.                  <ul
  9205.                    class="m-header__submenu m-header__submenu-level3"
  9206.                  ><li class="m-header__menu-item m-list-menu__item">
  9207.                        <a
  9208.                          href="/collections/food-pan-carrier"
  9209.                          class="m-link m-link--text focus-inset"
  9210.                          
  9211.                        >
  9212.                          Food Pan Carrier
  9213.                        </a>
  9214.                      </li><li class="m-header__menu-item m-list-menu__item">
  9215.                        <a
  9216.                          href="/collections/drawers-cabinet-organizers"
  9217.                          class="m-link m-link--text focus-inset"
  9218.                          
  9219.                        >
  9220.                          Drawers &amp; Cabinet Organizers
  9221.                        </a>
  9222.                      </li><li class="m-header__menu-item m-list-menu__item">
  9223.                        <a
  9224.                          href="/collections/wine-racks"
  9225.                          class="m-link m-link--text focus-inset"
  9226.                          
  9227.                        >
  9228.                          Wine Racks
  9229.                        </a>
  9230.                      </li><li class="m-header__menu-item m-list-menu__item">
  9231.                        <a
  9232.                          href="/collections/countertop-dishwashers"
  9233.                          class="m-link m-link--text focus-inset"
  9234.                          
  9235.                        >
  9236.                          Countertop Dishwashers
  9237.                        </a>
  9238.                      </li><li class="m-header__menu-item m-list-menu__item">
  9239.                        <a
  9240.                          href="/collections/wall-shelf"
  9241.                          class="m-link m-link--text focus-inset"
  9242.                          
  9243.                        >
  9244.                          Wall Shelf
  9245.                        </a>
  9246.                      </li></ul>
  9247.                </li><li class="m-header__menu-item m-list-menu__item">
  9248.                  <a
  9249.                    href="/collections/food-display-merchandising-equipment"
  9250.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  9251.                    
  9252.                  >
  9253.                    <span>Food Display &amp; Merchandising Equipment</span>
  9254.                    <span class="m-header__menu-item--icon">
  9255.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  9256.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9257.                      </svg>
  9258.                    </span>
  9259.                  </a>
  9260.                  <ul
  9261.                    class="m-header__submenu m-header__submenu-level3"
  9262.                  ><li class="m-header__menu-item m-list-menu__item">
  9263.                        <a
  9264.                          href="/collections/popcorn-poppers"
  9265.                          class="m-link m-link--text focus-inset"
  9266.                          
  9267.                        >
  9268.                          Popcorn Poppers
  9269.                        </a>
  9270.                      </li><li class="m-header__menu-item m-list-menu__item">
  9271.                        <a
  9272.                          href="/collections/cotton-candy-machines"
  9273.                          class="m-link m-link--text focus-inset"
  9274.                          
  9275.                        >
  9276.                          Cotton Candy Machines
  9277.                        </a>
  9278.                      </li><li class="m-header__menu-item m-list-menu__item">
  9279.                        <a
  9280.                          href="/collections/commercial-hot-dog-roller"
  9281.                          class="m-link m-link--text focus-inset"
  9282.                          
  9283.                        >
  9284.                          Commercial Hot Dog Roller
  9285.                        </a>
  9286.                      </li><li class="m-header__menu-item m-list-menu__item">
  9287.                        <a
  9288.                          href="/collections/liquor-bottle-display"
  9289.                          class="m-link m-link--text focus-inset"
  9290.                          
  9291.                        >
  9292.                          Liquor Bottle Display
  9293.                        </a>
  9294.                      </li></ul>
  9295.                </li></ul>
  9296.        
  9297.      </li>
  9298.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  9299.        <a
  9300.          href="/collections/agriculture-forestry-equipment"
  9301.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  9302.          
  9303.        >
  9304.          <div class="m-link--content m:display-flex m:items-center">
  9305.            <span
  9306.            >Agriculture &amp; Forestry Equipment</span><span class="m-header__menu-item--icon">
  9307.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  9308.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9309.              </svg>
  9310.            </span>
  9311.            
  9312.          </div>
  9313.        </a><ul
  9314.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  9315.            role="list"
  9316.            tabindex="-1"
  9317.          ><li class="m-header__menu-item m-list-menu__item">
  9318.                  <a
  9319.                    href="/collections/equipment-parts-accessories"
  9320.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  9321.                    
  9322.                  >
  9323.                    <span>Equipment Parts &amp; Accessories</span>
  9324.                    <span class="m-header__menu-item--icon">
  9325.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  9326.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9327.                      </svg>
  9328.                    </span>
  9329.                  </a>
  9330.                  <ul
  9331.                    class="m-header__submenu m-header__submenu-level3"
  9332.                  ><li class="m-header__menu-item m-list-menu__item">
  9333.                        <a
  9334.                          href="/collections/driveway-drag"
  9335.                          class="m-link m-link--text focus-inset"
  9336.                          
  9337.                        >
  9338.                          Driveway Drag
  9339.                        </a>
  9340.                      </li><li class="m-header__menu-item m-list-menu__item">
  9341.                        <a
  9342.                          href="/collections/drag-chain-harrow"
  9343.                          class="m-link m-link--text focus-inset"
  9344.                          
  9345.                        >
  9346.                          Drag Chain Harrow
  9347.                        </a>
  9348.                      </li><li class="m-header__menu-item m-list-menu__item">
  9349.                        <a
  9350.                          href="/collections/trailer-hitch"
  9351.                          class="m-link m-link--text focus-inset"
  9352.                          
  9353.                        >
  9354.                          Trailer Hitch
  9355.                        </a>
  9356.                      </li><li class="m-header__menu-item m-list-menu__item">
  9357.                        <a
  9358.                          href="/collections/hay-spear"
  9359.                          class="m-link m-link--text focus-inset"
  9360.                          
  9361.                        >
  9362.                          Hay Spear
  9363.                        </a>
  9364.                      </li><li class="m-header__menu-item m-list-menu__item">
  9365.                        <a
  9366.                          href="/collections/cant-hook"
  9367.                          class="m-link m-link--text focus-inset"
  9368.                          
  9369.                        >
  9370.                          Cant Hook
  9371.                        </a>
  9372.                      </li><li class="m-header__menu-item m-list-menu__item">
  9373.                        <a
  9374.                          href="/collections/rakes"
  9375.                          class="m-link m-link--text focus-inset"
  9376.                          
  9377.                        >
  9378.                          Rakes
  9379.                        </a>
  9380.                      </li><li class="m-header__menu-item m-list-menu__item">
  9381.                        <a
  9382.                          href="/collections/scarifier-shank"
  9383.                          class="m-link m-link--text focus-inset"
  9384.                          
  9385.                        >
  9386.                          Scarifier Shank
  9387.                        </a>
  9388.                      </li><li class="m-header__menu-item m-list-menu__item">
  9389.                        <a
  9390.                          href="/collections/pallet-forks"
  9391.                          class="m-link m-link--text focus-inset"
  9392.                          
  9393.                        >
  9394.                          Pallet Forks
  9395.                        </a>
  9396.                      </li><li class="m-header__menu-item m-list-menu__item">
  9397.                        <a
  9398.                          href="/collections/bucket-cutting-edge"
  9399.                          class="m-link m-link--text focus-inset"
  9400.                          
  9401.                        >
  9402.                          Bucket Cutting Edge
  9403.                        </a>
  9404.                      </li><li class="m-header__menu-item m-list-menu__item">
  9405.                        <a
  9406.                          href="/collections/tractor-bucket-protector"
  9407.                          class="m-link m-link--text focus-inset"
  9408.                          
  9409.                        >
  9410.                          Tractor Bucket Protector
  9411.                        </a>
  9412.                      </li><li class="m-header__menu-item m-list-menu__item">
  9413.                        <a
  9414.                          href="/collections/disc-harrows"
  9415.                          class="m-link m-link--text focus-inset"
  9416.                          
  9417.                        >
  9418.                          Disc Harrows
  9419.                        </a>
  9420.                      </li><li class="m-header__menu-item m-list-menu__item">
  9421.                        <a
  9422.                          href="/collections/chainsaw-mill"
  9423.                          class="m-link m-link--text focus-inset"
  9424.                          
  9425.                        >
  9426.                          Chainsaw Mill
  9427.                        </a>
  9428.                      </li><li class="m-header__menu-item m-list-menu__item">
  9429.                        <a
  9430.                          href="/collections/log-tongs"
  9431.                          class="m-link m-link--text focus-inset"
  9432.                          
  9433.                        >
  9434.                          Log Tongs
  9435.                        </a>
  9436.                      </li></ul>
  9437.                </li><li class="m-header__menu-item m-list-menu__item">
  9438.                  <a
  9439.                    href="/collections/livestock-poultry-supplies"
  9440.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  9441.                    
  9442.                  >
  9443.                    <span>Livestock &amp; Poultry Supplies</span>
  9444.                    <span class="m-header__menu-item--icon">
  9445.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  9446.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9447.                      </svg>
  9448.                    </span>
  9449.                  </a>
  9450.                  <ul
  9451.                    class="m-header__submenu m-header__submenu-level3"
  9452.                  ><li class="m-header__menu-item m-list-menu__item">
  9453.                        <a
  9454.                          href="/collections/automatic-poultry-feeder"
  9455.                          class="m-link m-link--text focus-inset"
  9456.                          
  9457.                        >
  9458.                          Automatic Poultry Feeder
  9459.                        </a>
  9460.                      </li><li class="m-header__menu-item m-list-menu__item">
  9461.                        <a
  9462.                          href="/collections/chicken-coop"
  9463.                          class="m-link m-link--text focus-inset"
  9464.                          
  9465.                        >
  9466.                          Chicken Coop
  9467.                        </a>
  9468.                      </li><li class="m-header__menu-item m-list-menu__item">
  9469.                        <a
  9470.                          href="/collections/egg-laying-box"
  9471.                          class="m-link m-link--text focus-inset"
  9472.                          
  9473.                        >
  9474.                          Egg Laying Box
  9475.                        </a>
  9476.                      </li><li class="m-header__menu-item m-list-menu__item">
  9477.                        <a
  9478.                          href="/collections/chicken-plucker"
  9479.                          class="m-link m-link--text focus-inset"
  9480.                          
  9481.                        >
  9482.                          Chicken Plucker
  9483.                        </a>
  9484.                      </li><li class="m-header__menu-item m-list-menu__item">
  9485.                        <a
  9486.                          href="/collections/electric-milking-machine"
  9487.                          class="m-link m-link--text focus-inset"
  9488.                          
  9489.                        >
  9490.                          Electric Milking Machine
  9491.                        </a>
  9492.                      </li></ul>
  9493.                </li></ul>
  9494.        
  9495.      </li>
  9496.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  9497.        <a
  9498.          href="/collections/automotive"
  9499.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  9500.          
  9501.        >
  9502.          <div class="m-link--content m:display-flex m:items-center">
  9503.            <span
  9504.            >Automotive</span><span class="m-header__menu-item--icon">
  9505.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  9506.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9507.              </svg>
  9508.            </span>
  9509.            
  9510.          </div>
  9511.        </a><ul
  9512.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  9513.            role="list"
  9514.            tabindex="-1"
  9515.          ><li class="m-header__menu-item m-list-menu__item">
  9516.                  <a
  9517.                    href="/collections/exterior-accessories"
  9518.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  9519.                    
  9520.                  >
  9521.                    <span>Exterior Accessories</span>
  9522.                    <span class="m-header__menu-item--icon">
  9523.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  9524.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9525.                      </svg>
  9526.                    </span>
  9527.                  </a>
  9528.                  <ul
  9529.                    class="m-header__submenu m-header__submenu-level3"
  9530.                  ><li class="m-header__menu-item m-list-menu__item">
  9531.                        <a
  9532.                          href="/collections/running-boards"
  9533.                          class="m-link m-link--text focus-inset"
  9534.                          
  9535.                        >
  9536.                          Running Boards
  9537.                        </a>
  9538.                      </li><li class="m-header__menu-item m-list-menu__item">
  9539.                        <a
  9540.                          href="/collections/brake-system"
  9541.                          class="m-link m-link--text focus-inset"
  9542.                          
  9543.                        >
  9544.                          Brake System
  9545.                        </a>
  9546.                      </li><li class="m-header__menu-item m-list-menu__item">
  9547.                        <a
  9548.                          href="/collections/jeep-door"
  9549.                          class="m-link m-link--text focus-inset"
  9550.                          
  9551.                        >
  9552.                          Jeep door
  9553.                        </a>
  9554.                      </li><li class="m-header__menu-item m-list-menu__item">
  9555.                        <a
  9556.                          href="/collections/truck-running-boards"
  9557.                          class="m-link m-link--text focus-inset"
  9558.                          
  9559.                        >
  9560.                          Truck Running Boards
  9561.                        </a>
  9562.                      </li><li class="m-header__menu-item m-list-menu__item">
  9563.                        <a
  9564.                          href="/collections/grille-brush-guards"
  9565.                          class="m-link m-link--text focus-inset"
  9566.                          
  9567.                        >
  9568.                          Grille &amp; Brush Guards
  9569.                        </a>
  9570.                      </li><li class="m-header__menu-item m-list-menu__item">
  9571.                        <a
  9572.                          href="/collections/front-bumper"
  9573.                          class="m-link m-link--text focus-inset"
  9574.                          
  9575.                        >
  9576.                          Front bumper
  9577.                        </a>
  9578.                      </li><li class="m-header__menu-item m-list-menu__item">
  9579.                        <a
  9580.                          href="/collections/fender-flares"
  9581.                          class="m-link m-link--text focus-inset"
  9582.                          
  9583.                        >
  9584.                          Fender Flares
  9585.                        </a>
  9586.                      </li><li class="m-header__menu-item m-list-menu__item">
  9587.                        <a
  9588.                          href="/collections/bumper-guards"
  9589.                          class="m-link m-link--text focus-inset"
  9590.                          
  9591.                        >
  9592.                          Bumper Guards
  9593.                        </a>
  9594.                      </li><li class="m-header__menu-item m-list-menu__item">
  9595.                        <a
  9596.                          href="/collections/fenders"
  9597.                          class="m-link m-link--text focus-inset"
  9598.                          
  9599.                        >
  9600.                          Fenders
  9601.                        </a>
  9602.                      </li><li class="m-header__menu-item m-list-menu__item">
  9603.                        <a
  9604.                          href="/collections/suspension-bracket"
  9605.                          class="m-link m-link--text focus-inset"
  9606.                          
  9607.                        >
  9608.                          suspension bracket
  9609.                        </a>
  9610.                      </li><li class="m-header__menu-item m-list-menu__item">
  9611.                        <a
  9612.                          href="/collections/reflectors"
  9613.                          class="m-link m-link--text focus-inset"
  9614.                          
  9615.                        >
  9616.                          Reflectors
  9617.                        </a>
  9618.                      </li></ul>
  9619.                </li><li class="m-header__menu-item m-list-menu__item">
  9620.                  <a
  9621.                    href="/collections/automotive-accessories"
  9622.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  9623.                    
  9624.                  >
  9625.                    <span>Automotive Accessories</span>
  9626.                    <span class="m-header__menu-item--icon">
  9627.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  9628.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9629.                      </svg>
  9630.                    </span>
  9631.                  </a>
  9632.                  <ul
  9633.                    class="m-header__submenu m-header__submenu-level3"
  9634.                  ><li class="m-header__menu-item m-list-menu__item">
  9635.                        <a
  9636.                          href="/collections/truck-tool-boxes"
  9637.                          class="m-link m-link--text focus-inset"
  9638.                          
  9639.                        >
  9640.                          Truck Tool Boxes
  9641.                        </a>
  9642.                      </li><li class="m-header__menu-item m-list-menu__item">
  9643.                        <a
  9644.                          href="/collections/replacement-parts"
  9645.                          class="m-link m-link--text focus-inset"
  9646.                          
  9647.                        >
  9648.                          Replacement Parts
  9649.                        </a>
  9650.                      </li><li class="m-header__menu-item m-list-menu__item">
  9651.                        <a
  9652.                          href="/collections/tonneau-cover"
  9653.                          class="m-link m-link--text focus-inset"
  9654.                          
  9655.                        >
  9656.                          Tonneau Cover
  9657.                        </a>
  9658.                      </li><li class="m-header__menu-item m-list-menu__item">
  9659.                        <a
  9660.                          href="/collections/brake-tools"
  9661.                          class="m-link m-link--text focus-inset"
  9662.                          
  9663.                        >
  9664.                          Brake Tools
  9665.                        </a>
  9666.                      </li><li class="m-header__menu-item m-list-menu__item">
  9667.                        <a
  9668.                          href="/collections/headlight-assembly"
  9669.                          class="m-link m-link--text focus-inset"
  9670.                          
  9671.                        >
  9672.                          Headlight Assembly
  9673.                        </a>
  9674.                      </li><li class="m-header__menu-item m-list-menu__item">
  9675.                        <a
  9676.                          href="/collections/windshield-wiper-tools"
  9677.                          class="m-link m-link--text focus-inset"
  9678.                          
  9679.                        >
  9680.                          Windshield Wiper Tools
  9681.                        </a>
  9682.                      </li><li class="m-header__menu-item m-list-menu__item">
  9683.                        <a
  9684.                          href="/collections/car-lights-lighting-accessories"
  9685.                          class="m-link m-link--text focus-inset"
  9686.                          
  9687.                        >
  9688.                          Car Lights &amp; Lighting Accessories
  9689.                        </a>
  9690.                      </li><li class="m-header__menu-item m-list-menu__item">
  9691.                        <a
  9692.                          href="/collections/interior-accessories"
  9693.                          class="m-link m-link--text focus-inset"
  9694.                          
  9695.                        >
  9696.                          Interior Accessories
  9697.                        </a>
  9698.                      </li><li class="m-header__menu-item m-list-menu__item">
  9699.                        <a
  9700.                          href="/collections/tractor-seat"
  9701.                          class="m-link m-link--text focus-inset"
  9702.                          
  9703.                        >
  9704.                          Tractor Seat
  9705.                        </a>
  9706.                      </li><li class="m-header__menu-item m-list-menu__item">
  9707.                        <a
  9708.                          href="/collections/z-creeper-seat"
  9709.                          class="m-link m-link--text focus-inset"
  9710.                          
  9711.                        >
  9712.                          Z-Creeper Seat
  9713.                        </a>
  9714.                      </li><li class="m-header__menu-item m-list-menu__item">
  9715.                        <a
  9716.                          href="/collections/engines-tools-components"
  9717.                          class="m-link m-link--text focus-inset"
  9718.                          
  9719.                        >
  9720.                          Engines Tools &amp; Components
  9721.                        </a>
  9722.                      </li><li class="m-header__menu-item m-list-menu__item">
  9723.                        <a
  9724.                          href="/collections/air-tools-accessories"
  9725.                          class="m-link m-link--text focus-inset"
  9726.                          
  9727.                        >
  9728.                          Air Tools &amp; Accessories
  9729.                        </a>
  9730.                      </li><li class="m-header__menu-item m-list-menu__item">
  9731.                        <a
  9732.                          href="/collections/truck-bed-mats"
  9733.                          class="m-link m-link--text focus-inset"
  9734.                          
  9735.                        >
  9736.                          Truck Bed Mats
  9737.                        </a>
  9738.                      </li><li class="m-header__menu-item m-list-menu__item">
  9739.                        <a
  9740.                          href="/collections/wheel-dolly"
  9741.                          class="m-link m-link--text focus-inset"
  9742.                          
  9743.                        >
  9744.                          Wheel Dolly
  9745.                        </a>
  9746.                      </li></ul>
  9747.                </li><li class="m-header__menu-item m-list-menu__item">
  9748.                  <a
  9749.                    href="/collections/tire-wheel-tools"
  9750.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  9751.                    
  9752.                  >
  9753.                    <span>Tire &amp; Wheel Tools</span>
  9754.                    <span class="m-header__menu-item--icon">
  9755.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  9756.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9757.                      </svg>
  9758.                    </span>
  9759.                  </a>
  9760.                  <ul
  9761.                    class="m-header__submenu m-header__submenu-level3"
  9762.                  ><li class="m-header__menu-item m-list-menu__item">
  9763.                        <a
  9764.                          href="/collections/go-kart-wheels"
  9765.                          class="m-link m-link--text focus-inset"
  9766.                          
  9767.                        >
  9768.                          Go Kart Wheels
  9769.                        </a>
  9770.                      </li><li class="m-header__menu-item m-list-menu__item">
  9771.                        <a
  9772.                          href="/collections/lawn-mower-tires"
  9773.                          class="m-link m-link--text focus-inset"
  9774.                          
  9775.                        >
  9776.                          Lawn Mower Tires
  9777.                        </a>
  9778.                      </li><li class="m-header__menu-item m-list-menu__item">
  9779.                        <a
  9780.                          href="/collections/trailer-tires"
  9781.                          class="m-link m-link--text focus-inset"
  9782.                          
  9783.                        >
  9784.                          Trailer Tires
  9785.                        </a>
  9786.                      </li><li class="m-header__menu-item m-list-menu__item">
  9787.                        <a
  9788.                          href="/collections/tires-wheels"
  9789.                          class="m-link m-link--text focus-inset"
  9790.                          
  9791.                        >
  9792.                          Tires &amp; Wheels
  9793.                        </a>
  9794.                      </li><li class="m-header__menu-item m-list-menu__item">
  9795.                        <a
  9796.                          href="/collections/tire-repair-tools"
  9797.                          class="m-link m-link--text focus-inset"
  9798.                          
  9799.                        >
  9800.                          Tire Repair Tools
  9801.                        </a>
  9802.                      </li><li class="m-header__menu-item m-list-menu__item">
  9803.                        <a
  9804.                          href="/collections/tire-changing-machines"
  9805.                          class="m-link m-link--text focus-inset"
  9806.                          
  9807.                        >
  9808.                          Tire Changing Machines
  9809.                        </a>
  9810.                      </li><li class="m-header__menu-item m-list-menu__item">
  9811.                        <a
  9812.                          href="/collections/wheel-adapters-spacers"
  9813.                          class="m-link m-link--text focus-inset"
  9814.                          
  9815.                        >
  9816.                          Wheel Adapters &amp; Spacers
  9817.                        </a>
  9818.                      </li><li class="m-header__menu-item m-list-menu__item">
  9819.                        <a
  9820.                          href="/collections/atv-trail-tires"
  9821.                          class="m-link m-link--text focus-inset"
  9822.                          
  9823.                        >
  9824.                          ATV Trail Tires
  9825.                        </a>
  9826.                      </li></ul>
  9827.                </li><li class="m-header__menu-item m-list-menu__item">
  9828.                  <a
  9829.                    href="/collections/steering-suspension-tool"
  9830.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  9831.                    
  9832.                  >
  9833.                    <span>Steering &amp; Suspension Tool</span>
  9834.                    <span class="m-header__menu-item--icon">
  9835.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  9836.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9837.                      </svg>
  9838.                    </span>
  9839.                  </a>
  9840.                  <ul
  9841.                    class="m-header__submenu m-header__submenu-level3"
  9842.                  ><li class="m-header__menu-item m-list-menu__item">
  9843.                        <a
  9844.                          href="/collections/shock-absorber"
  9845.                          class="m-link m-link--text focus-inset"
  9846.                          
  9847.                        >
  9848.                          Shock Absorber
  9849.                        </a>
  9850.                      </li><li class="m-header__menu-item m-list-menu__item">
  9851.                        <a
  9852.                          href="/collections/body-suspension-lift-kits"
  9853.                          class="m-link m-link--text focus-inset"
  9854.                          
  9855.                        >
  9856.                          Body &amp; Suspension Lift Kits
  9857.                        </a>
  9858.                      </li><li class="m-header__menu-item m-list-menu__item">
  9859.                        <a
  9860.                          href="/collections/towing-winches"
  9861.                          class="m-link m-link--text focus-inset"
  9862.                          
  9863.                        >
  9864.                          Towing Winches
  9865.                        </a>
  9866.                      </li></ul>
  9867.                </li><li class="m-header__menu-item m-list-menu__item">
  9868.                  <a
  9869.                    href="/collections/replacement-parts"
  9870.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  9871.                    
  9872.                  >
  9873.                    <span>Replacement Parts</span>
  9874.                    <span class="m-header__menu-item--icon">
  9875.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  9876.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9877.                      </svg>
  9878.                    </span>
  9879.                  </a>
  9880.                  <ul
  9881.                    class="m-header__submenu m-header__submenu-level3"
  9882.                  ><li class="m-header__menu-item m-list-menu__item">
  9883.                        <a
  9884.                          href="/collections/brake-pads"
  9885.                          class="m-link m-link--text focus-inset"
  9886.                          
  9887.                        >
  9888.                          Brake Pads
  9889.                        </a>
  9890.                      </li><li class="m-header__menu-item m-list-menu__item">
  9891.                        <a
  9892.                          href="/collections/control-arms"
  9893.                          class="m-link m-link--text focus-inset"
  9894.                          
  9895.                        >
  9896.                          Control Arms
  9897.                        </a>
  9898.                      </li><li class="m-header__menu-item m-list-menu__item">
  9899.                        <a
  9900.                          href="/collections/engine-parts"
  9901.                          class="m-link m-link--text focus-inset"
  9902.                          
  9903.                        >
  9904.                          Engine Parts
  9905.                        </a>
  9906.                      </li></ul>
  9907.                </li><li class="m-header__menu-item m-list-menu__item">
  9908.                  <a
  9909.                    href="/collections/fuel-transfer-lubrication"
  9910.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  9911.                    
  9912.                  >
  9913.                    <span>Fuel Transfer &amp; Lubrication</span>
  9914.                    <span class="m-header__menu-item--icon">
  9915.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  9916.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9917.                      </svg>
  9918.                    </span>
  9919.                  </a>
  9920.                  <ul
  9921.                    class="m-header__submenu m-header__submenu-level3"
  9922.                  ><li class="m-header__menu-item m-list-menu__item">
  9923.                        <a
  9924.                          href="/collections/oil-drain-pan"
  9925.                          class="m-link m-link--text focus-inset"
  9926.                          
  9927.                        >
  9928.                          Oil Drain Pan
  9929.                        </a>
  9930.                      </li><li class="m-header__menu-item m-list-menu__item">
  9931.                        <a
  9932.                          href="/collections/fuel-caddy"
  9933.                          class="m-link m-link--text focus-inset"
  9934.                          
  9935.                        >
  9936.                          Fuel Caddy
  9937.                        </a>
  9938.                      </li><li class="m-header__menu-item m-list-menu__item">
  9939.                        <a
  9940.                          href="/collections/portable-fuel-tank"
  9941.                          class="m-link m-link--text focus-inset"
  9942.                          
  9943.                        >
  9944.                          Portable Fuel Tank
  9945.                        </a>
  9946.                      </li><li class="m-header__menu-item m-list-menu__item">
  9947.                        <a
  9948.                          href="/collections/hydraulic-oil-tank"
  9949.                          class="m-link m-link--text focus-inset"
  9950.                          
  9951.                        >
  9952.                          Hydraulic Oil Tank
  9953.                        </a>
  9954.                      </li><li class="m-header__menu-item m-list-menu__item">
  9955.                        <a
  9956.                          href="/collections/fuel-injectors"
  9957.                          class="m-link m-link--text focus-inset"
  9958.                          
  9959.                        >
  9960.                          Fuel Injectors
  9961.                        </a>
  9962.                      </li><li class="m-header__menu-item m-list-menu__item">
  9963.                        <a
  9964.                          href="/collections/oil-transfer-pump"
  9965.                          class="m-link m-link--text focus-inset"
  9966.                          
  9967.                        >
  9968.                          Oil Transfer Pump
  9969.                        </a>
  9970.                      </li><li class="m-header__menu-item m-list-menu__item">
  9971.                        <a
  9972.                          href="/collections/hydraulic-rams-tools"
  9973.                          class="m-link m-link--text focus-inset"
  9974.                          
  9975.                        >
  9976.                          Hydraulic Rams &amp; Tools
  9977.                        </a>
  9978.                      </li><li class="m-header__menu-item m-list-menu__item">
  9979.                        <a
  9980.                          href="/collections/fuel-hose-reel"
  9981.                          class="m-link m-link--text focus-inset"
  9982.                          
  9983.                        >
  9984.                          Fuel Hose Reel
  9985.                        </a>
  9986.                      </li></ul>
  9987.                </li><li class="m-header__menu-item m-list-menu__item">
  9988.                  <a
  9989.                    href="/collections/cargo-management"
  9990.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  9991.                    
  9992.                  >
  9993.                    <span>Cargo Management</span>
  9994.                    <span class="m-header__menu-item--icon">
  9995.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  9996.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  9997.                      </svg>
  9998.                    </span>
  9999.                  </a>
  10000.                  <ul
  10001.                    class="m-header__submenu m-header__submenu-level3"
  10002.                  ><li class="m-header__menu-item m-list-menu__item">
  10003.                        <a
  10004.                          href="/collections/roof-rack-cross-bars"
  10005.                          class="m-link m-link--text focus-inset"
  10006.                          
  10007.                        >
  10008.                          Roof Rack Cross Bars
  10009.                        </a>
  10010.                      </li><li class="m-header__menu-item m-list-menu__item">
  10011.                        <a
  10012.                          href="/collections/ladder-racks"
  10013.                          class="m-link m-link--text focus-inset"
  10014.                          
  10015.                        >
  10016.                          Cargo Racks
  10017.                        </a>
  10018.                      </li><li class="m-header__menu-item m-list-menu__item">
  10019.                        <a
  10020.                          href="/collections/cargo-carrier"
  10021.                          class="m-link m-link--text focus-inset"
  10022.                          
  10023.                        >
  10024.                          Cargo Carrier
  10025.                        </a>
  10026.                      </li><li class="m-header__menu-item m-list-menu__item">
  10027.                        <a
  10028.                          href="/collections/towing-system"
  10029.                          class="m-link m-link--text focus-inset"
  10030.                          
  10031.                        >
  10032.                          Towing System
  10033.                        </a>
  10034.                      </li></ul>
  10035.                </li><li class="m-header__menu-item m-list-menu__item">
  10036.                  <a
  10037.                    href="/collections/rv-parts-accessories"
  10038.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10039.                    
  10040.                  >
  10041.                    <span>Rv Parts &amp; Accessories</span>
  10042.                    <span class="m-header__menu-item--icon">
  10043.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10044.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10045.                      </svg>
  10046.                    </span>
  10047.                  </a>
  10048.                  <ul
  10049.                    class="m-header__submenu m-header__submenu-level3"
  10050.                  ><li class="m-header__menu-item m-list-menu__item">
  10051.                        <a
  10052.                          href="/collections/rv-cover"
  10053.                          class="m-link m-link--text focus-inset"
  10054.                          
  10055.                        >
  10056.                          RV Cover
  10057.                        </a>
  10058.                      </li><li class="m-header__menu-item m-list-menu__item">
  10059.                        <a
  10060.                          href="/collections/trailer-jack"
  10061.                          class="m-link m-link--text focus-inset"
  10062.                          
  10063.                        >
  10064.                          Trailer Jack
  10065.                        </a>
  10066.                      </li><li class="m-header__menu-item m-list-menu__item">
  10067.                        <a
  10068.                          href="/collections/trailer-dolly"
  10069.                          class="m-link m-link--text focus-inset"
  10070.                          
  10071.                        >
  10072.                          Trailer Dolly
  10073.                        </a>
  10074.                      </li></ul>
  10075.                </li><li class="m-header__menu-item m-list-menu__item">
  10076.                  <a
  10077.                    href="/collections/lifts-hoists-jacks"
  10078.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10079.                    
  10080.                  >
  10081.                    <span>Lifts &amp; Hoists &amp; Jacks</span>
  10082.                    <span class="m-header__menu-item--icon">
  10083.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10084.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10085.                      </svg>
  10086.                    </span>
  10087.                  </a>
  10088.                  <ul
  10089.                    class="m-header__submenu m-header__submenu-level3"
  10090.                  ><li class="m-header__menu-item m-list-menu__item">
  10091.                        <a
  10092.                          href="/collections/jack-stands"
  10093.                          class="m-link m-link--text focus-inset"
  10094.                          
  10095.                        >
  10096.                          Jack stands
  10097.                        </a>
  10098.                      </li><li class="m-header__menu-item m-list-menu__item">
  10099.                        <a
  10100.                          href="/collections/pneumatic-car-jack"
  10101.                          class="m-link m-link--text focus-inset"
  10102.                          
  10103.                        >
  10104.                          Pneumatic Car Jack
  10105.                        </a>
  10106.                      </li><li class="m-header__menu-item m-list-menu__item">
  10107.                        <a
  10108.                          href="/collections/motorcycle-lift-stand"
  10109.                          class="m-link m-link--text focus-inset"
  10110.                          
  10111.                        >
  10112.                          Motorcycle Lift Stand
  10113.                        </a>
  10114.                      </li><li class="m-header__menu-item m-list-menu__item">
  10115.                        <a
  10116.                          href="/collections/hydraulic-motorcycle-hoist"
  10117.                          class="m-link m-link--text focus-inset"
  10118.                          
  10119.                        >
  10120.                          Hydraulic Motorcycle Hoist
  10121.                        </a>
  10122.                      </li><li class="m-header__menu-item m-list-menu__item">
  10123.                        <a
  10124.                          href="/collections/engine-hoists-stands"
  10125.                          class="m-link m-link--text focus-inset"
  10126.                          
  10127.                        >
  10128.                          Engine Hoists &amp; Stands
  10129.                        </a>
  10130.                      </li><li class="m-header__menu-item m-list-menu__item">
  10131.                        <a
  10132.                          href="/collections/hydraulic-scissor-cart"
  10133.                          class="m-link m-link--text focus-inset"
  10134.                          
  10135.                        >
  10136.                          Hydraulic Scissor Cart
  10137.                        </a>
  10138.                      </li><li class="m-header__menu-item m-list-menu__item">
  10139.                        <a
  10140.                          href="/collections/floor-jacks"
  10141.                          class="m-link m-link--text focus-inset"
  10142.                          
  10143.                        >
  10144.                          Floor Jacks
  10145.                        </a>
  10146.                      </li><li class="m-header__menu-item m-list-menu__item">
  10147.                        <a
  10148.                          href="/collections/transmission-jacks"
  10149.                          class="m-link m-link--text focus-inset"
  10150.                          
  10151.                        >
  10152.                          Transmission Jacks
  10153.                        </a>
  10154.                      </li><li class="m-header__menu-item m-list-menu__item">
  10155.                        <a
  10156.                          href="/collections/engine-stand"
  10157.                          class="m-link m-link--text focus-inset"
  10158.                          
  10159.                        >
  10160.                          Engine Stand
  10161.                        </a>
  10162.                      </li><li class="m-header__menu-item m-list-menu__item">
  10163.                        <a
  10164.                          href="/collections/hitch-receivers"
  10165.                          class="m-link m-link--text focus-inset"
  10166.                          
  10167.                        >
  10168.                          Hitch Receivers
  10169.                        </a>
  10170.                      </li><li class="m-header__menu-item m-list-menu__item">
  10171.                        <a
  10172.                          href="/collections/toe-jacks"
  10173.                          class="m-link m-link--text focus-inset"
  10174.                          
  10175.                        >
  10176.                          Toe Jacks
  10177.                        </a>
  10178.                      </li></ul>
  10179.                </li><li class="m-header__menu-item m-list-menu__item">
  10180.                  <a
  10181.                    href="/collections/boat-parts-accessories"
  10182.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10183.                    
  10184.                  >
  10185.                    <span>Boat Parts &amp; Accessories</span>
  10186.                    <span class="m-header__menu-item--icon">
  10187.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10188.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10189.                      </svg>
  10190.                    </span>
  10191.                  </a>
  10192.                  <ul
  10193.                    class="m-header__submenu m-header__submenu-level3"
  10194.                  ><li class="m-header__menu-item m-list-menu__item">
  10195.                        <a
  10196.                          href="/collections/bimini-tops"
  10197.                          class="m-link m-link--text focus-inset"
  10198.                          
  10199.                        >
  10200.                          Bimini Tops
  10201.                        </a>
  10202.                      </li><li class="m-header__menu-item m-list-menu__item">
  10203.                        <a
  10204.                          href="/collections/boat-trailer-guides"
  10205.                          class="m-link m-link--text focus-inset"
  10206.                          
  10207.                        >
  10208.                          Boat Trailer Guides
  10209.                        </a>
  10210.                      </li><li class="m-header__menu-item m-list-menu__item">
  10211.                        <a
  10212.                          href="/collections/boat-cover"
  10213.                          class="m-link m-link--text focus-inset"
  10214.                          
  10215.                        >
  10216.                          Boat Cover
  10217.                        </a>
  10218.                      </li><li class="m-header__menu-item m-list-menu__item">
  10219.                        <a
  10220.                          href="/collections/boat-anchor"
  10221.                          class="m-link m-link--text focus-inset"
  10222.                          
  10223.                        >
  10224.                          Boat Anchor
  10225.                        </a>
  10226.                      </li><li class="m-header__menu-item m-list-menu__item">
  10227.                        <a
  10228.                          href="/collections/boat-fenders"
  10229.                          class="m-link m-link--text focus-inset"
  10230.                          
  10231.                        >
  10232.                          Boat Fenders
  10233.                        </a>
  10234.                      </li></ul>
  10235.                </li><li class="m-header__menu-item m-list-menu__item">
  10236.                  <a
  10237.                    href="/collections/interior-accessories"
  10238.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10239.                    
  10240.                  >
  10241.                    <span>Interior Accessories</span>
  10242.                    <span class="m-header__menu-item--icon">
  10243.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10244.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10245.                      </svg>
  10246.                    </span>
  10247.                  </a>
  10248.                  <ul
  10249.                    class="m-header__submenu m-header__submenu-level3"
  10250.                  ><li class="m-header__menu-item m-list-menu__item">
  10251.                        <a
  10252.                          href="/collections/floor-mats"
  10253.                          class="m-link m-link--text focus-inset"
  10254.                          
  10255.                        >
  10256.                          Floor Mats
  10257.                        </a>
  10258.                      </li><li class="m-header__menu-item m-list-menu__item">
  10259.                        <a
  10260.                          href="/collections/igniter"
  10261.                          class="m-link m-link--text focus-inset"
  10262.                          
  10263.                        >
  10264.                          Igniter
  10265.                        </a>
  10266.                      </li></ul>
  10267.                </li><li class="m-header__menu-item m-list-menu__item">
  10268.                  <a
  10269.                    href="/collections/hydraulic-rams-tools"
  10270.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10271.                    
  10272.                  >
  10273.                    <span>Hydraulic Rams &amp; Tools</span>
  10274.                    <span class="m-header__menu-item--icon">
  10275.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10276.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10277.                      </svg>
  10278.                    </span>
  10279.                  </a>
  10280.                  <ul
  10281.                    class="m-header__submenu m-header__submenu-level3"
  10282.                  ><li class="m-header__menu-item m-list-menu__item">
  10283.                        <a
  10284.                          href="/collections/rotary-tool-kit"
  10285.                          class="m-link m-link--text focus-inset"
  10286.                          
  10287.                        >
  10288.                          Rotary Tool Kit
  10289.                        </a>
  10290.                      </li></ul>
  10291.                </li><li class="m-header__menu-item m-list-menu__item">
  10292.                  <a
  10293.                    href="/collections/repair-tools"
  10294.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10295.                    
  10296.                  >
  10297.                    <span>Repair Tools</span>
  10298.                    <span class="m-header__menu-item--icon">
  10299.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10300.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10301.                      </svg>
  10302.                    </span>
  10303.                  </a>
  10304.                  <ul
  10305.                    class="m-header__submenu m-header__submenu-level3"
  10306.                  ><li class="m-header__menu-item m-list-menu__item">
  10307.                        <a
  10308.                          href="/collections/magnetic-induction-heater"
  10309.                          class="m-link m-link--text focus-inset"
  10310.                          
  10311.                        >
  10312.                          Magnetic Induction Heater
  10313.                        </a>
  10314.                      </li></ul>
  10315.                </li></ul>
  10316.        
  10317.      </li>
  10318.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  10319.        <a
  10320.          href="/collections/power-hand-tools"
  10321.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  10322.          
  10323.        >
  10324.          <div class="m-link--content m:display-flex m:items-center">
  10325.            <span
  10326.            >Power &amp; Hand Tools</span><span class="m-header__menu-item--icon">
  10327.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  10328.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10329.              </svg>
  10330.            </span>
  10331.            
  10332.          </div>
  10333.        </a><ul
  10334.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  10335.            role="list"
  10336.            tabindex="-1"
  10337.          ><li class="m-header__menu-item m-list-menu__item">
  10338.                  <a
  10339.                    href="/collections/drills-drivers"
  10340.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10341.                    
  10342.                  >
  10343.                    <span>Drills &amp; Drivers</span>
  10344.                    <span class="m-header__menu-item--icon">
  10345.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10346.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10347.                      </svg>
  10348.                    </span>
  10349.                  </a>
  10350.                  <ul
  10351.                    class="m-header__submenu m-header__submenu-level3"
  10352.                  ><li class="m-header__menu-item m-list-menu__item">
  10353.                        <a
  10354.                          href="/collections/drill-press"
  10355.                          class="m-link m-link--text focus-inset"
  10356.                          
  10357.                        >
  10358.                          Drill Press
  10359.                        </a>
  10360.                      </li><li class="m-header__menu-item m-list-menu__item">
  10361.                        <a
  10362.                          href="/collections/magnetic-drill"
  10363.                          class="m-link m-link--text focus-inset"
  10364.                          
  10365.                        >
  10366.                          Magnetic Drill
  10367.                        </a>
  10368.                      </li></ul>
  10369.                </li><li class="m-header__menu-item m-list-menu__item">
  10370.                  <a
  10371.                    href="/collections/hand-tools-1"
  10372.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10373.                    
  10374.                  >
  10375.                    <span>Hand Tools</span>
  10376.                    <span class="m-header__menu-item--icon">
  10377.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10378.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10379.                      </svg>
  10380.                    </span>
  10381.                  </a>
  10382.                  <ul
  10383.                    class="m-header__submenu m-header__submenu-level3"
  10384.                  ><li class="m-header__menu-item m-list-menu__item">
  10385.                        <a
  10386.                          href="/collections/magnetic-sweepers"
  10387.                          class="m-link m-link--text focus-inset"
  10388.                          
  10389.                        >
  10390.                          Magnetic Sweepers
  10391.                        </a>
  10392.                      </li><li class="m-header__menu-item m-list-menu__item">
  10393.                        <a
  10394.                          href="/collections/test-measure-inspect-1"
  10395.                          class="m-link m-link--text focus-inset"
  10396.                          
  10397.                        >
  10398.                          Test &amp; Measure &amp; Inspect
  10399.                        </a>
  10400.                      </li><li class="m-header__menu-item m-list-menu__item">
  10401.                        <a
  10402.                          href="/collections/measuring-tools"
  10403.                          class="m-link m-link--text focus-inset"
  10404.                          
  10405.                        >
  10406.                          Measuring Tools
  10407.                        </a>
  10408.                      </li><li class="m-header__menu-item m-list-menu__item">
  10409.                        <a
  10410.                          href="/collections/sockets-bits"
  10411.                          class="m-link m-link--text focus-inset"
  10412.                          
  10413.                        >
  10414.                          Sockets &amp; Bits
  10415.                        </a>
  10416.                      </li></ul>
  10417.                </li><li class="m-header__menu-item m-list-menu__item">
  10418.                  <a
  10419.                    href="/collections/demolition-tools-equipment"
  10420.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10421.                    
  10422.                  >
  10423.                    <span>Demolition Tools &amp; Equipment</span>
  10424.                    <span class="m-header__menu-item--icon">
  10425.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10426.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10427.                      </svg>
  10428.                    </span>
  10429.                  </a>
  10430.                  <ul
  10431.                    class="m-header__submenu m-header__submenu-level3"
  10432.                  ><li class="m-header__menu-item m-list-menu__item">
  10433.                        <a
  10434.                          href="/collections/jack-hammer"
  10435.                          class="m-link m-link--text focus-inset"
  10436.                          
  10437.                        >
  10438.                          Jack Hammer
  10439.                        </a>
  10440.                      </li></ul>
  10441.                </li><li class="m-header__menu-item m-list-menu__item">
  10442.                  <a
  10443.                    href="/collections/wrenches"
  10444.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10445.                    
  10446.                  >
  10447.                    <span>Wrenches</span>
  10448.                    <span class="m-header__menu-item--icon">
  10449.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10450.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10451.                      </svg>
  10452.                    </span>
  10453.                  </a>
  10454.                  <ul
  10455.                    class="m-header__submenu m-header__submenu-level3"
  10456.                  ><li class="m-header__menu-item m-list-menu__item">
  10457.                        <a
  10458.                          href="/collections/pipe-wrench"
  10459.                          class="m-link m-link--text focus-inset"
  10460.                          
  10461.                        >
  10462.                          Pipe Wrench
  10463.                        </a>
  10464.                      </li><li class="m-header__menu-item m-list-menu__item">
  10465.                        <a
  10466.                          href="/collections/combination-wrenches"
  10467.                          class="m-link m-link--text focus-inset"
  10468.                          
  10469.                        >
  10470.                          Combination Wrenches
  10471.                        </a>
  10472.                      </li><li class="m-header__menu-item m-list-menu__item">
  10473.                        <a
  10474.                          href="/collections/wrench-sets"
  10475.                          class="m-link m-link--text focus-inset"
  10476.                          
  10477.                        >
  10478.                          Wrench Sets
  10479.                        </a>
  10480.                      </li><li class="m-header__menu-item m-list-menu__item">
  10481.                        <a
  10482.                          href="/collections/mill-vise"
  10483.                          class="m-link m-link--text focus-inset"
  10484.                          
  10485.                        >
  10486.                          Mill Vise
  10487.                        </a>
  10488.                      </li></ul>
  10489.                </li><li class="m-header__menu-item m-list-menu__item">
  10490.                  <a
  10491.                    href="/collections/power-tools"
  10492.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10493.                    
  10494.                  >
  10495.                    <span>Power Tools</span>
  10496.                    <span class="m-header__menu-item--icon">
  10497.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10498.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10499.                      </svg>
  10500.                    </span>
  10501.                  </a>
  10502.                  <ul
  10503.                    class="m-header__submenu m-header__submenu-level3"
  10504.                  ><li class="m-header__menu-item m-list-menu__item">
  10505.                        <a
  10506.                          href="/collections/power-tool-parts-accessories"
  10507.                          class="m-link m-link--text focus-inset"
  10508.                          
  10509.                        >
  10510.                          Power Tool Parts &amp; Accessories
  10511.                        </a>
  10512.                      </li><li class="m-header__menu-item m-list-menu__item">
  10513.                        <a
  10514.                          href="/collections/saws-accessories"
  10515.                          class="m-link m-link--text focus-inset"
  10516.                          
  10517.                        >
  10518.                          Saws &amp; Accessories
  10519.                        </a>
  10520.                      </li><li class="m-header__menu-item m-list-menu__item">
  10521.                        <a
  10522.                          href="/collections/grinding-sanding-finishing-tools"
  10523.                          class="m-link m-link--text focus-inset"
  10524.                          
  10525.                        >
  10526.                          Grinding &amp; Sanding &amp; Finishing Tools
  10527.                        </a>
  10528.                      </li></ul>
  10529.                </li><li class="m-header__menu-item m-list-menu__item">
  10530.                  <a
  10531.                    href="/collections/saws"
  10532.                    class="m-link m-link--text focus-inset"
  10533.                    
  10534.                  >
  10535.                    Saws
  10536.                  </a>
  10537.                </li><li class="m-header__menu-item m-list-menu__item">
  10538.                  <a
  10539.                    href="/collections/grinding-sanding-finishing-tools"
  10540.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10541.                    
  10542.                  >
  10543.                    <span>Grinding &amp; Sanding &amp; Finishing Tools</span>
  10544.                    <span class="m-header__menu-item--icon">
  10545.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10546.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10547.                      </svg>
  10548.                    </span>
  10549.                  </a>
  10550.                  <ul
  10551.                    class="m-header__submenu m-header__submenu-level3"
  10552.                  ><li class="m-header__menu-item m-list-menu__item">
  10553.                        <a
  10554.                          href="/collections/saw-blade-sharpener"
  10555.                          class="m-link m-link--text focus-inset"
  10556.                          
  10557.                        >
  10558.                          Saw Blade Sharpener
  10559.                        </a>
  10560.                      </li></ul>
  10561.                </li><li class="m-header__menu-item m-list-menu__item">
  10562.                  <a
  10563.                    href="/collections/inspection-retrieving-tools"
  10564.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10565.                    
  10566.                  >
  10567.                    <span>Inspection &amp; Retrieving Tools</span>
  10568.                    <span class="m-header__menu-item--icon">
  10569.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10570.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10571.                      </svg>
  10572.                    </span>
  10573.                  </a>
  10574.                  <ul
  10575.                    class="m-header__submenu m-header__submenu-level3"
  10576.                  ><li class="m-header__menu-item m-list-menu__item">
  10577.                        <a
  10578.                          href="/collections/pipe-inspection-camera"
  10579.                          class="m-link m-link--text focus-inset"
  10580.                          
  10581.                        >
  10582.                          Pipe Inspection Camera
  10583.                        </a>
  10584.                      </li><li class="m-header__menu-item m-list-menu__item">
  10585.                        <a
  10586.                          href="/collections/metal-detectors"
  10587.                          class="m-link m-link--text focus-inset"
  10588.                          
  10589.                        >
  10590.                          Metal Detectors
  10591.                        </a>
  10592.                      </li></ul>
  10593.                </li><li class="m-header__menu-item m-list-menu__item">
  10594.                  <a
  10595.                    href="/collections/punching-tools"
  10596.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10597.                    
  10598.                  >
  10599.                    <span>Punching Tools</span>
  10600.                    <span class="m-header__menu-item--icon">
  10601.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10602.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10603.                      </svg>
  10604.                    </span>
  10605.                  </a>
  10606.                  <ul
  10607.                    class="m-header__submenu m-header__submenu-level3"
  10608.                  ><li class="m-header__menu-item m-list-menu__item">
  10609.                        <a
  10610.                          href="/collections/hydraulic-knockout-punch"
  10611.                          class="m-link m-link--text focus-inset"
  10612.                          
  10613.                        >
  10614.                          Hydraulic Knockout Punch
  10615.                        </a>
  10616.                      </li></ul>
  10617.                </li><li class="m-header__menu-item m-list-menu__item">
  10618.                  <a
  10619.                    href="/collections/power-tool-parts-accessories"
  10620.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10621.                    
  10622.                  >
  10623.                    <span>Power Tool Parts &amp; Accessories</span>
  10624.                    <span class="m-header__menu-item--icon">
  10625.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10626.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10627.                      </svg>
  10628.                    </span>
  10629.                  </a>
  10630.                  <ul
  10631.                    class="m-header__submenu m-header__submenu-level3"
  10632.                  ><li class="m-header__menu-item m-list-menu__item">
  10633.                        <a
  10634.                          href="/collections/air-hose-reel"
  10635.                          class="m-link m-link--text focus-inset"
  10636.                          
  10637.                        >
  10638.                          Air Hose Reel
  10639.                        </a>
  10640.                      </li></ul>
  10641.                </li><li class="m-header__menu-item m-list-menu__item">
  10642.                  <a
  10643.                    href="/collections/electrical"
  10644.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10645.                    
  10646.                  >
  10647.                    <span>Electrical</span>
  10648.                    <span class="m-header__menu-item--icon">
  10649.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10650.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10651.                      </svg>
  10652.                    </span>
  10653.                  </a>
  10654.                  <ul
  10655.                    class="m-header__submenu m-header__submenu-level3"
  10656.                  ><li class="m-header__menu-item m-list-menu__item">
  10657.                        <a
  10658.                          href="/collections/electrical-tools"
  10659.                          class="m-link m-link--text focus-inset"
  10660.                          
  10661.                        >
  10662.                          Electrical Tools
  10663.                        </a>
  10664.                      </li></ul>
  10665.                </li><li class="m-header__menu-item m-list-menu__item">
  10666.                  <a
  10667.                    href="/collections/workbenches-accessories"
  10668.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10669.                    
  10670.                  >
  10671.                    <span>Workbenches &amp; Accessories</span>
  10672.                    <span class="m-header__menu-item--icon">
  10673.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10674.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10675.                      </svg>
  10676.                    </span>
  10677.                  </a>
  10678.                  <ul
  10679.                    class="m-header__submenu m-header__submenu-level3"
  10680.                  ><li class="m-header__menu-item m-list-menu__item">
  10681.                        <a
  10682.                          href="/collections/adjustable-workbench"
  10683.                          class="m-link m-link--text focus-inset"
  10684.                          
  10685.                        >
  10686.                          Adjustable Workbench
  10687.                        </a>
  10688.                      </li></ul>
  10689.                </li></ul>
  10690.        
  10691.      </li>
  10692.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  10693.        <a
  10694.          href="/collections/appliances"
  10695.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  10696.          
  10697.        >
  10698.          <div class="m-link--content m:display-flex m:items-center">
  10699.            <span
  10700.            >Appliances</span><span class="m-header__menu-item--icon">
  10701.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  10702.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10703.              </svg>
  10704.            </span>
  10705.            
  10706.          </div>
  10707.        </a><ul
  10708.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  10709.            role="list"
  10710.            tabindex="-1"
  10711.          ><li class="m-header__menu-item m-list-menu__item">
  10712.                  <a
  10713.                    href="/collections/air-treatment"
  10714.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10715.                    
  10716.                  >
  10717.                    <span>Air Treatment</span>
  10718.                    <span class="m-header__menu-item--icon">
  10719.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10720.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10721.                      </svg>
  10722.                    </span>
  10723.                  </a>
  10724.                  <ul
  10725.                    class="m-header__submenu m-header__submenu-level3"
  10726.                  ><li class="m-header__menu-item m-list-menu__item">
  10727.                        <a
  10728.                          href="/collections/cordless-fan"
  10729.                          class="m-link m-link--text focus-inset"
  10730.                          
  10731.                        >
  10732.                          Cordless Fan
  10733.                        </a>
  10734.                      </li><li class="m-header__menu-item m-list-menu__item">
  10735.                        <a
  10736.                          href="/collections/commercial-dehumidifiers"
  10737.                          class="m-link m-link--text focus-inset"
  10738.                          
  10739.                        >
  10740.                          Commercial Dehumidifiers
  10741.                        </a>
  10742.                      </li><li class="m-header__menu-item m-list-menu__item">
  10743.                        <a
  10744.                          href="/collections/dehumidifiers"
  10745.                          class="m-link m-link--text focus-inset"
  10746.                          
  10747.                        >
  10748.                          Dehumidifiers
  10749.                        </a>
  10750.                      </li><li class="m-header__menu-item m-list-menu__item">
  10751.                        <a
  10752.                          href="/collections/air-purifiers"
  10753.                          class="m-link m-link--text focus-inset"
  10754.                          
  10755.                        >
  10756.                          Air Purifiers
  10757.                        </a>
  10758.                      </li></ul>
  10759.                </li><li class="m-header__menu-item m-list-menu__item">
  10760.                  <a
  10761.                    href="/collections/fireplaces-stoves"
  10762.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10763.                    
  10764.                  >
  10765.                    <span>Fireplaces &amp; Stoves</span>
  10766.                    <span class="m-header__menu-item--icon">
  10767.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10768.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10769.                      </svg>
  10770.                    </span>
  10771.                  </a>
  10772.                  <ul
  10773.                    class="m-header__submenu m-header__submenu-level3"
  10774.                  ><li class="m-header__menu-item m-list-menu__item">
  10775.                        <a
  10776.                          href="/collections/electric-fireplace"
  10777.                          class="m-link m-link--text focus-inset"
  10778.                          
  10779.                        >
  10780.                          Electric Fireplace
  10781.                        </a>
  10782.                      </li></ul>
  10783.                </li><li class="m-header__menu-item m-list-menu__item">
  10784.                  <a
  10785.                    href="/collections/small-appliances"
  10786.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10787.                    
  10788.                  >
  10789.                    <span>Small Appliances</span>
  10790.                    <span class="m-header__menu-item--icon">
  10791.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10792.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10793.                      </svg>
  10794.                    </span>
  10795.                  </a>
  10796.                  <ul
  10797.                    class="m-header__submenu m-header__submenu-level3"
  10798.                  ><li class="m-header__menu-item m-list-menu__item">
  10799.                        <a
  10800.                          href="/collections/clothes-dryer"
  10801.                          class="m-link m-link--text focus-inset"
  10802.                          
  10803.                        >
  10804.                          Clothes dryer
  10805.                        </a>
  10806.                      </li><li class="m-header__menu-item m-list-menu__item">
  10807.                        <a
  10808.                          href="/collections/hairdryer"
  10809.                          class="m-link m-link--text focus-inset"
  10810.                          
  10811.                        >
  10812.                          Hairdryer
  10813.                        </a>
  10814.                      </li></ul>
  10815.                </li><li class="m-header__menu-item m-list-menu__item">
  10816.                  <a
  10817.                    href="/collections/heater-accessories"
  10818.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10819.                    
  10820.                  >
  10821.                    <span>Heater &amp; Accessories</span>
  10822.                    <span class="m-header__menu-item--icon">
  10823.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10824.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10825.                      </svg>
  10826.                    </span>
  10827.                  </a>
  10828.                  <ul
  10829.                    class="m-header__submenu m-header__submenu-level3"
  10830.                  ><li class="m-header__menu-item m-list-menu__item">
  10831.                        <a
  10832.                          href="/collections/electric-space-heaters"
  10833.                          class="m-link m-link--text focus-inset"
  10834.                          
  10835.                        >
  10836.                          Electric Space Heaters
  10837.                        </a>
  10838.                      </li></ul>
  10839.                </li></ul>
  10840.        
  10841.      </li>
  10842.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  10843.        <a
  10844.          href="/collections/sports-recreation"
  10845.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  10846.          
  10847.        >
  10848.          <div class="m-link--content m:display-flex m:items-center">
  10849.            <span
  10850.            >Sports &amp; Outdoors</span><span class="m-header__menu-item--icon">
  10851.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  10852.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10853.              </svg>
  10854.            </span>
  10855.            
  10856.          </div>
  10857.        </a><ul
  10858.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  10859.            role="list"
  10860.            tabindex="-1"
  10861.          ><li class="m-header__menu-item m-list-menu__item">
  10862.                  <a
  10863.                    href="/collections/outdoor-recreation"
  10864.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10865.                    
  10866.                  >
  10867.                    <span>Outdoor Recreation</span>
  10868.                    <span class="m-header__menu-item--icon">
  10869.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10870.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10871.                      </svg>
  10872.                    </span>
  10873.                  </a>
  10874.                  <ul
  10875.                    class="m-header__submenu m-header__submenu-level3"
  10876.                  ><li class="m-header__menu-item m-list-menu__item">
  10877.                        <a
  10878.                          href="/collections/water-sports"
  10879.                          class="m-link m-link--text focus-inset"
  10880.                          
  10881.                        >
  10882.                          Water Sports
  10883.                        </a>
  10884.                      </li></ul>
  10885.                </li><li class="m-header__menu-item m-list-menu__item">
  10886.                  <a
  10887.                    href="/collections/sports"
  10888.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10889.                    
  10890.                  >
  10891.                    <span>Sports</span>
  10892.                    <span class="m-header__menu-item--icon">
  10893.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10894.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10895.                      </svg>
  10896.                    </span>
  10897.                  </a>
  10898.                  <ul
  10899.                    class="m-header__submenu m-header__submenu-level3"
  10900.                  ><li class="m-header__menu-item m-list-menu__item">
  10901.                        <a
  10902.                          href="/collections/leisure-sports-game-room"
  10903.                          class="m-link m-link--text focus-inset"
  10904.                          
  10905.                        >
  10906.                          Leisure Sports &amp; Game Room
  10907.                        </a>
  10908.                      </li><li class="m-header__menu-item m-list-menu__item">
  10909.                        <a
  10910.                          href="/collections/ping-pong"
  10911.                          class="m-link m-link--text focus-inset"
  10912.                          
  10913.                        >
  10914.                          Ping Pong
  10915.                        </a>
  10916.                      </li><li class="m-header__menu-item m-list-menu__item">
  10917.                        <a
  10918.                          href="/collections/basketball-hoops-goals"
  10919.                          class="m-link m-link--text focus-inset"
  10920.                          
  10921.                        >
  10922.                          Basketball Hoops &amp; Goals
  10923.                        </a>
  10924.                      </li><li class="m-header__menu-item m-list-menu__item">
  10925.                        <a
  10926.                          href="/collections/other-sports"
  10927.                          class="m-link m-link--text focus-inset"
  10928.                          
  10929.                        >
  10930.                          Other Sports
  10931.                        </a>
  10932.                      </li></ul>
  10933.                </li><li class="m-header__menu-item m-list-menu__item">
  10934.                  <a
  10935.                    href="/collections/exercise-fitness"
  10936.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10937.                    
  10938.                  >
  10939.                    <span>Exercise &amp; Fitness</span>
  10940.                    <span class="m-header__menu-item--icon">
  10941.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10942.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10943.                      </svg>
  10944.                    </span>
  10945.                  </a>
  10946.                  <ul
  10947.                    class="m-header__submenu m-header__submenu-level3"
  10948.                  ><li class="m-header__menu-item m-list-menu__item">
  10949.                        <a
  10950.                          href="/collections/fitness-technology"
  10951.                          class="m-link m-link--text focus-inset"
  10952.                          
  10953.                        >
  10954.                          Fitness Technology
  10955.                        </a>
  10956.                      </li><li class="m-header__menu-item m-list-menu__item">
  10957.                        <a
  10958.                          href="/collections/treadmill"
  10959.                          class="m-link m-link--text focus-inset"
  10960.                          
  10961.                        >
  10962.                          Treadmill
  10963.                        </a>
  10964.                      </li></ul>
  10965.                </li><li class="m-header__menu-item m-list-menu__item">
  10966.                  <a
  10967.                    href="/collections/action-aids"
  10968.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  10969.                    
  10970.                  >
  10971.                    <span>Action Aids</span>
  10972.                    <span class="m-header__menu-item--icon">
  10973.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  10974.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  10975.                      </svg>
  10976.                    </span>
  10977.                  </a>
  10978.                  <ul
  10979.                    class="m-header__submenu m-header__submenu-level3"
  10980.                  ><li class="m-header__menu-item m-list-menu__item">
  10981.                        <a
  10982.                          href="/collections/walkers-rollators"
  10983.                          class="m-link m-link--text focus-inset"
  10984.                          
  10985.                        >
  10986.                          Walkers &amp; Rollators
  10987.                        </a>
  10988.                      </li></ul>
  10989.                </li></ul>
  10990.        
  10991.      </li>
  10992.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  10993.        <a
  10994.          href="/collections/material-handling"
  10995.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  10996.          
  10997.        >
  10998.          <div class="m-link--content m:display-flex m:items-center">
  10999.            <span
  11000.            >Material Handling</span><span class="m-header__menu-item--icon">
  11001.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  11002.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11003.              </svg>
  11004.            </span>
  11005.            
  11006.          </div>
  11007.        </a><ul
  11008.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  11009.            role="list"
  11010.            tabindex="-1"
  11011.          ><li class="m-header__menu-item m-list-menu__item">
  11012.                  <a
  11013.                    href="/collections/pallet-moving-equipment-accessories"
  11014.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11015.                    
  11016.                  >
  11017.                    <span>Pallet Moving Equipment &amp; Accessories</span>
  11018.                    <span class="m-header__menu-item--icon">
  11019.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11020.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11021.                      </svg>
  11022.                    </span>
  11023.                  </a>
  11024.                  <ul
  11025.                    class="m-header__submenu m-header__submenu-level3"
  11026.                  ><li class="m-header__menu-item m-list-menu__item">
  11027.                        <a
  11028.                          href="/collections/pallet-forks-extensions"
  11029.                          class="m-link m-link--text focus-inset"
  11030.                          
  11031.                        >
  11032.                          Pallet Forks Extensions
  11033.                        </a>
  11034.                      </li><li class="m-header__menu-item m-list-menu__item">
  11035.                        <a
  11036.                          href="/collections/pallet-forks"
  11037.                          class="m-link m-link--text focus-inset"
  11038.                          
  11039.                        >
  11040.                          Pallet Forks
  11041.                        </a>
  11042.                      </li><li class="m-header__menu-item m-list-menu__item">
  11043.                        <a
  11044.                          href="/collections/forklift-safety-cage"
  11045.                          class="m-link m-link--text focus-inset"
  11046.                          
  11047.                        >
  11048.                          Forklift Safety Cage
  11049.                        </a>
  11050.                      </li><li class="m-header__menu-item m-list-menu__item">
  11051.                        <a
  11052.                          href="/collections/forklift-hook"
  11053.                          class="m-link m-link--text focus-inset"
  11054.                          
  11055.                        >
  11056.                          Forklift Hook
  11057.                        </a>
  11058.                      </li></ul>
  11059.                </li><li class="m-header__menu-item m-list-menu__item">
  11060.                  <a
  11061.                    href="/collections/carts-trucks"
  11062.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11063.                    
  11064.                  >
  11065.                    <span>Carts &amp; Trucks</span>
  11066.                    <span class="m-header__menu-item--icon">
  11067.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11068.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11069.                      </svg>
  11070.                    </span>
  11071.                  </a>
  11072.                  <ul
  11073.                    class="m-header__submenu m-header__submenu-level3"
  11074.                  ><li class="m-header__menu-item m-list-menu__item">
  11075.                        <a
  11076.                          href="/collections/utility-cart"
  11077.                          class="m-link m-link--text focus-inset"
  11078.                          
  11079.                        >
  11080.                          Utility Cart
  11081.                        </a>
  11082.                      </li><li class="m-header__menu-item m-list-menu__item">
  11083.                        <a
  11084.                          href="/collections/hydraulic-scissor-cart"
  11085.                          class="m-link m-link--text focus-inset"
  11086.                          
  11087.                        >
  11088.                          Hydraulic Scissor Cart
  11089.                        </a>
  11090.                      </li><li class="m-header__menu-item m-list-menu__item">
  11091.                        <a
  11092.                          href="/collections/book-cart"
  11093.                          class="m-link m-link--text focus-inset"
  11094.                          
  11095.                        >
  11096.                          Book Cart
  11097.                        </a>
  11098.                      </li><li class="m-header__menu-item m-list-menu__item">
  11099.                        <a
  11100.                          href="/collections/stair-climbing-cart"
  11101.                          class="m-link m-link--text focus-inset"
  11102.                          
  11103.                        >
  11104.                          Stair Climbing Cart
  11105.                        </a>
  11106.                      </li><li class="m-header__menu-item m-list-menu__item">
  11107.                        <a
  11108.                          href="/collections/panel-trucks"
  11109.                          class="m-link m-link--text focus-inset"
  11110.                          
  11111.                        >
  11112.                          Panel Trucks
  11113.                        </a>
  11114.                      </li><li class="m-header__menu-item m-list-menu__item">
  11115.                        <a
  11116.                          href="/collections/folding-cart"
  11117.                          class="m-link m-link--text focus-inset"
  11118.                          
  11119.                        >
  11120.                          Folding Cart
  11121.                        </a>
  11122.                      </li><li class="m-header__menu-item m-list-menu__item">
  11123.                        <a
  11124.                          href="/collections/welding-cart"
  11125.                          class="m-link m-link--text focus-inset"
  11126.                          
  11127.                        >
  11128.                          Welding Cart
  11129.                        </a>
  11130.                      </li></ul>
  11131.                </li><li class="m-header__menu-item m-list-menu__item">
  11132.                  <a
  11133.                    href="/collections/ramps-ladders"
  11134.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11135.                    
  11136.                  >
  11137.                    <span>Ramps &amp; Ladders</span>
  11138.                    <span class="m-header__menu-item--icon">
  11139.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11140.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11141.                      </svg>
  11142.                    </span>
  11143.                  </a>
  11144.                  <ul
  11145.                    class="m-header__submenu m-header__submenu-level3"
  11146.                  ><li class="m-header__menu-item m-list-menu__item">
  11147.                        <a
  11148.                          href="/collections/aluminum-dock-ladder"
  11149.                          class="m-link m-link--text focus-inset"
  11150.                          
  11151.                        >
  11152.                          Aluminum Dock Ladder
  11153.                        </a>
  11154.                      </li><li class="m-header__menu-item m-list-menu__item">
  11155.                        <a
  11156.                          href="/collections/loading-ramps"
  11157.                          class="m-link m-link--text focus-inset"
  11158.                          
  11159.                        >
  11160.                          Loading Ramps
  11161.                        </a>
  11162.                      </li><li class="m-header__menu-item m-list-menu__item">
  11163.                        <a
  11164.                          href="/collections/curb-ramp"
  11165.                          class="m-link m-link--text focus-inset"
  11166.                          
  11167.                        >
  11168.                          Curb Ramp
  11169.                        </a>
  11170.                      </li><li class="m-header__menu-item m-list-menu__item">
  11171.                        <a
  11172.                          href="/collections/wheelchair-ramps"
  11173.                          class="m-link m-link--text focus-inset"
  11174.                          
  11175.                        >
  11176.                          Wheelchair Ramps
  11177.                        </a>
  11178.                      </li><li class="m-header__menu-item m-list-menu__item">
  11179.                        <a
  11180.                          href="/collections/rv-stairs"
  11181.                          class="m-link m-link--text focus-inset"
  11182.                          
  11183.                        >
  11184.                          RV Stairs
  11185.                        </a>
  11186.                      </li></ul>
  11187.                </li><li class="m-header__menu-item m-list-menu__item">
  11188.                  <a
  11189.                    href="/collections/hoists-winches-rigging"
  11190.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11191.                    
  11192.                  >
  11193.                    <span>Hoists &amp; Winches &amp; Rigging</span>
  11194.                    <span class="m-header__menu-item--icon">
  11195.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11196.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11197.                      </svg>
  11198.                    </span>
  11199.                  </a>
  11200.                  <ul
  11201.                    class="m-header__submenu m-header__submenu-level3"
  11202.                  ><li class="m-header__menu-item m-list-menu__item">
  11203.                        <a
  11204.                          href="/collections/manual-chain-hoist"
  11205.                          class="m-link m-link--text focus-inset"
  11206.                          
  11207.                        >
  11208.                          Manual Chain Hoist
  11209.                        </a>
  11210.                      </li><li class="m-header__menu-item m-list-menu__item">
  11211.                        <a
  11212.                          href="/collections/load-binders"
  11213.                          class="m-link m-link--text focus-inset"
  11214.                          
  11215.                        >
  11216.                          Load Binders
  11217.                        </a>
  11218.                      </li><li class="m-header__menu-item m-list-menu__item">
  11219.                        <a
  11220.                          href="/collections/electric-wire-rope-hoist"
  11221.                          class="m-link m-link--text focus-inset"
  11222.                          
  11223.                        >
  11224.                          Electric Wire Rope Hoist
  11225.                        </a>
  11226.                      </li><li class="m-header__menu-item m-list-menu__item">
  11227.                        <a
  11228.                          href="/collections/drywall-lift"
  11229.                          class="m-link m-link--text focus-inset"
  11230.                          
  11231.                        >
  11232.                          Drywall Lift
  11233.                        </a>
  11234.                      </li><li class="m-header__menu-item m-list-menu__item">
  11235.                        <a
  11236.                          href="/collections/davit-crane"
  11237.                          class="m-link m-link--text focus-inset"
  11238.                          
  11239.                        >
  11240.                          Davit Crane
  11241.                        </a>
  11242.                      </li><li class="m-header__menu-item m-list-menu__item">
  11243.                        <a
  11244.                          href="/collections/push-beam-trolley"
  11245.                          class="m-link m-link--text focus-inset"
  11246.                          
  11247.                        >
  11248.                          Push Beam Trolley
  11249.                        </a>
  11250.                      </li><li class="m-header__menu-item m-list-menu__item">
  11251.                        <a
  11252.                          href="/collections/magnetic-lifter"
  11253.                          class="m-link m-link--text focus-inset"
  11254.                          
  11255.                        >
  11256.                          Magnetic Lifter
  11257.                        </a>
  11258.                      </li><li class="m-header__menu-item m-list-menu__item">
  11259.                        <a
  11260.                          href="/collections/mounted-deer-hoist"
  11261.                          class="m-link m-link--text focus-inset"
  11262.                          
  11263.                        >
  11264.                          Mounted Deer Hoist
  11265.                        </a>
  11266.                      </li></ul>
  11267.                </li><li class="m-header__menu-item m-list-menu__item">
  11268.                  <a
  11269.                    href="/collections/heavy-equipment-accessories-1"
  11270.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11271.                    
  11272.                  >
  11273.                    <span>Heavy Equipment Accessories</span>
  11274.                    <span class="m-header__menu-item--icon">
  11275.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11276.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11277.                      </svg>
  11278.                    </span>
  11279.                  </a>
  11280.                  <ul
  11281.                    class="m-header__submenu m-header__submenu-level3"
  11282.                  ><li class="m-header__menu-item m-list-menu__item">
  11283.                        <a
  11284.                          href="/collections/quick-tach-mount-plate"
  11285.                          class="m-link m-link--text focus-inset"
  11286.                          
  11287.                        >
  11288.                          Quick Tach Mount Plate
  11289.                        </a>
  11290.                      </li></ul>
  11291.                </li><li class="m-header__menu-item m-list-menu__item">
  11292.                  <a
  11293.                    href="/collections/dollies-movers"
  11294.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11295.                    
  11296.                  >
  11297.                    <span>Dollies &amp; Movers</span>
  11298.                    <span class="m-header__menu-item--icon">
  11299.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11300.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11301.                      </svg>
  11302.                    </span>
  11303.                  </a>
  11304.                  <ul
  11305.                    class="m-header__submenu m-header__submenu-level3"
  11306.                  ><li class="m-header__menu-item m-list-menu__item">
  11307.                        <a
  11308.                          href="/collections/drum-dolly"
  11309.                          class="m-link m-link--text focus-inset"
  11310.                          
  11311.                        >
  11312.                          Drum Dolly
  11313.                        </a>
  11314.                      </li><li class="m-header__menu-item m-list-menu__item">
  11315.                        <a
  11316.                          href="/collections/prylever-bar"
  11317.                          class="m-link m-link--text focus-inset"
  11318.                          
  11319.                        >
  11320.                          Prylever Bar
  11321.                        </a>
  11322.                      </li><li class="m-header__menu-item m-list-menu__item">
  11323.                        <a
  11324.                          href="/collections/machinery-mover"
  11325.                          class="m-link m-link--text focus-inset"
  11326.                          
  11327.                        >
  11328.                          Machinery Mover
  11329.                        </a>
  11330.                      </li></ul>
  11331.                </li><li class="m-header__menu-item m-list-menu__item">
  11332.                  <a
  11333.                    href="/collections/filling-sealing-machine"
  11334.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11335.                    
  11336.                  >
  11337.                    <span>Filling &amp; Sealing Machine</span>
  11338.                    <span class="m-header__menu-item--icon">
  11339.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11340.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11341.                      </svg>
  11342.                    </span>
  11343.                  </a>
  11344.                  <ul
  11345.                    class="m-header__submenu m-header__submenu-level3"
  11346.                  ><li class="m-header__menu-item m-list-menu__item">
  11347.                        <a
  11348.                          href="/collections/liquid-filling-machine"
  11349.                          class="m-link m-link--text focus-inset"
  11350.                          
  11351.                        >
  11352.                          Liquid Filling Machine
  11353.                        </a>
  11354.                      </li><li class="m-header__menu-item m-list-menu__item">
  11355.                        <a
  11356.                          href="/collections/sealing-machine"
  11357.                          class="m-link m-link--text focus-inset"
  11358.                          
  11359.                        >
  11360.                          Sealing Machine
  11361.                        </a>
  11362.                      </li></ul>
  11363.                </li><li class="m-header__menu-item m-list-menu__item">
  11364.                  <a
  11365.                    href="/collections/shelving-storage"
  11366.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11367.                    
  11368.                  >
  11369.                    <span>Shelving &amp; Storage</span>
  11370.                    <span class="m-header__menu-item--icon">
  11371.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11372.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11373.                      </svg>
  11374.                    </span>
  11375.                  </a>
  11376.                  <ul
  11377.                    class="m-header__submenu m-header__submenu-level3"
  11378.                  ><li class="m-header__menu-item m-list-menu__item">
  11379.                        <a
  11380.                          href="/collections/cylinder-storage-cabinet"
  11381.                          class="m-link m-link--text focus-inset"
  11382.                          
  11383.                        >
  11384.                          Cylinder Storage Cabinet
  11385.                        </a>
  11386.                      </li><li class="m-header__menu-item m-list-menu__item">
  11387.                        <a
  11388.                          href="/collections/garage-storage-rack"
  11389.                          class="m-link m-link--text focus-inset"
  11390.                          
  11391.                        >
  11392.                          Garage Storage Rack
  11393.                        </a>
  11394.                      </li></ul>
  11395.                </li></ul>
  11396.        
  11397.      </li>
  11398.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  11399.        <a
  11400.          href="/collections/building-construction"
  11401.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  11402.          
  11403.        >
  11404.          <div class="m-link--content m:display-flex m:items-center">
  11405.            <span
  11406.            >Building &amp; Construction</span><span class="m-header__menu-item--icon">
  11407.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  11408.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11409.              </svg>
  11410.            </span>
  11411.            
  11412.          </div>
  11413.        </a><ul
  11414.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  11415.            role="list"
  11416.            tabindex="-1"
  11417.          ><li class="m-header__menu-item m-list-menu__item">
  11418.                  <a
  11419.                    href="/collections/building-supplies"
  11420.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11421.                    
  11422.                  >
  11423.                    <span>Building Supplies</span>
  11424.                    <span class="m-header__menu-item--icon">
  11425.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11426.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11427.                      </svg>
  11428.                    </span>
  11429.                  </a>
  11430.                  <ul
  11431.                    class="m-header__submenu m-header__submenu-level3"
  11432.                  ><li class="m-header__menu-item m-list-menu__item">
  11433.                        <a
  11434.                          href="/collections/stainless-steel-backsplash"
  11435.                          class="m-link m-link--text focus-inset"
  11436.                          
  11437.                        >
  11438.                          Stainless Steel Backsplash
  11439.                        </a>
  11440.                      </li><li class="m-header__menu-item m-list-menu__item">
  11441.                        <a
  11442.                          href="/collections/stair-handrail"
  11443.                          class="m-link m-link--text focus-inset"
  11444.                          
  11445.                        >
  11446.                          Stair Handrail
  11447.                        </a>
  11448.                      </li><li class="m-header__menu-item m-list-menu__item">
  11449.                        <a
  11450.                          href="/collections/chimney-cap"
  11451.                          class="m-link m-link--text focus-inset"
  11452.                          
  11453.                        >
  11454.                          Chimney Cap
  11455.                        </a>
  11456.                      </li></ul>
  11457.                </li><li class="m-header__menu-item m-list-menu__item">
  11458.                  <a
  11459.                    href="/collections/masonry-concrete-tile-tools"
  11460.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11461.                    
  11462.                  >
  11463.                    <span>Masonry &amp; Concrete &amp; Tile Tools</span>
  11464.                    <span class="m-header__menu-item--icon">
  11465.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11466.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11467.                      </svg>
  11468.                    </span>
  11469.                  </a>
  11470.                  <ul
  11471.                    class="m-header__submenu m-header__submenu-level3"
  11472.                  ><li class="m-header__menu-item m-list-menu__item">
  11473.                        <a
  11474.                          href="/collections/electric-rebar-bender"
  11475.                          class="m-link m-link--text focus-inset"
  11476.                          
  11477.                        >
  11478.                          Electric Rebar Bender
  11479.                        </a>
  11480.                      </li><li class="m-header__menu-item m-list-menu__item">
  11481.                        <a
  11482.                          href="/collections/electric-rebar-cutter"
  11483.                          class="m-link m-link--text focus-inset"
  11484.                          
  11485.                        >
  11486.                          Electric Rebar Cutter
  11487.                        </a>
  11488.                      </li><li class="m-header__menu-item m-list-menu__item">
  11489.                        <a
  11490.                          href="/collections/bull-float"
  11491.                          class="m-link m-link--text focus-inset"
  11492.                          
  11493.                        >
  11494.                          Bull Float
  11495.                        </a>
  11496.                      </li><li class="m-header__menu-item m-list-menu__item">
  11497.                        <a
  11498.                          href="/collections/electric-concrete-vibrator"
  11499.                          class="m-link m-link--text focus-inset"
  11500.                          
  11501.                        >
  11502.                          Electric Concrete Vibrator
  11503.                        </a>
  11504.                      </li></ul>
  11505.                </li><li class="m-header__menu-item m-list-menu__item">
  11506.                  <a
  11507.                    href="/collections/scaffolds-mobile-bases"
  11508.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11509.                    
  11510.                  >
  11511.                    <span>Scaffolds &amp; Mobile Bases</span>
  11512.                    <span class="m-header__menu-item--icon">
  11513.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11514.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11515.                      </svg>
  11516.                    </span>
  11517.                  </a>
  11518.                  <ul
  11519.                    class="m-header__submenu m-header__submenu-level3"
  11520.                  ><li class="m-header__menu-item m-list-menu__item">
  11521.                        <a
  11522.                          href="/collections/aluminum-work-plank"
  11523.                          class="m-link m-link--text focus-inset"
  11524.                          
  11525.                        >
  11526.                          Aluminum Work Plank
  11527.                        </a>
  11528.                      </li></ul>
  11529.                </li></ul>
  11530.        
  11531.      </li>
  11532.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  11533.        <a
  11534.          href="/collections/arts-crafts-sewing"
  11535.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  11536.          
  11537.        >
  11538.          <div class="m-link--content m:display-flex m:items-center">
  11539.            <span
  11540.            >Arts &amp; Crafts &amp; Sewing</span><span class="m-header__menu-item--icon">
  11541.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  11542.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11543.              </svg>
  11544.            </span>
  11545.            
  11546.          </div>
  11547.        </a><ul
  11548.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  11549.            role="list"
  11550.            tabindex="-1"
  11551.          ><li class="m-header__menu-item m-list-menu__item">
  11552.                  <a
  11553.                    href="/collections/jewelry-making-repair"
  11554.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11555.                    
  11556.                  >
  11557.                    <span>Jewelry Making &amp; Repair</span>
  11558.                    <span class="m-header__menu-item--icon">
  11559.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11560.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11561.                      </svg>
  11562.                    </span>
  11563.                  </a>
  11564.                  <ul
  11565.                    class="m-header__submenu m-header__submenu-level3"
  11566.                  ><li class="m-header__menu-item m-list-menu__item">
  11567.                        <a
  11568.                          href="/collections/melting-furnace"
  11569.                          class="m-link m-link--text focus-inset"
  11570.                          
  11571.                        >
  11572.                          Melting Furnace
  11573.                        </a>
  11574.                      </li></ul>
  11575.                </li><li class="m-header__menu-item m-list-menu__item">
  11576.                  <a
  11577.                    href="/collections/engraving"
  11578.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11579.                    
  11580.                  >
  11581.                    <span>Engraving</span>
  11582.                    <span class="m-header__menu-item--icon">
  11583.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11584.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11585.                      </svg>
  11586.                    </span>
  11587.                  </a>
  11588.                  <ul
  11589.                    class="m-header__submenu m-header__submenu-level3"
  11590.                  ><li class="m-header__menu-item m-list-menu__item">
  11591.                        <a
  11592.                          href="/collections/water-chiller"
  11593.                          class="m-link m-link--text focus-inset"
  11594.                          
  11595.                        >
  11596.                          Water Chiller
  11597.                        </a>
  11598.                      </li></ul>
  11599.                </li><li class="m-header__menu-item m-list-menu__item">
  11600.                  <a
  11601.                    href="/collections/printmaking"
  11602.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11603.                    
  11604.                  >
  11605.                    <span>Printmaking</span>
  11606.                    <span class="m-header__menu-item--icon">
  11607.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11608.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11609.                      </svg>
  11610.                    </span>
  11611.                  </a>
  11612.                  <ul
  11613.                    class="m-header__submenu m-header__submenu-level3"
  11614.                  ><li class="m-header__menu-item m-list-menu__item">
  11615.                        <a
  11616.                          href="/collections/heat-press-machines"
  11617.                          class="m-link m-link--text focus-inset"
  11618.                          
  11619.                        >
  11620.                          Heat Press Machines
  11621.                        </a>
  11622.                      </li><li class="m-header__menu-item m-list-menu__item">
  11623.                        <a
  11624.                          href="/collections/silk-screen-frame"
  11625.                          class="m-link m-link--text focus-inset"
  11626.                          
  11627.                        >
  11628.                          Silk Screen Frame
  11629.                        </a>
  11630.                      </li></ul>
  11631.                </li><li class="m-header__menu-item m-list-menu__item">
  11632.                  <a
  11633.                    href="/collections/painting-equipment-supplies"
  11634.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11635.                    
  11636.                  >
  11637.                    <span>Painting Equipment &amp; Supplies</span>
  11638.                    <span class="m-header__menu-item--icon">
  11639.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11640.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11641.                      </svg>
  11642.                    </span>
  11643.                  </a>
  11644.                  <ul
  11645.                    class="m-header__submenu m-header__submenu-level3"
  11646.                  ><li class="m-header__menu-item m-list-menu__item">
  11647.                        <a
  11648.                          href="/collections/powder-coating-machine"
  11649.                          class="m-link m-link--text focus-inset"
  11650.                          
  11651.                        >
  11652.                          Powder Coating Machine
  11653.                        </a>
  11654.                      </li></ul>
  11655.                </li></ul>
  11656.        
  11657.      </li>
  11658.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  11659.        <a
  11660.          href="/collections/electrical"
  11661.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  11662.          
  11663.        >
  11664.          <div class="m-link--content m:display-flex m:items-center">
  11665.            <span
  11666.            >Electrical</span><span class="m-header__menu-item--icon">
  11667.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  11668.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11669.              </svg>
  11670.            </span>
  11671.            
  11672.          </div>
  11673.        </a><ul
  11674.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  11675.            role="list"
  11676.            tabindex="-1"
  11677.          ><li class="m-header__menu-item m-list-menu__item">
  11678.                  <a
  11679.                    href="/collections/electrical-boxes-panels-fittings"
  11680.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11681.                    
  11682.                  >
  11683.                    <span>Electrical Boxes &amp; Panels &amp; Fittings</span>
  11684.                    <span class="m-header__menu-item--icon">
  11685.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11686.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11687.                      </svg>
  11688.                    </span>
  11689.                  </a>
  11690.                  <ul
  11691.                    class="m-header__submenu m-header__submenu-level3"
  11692.                  ><li class="m-header__menu-item m-list-menu__item">
  11693.                        <a
  11694.                          href="/collections/electrical-enclosure"
  11695.                          class="m-link m-link--text focus-inset"
  11696.                          
  11697.                        >
  11698.                          Electrical Enclosure
  11699.                        </a>
  11700.                      </li></ul>
  11701.                </li><li class="m-header__menu-item m-list-menu__item">
  11702.                  <a
  11703.                    href="/collections/electrical-tools"
  11704.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11705.                    
  11706.                  >
  11707.                    <span>Electrical Tools</span>
  11708.                    <span class="m-header__menu-item--icon">
  11709.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11710.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11711.                      </svg>
  11712.                    </span>
  11713.                  </a>
  11714.                  <ul
  11715.                    class="m-header__submenu m-header__submenu-level3"
  11716.                  ><li class="m-header__menu-item m-list-menu__item">
  11717.                        <a
  11718.                          href="/collections/electric-wire-stripping-machine"
  11719.                          class="m-link m-link--text focus-inset"
  11720.                          
  11721.                        >
  11722.                          Electric Wire Stripping Machine
  11723.                        </a>
  11724.                      </li><li class="m-header__menu-item m-list-menu__item">
  11725.                        <a
  11726.                          href="/collections/manual-wire-stripping-machine"
  11727.                          class="m-link m-link--text focus-inset"
  11728.                          
  11729.                        >
  11730.                          Manual Wire Stripping Machine
  11731.                        </a>
  11732.                      </li><li class="m-header__menu-item m-list-menu__item">
  11733.                        <a
  11734.                          href="/collections/fusion-fiber-splicer"
  11735.                          class="m-link m-link--text focus-inset"
  11736.                          
  11737.                        >
  11738.                          Fusion Fiber Splicer
  11739.                        </a>
  11740.                      </li></ul>
  11741.                </li><li class="m-header__menu-item m-list-menu__item">
  11742.                  <a
  11743.                    href="/collections/wire-cable-conduit"
  11744.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11745.                    
  11746.                  >
  11747.                    <span>Wire &amp; Cable &amp; Conduit</span>
  11748.                    <span class="m-header__menu-item--icon">
  11749.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11750.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11751.                      </svg>
  11752.                    </span>
  11753.                  </a>
  11754.                  <ul
  11755.                    class="m-header__submenu m-header__submenu-level3"
  11756.                  ><li class="m-header__menu-item m-list-menu__item">
  11757.                        <a
  11758.                          href="/collections/cable-ramp"
  11759.                          class="m-link m-link--text focus-inset"
  11760.                          
  11761.                        >
  11762.                          Cable Ramp
  11763.                        </a>
  11764.                      </li></ul>
  11765.                </li><li class="m-header__menu-item m-list-menu__item">
  11766.                  <a
  11767.                    href="/collections/generators"
  11768.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11769.                    
  11770.                  >
  11771.                    <span>Generators</span>
  11772.                    <span class="m-header__menu-item--icon">
  11773.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11774.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11775.                      </svg>
  11776.                    </span>
  11777.                  </a>
  11778.                  <ul
  11779.                    class="m-header__submenu m-header__submenu-level3"
  11780.                  ><li class="m-header__menu-item m-list-menu__item">
  11781.                        <a
  11782.                          href="/collections/portable-power-station"
  11783.                          class="m-link m-link--text focus-inset"
  11784.                          
  11785.                        >
  11786.                          Power Station
  11787.                        </a>
  11788.                      </li></ul>
  11789.                </li></ul>
  11790.        
  11791.      </li>
  11792.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  11793.        <a
  11794.          href="/collections/lab"
  11795.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  11796.          
  11797.        >
  11798.          <div class="m-link--content m:display-flex m:items-center">
  11799.            <span
  11800.            >Lab</span><span class="m-header__menu-item--icon">
  11801.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  11802.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11803.              </svg>
  11804.            </span>
  11805.            
  11806.          </div>
  11807.        </a><ul
  11808.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  11809.            role="list"
  11810.            tabindex="-1"
  11811.          ><li class="m-header__menu-item m-list-menu__item">
  11812.                  <a
  11813.                    href="/collections/cleaning-equipment"
  11814.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11815.                    
  11816.                  >
  11817.                    <span>Cleaning Equipment</span>
  11818.                    <span class="m-header__menu-item--icon">
  11819.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11820.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11821.                      </svg>
  11822.                    </span>
  11823.                  </a>
  11824.                  <ul
  11825.                    class="m-header__submenu m-header__submenu-level3"
  11826.                  ><li class="m-header__menu-item m-list-menu__item">
  11827.                        <a
  11828.                          href="/collections/ultrasonic-cleaner"
  11829.                          class="m-link m-link--text focus-inset"
  11830.                          
  11831.                        >
  11832.                          Ultrasonic Cleaner
  11833.                        </a>
  11834.                      </li></ul>
  11835.                </li><li class="m-header__menu-item m-list-menu__item">
  11836.                  <a
  11837.                    href="/collections/heating-cooling-equipment"
  11838.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11839.                    
  11840.                  >
  11841.                    <span>Heating &amp; Cooling Equipment</span>
  11842.                    <span class="m-header__menu-item--icon">
  11843.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11844.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11845.                      </svg>
  11846.                    </span>
  11847.                  </a>
  11848.                  <ul
  11849.                    class="m-header__submenu m-header__submenu-level3"
  11850.                  ><li class="m-header__menu-item m-list-menu__item">
  11851.                        <a
  11852.                          href="/collections/reptile-incubator"
  11853.                          class="m-link m-link--text focus-inset"
  11854.                          
  11855.                        >
  11856.                          Lab Incubator
  11857.                        </a>
  11858.                      </li></ul>
  11859.                </li></ul>
  11860.        
  11861.      </li>
  11862.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  11863.        <a
  11864.          href="/collections/plumbing"
  11865.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  11866.          
  11867.        >
  11868.          <div class="m-link--content m:display-flex m:items-center">
  11869.            <span
  11870.            >Plumbing</span><span class="m-header__menu-item--icon">
  11871.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  11872.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11873.              </svg>
  11874.            </span>
  11875.            
  11876.          </div>
  11877.        </a><ul
  11878.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  11879.            role="list"
  11880.            tabindex="-1"
  11881.          ><li class="m-header__menu-item m-list-menu__item">
  11882.                  <a
  11883.                    href="/collections/drains-drainage"
  11884.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11885.                    
  11886.                  >
  11887.                    <span>Drains &amp; Drainage</span>
  11888.                    <span class="m-header__menu-item--icon">
  11889.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11890.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11891.                      </svg>
  11892.                    </span>
  11893.                  </a>
  11894.                  <ul
  11895.                    class="m-header__submenu m-header__submenu-level3"
  11896.                  ><li class="m-header__menu-item m-list-menu__item">
  11897.                        <a
  11898.                          href="/collections/drain-cleaner-machine"
  11899.                          class="m-link m-link--text focus-inset"
  11900.                          
  11901.                        >
  11902.                          Drain Cleaner Machine
  11903.                        </a>
  11904.                      </li></ul>
  11905.                </li><li class="m-header__menu-item m-list-menu__item">
  11906.                  <a
  11907.                    href="/collections/pipe-stands-vises"
  11908.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11909.                    
  11910.                  >
  11911.                    <span>Pipe Stands &amp; Vises</span>
  11912.                    <span class="m-header__menu-item--icon">
  11913.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11914.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11915.                      </svg>
  11916.                    </span>
  11917.                  </a>
  11918.                  <ul
  11919.                    class="m-header__submenu m-header__submenu-level3"
  11920.                  ><li class="m-header__menu-item m-list-menu__item">
  11921.                        <a
  11922.                          href="/collections/roller-head-pipe-stand"
  11923.                          class="m-link m-link--text focus-inset"
  11924.                          
  11925.                        >
  11926.                          Roller Head Pipe Stand
  11927.                        </a>
  11928.                      </li></ul>
  11929.                </li><li class="m-header__menu-item m-list-menu__item">
  11930.                  <a
  11931.                    href="/collections/plumbing-tools"
  11932.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11933.                    
  11934.                  >
  11935.                    <span>Plumbing Tools</span>
  11936.                    <span class="m-header__menu-item--icon">
  11937.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11938.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11939.                      </svg>
  11940.                    </span>
  11941.                  </a>
  11942.                  <ul
  11943.                    class="m-header__submenu m-header__submenu-level3"
  11944.                  ><li class="m-header__menu-item m-list-menu__item">
  11945.                        <a
  11946.                          href="/collections/pipe-tube-bender"
  11947.                          class="m-link m-link--text focus-inset"
  11948.                          
  11949.                        >
  11950.                          Pipe Tube Bender
  11951.                        </a>
  11952.                      </li></ul>
  11953.                </li><li class="m-header__menu-item m-list-menu__item">
  11954.                  <a
  11955.                    href="/collections/pipe-fittings"
  11956.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  11957.                    
  11958.                  >
  11959.                    <span>Pipe &amp; Fittings</span>
  11960.                    <span class="m-header__menu-item--icon">
  11961.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  11962.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11963.                      </svg>
  11964.                    </span>
  11965.                  </a>
  11966.                  <ul
  11967.                    class="m-header__submenu m-header__submenu-level3"
  11968.                  ><li class="m-header__menu-item m-list-menu__item">
  11969.                        <a
  11970.                          href="/collections/pex-tubing"
  11971.                          class="m-link m-link--text focus-inset"
  11972.                          
  11973.                        >
  11974.                          PEX Tubing
  11975.                        </a>
  11976.                      </li></ul>
  11977.                </li></ul>
  11978.        
  11979.      </li>
  11980.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  11981.        <a
  11982.          href="/collections/pumps"
  11983.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  11984.          
  11985.        >
  11986.          <div class="m-link--content m:display-flex m:items-center">
  11987.            <span
  11988.            >Pumps</span><span class="m-header__menu-item--icon">
  11989.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  11990.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  11991.              </svg>
  11992.            </span>
  11993.            
  11994.          </div>
  11995.        </a><ul
  11996.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  11997.            role="list"
  11998.            tabindex="-1"
  11999.          ><li class="m-header__menu-item m-list-menu__item">
  12000.                  <a
  12001.                    href="/collections/water-pumps"
  12002.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  12003.                    
  12004.                  >
  12005.                    <span>Water Pumps</span>
  12006.                    <span class="m-header__menu-item--icon">
  12007.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  12008.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12009.                      </svg>
  12010.                    </span>
  12011.                  </a>
  12012.                  <ul
  12013.                    class="m-header__submenu m-header__submenu-level3"
  12014.                  ><li class="m-header__menu-item m-list-menu__item">
  12015.                        <a
  12016.                          href="/collections/water-transfer-pump"
  12017.                          class="m-link m-link--text focus-inset"
  12018.                          
  12019.                        >
  12020.                          Water Transfer Pump
  12021.                        </a>
  12022.                      </li><li class="m-header__menu-item m-list-menu__item">
  12023.                        <a
  12024.                          href="/collections/swimming-pool-pump-1"
  12025.                          class="m-link m-link--text focus-inset"
  12026.                          
  12027.                        >
  12028.                          Swimming Pool Pump
  12029.                        </a>
  12030.                      </li></ul>
  12031.                </li><li class="m-header__menu-item m-list-menu__item">
  12032.                  <a
  12033.                    href="/collections/oil-pumps"
  12034.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  12035.                    
  12036.                  >
  12037.                    <span>Oil Pumps</span>
  12038.                    <span class="m-header__menu-item--icon">
  12039.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  12040.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12041.                      </svg>
  12042.                    </span>
  12043.                  </a>
  12044.                  <ul
  12045.                    class="m-header__submenu m-header__submenu-level3"
  12046.                  ><li class="m-header__menu-item m-list-menu__item">
  12047.                        <a
  12048.                          href="/collections/electric-fuel-pumps"
  12049.                          class="m-link m-link--text focus-inset"
  12050.                          
  12051.                        >
  12052.                          Electric Fuel Pumps
  12053.                        </a>
  12054.                      </li></ul>
  12055.                </li><li class="m-header__menu-item m-list-menu__item">
  12056.                  <a
  12057.                    href="/collections/vacuum-pumps"
  12058.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  12059.                    
  12060.                  >
  12061.                    <span>Vacuum Pumps</span>
  12062.                    <span class="m-header__menu-item--icon">
  12063.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  12064.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12065.                      </svg>
  12066.                    </span>
  12067.                  </a>
  12068.                  <ul
  12069.                    class="m-header__submenu m-header__submenu-level3"
  12070.                  ><li class="m-header__menu-item m-list-menu__item">
  12071.                        <a
  12072.                          href="/collections/vacuum-pumps"
  12073.                          class="m-link m-link--text focus-inset"
  12074.                          
  12075.                        >
  12076.                          Vacuum Pumps
  12077.                        </a>
  12078.                      </li></ul>
  12079.                </li></ul>
  12080.        
  12081.      </li>
  12082.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  12083.        <a
  12084.          href="/collections/security"
  12085.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  12086.          
  12087.        >
  12088.          <div class="m-link--content m:display-flex m:items-center">
  12089.            <span
  12090.            >Security</span><span class="m-header__menu-item--icon">
  12091.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  12092.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12093.              </svg>
  12094.            </span>
  12095.            
  12096.          </div>
  12097.        </a><ul
  12098.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  12099.            role="list"
  12100.            tabindex="-1"
  12101.          ><li class="m-header__menu-item m-list-menu__item">
  12102.                  <a
  12103.                    href="/collections/access-barriers-crowd-control"
  12104.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  12105.                    
  12106.                  >
  12107.                    <span>Access Barriers &amp; Crowd Control</span>
  12108.                    <span class="m-header__menu-item--icon">
  12109.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  12110.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12111.                      </svg>
  12112.                    </span>
  12113.                  </a>
  12114.                  <ul
  12115.                    class="m-header__submenu m-header__submenu-level3"
  12116.                  ><li class="m-header__menu-item m-list-menu__item">
  12117.                        <a
  12118.                          href="/collections/safety-bollard"
  12119.                          class="m-link m-link--text focus-inset"
  12120.                          
  12121.                        >
  12122.                          Safety Bollard
  12123.                        </a>
  12124.                      </li><li class="m-header__menu-item m-list-menu__item">
  12125.                        <a
  12126.                          href="/collections/folding-security-gate"
  12127.                          class="m-link m-link--text focus-inset"
  12128.                          
  12129.                        >
  12130.                          Folding Security Gate
  12131.                        </a>
  12132.                      </li></ul>
  12133.                </li><li class="m-header__menu-item m-list-menu__item">
  12134.                  <a
  12135.                    href="/collections/safes"
  12136.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  12137.                    
  12138.                  >
  12139.                    <span>Safes</span>
  12140.                    <span class="m-header__menu-item--icon">
  12141.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  12142.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12143.                      </svg>
  12144.                    </span>
  12145.                  </a>
  12146.                  <ul
  12147.                    class="m-header__submenu m-header__submenu-level3"
  12148.                  ><li class="m-header__menu-item m-list-menu__item">
  12149.                        <a
  12150.                          href="/collections/electronic-safes"
  12151.                          class="m-link m-link--text focus-inset"
  12152.                          
  12153.                        >
  12154.                          Electronic Safes
  12155.                        </a>
  12156.                      </li><li class="m-header__menu-item m-list-menu__item">
  12157.                        <a
  12158.                          href="/collections/biometric-safes"
  12159.                          class="m-link m-link--text focus-inset"
  12160.                          
  12161.                        >
  12162.                          Biometric Safes
  12163.                        </a>
  12164.                      </li></ul>
  12165.                </li><li class="m-header__menu-item m-list-menu__item">
  12166.                  <a
  12167.                    href="/collections/traffic-safety"
  12168.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  12169.                    
  12170.                  >
  12171.                    <span>Traffic Safety</span>
  12172.                    <span class="m-header__menu-item--icon">
  12173.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  12174.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12175.                      </svg>
  12176.                    </span>
  12177.                  </a>
  12178.                  <ul
  12179.                    class="m-header__submenu m-header__submenu-level3"
  12180.                  ><li class="m-header__menu-item m-list-menu__item">
  12181.                        <a
  12182.                          href="/collections/traffic-cone"
  12183.                          class="m-link m-link--text focus-inset"
  12184.                          
  12185.                        >
  12186.                          Traffic Cone
  12187.                        </a>
  12188.                      </li><li class="m-header__menu-item m-list-menu__item">
  12189.                        <a
  12190.                          href="/collections/sign-post"
  12191.                          class="m-link m-link--text focus-inset"
  12192.                          
  12193.                        >
  12194.                          Sign Post
  12195.                        </a>
  12196.                      </li></ul>
  12197.                </li></ul>
  12198.        
  12199.      </li>
  12200.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  12201.        <a
  12202.          href="/collections/hydraulics"
  12203.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  12204.          
  12205.        >
  12206.          <div class="m-link--content m:display-flex m:items-center">
  12207.            <span
  12208.            >Hydraulics</span><span class="m-header__menu-item--icon">
  12209.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  12210.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12211.              </svg>
  12212.            </span>
  12213.            
  12214.          </div>
  12215.        </a><ul
  12216.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  12217.            role="list"
  12218.            tabindex="-1"
  12219.          ><li class="m-header__menu-item m-list-menu__item">
  12220.                  <a
  12221.                    href="/collections/hydraulic-equipment"
  12222.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  12223.                    
  12224.                  >
  12225.                    <span>Hydraulic Equipment</span>
  12226.                    <span class="m-header__menu-item--icon">
  12227.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  12228.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12229.                      </svg>
  12230.                    </span>
  12231.                  </a>
  12232.                  <ul
  12233.                    class="m-header__submenu m-header__submenu-level3"
  12234.                  ><li class="m-header__menu-item m-list-menu__item">
  12235.                        <a
  12236.                          href="/collections/hydraulic-power-unit"
  12237.                          class="m-link m-link--text focus-inset"
  12238.                          
  12239.                        >
  12240.                          Hydraulic Power Unit
  12241.                        </a>
  12242.                      </li><li class="m-header__menu-item m-list-menu__item">
  12243.                        <a
  12244.                          href="/collections/hydraulic-shop-press"
  12245.                          class="m-link m-link--text focus-inset"
  12246.                          
  12247.                        >
  12248.                          Hydraulic Shop Press
  12249.                        </a>
  12250.                      </li></ul>
  12251.                </li><li class="m-header__menu-item m-list-menu__item">
  12252.                  <a
  12253.                    href="/collections/hydraulic-pumps"
  12254.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  12255.                    
  12256.                  >
  12257.                    <span>Hydraulic Pumps</span>
  12258.                    <span class="m-header__menu-item--icon">
  12259.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  12260.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12261.                      </svg>
  12262.                    </span>
  12263.                  </a>
  12264.                  <ul
  12265.                    class="m-header__submenu m-header__submenu-level3"
  12266.                  ><li class="m-header__menu-item m-list-menu__item">
  12267.                        <a
  12268.                          href="/collections/manual-hydraulic-pump"
  12269.                          class="m-link m-link--text focus-inset"
  12270.                          
  12271.                        >
  12272.                          Manual Hydraulic Pump
  12273.                        </a>
  12274.                      </li><li class="m-header__menu-item m-list-menu__item">
  12275.                        <a
  12276.                          href="/collections/air-hydraulic-pump"
  12277.                          class="m-link m-link--text focus-inset"
  12278.                          
  12279.                        >
  12280.                          Air Hydraulic Pump
  12281.                        </a>
  12282.                      </li></ul>
  12283.                </li></ul>
  12284.        
  12285.      </li>
  12286.      <li class="m-header__menu-item m-list-menu__item m-header__menu-item--parent">
  12287.        <a
  12288.          href="/collections/toys-games"
  12289.          class="m-link m-link--text focus-inset m:display-flex m:items-center"
  12290.          
  12291.        >
  12292.          <div class="m-link--content m:display-flex m:items-center">
  12293.            <span
  12294.            >Toys &amp; Games</span><span class="m-header__menu-item--icon">
  12295.              <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
  12296.                <path d="M9.75 5L6 8.75L2.25 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12297.              </svg>
  12298.            </span>
  12299.            
  12300.          </div>
  12301.        </a><ul
  12302.            class="m-header__submenu m-gradient m-color-scheme-cf0be1ab-468b-404c-a0d2-7f48e09699b7"
  12303.            role="list"
  12304.            tabindex="-1"
  12305.          ><li class="m-header__menu-item m-list-menu__item">
  12306.                  <a
  12307.                    href="/collections/ride-ons"
  12308.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  12309.                    
  12310.                  >
  12311.                    <span>Ride On Toy</span>
  12312.                    <span class="m-header__menu-item--icon">
  12313.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  12314.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12315.                      </svg>
  12316.                    </span>
  12317.                  </a>
  12318.                  <ul
  12319.                    class="m-header__submenu m-header__submenu-level3"
  12320.                  ><li class="m-header__menu-item m-list-menu__item">
  12321.                        <a
  12322.                          href="/collections/ride-on-cars"
  12323.                          class="m-link m-link--text focus-inset"
  12324.                          
  12325.                        >
  12326.                          Ride On Cars
  12327.                        </a>
  12328.                      </li><li class="m-header__menu-item m-list-menu__item">
  12329.                        <a
  12330.                          href="/collections/ride-on-tractors"
  12331.                          class="m-link m-link--text focus-inset"
  12332.                          
  12333.                        >
  12334.                          Ride On Tractors
  12335.                        </a>
  12336.                      </li><li class="m-header__menu-item m-list-menu__item">
  12337.                        <a
  12338.                          href="/collections/ride-on-jeeps"
  12339.                          class="m-link m-link--text focus-inset"
  12340.                          
  12341.                        >
  12342.                          Ride On Jeeps
  12343.                        </a>
  12344.                      </li><li class="m-header__menu-item m-list-menu__item">
  12345.                        <a
  12346.                          href="/collections/ride-on-atvs"
  12347.                          class="m-link m-link--text focus-inset"
  12348.                          
  12349.                        >
  12350.                          Ride On ATVs
  12351.                        </a>
  12352.                      </li><li class="m-header__menu-item m-list-menu__item">
  12353.                        <a
  12354.                          href="/collections/ride-on-utvs"
  12355.                          class="m-link m-link--text focus-inset"
  12356.                          
  12357.                        >
  12358.                          Ride On UTVs
  12359.                        </a>
  12360.                      </li><li class="m-header__menu-item m-list-menu__item">
  12361.                        <a
  12362.                          href="/collections/ride-on-motorcycles"
  12363.                          class="m-link m-link--text focus-inset"
  12364.                          
  12365.                        >
  12366.                          Ride On Motorcycles
  12367.                        </a>
  12368.                      </li><li class="m-header__menu-item m-list-menu__item">
  12369.                        <a
  12370.                          href="/collections/ride-ons-go-kart"
  12371.                          class="m-link m-link--text focus-inset"
  12372.                          
  12373.                        >
  12374.                          Ride Ons Go Kart
  12375.                        </a>
  12376.                      </li><li class="m-header__menu-item m-list-menu__item">
  12377.                        <a
  12378.                          href="/collections/ride-on-bumper-cars"
  12379.                          class="m-link m-link--text focus-inset"
  12380.                          
  12381.                        >
  12382.                          Ride On Bumper Cars
  12383.                        </a>
  12384.                      </li><li class="m-header__menu-item m-list-menu__item">
  12385.                        <a
  12386.                          href="/collections/push-pedal"
  12387.                          class="m-link m-link--text focus-inset"
  12388.                          
  12389.                        >
  12390.                          Push &amp; Pedal
  12391.                        </a>
  12392.                      </li><li class="m-header__menu-item m-list-menu__item">
  12393.                        <a
  12394.                          href="/collections/ride-on-truck"
  12395.                          class="m-link m-link--text focus-inset"
  12396.                          
  12397.                        >
  12398.                          Ride On Truck
  12399.                        </a>
  12400.                      </li><li class="m-header__menu-item m-list-menu__item">
  12401.                        <a
  12402.                          href="/collections/kids-bikes"
  12403.                          class="m-link m-link--text focus-inset"
  12404.                          
  12405.                        >
  12406.                          Kids Bikes
  12407.                        </a>
  12408.                      </li></ul>
  12409.                </li><li class="m-header__menu-item m-list-menu__item">
  12410.                  <a
  12411.                    href="/collections/musical-instruments"
  12412.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  12413.                    
  12414.                  >
  12415.                    <span>Musical Instruments</span>
  12416.                    <span class="m-header__menu-item--icon">
  12417.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  12418.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12419.                      </svg>
  12420.                    </span>
  12421.                  </a>
  12422.                  <ul
  12423.                    class="m-header__submenu m-header__submenu-level3"
  12424.                  ><li class="m-header__menu-item m-list-menu__item">
  12425.                        <a
  12426.                          href="/collections/musical-instrument-keyboards"
  12427.                          class="m-link m-link--text focus-inset"
  12428.                          
  12429.                        >
  12430.                          Musical Instrument Keyboards
  12431.                        </a>
  12432.                      </li><li class="m-header__menu-item m-list-menu__item">
  12433.                        <a
  12434.                          href="/collections/guitars"
  12435.                          class="m-link m-link--text focus-inset"
  12436.                          
  12437.                        >
  12438.                          Guitars
  12439.                        </a>
  12440.                      </li><li class="m-header__menu-item m-list-menu__item">
  12441.                        <a
  12442.                          href="/collections/drums-percussion"
  12443.                          class="m-link m-link--text focus-inset"
  12444.                          
  12445.                        >
  12446.                          Drums &amp; Percussion
  12447.                        </a>
  12448.                      </li></ul>
  12449.                </li><li class="m-header__menu-item m-list-menu__item">
  12450.                  <a
  12451.                    href="/collections/kids-dress-up-pretend-play"
  12452.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  12453.                    
  12454.                  >
  12455.                    <span>Kids&#39; Dress Up &amp; Pretend Play</span>
  12456.                    <span class="m-header__menu-item--icon">
  12457.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  12458.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12459.                      </svg>
  12460.                    </span>
  12461.                  </a>
  12462.                  <ul
  12463.                    class="m-header__submenu m-header__submenu-level3"
  12464.                  ><li class="m-header__menu-item m-list-menu__item">
  12465.                        <a
  12466.                          href="/collections/toy-kitchen-products"
  12467.                          class="m-link m-link--text focus-inset"
  12468.                          
  12469.                        >
  12470.                          Toy Kitchen Products
  12471.                        </a>
  12472.                      </li></ul>
  12473.                </li><li class="m-header__menu-item m-list-menu__item">
  12474.                  <a
  12475.                    href="/collections/learning-education-toys"
  12476.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  12477.                    
  12478.                  >
  12479.                    <span>Learning &amp; Education Toys</span>
  12480.                    <span class="m-header__menu-item--icon">
  12481.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  12482.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12483.                      </svg>
  12484.                    </span>
  12485.                  </a>
  12486.                  <ul
  12487.                    class="m-header__submenu m-header__submenu-level3"
  12488.                  ><li class="m-header__menu-item m-list-menu__item">
  12489.                        <a
  12490.                          href="/collections/early-development-activity-toys"
  12491.                          class="m-link m-link--text focus-inset"
  12492.                          
  12493.                        >
  12494.                          Early Development &amp; Activity Toys
  12495.                        </a>
  12496.                      </li><li class="m-header__menu-item m-list-menu__item">
  12497.                        <a
  12498.                          href="/collections/education-toys"
  12499.                          class="m-link m-link--text focus-inset"
  12500.                          
  12501.                        >
  12502.                          Education Toys
  12503.                        </a>
  12504.                      </li></ul>
  12505.                </li><li class="m-header__menu-item m-list-menu__item">
  12506.                  <a
  12507.                    href="/collections/games-accessories"
  12508.                    class="m:display-flex m:items-center m:justify-between m:w-full m-link m-link--text focus-inset"
  12509.                    
  12510.                  >
  12511.                    <span>Games &amp; Accessories</span>
  12512.                    <span class="m-header__menu-item--icon">
  12513.                      <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
  12514.                        <path d="M4.5 2.25L8.25 6L4.5 9.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  12515.                      </svg>
  12516.                    </span>
  12517.                  </a>
  12518.                  <ul
  12519.                    class="m-header__submenu m-header__submenu-level3"
  12520.                  ><li class="m-header__menu-item m-list-menu__item">
  12521.                        <a
  12522.                          href="/collections/game-accessories"
  12523.                          class="m-link m-link--text focus-inset"
  12524.                          
  12525.                        >
  12526.                          Game Accessories
  12527.                        </a>
  12528.                      </li></ul>
  12529.                </li></ul>
  12530.        
  12531.      </li></ul>
  12532. </nav>
  12533. </div>
  12534.        </div>
  12535.        <div class="m-header__menu-right m:display-flex">
  12536.          
  12537. <div class="m-header__menu-blocks m:display-flex">
  12538.              
  12539.                <ul class="m-list-menu--inline m:h-full">
  12540.                  
  12541.                    
  12542.                  
  12543.                </ul>
  12544.              
  12545.              
  12546.                
  12547.                  
  12548.                
  12549.              
  12550.            </div>
  12551.          
  12552.          
  12553.        </div>
  12554.      </div>
  12555.    </div>
  12556.  </div>
  12557.  
  12558.  
  12559.  <div class="custom-search-hidden">
  12560.    <div class="custom-search-wrapper">
  12561.      <div class="custom-search-item custom-search-history">
  12562.        <div class="custom-search-item-ts">
  12563.          <div class="custom-search-item-t">Recent Searches</div>
  12564.          <div class="custom-search-item-s js-clearAllHistory">Clear all</div>
  12565.        </div>
  12566.        <ul class="custom-search-link">
  12567.        </ul>
  12568.      </div>
  12569.      
  12570.      <div class="custom-search-item">
  12571.        <div class="custom-search-item-ts">
  12572.          <div class="custom-search-item-t">Trending</div>
  12573.        </div>
  12574.        <ul class="custom-search-link">
  12575.          <li><a href="/search?q=rugs" title="">rugs🔥</a></li><li><a href="/search?q=dresser" title="">dresser🔥</a></li><li><a href="/search?q=24v+ride+on" title="">24v ride on</a></li><li><a href="/search?q=tractor" title="">tractor</a></li><li><a href="/search?q=area+rugs" title="">area rugs</a></li><li><a href="/search?q=carport" title="">carport</a></li><li><a href="/search?q=motorcycle+lift" title="">motorcycle lift</a></li><li><a href="/search?q=tractor+attachments" title="">tractor attachments</a></li><li><a href="/search?q=go+kart" title="">go kart</a></li><li><a href="/search?q=pallet+forks" title="">pallet forks</a></li>
  12576.        </ul>
  12577.      </div>
  12578.      
  12579.    </div>
  12580.  </div>
  12581.  
  12582. </sticky-header data-sticky-type="on-scroll-up">
  12583.  
  12584. <script>
  12585.  // 渲染搜索历史
  12586.  const searchHistoryData = window.garveeSearch.getHistory();
  12587.  const historyList = document.querySelector('.custom-search-history>.custom-search-link');
  12588.  if (historyList) {
  12589.    historyList.innerHTML = '';
  12590.    if(!searchHistoryData.length){
  12591.      document.querySelector('.custom-search-history').style.display = 'none';
  12592.    } else {
  12593.      searchHistoryData.forEach(item => {
  12594.        const li = document.createElement('li');
  12595.        const a = document.createElement('a');
  12596.        a.href = `/search?q=${encodeURIComponent(item)}`;
  12597.        a.textContent = item;
  12598.        li.appendChild(a);
  12599.        historyList.appendChild(li);
  12600.      });
  12601.    }
  12602.    window.garveeSearch.customSearch = document.querySelector('.custom-search-hidden').innerHTML;
  12603.  }
  12604. </script>
  12605.  
  12606. <style>
  12607.  .custom-search-hidden {
  12608.    display: none;
  12609.  }
  12610.  .custom-search-wrapper {
  12611.    padding: 24px 15px;
  12612.  }
  12613.  .custom-search-item {
  12614.    margin-bottom: 16px;
  12615.  }
  12616.  .custom-search-item-ts {
  12617.    display: flex;
  12618.    justify-content: space-between;
  12619.    margin-bottom: 12px;
  12620.  }
  12621.  .custom-search-item-t {
  12622.    color: rgba(0, 0, 0, .87);
  12623.    font-size: 16px;
  12624.    font-weight: 700;
  12625.  }
  12626.  .custom-search-item-s {
  12627.    color: rgba(0, 0, 0, .87);
  12628.    cursor: pointer;
  12629.    font-size: 14px;
  12630.    line-height: 16px;
  12631.    text-decoration: underline;
  12632.  }
  12633.  .custom-search-link {
  12634.    display: flex;
  12635.    gap: 10px;
  12636.    flex-wrap: wrap;
  12637.  }
  12638.  .custom-search-link li {
  12639.    max-width: 100%;
  12640.  }
  12641.  .custom-search-link a {
  12642.    display: block;
  12643.    max-width: 100%;
  12644.    overflow: hidden;
  12645.    text-overflow: ellipsis;
  12646.    white-space: nowrap;
  12647.    align-items: center;
  12648.    background-color: #f0f2f5;
  12649.    color: rgba(0, 0, 0, .87);
  12650.    font-size: 14px;
  12651.    height: 36px;
  12652.    line-height: 36px;
  12653.    padding-left: 12px;
  12654.    padding-right: 12px;
  12655.    transition: all .3s;
  12656.  }
  12657.  
  12658.  .custom-search-link a:hover {
  12659.    background-color: #c8c9cc;
  12660.    transition: all .3s;
  12661.  }
  12662.  
  12663.  
  12664.  .m-header__menu-center{
  12665.    min-height:50px;
  12666.  }
  12667.  @media screen and (min-width:1280px){
  12668.    .smart_menu_wrapper{
  12669.      display:none;
  12670.    }
  12671.  }
  12672.  .m-header__icon--cart::before {
  12673.  content: "";
  12674.  position: absolute;
  12675.  width: 1px;
  12676.  height: 145%;
  12677.  background-color: white;
  12678.  left: -5px;
  12679. }
  12680.  @media screen and (max-width:1280px){
  12681.    .m-header__icon--cart::before{
  12682.      display:none;
  12683.    }
  12684.    .m-header__icons > details-modal {
  12685.      display:none;
  12686.    }
  12687.  }
  12688.  .mobile-header__search {
  12689.    display: none;
  12690.    padding: 0px 15px 10px 15px;
  12691.  }
  12692.   @media screen and (max-width: 1024px) {
  12693.    .mobile-header__search {
  12694.      display: block;
  12695.    }
  12696.    .m-header__top-wrapper.nav-bar-hidden {
  12697.      box-shadow: 0 0 0 0;
  12698.    }
  12699.  }
  12700. </style>
  12701.  
  12702.  
  12703.  
  12704. <style> #shopify-section-sections--24257709441337__729ed7ff-cd70-41ab-97b7-db284c5764d5 .m-megamenu__toggle {--toggle-spacing: 5px;} #shopify-section-sections--24257709441337__729ed7ff-cd70-41ab-97b7-db284c5764d5 .form-field {--color-foreground: var(--color-primary); --inputs-shadow-width: 1px; --inputs-border-width: 0px;} #shopify-section-sections--24257709441337__729ed7ff-cd70-41ab-97b7-db284c5764d5 .f-menu--vertical {--submenu-column-width: 265px;} #shopify-section-sections--24257709441337__729ed7ff-cd70-41ab-97b7-db284c5764d5 .weglot-container {display: none;} #shopify-section-sections--24257709441337__729ed7ff-cd70-41ab-97b7-db284c5764d5 .m-icon-text {font-size: 14px;} #shopify-section-sections--24257709441337__729ed7ff-cd70-41ab-97b7-db284c5764d5 .m-header__icon--cart {padding-left: 30px; position: relative;} </style></div><section id="shopify-section-sections--24257709441337__17326901604b63e7bc" class="shopify-section shopify-section-group-header-group section"><link href="//www.garvee.com/cdn/shop/t/132/assets/Category_Breadcrumbs_custom.css?v=60798596313641002301740986011" rel="stylesheet" type="text/css" media="all" />
  12705. <style>
  12706.  .m-section-apps {
  12707.    display: none;
  12708.  }
  12709.  .m-section-apps:has(.shopify-app-block) {
  12710.    display: block;
  12711.  }
  12712. </style>
  12713.  
  12714.  
  12715.  
  12716. </section>
  12717. <!-- END sections: header-group --><main role="main" id="MainContent" class="m-main-content">
  12718.      
  12719.      <div class="m-content-for-layout"><div id="shopify-section-template--24257712095545__f84c3803-fe3e-4e5e-b9e7-9668c6b21451" class="shopify-section"><link href="//www.garvee.com/cdn/shop/t/132/assets/component-featured-promotion.css?v=127335087786760164761740986010" rel="stylesheet" type="text/css" media="all" />
  12720. <link href="//www.garvee.com/cdn/shop/t/132/assets/section-featured-promotion.css?v=25879868529569918001740986011" rel="stylesheet" type="text/css" media="all" />
  12721.  
  12722.  
  12723.  
  12724. <style data-shopify>
  12725.  .m--featured-promotions--template--24257712095545__f84c3803-fe3e-4e5e-b9e7-9668c6b21451 .m-featured-promotions__wrapper > *:nth-child(3n):after {
  12726.    content: none;
  12727.  }
  12728.  .m-featured-promotions__item {
  12729.    display: block;
  12730.  }
  12731.  @media screen and (max-width: 768px) {
  12732.    .m-featured-promotions__item {
  12733.      display: none;
  12734.    }
  12735.  }
  12736.  .m-featured-promotions__item-show {
  12737.    display: block;
  12738.  }
  12739. </style>
  12740.  
  12741. <section
  12742.  class="m-section m-featured-promotions m--featured-promotions--template--24257712095545__f84c3803-fe3e-4e5e-b9e7-9668c6b21451 m-section--padding m-color-background-1 m-gradient "
  12743.  style="--section-padding-top: 5px; --section-padding-bottom: 5px; --column-gap: 50px;--row-gap: 0px;--row-gap-mobile: 10px; --section-border-bottom: 1px;"
  12744. >
  12745.  <div class="m-page-width">
  12746.    <div class="m-section__wrapper">
  12747.      <div class="m-featured-promotions__wrapper m-section__content m:grid md:m:grid-2-cols lg:m:grid-3-cols ">
  12748.        
  12749.          <div class="m-featured-promotions__item m:column m-featured-promotions__item-show">
  12750.            
  12751.  
  12752. <div class="m-promotion-card m:display-flex m:justify-center m:items-start"
  12753.  
  12754.  style=""
  12755. >
  12756.  <div class="m-promotion-card__media" style="--image-width: 20px;--image-radius: 0px;">
  12757.    
  12758.      <div class="m-promotion-card__media-img">
  12759.        
  12760. <responsive-image class="m-image m:w-full m:h-full"   style="--aspect-ratio: 1.0;">
  12761.  
  12762.  <img
  12763.      srcset="//www.garvee.com/cdn/shop/files/7c0b582d6a2c4ad8a9809a0d6b4014a7.png?v=1740804166&width=165 165w,//www.garvee.com/cdn/shop/files/7c0b582d6a2c4ad8a9809a0d6b4014a7.png?v=1740804166&width=360 360w,//www.garvee.com/cdn/shop/files/7c0b582d6a2c4ad8a9809a0d6b4014a7.png?v=1740804166 500w"
  12764.      src="//www.garvee.com/cdn/shop/files/7c0b582d6a2c4ad8a9809a0d6b4014a7.png?v=1740804166&width=360"
  12765.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  12766.      alt=""
  12767.      loading="lazy"
  12768.      class=""
  12769.      width="500"
  12770.      height="500"
  12771.      
  12772.  >
  12773.  
  12774.  <noscript>
  12775.    <img class="" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/7c0b582d6a2c4ad8a9809a0d6b4014a7.png?crop=center&height=2048&v=1740804166&width=2048" alt="">
  12776.  </noscript>
  12777. </responsive-image>
  12778.  
  12779.      </div>
  12780.    
  12781.  </div>
  12782.  
  12783.    <div class="m-promotion-card__content m-promotion-card__content--h6">
  12784.      
  12785.        <h2 class="m-promotion-card__content-heading h6">
  12786.          Free US Shipping
  12787.        </h2>
  12788.      
  12789.      
  12790.    </div>
  12791.  
  12792.  
  12793. </div>
  12794.          </div>
  12795.        
  12796.          <div class="m-featured-promotions__item m:column">
  12797.            
  12798.  
  12799. <div class="m-promotion-card m:display-flex m:justify-center m:items-center"
  12800.  
  12801.  style=""
  12802. >
  12803.  <div class="m-promotion-card__media" style="--image-width: 20px;--image-radius: 0px;">
  12804.    
  12805.      <div class="m-promotion-card__media-img">
  12806.        
  12807. <responsive-image class="m-image m:w-full m:h-full"   style="--aspect-ratio: 1.0;">
  12808.  
  12809.  <img
  12810.      srcset="//www.garvee.com/cdn/shop/files/c110d31823094003b3704bb80492e70f.png?v=1740804166&width=165 165w,//www.garvee.com/cdn/shop/files/c110d31823094003b3704bb80492e70f.png?v=1740804166 200w"
  12811.      src="//www.garvee.com/cdn/shop/files/c110d31823094003b3704bb80492e70f.png?v=1740804166&width=360"
  12812.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  12813.      alt=""
  12814.      loading="lazy"
  12815.      class=""
  12816.      width="200"
  12817.      height="200"
  12818.      
  12819.  >
  12820.  
  12821.  <noscript>
  12822.    <img class="" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/c110d31823094003b3704bb80492e70f.png?crop=center&height=2048&v=1740804166&width=2048" alt="">
  12823.  </noscript>
  12824. </responsive-image>
  12825.  
  12826.      </div>
  12827.    
  12828.  </div>
  12829.  
  12830.    <div class="m-promotion-card__content m-promotion-card__content--h6">
  12831.      
  12832.        <h2 class="m-promotion-card__content-heading h6">
  12833.          30 Day No-Hassle Returns
  12834.        </h2>
  12835.      
  12836.      
  12837.    </div>
  12838.  
  12839.  
  12840. </div>
  12841.          </div>
  12842.        
  12843.          <div class="m-featured-promotions__item m:column">
  12844.            
  12845.  
  12846. <div class="m-promotion-card m:display-flex m:justify-center m:items-center"
  12847.  
  12848.  style=""
  12849. >
  12850.  <div class="m-promotion-card__media" style="--image-width: 20px;--image-radius: 0px;">
  12851.    
  12852.      <div class="m-promotion-card__media-img">
  12853.        
  12854. <responsive-image class="m-image m:w-full m:h-full"   style="--aspect-ratio: 1.0;">
  12855.  
  12856.  <img
  12857.      srcset="//www.garvee.com/cdn/shop/files/c2a14821ce1b469e88596e959801f784.png?v=1740804166 153w"
  12858.      src="//www.garvee.com/cdn/shop/files/c2a14821ce1b469e88596e959801f784.png?v=1740804166&width=360"
  12859.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  12860.      alt=""
  12861.      loading="lazy"
  12862.      class=""
  12863.      width="153"
  12864.      height="153"
  12865.      
  12866.  >
  12867.  
  12868.  <noscript>
  12869.    <img class="" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/c2a14821ce1b469e88596e959801f784.png?crop=center&height=2048&v=1740804166&width=2048" alt="">
  12870.  </noscript>
  12871. </responsive-image>
  12872.  
  12873.      </div>
  12874.    
  12875.  </div>
  12876.  
  12877.    <div class="m-promotion-card__content m-promotion-card__content--h6">
  12878.      
  12879.        <h2 class="m-promotion-card__content-heading h6">
  12880.          12-Month Warranty
  12881.        </h2>
  12882.      
  12883.      
  12884.    </div>
  12885.  
  12886.  
  12887. </div>
  12888.          </div>
  12889.        
  12890.      </div>
  12891.    </div>
  12892.  </div>
  12893. </section>
  12894.  
  12895. <style>
  12896.  
  12897. </style>
  12898.  
  12899. <script>
  12900.  const vertical_column = document.querySelector('.vertical_column')
  12901.  if(!vertical_column){
  12902.      document.addEventListener('DOMContentLoaded', function() {
  12903.      const blocks = document.querySelectorAll('.m-featured-promotions__item');
  12904.  
  12905.      blocks.forEach((block, index) => {
  12906.        block.style.animationDelay = `${index * 2}s`;
  12907.      });
  12908.  
  12909.      let currentBlockIndex = 0;
  12910.      setInterval(() => {
  12911.        blocks.forEach((block, index) => {
  12912.          if (index === currentBlockIndex) {
  12913.            block.classList.add('m-featured-promotions__item-show');
  12914.          } else {
  12915.            block.classList.remove('m-featured-promotions__item-show');
  12916.          }
  12917.        });
  12918.  
  12919.        currentBlockIndex = (currentBlockIndex + 1) % blocks.length;
  12920.      }, 6000);
  12921.    });
  12922.  }
  12923. </script>
  12924.  
  12925.  
  12926. </div><div id="shopify-section-template--24257712095545__slideshow_PKUKrb" class="shopify-section">
  12927. <link rel="stylesheet" type="text/css" href="//www.garvee.com/cdn/shop/t/132/assets/section-slideshow.css?v=144495575000060985541740986010">
  12928.  
  12929. <!-- Preload the LCP image with a high fetchpriority so it starts loading with the stylesheet. -->
  12930. <!-- <link rel="preload" fetchpriority="high" as="image" href="//www.garvee.com/cdn/shop/files/ShopNow-1920x796.jpg?v=1748341849" type="image/jpg">
  12931. <link rel="preload" fetchpriority="high" as="image" href="//www.garvee.com/cdn/shop/files/M-865x350_1a574599-0f7a-4231-9a59-8ed9bc7aa306.jpg?v=1748341857" type="image/png"> -->
  12932.  
  12933. <!-- Preload the LCP image with a high fetchpriority so it starts loading with the stylesheet. -->
  12934. <!-- <link rel="preload" fetchpriority="high" as="image" href="//www.garvee.com/cdn/shop/files/ShopNow-1920x796_17c88e0a-3f27-41bb-bc2c-1a89a583b3a9.jpg?v=1748591259" type="image/jpg">
  12935. <link rel="preload" fetchpriority="high" as="image" href="//www.garvee.com/cdn/shop/files/M-865x350_be9c8e4b-1fa1-4e02-97d0-1214d40d7cba.jpg?v=1748599498" type="image/png"> -->
  12936.  
  12937.  
  12938. <style>
  12939.  @media (max-width: 1370px) {
  12940.    .m-slide__wrapper.m-page-width {
  12941.      padding-left: 0;
  12942.      padding-right: 0;
  12943.    }
  12944.  }
  12945. </style>
  12946. <section
  12947.  class="m-slide m-slide--template--24257712095545__slideshow_PKUKrb m-slider--adapt "
  12948.  data-section-type="slider"
  12949.  data-section-id="template--24257712095545__slideshow_PKUKrb"
  12950.  style="--data-autoplay-speed: 5s;"
  12951. >
  12952.  <div class="m-slide__wrapper m-page-width">
  12953.    <m-slideshow
  12954.      class="m:block"
  12955.      data-id="template--24257712095545__slideshow_PKUKrb"
  12956.      data-autoplay="true"
  12957.      data-autoplay-speed="5"
  12958.      data-pagination="false"
  12959.      data-navigation="true"
  12960.      data-show-controls="true"
  12961.      data-effect="slide"
  12962.      data-show-content-below="false"
  12963.    >
  12964.      <div class="swiper">
  12965.        <div class="swiper-wrapper">
  12966.          
  12967.            
  12968.  
  12969.            
  12970.            <div
  12971.              
  12972.              data-index="0"
  12973.              class="swiper-slide m-color-background-1 m-gradient"
  12974.              data-slide-type="image_slide"
  12975.            >
  12976.              <div class="m-slide  m-slide--has-link">
  12977.                <div class="m-slide__media">
  12978.                  
  12979.                  
  12980.                    <a href="/pages/activity-air-conditioning-sale"
  12981.                      
  12982.              
  12983.                style="--aspect-ratio: 2.4120603015075375; --aspect-ratio-mobile: 1.6168224299065421"
  12984.              
  12985.            
  12986.                      class="m-slide__bg m:w-full m:h-full m-slide__bg--adapt m:hidden md:m:block"
  12987.                      aria-label=""
  12988.                    ><img src="//www.garvee.com/cdn/shop/files/ShopNow-1920x796.jpg?v=1748341849&amp;width=3840" alt="Slide 1" srcset="//www.garvee.com/cdn/shop/files/ShopNow-1920x796.jpg?v=1748341849&amp;width=375 375w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796.jpg?v=1748341849&amp;width=550 550w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796.jpg?v=1748341849&amp;width=750 750w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796.jpg?v=1748341849&amp;width=1100 1100w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796.jpg?v=1748341849&amp;width=1500 1500w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796.jpg?v=1748341849&amp;width=1780 1780w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796.jpg?v=1748341849&amp;width=2000 2000w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796.jpg?v=1748341849&amp;width=3000 3000w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796.jpg?v=1748341849&amp;width=3840 3840w" width="1920" height="796" loading="eager" fetchpriority="high" sizes="100vw">
  12989.                    </a>
  12990.                  
  12991.                  
  12992.                    <a href="/pages/activity-air-conditioning-sale"
  12993.                      
  12994.              
  12995.                style="--aspect-ratio: 2.4120603015075375; --aspect-ratio-mobile: 1.6168224299065421"
  12996.              
  12997.            
  12998.                      class="m-slide__bg md:m:hidden m:block m:w-full m:h-full m-slide__bg--adapt"
  12999.                      aria-label=""
  13000.                    ><img src="//www.garvee.com/cdn/shop/files/M-865x350_1a574599-0f7a-4231-9a59-8ed9bc7aa306.jpg?v=1748341857&amp;width=1100" alt="Slide 1" srcset="//www.garvee.com/cdn/shop/files/M-865x350_1a574599-0f7a-4231-9a59-8ed9bc7aa306.jpg?v=1748341857&amp;width=375 375w, //www.garvee.com/cdn/shop/files/M-865x350_1a574599-0f7a-4231-9a59-8ed9bc7aa306.jpg?v=1748341857&amp;width=550 550w, //www.garvee.com/cdn/shop/files/M-865x350_1a574599-0f7a-4231-9a59-8ed9bc7aa306.jpg?v=1748341857&amp;width=750 750w, //www.garvee.com/cdn/shop/files/M-865x350_1a574599-0f7a-4231-9a59-8ed9bc7aa306.jpg?v=1748341857&amp;width=1100 1100w" width="865" height="535" loading="eager" fetchpriority="high" sizes="100vw">
  13001.                    </a>
  13002.                  
  13003.                </div>
  13004.                <div
  13005.                  class="m-slide__content m-slide__content--h3 m-slide__has-controls"
  13006.                  data-color-scheme="m-color-background-1"
  13007.                >
  13008.                  <div class="m-slide__content--wrapper m:display-flex m:h-full m-page-width m:items-center m:justify-center">
  13009.                    <div class="m-slide__content--inner m:text-center">
  13010.                      
  13011.                      
  13012.                      
  13013.                    </div>
  13014.                  </div>
  13015.                </div>
  13016.              </div>
  13017.            </div>
  13018.          
  13019.            
  13020.  
  13021.            
  13022.            <div
  13023.              
  13024.              data-index="1"
  13025.              class="swiper-slide m-color-background-1 m-gradient"
  13026.              data-slide-type="image_slide"
  13027.            >
  13028.              <div class="m-slide  m-slide--has-link">
  13029.                <div class="m-slide__media">
  13030.                  
  13031.                  
  13032.                    <a href="/pages/activity-father-s-day-sale"
  13033.                      
  13034.              
  13035.                style="--aspect-ratio: 2.4120603015075375; --aspect-ratio-mobile: 1.6168224299065421"
  13036.              
  13037.            
  13038.                      class="m-slide__bg m:w-full m:h-full m-slide__bg--adapt m:hidden md:m:block"
  13039.                      aria-label=""
  13040.                    ><img src="//www.garvee.com/cdn/shop/files/ShopNow-1920x796_17c88e0a-3f27-41bb-bc2c-1a89a583b3a9.jpg?v=1748591259&amp;width=3840" alt="Slide 2" srcset="//www.garvee.com/cdn/shop/files/ShopNow-1920x796_17c88e0a-3f27-41bb-bc2c-1a89a583b3a9.jpg?v=1748591259&amp;width=375 375w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796_17c88e0a-3f27-41bb-bc2c-1a89a583b3a9.jpg?v=1748591259&amp;width=550 550w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796_17c88e0a-3f27-41bb-bc2c-1a89a583b3a9.jpg?v=1748591259&amp;width=750 750w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796_17c88e0a-3f27-41bb-bc2c-1a89a583b3a9.jpg?v=1748591259&amp;width=1100 1100w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796_17c88e0a-3f27-41bb-bc2c-1a89a583b3a9.jpg?v=1748591259&amp;width=1500 1500w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796_17c88e0a-3f27-41bb-bc2c-1a89a583b3a9.jpg?v=1748591259&amp;width=1780 1780w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796_17c88e0a-3f27-41bb-bc2c-1a89a583b3a9.jpg?v=1748591259&amp;width=2000 2000w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796_17c88e0a-3f27-41bb-bc2c-1a89a583b3a9.jpg?v=1748591259&amp;width=3000 3000w, //www.garvee.com/cdn/shop/files/ShopNow-1920x796_17c88e0a-3f27-41bb-bc2c-1a89a583b3a9.jpg?v=1748591259&amp;width=3840 3840w" width="1920" height="796" loading="eager" fetchpriority="high" sizes="100vw">
  13041.                    </a>
  13042.                  
  13043.                  
  13044.                    <a href="/pages/activity-father-s-day-sale"
  13045.                      
  13046.              
  13047.                style="--aspect-ratio: 2.4120603015075375; --aspect-ratio-mobile: 1.6168224299065421"
  13048.              
  13049.            
  13050.                      class="m-slide__bg md:m:hidden m:block m:w-full m:h-full m-slide__bg--adapt"
  13051.                      aria-label=""
  13052.                    ><img src="//www.garvee.com/cdn/shop/files/M-865x350_be9c8e4b-1fa1-4e02-97d0-1214d40d7cba.jpg?v=1748599498&amp;width=1100" alt="Slide 2" srcset="//www.garvee.com/cdn/shop/files/M-865x350_be9c8e4b-1fa1-4e02-97d0-1214d40d7cba.jpg?v=1748599498&amp;width=375 375w, //www.garvee.com/cdn/shop/files/M-865x350_be9c8e4b-1fa1-4e02-97d0-1214d40d7cba.jpg?v=1748599498&amp;width=550 550w, //www.garvee.com/cdn/shop/files/M-865x350_be9c8e4b-1fa1-4e02-97d0-1214d40d7cba.jpg?v=1748599498&amp;width=750 750w, //www.garvee.com/cdn/shop/files/M-865x350_be9c8e4b-1fa1-4e02-97d0-1214d40d7cba.jpg?v=1748599498&amp;width=1100 1100w" width="865" height="535" loading="eager" fetchpriority="high" sizes="100vw">
  13053.                    </a>
  13054.                  
  13055.                </div>
  13056.                <div
  13057.                  class="m-slide__content m-slide__content--h3 m-slide__has-controls"
  13058.                  data-color-scheme="m-color-background-1"
  13059.                >
  13060.                  <div class="m-slide__content--wrapper m:display-flex m:h-full m-page-width m:items-center m:justify-center">
  13061.                    <div class="m-slide__content--inner m:text-center">
  13062.                      
  13063.                      
  13064.                      
  13065.                    </div>
  13066.                  </div>
  13067.                </div>
  13068.              </div>
  13069.            </div>
  13070.          
  13071.        </div>
  13072.        
  13073.  
  13074.  
  13075.  
  13076. <div class="m-slider-controls m:text-center m-slider-controls--show-nav m-slider-controls--nav-inline m-slider-controls--group ">
  13077.  <div class="m-slider-controls__wrapper">
  13078.    
  13079.      
  13080.        
  13081.          <div class="dot active"></div>
  13082.        
  13083.      
  13084.        
  13085.          <div class="dot"></div>
  13086.        
  13087.      
  13088.    
  13089.  </div>
  13090. </div>
  13091. <style>
  13092.  .dots-container{
  13093.    display:flex;
  13094.  }
  13095.  .dot {
  13096.        width: 10px;
  13097.        height: 10px;
  13098.        background-color: gray;
  13099.        border-radius: 50%;
  13100.        margin: 0 5px;
  13101.        cursor: pointer;
  13102.        pointer-events: all;
  13103.    }
  13104.  .dot.active {
  13105.        background-color: #074174;
  13106.    }
  13107. </style>
  13108. <script>
  13109.  const dotEles=document.body.querySelectorAll(".dot")
  13110.  dotEles.forEach((dot,i)=>{
  13111.    dot.addEventListener('click', () => {
  13112.            console.log("轮播图小点")
  13113.            showSlide(i)
  13114.      });
  13115.  })
  13116.  const slider=document.body.querySelector('.m-slide__wrapper .swiper-wrapper')
  13117.  function showSlide(slideIndex) {
  13118.        currentSlide = slideIndex;
  13119.        slider.style.transform = `translateX(-${(currentSlide+1) * 100}%)`;
  13120.        dotEles.forEach((dot, index) => {
  13121.            if (index === currentSlide) {
  13122.                dot.classList.add('active');
  13123.            } else {
  13124.                dot.classList.remove('active');
  13125.            }
  13126.        });
  13127.    }
  13128. </script>
  13129.  
  13130.        
  13131.      </div>
  13132.    </m-slideshow>
  13133.  </div>
  13134. </section>
  13135.  
  13136.  
  13137. <style> #shopify-section-template--24257712095545__slideshow_PKUKrb .m-slide__wrapper {margin-top: 0px;} </style></div><div id="shopify-section-template--24257712095545__collection_list_RYHBcm" class="shopify-section"><link href="//www.garvee.com/cdn/shop/t/132/assets/component-collection-card.css?v=167412810450751081801740986011" rel="stylesheet" type="text/css" media="all" />
  13138. <link href="//www.garvee.com/cdn/shop/t/132/assets/section-collection-list.css?v=111592447707792523701740986010" rel="stylesheet" type="text/css" media="all" />
  13139.  
  13140.  
  13141.  
  13142. <section
  13143.  id="m-collection-list-template--24257712095545__collection_list_RYHBcm"
  13144.  data-section-type="collection-list"
  13145.  data-section-id="template--24257712095545__collection_list_RYHBcm"
  13146.  class="m-section m-section--padding m-collection-list m-gradient m-color-background-1"
  13147.  style="
  13148.    --section-padding-top: 10px;
  13149.    --section-padding-bottom: 10px;
  13150.    --column-gap: 5px;
  13151.    --column-gap-mobile: 5px;
  13152.    --row-gap: 10px;
  13153.    --row-gap-mobile: 0px;
  13154.    --items: 3
  13155.  "
  13156. >
  13157.  <div
  13158.    class="m-page-width "
  13159.    
  13160.  >
  13161.    <div class="m-section__wrapper">
  13162.      
  13163.      <div class="m-section__content">
  13164.        
  13165.  
  13166.        <div class="mobile_slider">
  13167.          <m-collection-list
  13168.            data-enable-slider="false"
  13169.            
  13170.            class="m-collection-list__inner m:block"
  13171.          >
  13172.            <div
  13173.              class="m-mixed-layout m-mixed-layout--mobile-grid"
  13174.              
  13175.                style="
  13176.                  --grid-columns-mobile: 3;
  13177.                  --mobile-column-width: 30vw;
  13178.                "
  13179.              
  13180.            >
  13181.              <div class="m-mixed-layout__wrapper">
  13182.                <div class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-3-cols xl:m:grid-3-cols">
  13183.                  
  13184.                    
  13185.                    
  13186.                    
  13187.                      <div class="m:column">
  13188.                        
  13189.                        <div
  13190.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  13191.  style="
  13192.    --img-rounded: 0px;
  13193.    --img-width: 100%;
  13194.    height:100%;
  13195.  "
  13196. >
  13197.  <div
  13198.    class="m-collection-card__wrapper m:text-center"
  13199.    
  13200.    style=""
  13201.  >
  13202.    <a
  13203.      href="/collections/granita-slushy-machines-2"
  13204.      class="m-collection-card__image m:block "
  13205.      aria-label="Example collection title"
  13206.      style=""
  13207.    >
  13208.      <div class="m-hover-box__wrapper collection-card-desktop">
  13209.        
  13210.          
  13211. <responsive-image class="m-image "   style="--aspect-ratio: 2.898550724637681;">
  13212.  
  13213.  <img
  13214.      srcset="//www.garvee.com/cdn/shop/files/429x148.jpg?v=1747905292&width=165 165w,//www.garvee.com/cdn/shop/files/429x148.jpg?v=1747905292&width=360 360w,//www.garvee.com/cdn/shop/files/429x148.jpg?v=1747905292&width=533 533w,//www.garvee.com/cdn/shop/files/429x148.jpg?v=1747905292 600w"
  13215.      src="//www.garvee.com/cdn/shop/files/429x148.jpg?v=1747905292&width=360"
  13216.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  13217.      alt=""
  13218.      loading="lazy"
  13219.      class="m:w-full"
  13220.      width="600"
  13221.      height="207"
  13222.      
  13223.  >
  13224.  
  13225.  <noscript>
  13226.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/429x148.jpg?crop=center&height=2048&v=1747905292&width=2048" alt="">
  13227.  </noscript>
  13228. </responsive-image>
  13229.  
  13230.        
  13231.      </div>
  13232.      
  13233.        <div class="m-hover-box__wrapper collection-card-mobile">
  13234.        
  13235.          
  13236. <responsive-image class="m-image "   style="--aspect-ratio: 1.0324483775811208;">
  13237.  
  13238.  <img
  13239.      srcset="//www.garvee.com/cdn/shop/files/M_350.jpg?v=1747905292&width=165 165w,//www.garvee.com/cdn/shop/files/M_350.jpg?v=1747905292 350w"
  13240.      src="//www.garvee.com/cdn/shop/files/M_350.jpg?v=1747905292&width=360"
  13241.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  13242.      alt=""
  13243.      loading="lazy"
  13244.      class="m:w-full"
  13245.      width="350"
  13246.      height="339"
  13247.      
  13248.  >
  13249.  
  13250.  <noscript>
  13251.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/M_350.jpg?crop=center&height=2048&v=1747905292&width=2048" alt="">
  13252.  </noscript>
  13253. </responsive-image>
  13254.  
  13255.        
  13256.        </div>
  13257.      
  13258.    </a>
  13259.    
  13260.      <div class="m-collection-card__info m:justify-center" style="">
  13261.        
  13262.        
  13263.        
  13264.        
  13265.        
  13266.      </div>
  13267.    
  13268.  </div>
  13269. </div>
  13270. <style>
  13271.  .collection-card-mobile {
  13272.    display: none;
  13273.  }
  13274.  .horizontal_layout-wrapper {
  13275.    display: flex;
  13276.  }
  13277.  @media screen and (max-width: 768px){
  13278.    #collection_custom_button{
  13279.      padding:4px 12px !important;
  13280.      font-size:14px !important;
  13281.    }
  13282.    .collection-card-mobile {
  13283.      display: block;
  13284.    }
  13285.    .collection-card-desktop {
  13286.      display: none;
  13287.    }
  13288.  }
  13289. </style>
  13290.  
  13291.                      </div>
  13292.                    
  13293.                      <div class="m:column">
  13294.                        
  13295.                        <div
  13296.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  13297.  style="
  13298.    --img-rounded: 0px;
  13299.    --img-width: 100%;
  13300.    height:100%;
  13301.  "
  13302. >
  13303.  <div
  13304.    class="m-collection-card__wrapper m:text-center"
  13305.    
  13306.    style=""
  13307.  >
  13308.    <a
  13309.      href="/collections/air-conditioners-accessories"
  13310.      class="m-collection-card__image m:block "
  13311.      aria-label="Air Conditioners & Accessories"
  13312.      style=""
  13313.    >
  13314.      <div class="m-hover-box__wrapper collection-card-desktop">
  13315.        
  13316.          
  13317. <responsive-image class="m-image "   style="--aspect-ratio: 2.898550724637681;">
  13318.  
  13319.  <img
  13320.      srcset="//www.garvee.com/cdn/shop/files/1-PC-429x148_7ee09f06-9af6-4a9d-9c57-0356ef533f2b.jpg?v=1741139875&width=165 165w,//www.garvee.com/cdn/shop/files/1-PC-429x148_7ee09f06-9af6-4a9d-9c57-0356ef533f2b.jpg?v=1741139875&width=360 360w,//www.garvee.com/cdn/shop/files/1-PC-429x148_7ee09f06-9af6-4a9d-9c57-0356ef533f2b.jpg?v=1741139875&width=533 533w,//www.garvee.com/cdn/shop/files/1-PC-429x148_7ee09f06-9af6-4a9d-9c57-0356ef533f2b.jpg?v=1741139875 600w"
  13321.      src="//www.garvee.com/cdn/shop/files/1-PC-429x148_7ee09f06-9af6-4a9d-9c57-0356ef533f2b.jpg?v=1741139875&width=360"
  13322.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  13323.      alt=""
  13324.      loading="lazy"
  13325.      class="m:w-full"
  13326.      width="600"
  13327.      height="207"
  13328.      
  13329.  >
  13330.  
  13331.  <noscript>
  13332.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/1-PC-429x148_7ee09f06-9af6-4a9d-9c57-0356ef533f2b.jpg?crop=center&height=2048&v=1741139875&width=2048" alt="">
  13333.  </noscript>
  13334. </responsive-image>
  13335.  
  13336.        
  13337.      </div>
  13338.      
  13339.        <div class="m-hover-box__wrapper collection-card-mobile">
  13340.        
  13341.          
  13342. <responsive-image class="m-image "   style="--aspect-ratio: 1.0324483775811208;">
  13343.  
  13344.  <img
  13345.      srcset="//www.garvee.com/cdn/shop/files/1-M-429x148_c11640c1-0b67-4dd4-90ac-d8bc492769c8.jpg?v=1741139876&width=165 165w,//www.garvee.com/cdn/shop/files/1-M-429x148_c11640c1-0b67-4dd4-90ac-d8bc492769c8.jpg?v=1741139876 350w"
  13346.      src="//www.garvee.com/cdn/shop/files/1-M-429x148_c11640c1-0b67-4dd4-90ac-d8bc492769c8.jpg?v=1741139876&width=360"
  13347.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  13348.      alt=""
  13349.      loading="lazy"
  13350.      class="m:w-full"
  13351.      width="350"
  13352.      height="339"
  13353.      
  13354.  >
  13355.  
  13356.  <noscript>
  13357.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/1-M-429x148_c11640c1-0b67-4dd4-90ac-d8bc492769c8.jpg?crop=center&height=2048&v=1741139876&width=2048" alt="">
  13358.  </noscript>
  13359. </responsive-image>
  13360.  
  13361.        
  13362.        </div>
  13363.      
  13364.    </a>
  13365.    
  13366.      <div class="m-collection-card__info m:justify-center" style="">
  13367.        
  13368.        
  13369.        
  13370.        
  13371.        
  13372.      </div>
  13373.    
  13374.  </div>
  13375. </div>
  13376. <style>
  13377.  .collection-card-mobile {
  13378.    display: none;
  13379.  }
  13380.  .horizontal_layout-wrapper {
  13381.    display: flex;
  13382.  }
  13383.  @media screen and (max-width: 768px){
  13384.    #collection_custom_button{
  13385.      padding:4px 12px !important;
  13386.      font-size:14px !important;
  13387.    }
  13388.    .collection-card-mobile {
  13389.      display: block;
  13390.    }
  13391.    .collection-card-desktop {
  13392.      display: none;
  13393.    }
  13394.  }
  13395. </style>
  13396.  
  13397.                      </div>
  13398.                    
  13399.                      <div class="m:column">
  13400.                        
  13401.                        <div
  13402.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  13403.  style="
  13404.    --img-rounded: 0px;
  13405.    --img-width: 100%;
  13406.    height:100%;
  13407.  "
  13408. >
  13409.  <div
  13410.    class="m-collection-card__wrapper m:text-center"
  13411.    
  13412.    style=""
  13413.  >
  13414.    <a
  13415.      href="/collections/outdoorshade"
  13416.      class="m-collection-card__image m:block "
  13417.      aria-label="Example collection title"
  13418.      style=""
  13419.    >
  13420.      <div class="m-hover-box__wrapper collection-card-desktop">
  13421.        
  13422.          
  13423. <responsive-image class="m-image "   style="--aspect-ratio: 2.898550724637681;">
  13424.  
  13425.  <img
  13426.      srcset="//www.garvee.com/cdn/shop/files/Outdoor-Essentials-429x148.jpg?v=1741334431&width=165 165w,//www.garvee.com/cdn/shop/files/Outdoor-Essentials-429x148.jpg?v=1741334431&width=360 360w,//www.garvee.com/cdn/shop/files/Outdoor-Essentials-429x148.jpg?v=1741334431&width=533 533w,//www.garvee.com/cdn/shop/files/Outdoor-Essentials-429x148.jpg?v=1741334431 600w"
  13427.      src="//www.garvee.com/cdn/shop/files/Outdoor-Essentials-429x148.jpg?v=1741334431&width=360"
  13428.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  13429.      alt=""
  13430.      loading="lazy"
  13431.      class="m:w-full"
  13432.      width="600"
  13433.      height="207"
  13434.      
  13435.  >
  13436.  
  13437.  <noscript>
  13438.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Outdoor-Essentials-429x148.jpg?crop=center&height=2048&v=1741334431&width=2048" alt="">
  13439.  </noscript>
  13440. </responsive-image>
  13441.  
  13442.        
  13443.      </div>
  13444.      
  13445.        <div class="m-hover-box__wrapper collection-card-mobile">
  13446.        
  13447.          
  13448. <responsive-image class="m-image "   style="--aspect-ratio: 1.0324483775811208;">
  13449.  
  13450.  <img
  13451.      srcset="//www.garvee.com/cdn/shop/files/Outdoor-Essentials_350.jpg?v=1741334431&width=165 165w,//www.garvee.com/cdn/shop/files/Outdoor-Essentials_350.jpg?v=1741334431 350w"
  13452.      src="//www.garvee.com/cdn/shop/files/Outdoor-Essentials_350.jpg?v=1741334431&width=360"
  13453.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  13454.      alt=""
  13455.      loading="lazy"
  13456.      class="m:w-full"
  13457.      width="350"
  13458.      height="339"
  13459.      
  13460.  >
  13461.  
  13462.  <noscript>
  13463.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Outdoor-Essentials_350.jpg?crop=center&height=2048&v=1741334431&width=2048" alt="">
  13464.  </noscript>
  13465. </responsive-image>
  13466.  
  13467.        
  13468.        </div>
  13469.      
  13470.    </a>
  13471.    
  13472.      <div class="m-collection-card__info m:justify-center" style="">
  13473.        
  13474.        
  13475.        
  13476.        
  13477.        
  13478.      </div>
  13479.    
  13480.  </div>
  13481. </div>
  13482. <style>
  13483.  .collection-card-mobile {
  13484.    display: none;
  13485.  }
  13486.  .horizontal_layout-wrapper {
  13487.    display: flex;
  13488.  }
  13489.  @media screen and (max-width: 768px){
  13490.    #collection_custom_button{
  13491.      padding:4px 12px !important;
  13492.      font-size:14px !important;
  13493.    }
  13494.    .collection-card-mobile {
  13495.      display: block;
  13496.    }
  13497.    .collection-card-desktop {
  13498.      display: none;
  13499.    }
  13500.  }
  13501. </style>
  13502.  
  13503.                      </div>
  13504.                    
  13505.                  
  13506.                </div>
  13507.              </div>
  13508.              
  13509.            </div>
  13510.          </m-collection-list>
  13511.        </div>
  13512.        <div class="desktop_slider">
  13513.          <m-collection-list
  13514.            data-enable-slider="false"
  13515.            
  13516.            class="m-collection-list__inner m:block"
  13517.          >
  13518.            <div
  13519.              class="m-mixed-layout m-mixed-layout--mobile-grid"
  13520.              
  13521.                style="
  13522.                  --grid-columns-mobile: 3;
  13523.                  --mobile-column-width: col-3;
  13524.                "
  13525.              
  13526.            >
  13527.              <div class="m-mixed-layout__wrapper">
  13528.                <div class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-3-cols xl:m:grid-3-cols">
  13529.                  
  13530.                    
  13531.                      <div class="m:column">
  13532.                        
  13533.                        <div
  13534.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  13535.  style="
  13536.    --img-rounded: 0px;
  13537.    --img-width: 100%;
  13538.    height:100%;
  13539.  "
  13540. >
  13541.  <div
  13542.    class="m-collection-card__wrapper m:text-center"
  13543.    
  13544.    style=""
  13545.  >
  13546.    <a
  13547.      href="/collections/granita-slushy-machines-2"
  13548.      class="m-collection-card__image m:block "
  13549.      aria-label="Example collection title"
  13550.      style=""
  13551.    >
  13552.      <div class="m-hover-box__wrapper collection-card-desktop">
  13553.        
  13554.          
  13555. <responsive-image class="m-image "   style="--aspect-ratio: 2.898550724637681;">
  13556.  
  13557.  <img
  13558.      srcset="//www.garvee.com/cdn/shop/files/429x148.jpg?v=1747905292&width=165 165w,//www.garvee.com/cdn/shop/files/429x148.jpg?v=1747905292&width=360 360w,//www.garvee.com/cdn/shop/files/429x148.jpg?v=1747905292&width=533 533w,//www.garvee.com/cdn/shop/files/429x148.jpg?v=1747905292 600w"
  13559.      src="//www.garvee.com/cdn/shop/files/429x148.jpg?v=1747905292&width=360"
  13560.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  13561.      alt=""
  13562.      loading="lazy"
  13563.      class="m:w-full"
  13564.      width="600"
  13565.      height="207"
  13566.      
  13567.  >
  13568.  
  13569.  <noscript>
  13570.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/429x148.jpg?crop=center&height=2048&v=1747905292&width=2048" alt="">
  13571.  </noscript>
  13572. </responsive-image>
  13573.  
  13574.        
  13575.      </div>
  13576.      
  13577.        <div class="m-hover-box__wrapper collection-card-mobile">
  13578.        
  13579.          
  13580. <responsive-image class="m-image "   style="--aspect-ratio: 1.0324483775811208;">
  13581.  
  13582.  <img
  13583.      srcset="//www.garvee.com/cdn/shop/files/M_350.jpg?v=1747905292&width=165 165w,//www.garvee.com/cdn/shop/files/M_350.jpg?v=1747905292 350w"
  13584.      src="//www.garvee.com/cdn/shop/files/M_350.jpg?v=1747905292&width=360"
  13585.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  13586.      alt=""
  13587.      loading="lazy"
  13588.      class="m:w-full"
  13589.      width="350"
  13590.      height="339"
  13591.      
  13592.  >
  13593.  
  13594.  <noscript>
  13595.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/M_350.jpg?crop=center&height=2048&v=1747905292&width=2048" alt="">
  13596.  </noscript>
  13597. </responsive-image>
  13598.  
  13599.        
  13600.        </div>
  13601.      
  13602.    </a>
  13603.    
  13604.      <div class="m-collection-card__info m:justify-center" style="">
  13605.        
  13606.        
  13607.        
  13608.        
  13609.        
  13610.      </div>
  13611.    
  13612.  </div>
  13613. </div>
  13614. <style>
  13615.  .collection-card-mobile {
  13616.    display: none;
  13617.  }
  13618.  .horizontal_layout-wrapper {
  13619.    display: flex;
  13620.  }
  13621.  @media screen and (max-width: 768px){
  13622.    #collection_custom_button{
  13623.      padding:4px 12px !important;
  13624.      font-size:14px !important;
  13625.    }
  13626.    .collection-card-mobile {
  13627.      display: block;
  13628.    }
  13629.    .collection-card-desktop {
  13630.      display: none;
  13631.    }
  13632.  }
  13633. </style>
  13634.  
  13635.                      </div>
  13636.                    
  13637.                      <div class="m:column">
  13638.                        
  13639.                        <div
  13640.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  13641.  style="
  13642.    --img-rounded: 0px;
  13643.    --img-width: 100%;
  13644.    height:100%;
  13645.  "
  13646. >
  13647.  <div
  13648.    class="m-collection-card__wrapper m:text-center"
  13649.    
  13650.    style=""
  13651.  >
  13652.    <a
  13653.      href="/collections/air-conditioners-accessories"
  13654.      class="m-collection-card__image m:block "
  13655.      aria-label="Air Conditioners & Accessories"
  13656.      style=""
  13657.    >
  13658.      <div class="m-hover-box__wrapper collection-card-desktop">
  13659.        
  13660.          
  13661. <responsive-image class="m-image "   style="--aspect-ratio: 2.898550724637681;">
  13662.  
  13663.  <img
  13664.      srcset="//www.garvee.com/cdn/shop/files/1-PC-429x148_7ee09f06-9af6-4a9d-9c57-0356ef533f2b.jpg?v=1741139875&width=165 165w,//www.garvee.com/cdn/shop/files/1-PC-429x148_7ee09f06-9af6-4a9d-9c57-0356ef533f2b.jpg?v=1741139875&width=360 360w,//www.garvee.com/cdn/shop/files/1-PC-429x148_7ee09f06-9af6-4a9d-9c57-0356ef533f2b.jpg?v=1741139875&width=533 533w,//www.garvee.com/cdn/shop/files/1-PC-429x148_7ee09f06-9af6-4a9d-9c57-0356ef533f2b.jpg?v=1741139875 600w"
  13665.      src="//www.garvee.com/cdn/shop/files/1-PC-429x148_7ee09f06-9af6-4a9d-9c57-0356ef533f2b.jpg?v=1741139875&width=360"
  13666.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  13667.      alt=""
  13668.      loading="lazy"
  13669.      class="m:w-full"
  13670.      width="600"
  13671.      height="207"
  13672.      
  13673.  >
  13674.  
  13675.  <noscript>
  13676.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/1-PC-429x148_7ee09f06-9af6-4a9d-9c57-0356ef533f2b.jpg?crop=center&height=2048&v=1741139875&width=2048" alt="">
  13677.  </noscript>
  13678. </responsive-image>
  13679.  
  13680.        
  13681.      </div>
  13682.      
  13683.        <div class="m-hover-box__wrapper collection-card-mobile">
  13684.        
  13685.          
  13686. <responsive-image class="m-image "   style="--aspect-ratio: 1.0324483775811208;">
  13687.  
  13688.  <img
  13689.      srcset="//www.garvee.com/cdn/shop/files/1-M-429x148_c11640c1-0b67-4dd4-90ac-d8bc492769c8.jpg?v=1741139876&width=165 165w,//www.garvee.com/cdn/shop/files/1-M-429x148_c11640c1-0b67-4dd4-90ac-d8bc492769c8.jpg?v=1741139876 350w"
  13690.      src="//www.garvee.com/cdn/shop/files/1-M-429x148_c11640c1-0b67-4dd4-90ac-d8bc492769c8.jpg?v=1741139876&width=360"
  13691.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  13692.      alt=""
  13693.      loading="lazy"
  13694.      class="m:w-full"
  13695.      width="350"
  13696.      height="339"
  13697.      
  13698.  >
  13699.  
  13700.  <noscript>
  13701.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/1-M-429x148_c11640c1-0b67-4dd4-90ac-d8bc492769c8.jpg?crop=center&height=2048&v=1741139876&width=2048" alt="">
  13702.  </noscript>
  13703. </responsive-image>
  13704.  
  13705.        
  13706.        </div>
  13707.      
  13708.    </a>
  13709.    
  13710.      <div class="m-collection-card__info m:justify-center" style="">
  13711.        
  13712.        
  13713.        
  13714.        
  13715.        
  13716.      </div>
  13717.    
  13718.  </div>
  13719. </div>
  13720. <style>
  13721.  .collection-card-mobile {
  13722.    display: none;
  13723.  }
  13724.  .horizontal_layout-wrapper {
  13725.    display: flex;
  13726.  }
  13727.  @media screen and (max-width: 768px){
  13728.    #collection_custom_button{
  13729.      padding:4px 12px !important;
  13730.      font-size:14px !important;
  13731.    }
  13732.    .collection-card-mobile {
  13733.      display: block;
  13734.    }
  13735.    .collection-card-desktop {
  13736.      display: none;
  13737.    }
  13738.  }
  13739. </style>
  13740.  
  13741.                      </div>
  13742.                    
  13743.                      <div class="m:column">
  13744.                        
  13745.                        <div
  13746.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  13747.  style="
  13748.    --img-rounded: 0px;
  13749.    --img-width: 100%;
  13750.    height:100%;
  13751.  "
  13752. >
  13753.  <div
  13754.    class="m-collection-card__wrapper m:text-center"
  13755.    
  13756.    style=""
  13757.  >
  13758.    <a
  13759.      href="/collections/outdoorshade"
  13760.      class="m-collection-card__image m:block "
  13761.      aria-label="Example collection title"
  13762.      style=""
  13763.    >
  13764.      <div class="m-hover-box__wrapper collection-card-desktop">
  13765.        
  13766.          
  13767. <responsive-image class="m-image "   style="--aspect-ratio: 2.898550724637681;">
  13768.  
  13769.  <img
  13770.      srcset="//www.garvee.com/cdn/shop/files/Outdoor-Essentials-429x148.jpg?v=1741334431&width=165 165w,//www.garvee.com/cdn/shop/files/Outdoor-Essentials-429x148.jpg?v=1741334431&width=360 360w,//www.garvee.com/cdn/shop/files/Outdoor-Essentials-429x148.jpg?v=1741334431&width=533 533w,//www.garvee.com/cdn/shop/files/Outdoor-Essentials-429x148.jpg?v=1741334431 600w"
  13771.      src="//www.garvee.com/cdn/shop/files/Outdoor-Essentials-429x148.jpg?v=1741334431&width=360"
  13772.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  13773.      alt=""
  13774.      loading="lazy"
  13775.      class="m:w-full"
  13776.      width="600"
  13777.      height="207"
  13778.      
  13779.  >
  13780.  
  13781.  <noscript>
  13782.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Outdoor-Essentials-429x148.jpg?crop=center&height=2048&v=1741334431&width=2048" alt="">
  13783.  </noscript>
  13784. </responsive-image>
  13785.  
  13786.        
  13787.      </div>
  13788.      
  13789.        <div class="m-hover-box__wrapper collection-card-mobile">
  13790.        
  13791.          
  13792. <responsive-image class="m-image "   style="--aspect-ratio: 1.0324483775811208;">
  13793.  
  13794.  <img
  13795.      srcset="//www.garvee.com/cdn/shop/files/Outdoor-Essentials_350.jpg?v=1741334431&width=165 165w,//www.garvee.com/cdn/shop/files/Outdoor-Essentials_350.jpg?v=1741334431 350w"
  13796.      src="//www.garvee.com/cdn/shop/files/Outdoor-Essentials_350.jpg?v=1741334431&width=360"
  13797.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  13798.      alt=""
  13799.      loading="lazy"
  13800.      class="m:w-full"
  13801.      width="350"
  13802.      height="339"
  13803.      
  13804.  >
  13805.  
  13806.  <noscript>
  13807.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Outdoor-Essentials_350.jpg?crop=center&height=2048&v=1741334431&width=2048" alt="">
  13808.  </noscript>
  13809. </responsive-image>
  13810.  
  13811.        
  13812.        </div>
  13813.      
  13814.    </a>
  13815.    
  13816.      <div class="m-collection-card__info m:justify-center" style="">
  13817.        
  13818.        
  13819.        
  13820.        
  13821.        
  13822.      </div>
  13823.    
  13824.  </div>
  13825. </div>
  13826. <style>
  13827.  .collection-card-mobile {
  13828.    display: none;
  13829.  }
  13830.  .horizontal_layout-wrapper {
  13831.    display: flex;
  13832.  }
  13833.  @media screen and (max-width: 768px){
  13834.    #collection_custom_button{
  13835.      padding:4px 12px !important;
  13836.      font-size:14px !important;
  13837.    }
  13838.    .collection-card-mobile {
  13839.      display: block;
  13840.    }
  13841.    .collection-card-desktop {
  13842.      display: none;
  13843.    }
  13844.  }
  13845. </style>
  13846.  
  13847.                      </div>
  13848.                    
  13849.                  
  13850.                </div>
  13851.              </div>
  13852.              
  13853.            </div>
  13854.          </m-collection-list>
  13855.        </div>
  13856.      </div>
  13857.    </div>
  13858.  </div>
  13859. </section>
  13860.  
  13861. <style>
  13862.  m-collection-list .m-collection-card__info {
  13863.    overflow: hidden;
  13864.  }
  13865.  m-collection-list .m-collection-card__title {
  13866.    max-width: 100%;
  13867.    overflow-wrap: break-word;
  13868.  }
  13869.  .m-collection-card__link {
  13870.    font-weight: normal;
  13871.  }
  13872.  .mobile_slider {
  13873.    display: none;
  13874.  }
  13875.  @media screen and (max-width: 768px) {
  13876.    .mobile_slider {
  13877.      display: block;
  13878.    }
  13879.    .desktop_slider {
  13880.      display: none;
  13881.    }
  13882.    .m-collection-card__link {
  13883.      font-size: 12px;
  13884.    }
  13885.  }
  13886.  /* .m:column.swiper-slide.swiper-slide-duplicate{
  13887.      width:33% !important;
  13888.    } */
  13889.  
  13890.  @media (max-width: 640px) {
  13891.    .m-button {
  13892.      font-size: 12px;
  13893.    }
  13894.  }
  13895. </style>
  13896.  
  13897.  
  13898. </div><div id="shopify-section-template--24257712095545__3d92e37f-b44b-49a7-8000-f53f057128ae" class="shopify-section"><link href="//www.garvee.com/cdn/shop/t/132/assets/component-collection-card.css?v=167412810450751081801740986011" rel="stylesheet" type="text/css" media="all" />
  13899. <link href="//www.garvee.com/cdn/shop/t/132/assets/section-collection-list.css?v=111592447707792523701740986010" rel="stylesheet" type="text/css" media="all" />
  13900.  
  13901.  
  13902.  
  13903. <section
  13904.  id="m-collection-list-template--24257712095545__3d92e37f-b44b-49a7-8000-f53f057128ae"
  13905.  data-section-type="collection-list"
  13906.  data-section-id="template--24257712095545__3d92e37f-b44b-49a7-8000-f53f057128ae"
  13907.  class="m-section m-section--padding m-collection-list m-gradient m-color-background-1"
  13908.  style="
  13909.    --section-padding-top: 20px;
  13910.    --section-padding-bottom: 40px;
  13911.    --column-gap: 0px;
  13912.    --column-gap-mobile: 10px;
  13913.    --row-gap: 5px;
  13914.    --row-gap-mobile: 15px;
  13915.    --items: 6
  13916.  "
  13917. >
  13918.  <div
  13919.    class="m-page-width "
  13920.    
  13921.  >
  13922.    <div class="m-section__wrapper">
  13923.      
  13924.        <div class="m-section__header m:display-flex m:justify-between sm:m:flex-col m:items-center">
  13925.          
  13926.            <h2 class="m-section__heading h4">
  13927.              
  13928.                Shop by Category
  13929.              
  13930.            </h2>
  13931.          
  13932.          
  13933.          
  13934.          
  13935.          
  13936.        </div>
  13937.      
  13938.      <div class="m-section__content">
  13939.        
  13940.  
  13941.        <div class="mobile_slider">
  13942.          <m-collection-list
  13943.            data-enable-slider="false"
  13944.            
  13945.            class="m-collection-list__inner m:block"
  13946.          >
  13947.            <div
  13948.              class="m-mixed-layout m-mixed-layout--mobile-grid"
  13949.              
  13950.                style="
  13951.                  --grid-columns-mobile: 2;
  13952.                  --mobile-column-width: 40vw;
  13953.                "
  13954.              
  13955.            >
  13956.              <div class="m-mixed-layout__wrapper">
  13957.                <div class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-4-cols xl:m:grid-6-cols">
  13958.                  
  13959.                    
  13960.                    
  13961.                    
  13962.                      <div class="m:column">
  13963.                        
  13964.                        <div
  13965.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  13966.  style="
  13967.    --img-rounded: 0px;
  13968.    --img-width: 32px;
  13969.    height:100%;
  13970.  "
  13971. >
  13972.  <div
  13973.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  13974.    
  13975.    style=""
  13976.  >
  13977.    <a
  13978.      href="/collections/best-selling-rugs"
  13979.      class="m-collection-card__image m:block "
  13980.      aria-label="Rugs"
  13981.      style="flex:1;"
  13982.    >
  13983.      <div class="m-hover-box__wrapper collection-card-desktop">
  13984.        
  13985.          
  13986. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  13987.  
  13988.  <img
  13989.      srcset="//www.garvee.com/cdn/shop/files/3_a079c6b3-ce36-47e8-b176-0a48d0c6c38f.png?v=1747905292 110w"
  13990.      src="//www.garvee.com/cdn/shop/files/3_a079c6b3-ce36-47e8-b176-0a48d0c6c38f.png?v=1747905292&width=360"
  13991.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  13992.      alt=""
  13993.      loading="lazy"
  13994.      class="m:w-full"
  13995.      width="110"
  13996.      height="110"
  13997.      
  13998.  >
  13999.  
  14000.  <noscript>
  14001.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/3_a079c6b3-ce36-47e8-b176-0a48d0c6c38f.png?crop=center&height=2048&v=1747905292&width=2048" alt="">
  14002.  </noscript>
  14003. </responsive-image>
  14004.  
  14005.        
  14006.      </div>
  14007.      
  14008.        <div class="m-hover-box__wrapper collection-card-mobile">
  14009.        
  14010.          
  14011. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14012.  
  14013.  <img
  14014.      srcset="//www.garvee.com/cdn/shop/files/3_a079c6b3-ce36-47e8-b176-0a48d0c6c38f.png?v=1747905292 110w"
  14015.      src="//www.garvee.com/cdn/shop/files/3_a079c6b3-ce36-47e8-b176-0a48d0c6c38f.png?v=1747905292&width=360"
  14016.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14017.      alt=""
  14018.      loading="lazy"
  14019.      class="m:w-full"
  14020.      width="110"
  14021.      height="110"
  14022.      
  14023.  >
  14024.  
  14025.  <noscript>
  14026.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/3_a079c6b3-ce36-47e8-b176-0a48d0c6c38f.png?crop=center&height=2048&v=1747905292&width=2048" alt="">
  14027.  </noscript>
  14028. </responsive-image>
  14029.  
  14030.        
  14031.        </div>
  14032.      
  14033.    </a>
  14034.    
  14035.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  14036.        
  14037.        <h3 class="m-collection-card__title h6">
  14038.          <a class="m-collection-card__link m:block" href="/collections/best-selling-rugs">Rugs</a>
  14039.        </h3>
  14040.        
  14041.        
  14042.        
  14043.        
  14044.        
  14045.      </div>
  14046.    
  14047.  </div>
  14048. </div>
  14049. <style>
  14050.  .collection-card-mobile {
  14051.    display: none;
  14052.  }
  14053.  .horizontal_layout-wrapper {
  14054.    display: flex;
  14055.  }
  14056.  @media screen and (max-width: 768px){
  14057.    #collection_custom_button{
  14058.      padding:4px 12px !important;
  14059.      font-size:14px !important;
  14060.    }
  14061.    .collection-card-mobile {
  14062.      display: block;
  14063.    }
  14064.    .collection-card-desktop {
  14065.      display: none;
  14066.    }
  14067.  }
  14068. </style>
  14069.  
  14070.                      </div>
  14071.                    
  14072.                      <div class="m:column">
  14073.                        
  14074.                        <div
  14075.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  14076.  style="
  14077.    --img-rounded: 0px;
  14078.    --img-width: 32px;
  14079.    height:100%;
  14080.  "
  14081. >
  14082.  <div
  14083.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  14084.    
  14085.    style=""
  14086.  >
  14087.    <a
  14088.      href="/collections/best-sellers-of-automotive"
  14089.      class="m-collection-card__image m:block "
  14090.      aria-label="Automotive"
  14091.      style="flex:1;"
  14092.    >
  14093.      <div class="m-hover-box__wrapper collection-card-desktop">
  14094.        
  14095.          
  14096. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14097.  
  14098.  <img
  14099.      srcset="//www.garvee.com/cdn/shop/files/b1_110x110_7c3a5537-d503-4a37-90b7-04ec5983be06.png?v=1739351654 110w"
  14100.      src="//www.garvee.com/cdn/shop/files/b1_110x110_7c3a5537-d503-4a37-90b7-04ec5983be06.png?v=1739351654&width=360"
  14101.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14102.      alt=""
  14103.      loading="lazy"
  14104.      class="m:w-full"
  14105.      width="110"
  14106.      height="110"
  14107.      
  14108.  >
  14109.  
  14110.  <noscript>
  14111.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b1_110x110_7c3a5537-d503-4a37-90b7-04ec5983be06.png?crop=center&height=2048&v=1739351654&width=2048" alt="">
  14112.  </noscript>
  14113. </responsive-image>
  14114.  
  14115.        
  14116.      </div>
  14117.      
  14118.        <div class="m-hover-box__wrapper collection-card-mobile">
  14119.        
  14120.          
  14121. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14122.  
  14123.  <img
  14124.      srcset="//www.garvee.com/cdn/shop/files/b1_110x110_7c3a5537-d503-4a37-90b7-04ec5983be06.png?v=1739351654 110w"
  14125.      src="//www.garvee.com/cdn/shop/files/b1_110x110_7c3a5537-d503-4a37-90b7-04ec5983be06.png?v=1739351654&width=360"
  14126.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14127.      alt=""
  14128.      loading="lazy"
  14129.      class="m:w-full"
  14130.      width="110"
  14131.      height="110"
  14132.      
  14133.  >
  14134.  
  14135.  <noscript>
  14136.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b1_110x110_7c3a5537-d503-4a37-90b7-04ec5983be06.png?crop=center&height=2048&v=1739351654&width=2048" alt="">
  14137.  </noscript>
  14138. </responsive-image>
  14139.  
  14140.        
  14141.        </div>
  14142.      
  14143.    </a>
  14144.    
  14145.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  14146.        
  14147.        <h3 class="m-collection-card__title h6">
  14148.          <a class="m-collection-card__link m:block" href="/collections/best-sellers-of-automotive">Automotive</a>
  14149.        </h3>
  14150.        
  14151.        
  14152.        
  14153.        
  14154.        
  14155.      </div>
  14156.    
  14157.  </div>
  14158. </div>
  14159. <style>
  14160.  .collection-card-mobile {
  14161.    display: none;
  14162.  }
  14163.  .horizontal_layout-wrapper {
  14164.    display: flex;
  14165.  }
  14166.  @media screen and (max-width: 768px){
  14167.    #collection_custom_button{
  14168.      padding:4px 12px !important;
  14169.      font-size:14px !important;
  14170.    }
  14171.    .collection-card-mobile {
  14172.      display: block;
  14173.    }
  14174.    .collection-card-desktop {
  14175.      display: none;
  14176.    }
  14177.  }
  14178. </style>
  14179.  
  14180.                      </div>
  14181.                    
  14182.                      <div class="m:column">
  14183.                        
  14184.                        <div
  14185.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  14186.  style="
  14187.    --img-rounded: 0px;
  14188.    --img-width: 32px;
  14189.    height:100%;
  14190.  "
  14191. >
  14192.  <div
  14193.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  14194.    
  14195.    style=""
  14196.  >
  14197.    <a
  14198.      href="/collections/best-sellers-of-material-handling"
  14199.      class="m-collection-card__image m:block "
  14200.      aria-label="Material Handling"
  14201.      style="flex:1;"
  14202.    >
  14203.      <div class="m-hover-box__wrapper collection-card-desktop">
  14204.        
  14205.          
  14206. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14207.  
  14208.  <img
  14209.      srcset="//www.garvee.com/cdn/shop/files/b6_110x110_ba61205f-437b-47f7-91d1-93d4120b197e.png?v=1739351653 110w"
  14210.      src="//www.garvee.com/cdn/shop/files/b6_110x110_ba61205f-437b-47f7-91d1-93d4120b197e.png?v=1739351653&width=360"
  14211.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14212.      alt=""
  14213.      loading="lazy"
  14214.      class="m:w-full"
  14215.      width="110"
  14216.      height="110"
  14217.      
  14218.  >
  14219.  
  14220.  <noscript>
  14221.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b6_110x110_ba61205f-437b-47f7-91d1-93d4120b197e.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  14222.  </noscript>
  14223. </responsive-image>
  14224.  
  14225.        
  14226.      </div>
  14227.      
  14228.        <div class="m-hover-box__wrapper collection-card-mobile">
  14229.        
  14230.          
  14231. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14232.  
  14233.  <img
  14234.      srcset="//www.garvee.com/cdn/shop/files/b6_110x110_ba61205f-437b-47f7-91d1-93d4120b197e.png?v=1739351653 110w"
  14235.      src="//www.garvee.com/cdn/shop/files/b6_110x110_ba61205f-437b-47f7-91d1-93d4120b197e.png?v=1739351653&width=360"
  14236.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14237.      alt=""
  14238.      loading="lazy"
  14239.      class="m:w-full"
  14240.      width="110"
  14241.      height="110"
  14242.      
  14243.  >
  14244.  
  14245.  <noscript>
  14246.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b6_110x110_ba61205f-437b-47f7-91d1-93d4120b197e.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  14247.  </noscript>
  14248. </responsive-image>
  14249.  
  14250.        
  14251.        </div>
  14252.      
  14253.    </a>
  14254.    
  14255.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  14256.        
  14257.        <h3 class="m-collection-card__title h6">
  14258.          <a class="m-collection-card__link m:block" href="/collections/best-sellers-of-material-handling">Material Handling</a>
  14259.        </h3>
  14260.        
  14261.        
  14262.        
  14263.        
  14264.        
  14265.      </div>
  14266.    
  14267.  </div>
  14268. </div>
  14269. <style>
  14270.  .collection-card-mobile {
  14271.    display: none;
  14272.  }
  14273.  .horizontal_layout-wrapper {
  14274.    display: flex;
  14275.  }
  14276.  @media screen and (max-width: 768px){
  14277.    #collection_custom_button{
  14278.      padding:4px 12px !important;
  14279.      font-size:14px !important;
  14280.    }
  14281.    .collection-card-mobile {
  14282.      display: block;
  14283.    }
  14284.    .collection-card-desktop {
  14285.      display: none;
  14286.    }
  14287.  }
  14288. </style>
  14289.  
  14290.                      </div>
  14291.                    
  14292.                      <div class="m:column">
  14293.                        
  14294.                        <div
  14295.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  14296.  style="
  14297.    --img-rounded: 0px;
  14298.    --img-width: 32px;
  14299.    height:100%;
  14300.  "
  14301. >
  14302.  <div
  14303.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  14304.    
  14305.    style=""
  14306.  >
  14307.    <a
  14308.      href="/collections/best-sellers-of-agriculture-forestry"
  14309.      class="m-collection-card__image m:block "
  14310.      aria-label="Agriculture"
  14311.      style="flex:1;"
  14312.    >
  14313.      <div class="m-hover-box__wrapper collection-card-desktop">
  14314.        
  14315.          
  14316. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14317.  
  14318.  <img
  14319.      srcset="//www.garvee.com/cdn/shop/files/b10_110x110_06daf73f-a82e-401e-b900-e3585de551e4.png?v=1742261319 110w"
  14320.      src="//www.garvee.com/cdn/shop/files/b10_110x110_06daf73f-a82e-401e-b900-e3585de551e4.png?v=1742261319&width=360"
  14321.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14322.      alt=""
  14323.      loading="lazy"
  14324.      class="m:w-full"
  14325.      width="110"
  14326.      height="110"
  14327.      
  14328.  >
  14329.  
  14330.  <noscript>
  14331.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b10_110x110_06daf73f-a82e-401e-b900-e3585de551e4.png?crop=center&height=2048&v=1742261319&width=2048" alt="">
  14332.  </noscript>
  14333. </responsive-image>
  14334.  
  14335.        
  14336.      </div>
  14337.      
  14338.        <div class="m-hover-box__wrapper collection-card-mobile">
  14339.        
  14340.          
  14341. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14342.  
  14343.  <img
  14344.      srcset="//www.garvee.com/cdn/shop/files/b10_110x110_06daf73f-a82e-401e-b900-e3585de551e4.png?v=1742261319 110w"
  14345.      src="//www.garvee.com/cdn/shop/files/b10_110x110_06daf73f-a82e-401e-b900-e3585de551e4.png?v=1742261319&width=360"
  14346.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14347.      alt=""
  14348.      loading="lazy"
  14349.      class="m:w-full"
  14350.      width="110"
  14351.      height="110"
  14352.      
  14353.  >
  14354.  
  14355.  <noscript>
  14356.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b10_110x110_06daf73f-a82e-401e-b900-e3585de551e4.png?crop=center&height=2048&v=1742261319&width=2048" alt="">
  14357.  </noscript>
  14358. </responsive-image>
  14359.  
  14360.        
  14361.        </div>
  14362.      
  14363.    </a>
  14364.    
  14365.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  14366.        
  14367.        <h3 class="m-collection-card__title h6">
  14368.          <a class="m-collection-card__link m:block" href="/collections/best-sellers-of-agriculture-forestry">Agriculture</a>
  14369.        </h3>
  14370.        
  14371.        
  14372.        
  14373.        
  14374.        
  14375.      </div>
  14376.    
  14377.  </div>
  14378. </div>
  14379. <style>
  14380.  .collection-card-mobile {
  14381.    display: none;
  14382.  }
  14383.  .horizontal_layout-wrapper {
  14384.    display: flex;
  14385.  }
  14386.  @media screen and (max-width: 768px){
  14387.    #collection_custom_button{
  14388.      padding:4px 12px !important;
  14389.      font-size:14px !important;
  14390.    }
  14391.    .collection-card-mobile {
  14392.      display: block;
  14393.    }
  14394.    .collection-card-desktop {
  14395.      display: none;
  14396.    }
  14397.  }
  14398. </style>
  14399.  
  14400.                      </div>
  14401.                    
  14402.                      <div class="m:column">
  14403.                        
  14404.                        <div
  14405.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  14406.  style="
  14407.    --img-rounded: 0px;
  14408.    --img-width: 32px;
  14409.    height:100%;
  14410.  "
  14411. >
  14412.  <div
  14413.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  14414.    
  14415.    style=""
  14416.  >
  14417.    <a
  14418.      href="/collections/dressers"
  14419.      class="m-collection-card__image m:block "
  14420.      aria-label="Dressers"
  14421.      style="flex:1;"
  14422.    >
  14423.      <div class="m-hover-box__wrapper collection-card-desktop">
  14424.        
  14425.          
  14426. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14427.  
  14428.  <img
  14429.      srcset="//www.garvee.com/cdn/shop/files/2_48e90b8a-215a-4abe-ae0f-a0de22c19436.png?v=1749025088 110w"
  14430.      src="//www.garvee.com/cdn/shop/files/2_48e90b8a-215a-4abe-ae0f-a0de22c19436.png?v=1749025088&width=360"
  14431.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14432.      alt=""
  14433.      loading="lazy"
  14434.      class="m:w-full"
  14435.      width="110"
  14436.      height="110"
  14437.      
  14438.  >
  14439.  
  14440.  <noscript>
  14441.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/2_48e90b8a-215a-4abe-ae0f-a0de22c19436.png?crop=center&height=2048&v=1749025088&width=2048" alt="">
  14442.  </noscript>
  14443. </responsive-image>
  14444.  
  14445.        
  14446.      </div>
  14447.      
  14448.        <div class="m-hover-box__wrapper collection-card-mobile">
  14449.        
  14450.          
  14451. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14452.  
  14453.  <img
  14454.      srcset="//www.garvee.com/cdn/shop/files/2_48e90b8a-215a-4abe-ae0f-a0de22c19436.png?v=1749025088 110w"
  14455.      src="//www.garvee.com/cdn/shop/files/2_48e90b8a-215a-4abe-ae0f-a0de22c19436.png?v=1749025088&width=360"
  14456.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14457.      alt=""
  14458.      loading="lazy"
  14459.      class="m:w-full"
  14460.      width="110"
  14461.      height="110"
  14462.      
  14463.  >
  14464.  
  14465.  <noscript>
  14466.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/2_48e90b8a-215a-4abe-ae0f-a0de22c19436.png?crop=center&height=2048&v=1749025088&width=2048" alt="">
  14467.  </noscript>
  14468. </responsive-image>
  14469.  
  14470.        
  14471.        </div>
  14472.      
  14473.    </a>
  14474.    
  14475.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  14476.        
  14477.        <h3 class="m-collection-card__title h6">
  14478.          <a class="m-collection-card__link m:block" href="/collections/dressers">Dressers</a>
  14479.        </h3>
  14480.        
  14481.        
  14482.        
  14483.        
  14484.        
  14485.      </div>
  14486.    
  14487.  </div>
  14488. </div>
  14489. <style>
  14490.  .collection-card-mobile {
  14491.    display: none;
  14492.  }
  14493.  .horizontal_layout-wrapper {
  14494.    display: flex;
  14495.  }
  14496.  @media screen and (max-width: 768px){
  14497.    #collection_custom_button{
  14498.      padding:4px 12px !important;
  14499.      font-size:14px !important;
  14500.    }
  14501.    .collection-card-mobile {
  14502.      display: block;
  14503.    }
  14504.    .collection-card-desktop {
  14505.      display: none;
  14506.    }
  14507.  }
  14508. </style>
  14509.  
  14510.                      </div>
  14511.                    
  14512.                      <div class="m:column">
  14513.                        
  14514.                        <div
  14515.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  14516.  style="
  14517.    --img-rounded: 0px;
  14518.    --img-width: 32px;
  14519.    height:100%;
  14520.  "
  14521. >
  14522.  <div
  14523.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  14524.    
  14525.    style=""
  14526.  >
  14527.    <a
  14528.      href="/collections/best-sellers-in-ride-on-toys"
  14529.      class="m-collection-card__image m:block "
  14530.      aria-label="Ride on Toys"
  14531.      style="flex:1;"
  14532.    >
  14533.      <div class="m-hover-box__wrapper collection-card-desktop">
  14534.        
  14535.          
  14536. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14537.  
  14538.  <img
  14539.      srcset="//www.garvee.com/cdn/shop/files/b7_110x110_db00b0ad-bf2a-4d20-b50f-ec9295e6ac16.png?v=1739351653 110w"
  14540.      src="//www.garvee.com/cdn/shop/files/b7_110x110_db00b0ad-bf2a-4d20-b50f-ec9295e6ac16.png?v=1739351653&width=360"
  14541.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14542.      alt=""
  14543.      loading="lazy"
  14544.      class="m:w-full"
  14545.      width="110"
  14546.      height="110"
  14547.      
  14548.  >
  14549.  
  14550.  <noscript>
  14551.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b7_110x110_db00b0ad-bf2a-4d20-b50f-ec9295e6ac16.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  14552.  </noscript>
  14553. </responsive-image>
  14554.  
  14555.        
  14556.      </div>
  14557.      
  14558.        <div class="m-hover-box__wrapper collection-card-mobile">
  14559.        
  14560.          
  14561. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14562.  
  14563.  <img
  14564.      srcset="//www.garvee.com/cdn/shop/files/b7_110x110_db00b0ad-bf2a-4d20-b50f-ec9295e6ac16.png?v=1739351653 110w"
  14565.      src="//www.garvee.com/cdn/shop/files/b7_110x110_db00b0ad-bf2a-4d20-b50f-ec9295e6ac16.png?v=1739351653&width=360"
  14566.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14567.      alt=""
  14568.      loading="lazy"
  14569.      class="m:w-full"
  14570.      width="110"
  14571.      height="110"
  14572.      
  14573.  >
  14574.  
  14575.  <noscript>
  14576.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b7_110x110_db00b0ad-bf2a-4d20-b50f-ec9295e6ac16.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  14577.  </noscript>
  14578. </responsive-image>
  14579.  
  14580.        
  14581.        </div>
  14582.      
  14583.    </a>
  14584.    
  14585.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  14586.        
  14587.        <h3 class="m-collection-card__title h6">
  14588.          <a class="m-collection-card__link m:block" href="/collections/best-sellers-in-ride-on-toys">Ride on Toys</a>
  14589.        </h3>
  14590.        
  14591.        
  14592.        
  14593.        
  14594.        
  14595.      </div>
  14596.    
  14597.  </div>
  14598. </div>
  14599. <style>
  14600.  .collection-card-mobile {
  14601.    display: none;
  14602.  }
  14603.  .horizontal_layout-wrapper {
  14604.    display: flex;
  14605.  }
  14606.  @media screen and (max-width: 768px){
  14607.    #collection_custom_button{
  14608.      padding:4px 12px !important;
  14609.      font-size:14px !important;
  14610.    }
  14611.    .collection-card-mobile {
  14612.      display: block;
  14613.    }
  14614.    .collection-card-desktop {
  14615.      display: none;
  14616.    }
  14617.  }
  14618. </style>
  14619.  
  14620.                      </div>
  14621.                    
  14622.                      <div class="m:column">
  14623.                        
  14624.                        <div
  14625.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  14626.  style="
  14627.    --img-rounded: 0px;
  14628.    --img-width: 32px;
  14629.    height:100%;
  14630.  "
  14631. >
  14632.  <div
  14633.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  14634.    
  14635.    style=""
  14636.  >
  14637.    <a
  14638.      href="/collections/pets-supplies"
  14639.      class="m-collection-card__image m:block "
  14640.      aria-label="Pets' Supplies"
  14641.      style="flex:1;"
  14642.    >
  14643.      <div class="m-hover-box__wrapper collection-card-desktop">
  14644.        
  14645.          
  14646. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14647.  
  14648.  <img
  14649.      srcset="//www.garvee.com/cdn/shop/files/1_9b0f825a-3c3e-4ac4-ac78-47b2fd3bea12.png?v=1749025088 110w"
  14650.      src="//www.garvee.com/cdn/shop/files/1_9b0f825a-3c3e-4ac4-ac78-47b2fd3bea12.png?v=1749025088&width=360"
  14651.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14652.      alt=""
  14653.      loading="lazy"
  14654.      class="m:w-full"
  14655.      width="110"
  14656.      height="110"
  14657.      
  14658.  >
  14659.  
  14660.  <noscript>
  14661.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/1_9b0f825a-3c3e-4ac4-ac78-47b2fd3bea12.png?crop=center&height=2048&v=1749025088&width=2048" alt="">
  14662.  </noscript>
  14663. </responsive-image>
  14664.  
  14665.        
  14666.      </div>
  14667.      
  14668.        <div class="m-hover-box__wrapper collection-card-mobile">
  14669.        
  14670.          
  14671. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14672.  
  14673.  <img
  14674.      srcset="//www.garvee.com/cdn/shop/files/1_9b0f825a-3c3e-4ac4-ac78-47b2fd3bea12.png?v=1749025088 110w"
  14675.      src="//www.garvee.com/cdn/shop/files/1_9b0f825a-3c3e-4ac4-ac78-47b2fd3bea12.png?v=1749025088&width=360"
  14676.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14677.      alt=""
  14678.      loading="lazy"
  14679.      class="m:w-full"
  14680.      width="110"
  14681.      height="110"
  14682.      
  14683.  >
  14684.  
  14685.  <noscript>
  14686.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/1_9b0f825a-3c3e-4ac4-ac78-47b2fd3bea12.png?crop=center&height=2048&v=1749025088&width=2048" alt="">
  14687.  </noscript>
  14688. </responsive-image>
  14689.  
  14690.        
  14691.        </div>
  14692.      
  14693.    </a>
  14694.    
  14695.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  14696.        
  14697.        <h3 class="m-collection-card__title h6">
  14698.          <a class="m-collection-card__link m:block" href="/collections/pets-supplies">Pets' Supplies</a>
  14699.        </h3>
  14700.        
  14701.        
  14702.        
  14703.        
  14704.        
  14705.      </div>
  14706.    
  14707.  </div>
  14708. </div>
  14709. <style>
  14710.  .collection-card-mobile {
  14711.    display: none;
  14712.  }
  14713.  .horizontal_layout-wrapper {
  14714.    display: flex;
  14715.  }
  14716.  @media screen and (max-width: 768px){
  14717.    #collection_custom_button{
  14718.      padding:4px 12px !important;
  14719.      font-size:14px !important;
  14720.    }
  14721.    .collection-card-mobile {
  14722.      display: block;
  14723.    }
  14724.    .collection-card-desktop {
  14725.      display: none;
  14726.    }
  14727.  }
  14728. </style>
  14729.  
  14730.                      </div>
  14731.                    
  14732.                      <div class="m:column">
  14733.                        
  14734.                        <div
  14735.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  14736.  style="
  14737.    --img-rounded: 0px;
  14738.    --img-width: 32px;
  14739.    height:100%;
  14740.  "
  14741. >
  14742.  <div
  14743.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  14744.    
  14745.    style=""
  14746.  >
  14747.    <a
  14748.      href="/collections/power-hand-tools"
  14749.      class="m-collection-card__image m:block "
  14750.      aria-label="Power Tools"
  14751.      style="flex:1;"
  14752.    >
  14753.      <div class="m-hover-box__wrapper collection-card-desktop">
  14754.        
  14755.          
  14756. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14757.  
  14758.  <img
  14759.      srcset="//www.garvee.com/cdn/shop/files/b8_110x110_7f3203f1-e647-44a6-a25c-1a00f1030917.png?v=1739351653 110w"
  14760.      src="//www.garvee.com/cdn/shop/files/b8_110x110_7f3203f1-e647-44a6-a25c-1a00f1030917.png?v=1739351653&width=360"
  14761.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14762.      alt=""
  14763.      loading="lazy"
  14764.      class="m:w-full"
  14765.      width="110"
  14766.      height="110"
  14767.      
  14768.  >
  14769.  
  14770.  <noscript>
  14771.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b8_110x110_7f3203f1-e647-44a6-a25c-1a00f1030917.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  14772.  </noscript>
  14773. </responsive-image>
  14774.  
  14775.        
  14776.      </div>
  14777.      
  14778.        <div class="m-hover-box__wrapper collection-card-mobile">
  14779.        
  14780.          
  14781. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14782.  
  14783.  <img
  14784.      srcset="//www.garvee.com/cdn/shop/files/b8_110x110_7f3203f1-e647-44a6-a25c-1a00f1030917.png?v=1739351653 110w"
  14785.      src="//www.garvee.com/cdn/shop/files/b8_110x110_7f3203f1-e647-44a6-a25c-1a00f1030917.png?v=1739351653&width=360"
  14786.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14787.      alt=""
  14788.      loading="lazy"
  14789.      class="m:w-full"
  14790.      width="110"
  14791.      height="110"
  14792.      
  14793.  >
  14794.  
  14795.  <noscript>
  14796.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b8_110x110_7f3203f1-e647-44a6-a25c-1a00f1030917.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  14797.  </noscript>
  14798. </responsive-image>
  14799.  
  14800.        
  14801.        </div>
  14802.      
  14803.    </a>
  14804.    
  14805.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  14806.        
  14807.        <h3 class="m-collection-card__title h6">
  14808.          <a class="m-collection-card__link m:block" href="/collections/power-hand-tools">Power Tools</a>
  14809.        </h3>
  14810.        
  14811.        
  14812.        
  14813.        
  14814.        
  14815.      </div>
  14816.    
  14817.  </div>
  14818. </div>
  14819. <style>
  14820.  .collection-card-mobile {
  14821.    display: none;
  14822.  }
  14823.  .horizontal_layout-wrapper {
  14824.    display: flex;
  14825.  }
  14826.  @media screen and (max-width: 768px){
  14827.    #collection_custom_button{
  14828.      padding:4px 12px !important;
  14829.      font-size:14px !important;
  14830.    }
  14831.    .collection-card-mobile {
  14832.      display: block;
  14833.    }
  14834.    .collection-card-desktop {
  14835.      display: none;
  14836.    }
  14837.  }
  14838. </style>
  14839.  
  14840.                      </div>
  14841.                    
  14842.                  
  14843.                </div>
  14844.              </div>
  14845.              
  14846.            </div>
  14847.          </m-collection-list>
  14848.        </div>
  14849.        <div class="desktop_slider">
  14850.          <m-collection-list
  14851.            data-enable-slider="false"
  14852.            
  14853.            class="m-collection-list__inner m:block"
  14854.          >
  14855.            <div
  14856.              class="m-mixed-layout m-mixed-layout--mobile-grid"
  14857.              
  14858.                style="
  14859.                  --grid-columns-mobile: 2;
  14860.                  --mobile-column-width: 40vw;
  14861.                "
  14862.              
  14863.            >
  14864.              <div class="m-mixed-layout__wrapper">
  14865.                <div class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-4-cols xl:m:grid-6-cols">
  14866.                  
  14867.                    
  14868.                      <div class="m:column">
  14869.                        
  14870.                        <div
  14871.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  14872.  style="
  14873.    --img-rounded: 0px;
  14874.    --img-width: 32px;
  14875.    height:100%;
  14876.  "
  14877. >
  14878.  <div
  14879.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  14880.    
  14881.    style=""
  14882.  >
  14883.    <a
  14884.      href="/collections/best-selling-rugs"
  14885.      class="m-collection-card__image m:block "
  14886.      aria-label="Rugs"
  14887.      style="flex:1;"
  14888.    >
  14889.      <div class="m-hover-box__wrapper collection-card-desktop">
  14890.        
  14891.          
  14892. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14893.  
  14894.  <img
  14895.      srcset="//www.garvee.com/cdn/shop/files/3_a079c6b3-ce36-47e8-b176-0a48d0c6c38f.png?v=1747905292 110w"
  14896.      src="//www.garvee.com/cdn/shop/files/3_a079c6b3-ce36-47e8-b176-0a48d0c6c38f.png?v=1747905292&width=360"
  14897.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14898.      alt=""
  14899.      loading="lazy"
  14900.      class="m:w-full"
  14901.      width="110"
  14902.      height="110"
  14903.      
  14904.  >
  14905.  
  14906.  <noscript>
  14907.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/3_a079c6b3-ce36-47e8-b176-0a48d0c6c38f.png?crop=center&height=2048&v=1747905292&width=2048" alt="">
  14908.  </noscript>
  14909. </responsive-image>
  14910.  
  14911.        
  14912.      </div>
  14913.      
  14914.        <div class="m-hover-box__wrapper collection-card-mobile">
  14915.        
  14916.          
  14917. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  14918.  
  14919.  <img
  14920.      srcset="//www.garvee.com/cdn/shop/files/3_a079c6b3-ce36-47e8-b176-0a48d0c6c38f.png?v=1747905292 110w"
  14921.      src="//www.garvee.com/cdn/shop/files/3_a079c6b3-ce36-47e8-b176-0a48d0c6c38f.png?v=1747905292&width=360"
  14922.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  14923.      alt=""
  14924.      loading="lazy"
  14925.      class="m:w-full"
  14926.      width="110"
  14927.      height="110"
  14928.      
  14929.  >
  14930.  
  14931.  <noscript>
  14932.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/3_a079c6b3-ce36-47e8-b176-0a48d0c6c38f.png?crop=center&height=2048&v=1747905292&width=2048" alt="">
  14933.  </noscript>
  14934. </responsive-image>
  14935.  
  14936.        
  14937.        </div>
  14938.      
  14939.    </a>
  14940.    
  14941.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  14942.        
  14943.        <h3 class="m-collection-card__title h6">
  14944.          <a class="m-collection-card__link m:block" href="/collections/best-selling-rugs">Rugs</a>
  14945.        </h3>
  14946.        
  14947.        
  14948.        
  14949.        
  14950.        
  14951.      </div>
  14952.    
  14953.  </div>
  14954. </div>
  14955. <style>
  14956.  .collection-card-mobile {
  14957.    display: none;
  14958.  }
  14959.  .horizontal_layout-wrapper {
  14960.    display: flex;
  14961.  }
  14962.  @media screen and (max-width: 768px){
  14963.    #collection_custom_button{
  14964.      padding:4px 12px !important;
  14965.      font-size:14px !important;
  14966.    }
  14967.    .collection-card-mobile {
  14968.      display: block;
  14969.    }
  14970.    .collection-card-desktop {
  14971.      display: none;
  14972.    }
  14973.  }
  14974. </style>
  14975.  
  14976.                      </div>
  14977.                    
  14978.                      <div class="m:column">
  14979.                        
  14980.                        <div
  14981.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  14982.  style="
  14983.    --img-rounded: 0px;
  14984.    --img-width: 32px;
  14985.    height:100%;
  14986.  "
  14987. >
  14988.  <div
  14989.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  14990.    
  14991.    style=""
  14992.  >
  14993.    <a
  14994.      href="/collections/best-sellers-of-automotive"
  14995.      class="m-collection-card__image m:block "
  14996.      aria-label="Automotive"
  14997.      style="flex:1;"
  14998.    >
  14999.      <div class="m-hover-box__wrapper collection-card-desktop">
  15000.        
  15001.          
  15002. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15003.  
  15004.  <img
  15005.      srcset="//www.garvee.com/cdn/shop/files/b1_110x110_7c3a5537-d503-4a37-90b7-04ec5983be06.png?v=1739351654 110w"
  15006.      src="//www.garvee.com/cdn/shop/files/b1_110x110_7c3a5537-d503-4a37-90b7-04ec5983be06.png?v=1739351654&width=360"
  15007.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15008.      alt=""
  15009.      loading="lazy"
  15010.      class="m:w-full"
  15011.      width="110"
  15012.      height="110"
  15013.      
  15014.  >
  15015.  
  15016.  <noscript>
  15017.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b1_110x110_7c3a5537-d503-4a37-90b7-04ec5983be06.png?crop=center&height=2048&v=1739351654&width=2048" alt="">
  15018.  </noscript>
  15019. </responsive-image>
  15020.  
  15021.        
  15022.      </div>
  15023.      
  15024.        <div class="m-hover-box__wrapper collection-card-mobile">
  15025.        
  15026.          
  15027. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15028.  
  15029.  <img
  15030.      srcset="//www.garvee.com/cdn/shop/files/b1_110x110_7c3a5537-d503-4a37-90b7-04ec5983be06.png?v=1739351654 110w"
  15031.      src="//www.garvee.com/cdn/shop/files/b1_110x110_7c3a5537-d503-4a37-90b7-04ec5983be06.png?v=1739351654&width=360"
  15032.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15033.      alt=""
  15034.      loading="lazy"
  15035.      class="m:w-full"
  15036.      width="110"
  15037.      height="110"
  15038.      
  15039.  >
  15040.  
  15041.  <noscript>
  15042.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b1_110x110_7c3a5537-d503-4a37-90b7-04ec5983be06.png?crop=center&height=2048&v=1739351654&width=2048" alt="">
  15043.  </noscript>
  15044. </responsive-image>
  15045.  
  15046.        
  15047.        </div>
  15048.      
  15049.    </a>
  15050.    
  15051.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  15052.        
  15053.        <h3 class="m-collection-card__title h6">
  15054.          <a class="m-collection-card__link m:block" href="/collections/best-sellers-of-automotive">Automotive</a>
  15055.        </h3>
  15056.        
  15057.        
  15058.        
  15059.        
  15060.        
  15061.      </div>
  15062.    
  15063.  </div>
  15064. </div>
  15065. <style>
  15066.  .collection-card-mobile {
  15067.    display: none;
  15068.  }
  15069.  .horizontal_layout-wrapper {
  15070.    display: flex;
  15071.  }
  15072.  @media screen and (max-width: 768px){
  15073.    #collection_custom_button{
  15074.      padding:4px 12px !important;
  15075.      font-size:14px !important;
  15076.    }
  15077.    .collection-card-mobile {
  15078.      display: block;
  15079.    }
  15080.    .collection-card-desktop {
  15081.      display: none;
  15082.    }
  15083.  }
  15084. </style>
  15085.  
  15086.                      </div>
  15087.                    
  15088.                      <div class="m:column">
  15089.                        
  15090.                        <div
  15091.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  15092.  style="
  15093.    --img-rounded: 0px;
  15094.    --img-width: 32px;
  15095.    height:100%;
  15096.  "
  15097. >
  15098.  <div
  15099.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  15100.    
  15101.    style=""
  15102.  >
  15103.    <a
  15104.      href="/collections/best-sellers-of-material-handling"
  15105.      class="m-collection-card__image m:block "
  15106.      aria-label="Material Handling"
  15107.      style="flex:1;"
  15108.    >
  15109.      <div class="m-hover-box__wrapper collection-card-desktop">
  15110.        
  15111.          
  15112. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15113.  
  15114.  <img
  15115.      srcset="//www.garvee.com/cdn/shop/files/b6_110x110_ba61205f-437b-47f7-91d1-93d4120b197e.png?v=1739351653 110w"
  15116.      src="//www.garvee.com/cdn/shop/files/b6_110x110_ba61205f-437b-47f7-91d1-93d4120b197e.png?v=1739351653&width=360"
  15117.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15118.      alt=""
  15119.      loading="lazy"
  15120.      class="m:w-full"
  15121.      width="110"
  15122.      height="110"
  15123.      
  15124.  >
  15125.  
  15126.  <noscript>
  15127.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b6_110x110_ba61205f-437b-47f7-91d1-93d4120b197e.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  15128.  </noscript>
  15129. </responsive-image>
  15130.  
  15131.        
  15132.      </div>
  15133.      
  15134.        <div class="m-hover-box__wrapper collection-card-mobile">
  15135.        
  15136.          
  15137. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15138.  
  15139.  <img
  15140.      srcset="//www.garvee.com/cdn/shop/files/b6_110x110_ba61205f-437b-47f7-91d1-93d4120b197e.png?v=1739351653 110w"
  15141.      src="//www.garvee.com/cdn/shop/files/b6_110x110_ba61205f-437b-47f7-91d1-93d4120b197e.png?v=1739351653&width=360"
  15142.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15143.      alt=""
  15144.      loading="lazy"
  15145.      class="m:w-full"
  15146.      width="110"
  15147.      height="110"
  15148.      
  15149.  >
  15150.  
  15151.  <noscript>
  15152.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b6_110x110_ba61205f-437b-47f7-91d1-93d4120b197e.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  15153.  </noscript>
  15154. </responsive-image>
  15155.  
  15156.        
  15157.        </div>
  15158.      
  15159.    </a>
  15160.    
  15161.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  15162.        
  15163.        <h3 class="m-collection-card__title h6">
  15164.          <a class="m-collection-card__link m:block" href="/collections/best-sellers-of-material-handling">Material Handling</a>
  15165.        </h3>
  15166.        
  15167.        
  15168.        
  15169.        
  15170.        
  15171.      </div>
  15172.    
  15173.  </div>
  15174. </div>
  15175. <style>
  15176.  .collection-card-mobile {
  15177.    display: none;
  15178.  }
  15179.  .horizontal_layout-wrapper {
  15180.    display: flex;
  15181.  }
  15182.  @media screen and (max-width: 768px){
  15183.    #collection_custom_button{
  15184.      padding:4px 12px !important;
  15185.      font-size:14px !important;
  15186.    }
  15187.    .collection-card-mobile {
  15188.      display: block;
  15189.    }
  15190.    .collection-card-desktop {
  15191.      display: none;
  15192.    }
  15193.  }
  15194. </style>
  15195.  
  15196.                      </div>
  15197.                    
  15198.                      <div class="m:column">
  15199.                        
  15200.                        <div
  15201.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  15202.  style="
  15203.    --img-rounded: 0px;
  15204.    --img-width: 32px;
  15205.    height:100%;
  15206.  "
  15207. >
  15208.  <div
  15209.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  15210.    
  15211.    style=""
  15212.  >
  15213.    <a
  15214.      href="/collections/best-sellers-of-agriculture-forestry"
  15215.      class="m-collection-card__image m:block "
  15216.      aria-label="Agriculture"
  15217.      style="flex:1;"
  15218.    >
  15219.      <div class="m-hover-box__wrapper collection-card-desktop">
  15220.        
  15221.          
  15222. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15223.  
  15224.  <img
  15225.      srcset="//www.garvee.com/cdn/shop/files/b10_110x110_06daf73f-a82e-401e-b900-e3585de551e4.png?v=1742261319 110w"
  15226.      src="//www.garvee.com/cdn/shop/files/b10_110x110_06daf73f-a82e-401e-b900-e3585de551e4.png?v=1742261319&width=360"
  15227.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15228.      alt=""
  15229.      loading="lazy"
  15230.      class="m:w-full"
  15231.      width="110"
  15232.      height="110"
  15233.      
  15234.  >
  15235.  
  15236.  <noscript>
  15237.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b10_110x110_06daf73f-a82e-401e-b900-e3585de551e4.png?crop=center&height=2048&v=1742261319&width=2048" alt="">
  15238.  </noscript>
  15239. </responsive-image>
  15240.  
  15241.        
  15242.      </div>
  15243.      
  15244.        <div class="m-hover-box__wrapper collection-card-mobile">
  15245.        
  15246.          
  15247. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15248.  
  15249.  <img
  15250.      srcset="//www.garvee.com/cdn/shop/files/b10_110x110_06daf73f-a82e-401e-b900-e3585de551e4.png?v=1742261319 110w"
  15251.      src="//www.garvee.com/cdn/shop/files/b10_110x110_06daf73f-a82e-401e-b900-e3585de551e4.png?v=1742261319&width=360"
  15252.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15253.      alt=""
  15254.      loading="lazy"
  15255.      class="m:w-full"
  15256.      width="110"
  15257.      height="110"
  15258.      
  15259.  >
  15260.  
  15261.  <noscript>
  15262.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b10_110x110_06daf73f-a82e-401e-b900-e3585de551e4.png?crop=center&height=2048&v=1742261319&width=2048" alt="">
  15263.  </noscript>
  15264. </responsive-image>
  15265.  
  15266.        
  15267.        </div>
  15268.      
  15269.    </a>
  15270.    
  15271.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  15272.        
  15273.        <h3 class="m-collection-card__title h6">
  15274.          <a class="m-collection-card__link m:block" href="/collections/best-sellers-of-agriculture-forestry">Agriculture</a>
  15275.        </h3>
  15276.        
  15277.        
  15278.        
  15279.        
  15280.        
  15281.      </div>
  15282.    
  15283.  </div>
  15284. </div>
  15285. <style>
  15286.  .collection-card-mobile {
  15287.    display: none;
  15288.  }
  15289.  .horizontal_layout-wrapper {
  15290.    display: flex;
  15291.  }
  15292.  @media screen and (max-width: 768px){
  15293.    #collection_custom_button{
  15294.      padding:4px 12px !important;
  15295.      font-size:14px !important;
  15296.    }
  15297.    .collection-card-mobile {
  15298.      display: block;
  15299.    }
  15300.    .collection-card-desktop {
  15301.      display: none;
  15302.    }
  15303.  }
  15304. </style>
  15305.  
  15306.                      </div>
  15307.                    
  15308.                      <div class="m:column">
  15309.                        
  15310.                        <div
  15311.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  15312.  style="
  15313.    --img-rounded: 0px;
  15314.    --img-width: 32px;
  15315.    height:100%;
  15316.  "
  15317. >
  15318.  <div
  15319.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  15320.    
  15321.    style=""
  15322.  >
  15323.    <a
  15324.      href="/collections/dressers"
  15325.      class="m-collection-card__image m:block "
  15326.      aria-label="Dressers"
  15327.      style="flex:1;"
  15328.    >
  15329.      <div class="m-hover-box__wrapper collection-card-desktop">
  15330.        
  15331.          
  15332. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15333.  
  15334.  <img
  15335.      srcset="//www.garvee.com/cdn/shop/files/2_48e90b8a-215a-4abe-ae0f-a0de22c19436.png?v=1749025088 110w"
  15336.      src="//www.garvee.com/cdn/shop/files/2_48e90b8a-215a-4abe-ae0f-a0de22c19436.png?v=1749025088&width=360"
  15337.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15338.      alt=""
  15339.      loading="lazy"
  15340.      class="m:w-full"
  15341.      width="110"
  15342.      height="110"
  15343.      
  15344.  >
  15345.  
  15346.  <noscript>
  15347.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/2_48e90b8a-215a-4abe-ae0f-a0de22c19436.png?crop=center&height=2048&v=1749025088&width=2048" alt="">
  15348.  </noscript>
  15349. </responsive-image>
  15350.  
  15351.        
  15352.      </div>
  15353.      
  15354.        <div class="m-hover-box__wrapper collection-card-mobile">
  15355.        
  15356.          
  15357. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15358.  
  15359.  <img
  15360.      srcset="//www.garvee.com/cdn/shop/files/2_48e90b8a-215a-4abe-ae0f-a0de22c19436.png?v=1749025088 110w"
  15361.      src="//www.garvee.com/cdn/shop/files/2_48e90b8a-215a-4abe-ae0f-a0de22c19436.png?v=1749025088&width=360"
  15362.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15363.      alt=""
  15364.      loading="lazy"
  15365.      class="m:w-full"
  15366.      width="110"
  15367.      height="110"
  15368.      
  15369.  >
  15370.  
  15371.  <noscript>
  15372.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/2_48e90b8a-215a-4abe-ae0f-a0de22c19436.png?crop=center&height=2048&v=1749025088&width=2048" alt="">
  15373.  </noscript>
  15374. </responsive-image>
  15375.  
  15376.        
  15377.        </div>
  15378.      
  15379.    </a>
  15380.    
  15381.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  15382.        
  15383.        <h3 class="m-collection-card__title h6">
  15384.          <a class="m-collection-card__link m:block" href="/collections/dressers">Dressers</a>
  15385.        </h3>
  15386.        
  15387.        
  15388.        
  15389.        
  15390.        
  15391.      </div>
  15392.    
  15393.  </div>
  15394. </div>
  15395. <style>
  15396.  .collection-card-mobile {
  15397.    display: none;
  15398.  }
  15399.  .horizontal_layout-wrapper {
  15400.    display: flex;
  15401.  }
  15402.  @media screen and (max-width: 768px){
  15403.    #collection_custom_button{
  15404.      padding:4px 12px !important;
  15405.      font-size:14px !important;
  15406.    }
  15407.    .collection-card-mobile {
  15408.      display: block;
  15409.    }
  15410.    .collection-card-desktop {
  15411.      display: none;
  15412.    }
  15413.  }
  15414. </style>
  15415.  
  15416.                      </div>
  15417.                    
  15418.                      <div class="m:column">
  15419.                        
  15420.                        <div
  15421.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  15422.  style="
  15423.    --img-rounded: 0px;
  15424.    --img-width: 32px;
  15425.    height:100%;
  15426.  "
  15427. >
  15428.  <div
  15429.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  15430.    
  15431.    style=""
  15432.  >
  15433.    <a
  15434.      href="/collections/best-sellers-in-ride-on-toys"
  15435.      class="m-collection-card__image m:block "
  15436.      aria-label="Ride on Toys"
  15437.      style="flex:1;"
  15438.    >
  15439.      <div class="m-hover-box__wrapper collection-card-desktop">
  15440.        
  15441.          
  15442. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15443.  
  15444.  <img
  15445.      srcset="//www.garvee.com/cdn/shop/files/b7_110x110_db00b0ad-bf2a-4d20-b50f-ec9295e6ac16.png?v=1739351653 110w"
  15446.      src="//www.garvee.com/cdn/shop/files/b7_110x110_db00b0ad-bf2a-4d20-b50f-ec9295e6ac16.png?v=1739351653&width=360"
  15447.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15448.      alt=""
  15449.      loading="lazy"
  15450.      class="m:w-full"
  15451.      width="110"
  15452.      height="110"
  15453.      
  15454.  >
  15455.  
  15456.  <noscript>
  15457.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b7_110x110_db00b0ad-bf2a-4d20-b50f-ec9295e6ac16.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  15458.  </noscript>
  15459. </responsive-image>
  15460.  
  15461.        
  15462.      </div>
  15463.      
  15464.        <div class="m-hover-box__wrapper collection-card-mobile">
  15465.        
  15466.          
  15467. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15468.  
  15469.  <img
  15470.      srcset="//www.garvee.com/cdn/shop/files/b7_110x110_db00b0ad-bf2a-4d20-b50f-ec9295e6ac16.png?v=1739351653 110w"
  15471.      src="//www.garvee.com/cdn/shop/files/b7_110x110_db00b0ad-bf2a-4d20-b50f-ec9295e6ac16.png?v=1739351653&width=360"
  15472.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15473.      alt=""
  15474.      loading="lazy"
  15475.      class="m:w-full"
  15476.      width="110"
  15477.      height="110"
  15478.      
  15479.  >
  15480.  
  15481.  <noscript>
  15482.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b7_110x110_db00b0ad-bf2a-4d20-b50f-ec9295e6ac16.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  15483.  </noscript>
  15484. </responsive-image>
  15485.  
  15486.        
  15487.        </div>
  15488.      
  15489.    </a>
  15490.    
  15491.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  15492.        
  15493.        <h3 class="m-collection-card__title h6">
  15494.          <a class="m-collection-card__link m:block" href="/collections/best-sellers-in-ride-on-toys">Ride on Toys</a>
  15495.        </h3>
  15496.        
  15497.        
  15498.        
  15499.        
  15500.        
  15501.      </div>
  15502.    
  15503.  </div>
  15504. </div>
  15505. <style>
  15506.  .collection-card-mobile {
  15507.    display: none;
  15508.  }
  15509.  .horizontal_layout-wrapper {
  15510.    display: flex;
  15511.  }
  15512.  @media screen and (max-width: 768px){
  15513.    #collection_custom_button{
  15514.      padding:4px 12px !important;
  15515.      font-size:14px !important;
  15516.    }
  15517.    .collection-card-mobile {
  15518.      display: block;
  15519.    }
  15520.    .collection-card-desktop {
  15521.      display: none;
  15522.    }
  15523.  }
  15524. </style>
  15525.  
  15526.                      </div>
  15527.                    
  15528.                      <div class="m:column">
  15529.                        
  15530.                        <div
  15531.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  15532.  style="
  15533.    --img-rounded: 0px;
  15534.    --img-width: 32px;
  15535.    height:100%;
  15536.  "
  15537. >
  15538.  <div
  15539.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  15540.    
  15541.    style=""
  15542.  >
  15543.    <a
  15544.      href="/collections/pets-supplies"
  15545.      class="m-collection-card__image m:block "
  15546.      aria-label="Pets' Supplies"
  15547.      style="flex:1;"
  15548.    >
  15549.      <div class="m-hover-box__wrapper collection-card-desktop">
  15550.        
  15551.          
  15552. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15553.  
  15554.  <img
  15555.      srcset="//www.garvee.com/cdn/shop/files/1_9b0f825a-3c3e-4ac4-ac78-47b2fd3bea12.png?v=1749025088 110w"
  15556.      src="//www.garvee.com/cdn/shop/files/1_9b0f825a-3c3e-4ac4-ac78-47b2fd3bea12.png?v=1749025088&width=360"
  15557.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15558.      alt=""
  15559.      loading="lazy"
  15560.      class="m:w-full"
  15561.      width="110"
  15562.      height="110"
  15563.      
  15564.  >
  15565.  
  15566.  <noscript>
  15567.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/1_9b0f825a-3c3e-4ac4-ac78-47b2fd3bea12.png?crop=center&height=2048&v=1749025088&width=2048" alt="">
  15568.  </noscript>
  15569. </responsive-image>
  15570.  
  15571.        
  15572.      </div>
  15573.      
  15574.        <div class="m-hover-box__wrapper collection-card-mobile">
  15575.        
  15576.          
  15577. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15578.  
  15579.  <img
  15580.      srcset="//www.garvee.com/cdn/shop/files/1_9b0f825a-3c3e-4ac4-ac78-47b2fd3bea12.png?v=1749025088 110w"
  15581.      src="//www.garvee.com/cdn/shop/files/1_9b0f825a-3c3e-4ac4-ac78-47b2fd3bea12.png?v=1749025088&width=360"
  15582.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15583.      alt=""
  15584.      loading="lazy"
  15585.      class="m:w-full"
  15586.      width="110"
  15587.      height="110"
  15588.      
  15589.  >
  15590.  
  15591.  <noscript>
  15592.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/1_9b0f825a-3c3e-4ac4-ac78-47b2fd3bea12.png?crop=center&height=2048&v=1749025088&width=2048" alt="">
  15593.  </noscript>
  15594. </responsive-image>
  15595.  
  15596.        
  15597.        </div>
  15598.      
  15599.    </a>
  15600.    
  15601.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  15602.        
  15603.        <h3 class="m-collection-card__title h6">
  15604.          <a class="m-collection-card__link m:block" href="/collections/pets-supplies">Pets' Supplies</a>
  15605.        </h3>
  15606.        
  15607.        
  15608.        
  15609.        
  15610.        
  15611.      </div>
  15612.    
  15613.  </div>
  15614. </div>
  15615. <style>
  15616.  .collection-card-mobile {
  15617.    display: none;
  15618.  }
  15619.  .horizontal_layout-wrapper {
  15620.    display: flex;
  15621.  }
  15622.  @media screen and (max-width: 768px){
  15623.    #collection_custom_button{
  15624.      padding:4px 12px !important;
  15625.      font-size:14px !important;
  15626.    }
  15627.    .collection-card-mobile {
  15628.      display: block;
  15629.    }
  15630.    .collection-card-desktop {
  15631.      display: none;
  15632.    }
  15633.  }
  15634. </style>
  15635.  
  15636.                      </div>
  15637.                    
  15638.                      <div class="m:column">
  15639.                        
  15640.                        <div
  15641.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  15642.  style="
  15643.    --img-rounded: 0px;
  15644.    --img-width: 32px;
  15645.    height:100%;
  15646.  "
  15647. >
  15648.  <div
  15649.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  15650.    
  15651.    style=""
  15652.  >
  15653.    <a
  15654.      href="/collections/power-hand-tools"
  15655.      class="m-collection-card__image m:block "
  15656.      aria-label="Power Tools"
  15657.      style="flex:1;"
  15658.    >
  15659.      <div class="m-hover-box__wrapper collection-card-desktop">
  15660.        
  15661.          
  15662. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15663.  
  15664.  <img
  15665.      srcset="//www.garvee.com/cdn/shop/files/b8_110x110_7f3203f1-e647-44a6-a25c-1a00f1030917.png?v=1739351653 110w"
  15666.      src="//www.garvee.com/cdn/shop/files/b8_110x110_7f3203f1-e647-44a6-a25c-1a00f1030917.png?v=1739351653&width=360"
  15667.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15668.      alt=""
  15669.      loading="lazy"
  15670.      class="m:w-full"
  15671.      width="110"
  15672.      height="110"
  15673.      
  15674.  >
  15675.  
  15676.  <noscript>
  15677.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b8_110x110_7f3203f1-e647-44a6-a25c-1a00f1030917.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  15678.  </noscript>
  15679. </responsive-image>
  15680.  
  15681.        
  15682.      </div>
  15683.      
  15684.        <div class="m-hover-box__wrapper collection-card-mobile">
  15685.        
  15686.          
  15687. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15688.  
  15689.  <img
  15690.      srcset="//www.garvee.com/cdn/shop/files/b8_110x110_7f3203f1-e647-44a6-a25c-1a00f1030917.png?v=1739351653 110w"
  15691.      src="//www.garvee.com/cdn/shop/files/b8_110x110_7f3203f1-e647-44a6-a25c-1a00f1030917.png?v=1739351653&width=360"
  15692.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15693.      alt=""
  15694.      loading="lazy"
  15695.      class="m:w-full"
  15696.      width="110"
  15697.      height="110"
  15698.      
  15699.  >
  15700.  
  15701.  <noscript>
  15702.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b8_110x110_7f3203f1-e647-44a6-a25c-1a00f1030917.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  15703.  </noscript>
  15704. </responsive-image>
  15705.  
  15706.        
  15707.        </div>
  15708.      
  15709.    </a>
  15710.    
  15711.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  15712.        
  15713.        <h3 class="m-collection-card__title h6">
  15714.          <a class="m-collection-card__link m:block" href="/collections/power-hand-tools">Power Tools</a>
  15715.        </h3>
  15716.        
  15717.        
  15718.        
  15719.        
  15720.        
  15721.      </div>
  15722.    
  15723.  </div>
  15724. </div>
  15725. <style>
  15726.  .collection-card-mobile {
  15727.    display: none;
  15728.  }
  15729.  .horizontal_layout-wrapper {
  15730.    display: flex;
  15731.  }
  15732.  @media screen and (max-width: 768px){
  15733.    #collection_custom_button{
  15734.      padding:4px 12px !important;
  15735.      font-size:14px !important;
  15736.    }
  15737.    .collection-card-mobile {
  15738.      display: block;
  15739.    }
  15740.    .collection-card-desktop {
  15741.      display: none;
  15742.    }
  15743.  }
  15744. </style>
  15745.  
  15746.                      </div>
  15747.                    
  15748.                      <div class="m:column">
  15749.                        
  15750.                        <div
  15751.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  15752.  style="
  15753.    --img-rounded: 0px;
  15754.    --img-width: 32px;
  15755.    height:100%;
  15756.  "
  15757. >
  15758.  <div
  15759.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  15760.    
  15761.    style=""
  15762.  >
  15763.    <a
  15764.      href="/collections/soft-serve-ice-cream-machines"
  15765.      class="m-collection-card__image m:block "
  15766.      aria-label="Ice Cream Machines"
  15767.      style="flex:1;"
  15768.    >
  15769.      <div class="m-hover-box__wrapper collection-card-desktop">
  15770.        
  15771.          
  15772. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15773.  
  15774.  <img
  15775.      srcset="//www.garvee.com/cdn/shop/files/1_e60cbdda-dfa6-4293-b992-9ba9e826e335.png?v=1747905292 110w"
  15776.      src="//www.garvee.com/cdn/shop/files/1_e60cbdda-dfa6-4293-b992-9ba9e826e335.png?v=1747905292&width=360"
  15777.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15778.      alt=""
  15779.      loading="lazy"
  15780.      class="m:w-full"
  15781.      width="110"
  15782.      height="110"
  15783.      
  15784.  >
  15785.  
  15786.  <noscript>
  15787.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/1_e60cbdda-dfa6-4293-b992-9ba9e826e335.png?crop=center&height=2048&v=1747905292&width=2048" alt="">
  15788.  </noscript>
  15789. </responsive-image>
  15790.  
  15791.        
  15792.      </div>
  15793.      
  15794.        <div class="m-hover-box__wrapper collection-card-mobile">
  15795.        
  15796.          
  15797. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15798.  
  15799.  <img
  15800.      srcset="//www.garvee.com/cdn/shop/files/1_e60cbdda-dfa6-4293-b992-9ba9e826e335.png?v=1747905292 110w"
  15801.      src="//www.garvee.com/cdn/shop/files/1_e60cbdda-dfa6-4293-b992-9ba9e826e335.png?v=1747905292&width=360"
  15802.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15803.      alt=""
  15804.      loading="lazy"
  15805.      class="m:w-full"
  15806.      width="110"
  15807.      height="110"
  15808.      
  15809.  >
  15810.  
  15811.  <noscript>
  15812.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/1_e60cbdda-dfa6-4293-b992-9ba9e826e335.png?crop=center&height=2048&v=1747905292&width=2048" alt="">
  15813.  </noscript>
  15814. </responsive-image>
  15815.  
  15816.        
  15817.        </div>
  15818.      
  15819.    </a>
  15820.    
  15821.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  15822.        
  15823.        <h3 class="m-collection-card__title h6">
  15824.          <a class="m-collection-card__link m:block" href="/collections/soft-serve-ice-cream-machines">Ice Cream Machines</a>
  15825.        </h3>
  15826.        
  15827.        
  15828.        
  15829.        
  15830.        
  15831.      </div>
  15832.    
  15833.  </div>
  15834. </div>
  15835. <style>
  15836.  .collection-card-mobile {
  15837.    display: none;
  15838.  }
  15839.  .horizontal_layout-wrapper {
  15840.    display: flex;
  15841.  }
  15842.  @media screen and (max-width: 768px){
  15843.    #collection_custom_button{
  15844.      padding:4px 12px !important;
  15845.      font-size:14px !important;
  15846.    }
  15847.    .collection-card-mobile {
  15848.      display: block;
  15849.    }
  15850.    .collection-card-desktop {
  15851.      display: none;
  15852.    }
  15853.  }
  15854. </style>
  15855.  
  15856.                      </div>
  15857.                    
  15858.                      <div class="m:column">
  15859.                        
  15860.                        <div
  15861.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  15862.  style="
  15863.    --img-rounded: 0px;
  15864.    --img-width: 32px;
  15865.    height:100%;
  15866.  "
  15867. >
  15868.  <div
  15869.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  15870.    
  15871.    style=""
  15872.  >
  15873.    <a
  15874.      href="/collections/outdoorshade"
  15875.      class="m-collection-card__image m:block "
  15876.      aria-label="Outdoor Shade"
  15877.      style="flex:1;"
  15878.    >
  15879.      <div class="m-hover-box__wrapper collection-card-desktop">
  15880.        
  15881.          
  15882. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15883.  
  15884.  <img
  15885.      srcset="//www.garvee.com/cdn/shop/files/b5_110x110_9cf6c46a-5915-4bfd-a27f-b7f3e438fb34.png?v=1739351653 110w"
  15886.      src="//www.garvee.com/cdn/shop/files/b5_110x110_9cf6c46a-5915-4bfd-a27f-b7f3e438fb34.png?v=1739351653&width=360"
  15887.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15888.      alt=""
  15889.      loading="lazy"
  15890.      class="m:w-full"
  15891.      width="110"
  15892.      height="110"
  15893.      
  15894.  >
  15895.  
  15896.  <noscript>
  15897.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b5_110x110_9cf6c46a-5915-4bfd-a27f-b7f3e438fb34.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  15898.  </noscript>
  15899. </responsive-image>
  15900.  
  15901.        
  15902.      </div>
  15903.      
  15904.        <div class="m-hover-box__wrapper collection-card-mobile">
  15905.        
  15906.          
  15907. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15908.  
  15909.  <img
  15910.      srcset="//www.garvee.com/cdn/shop/files/b5_110x110_9cf6c46a-5915-4bfd-a27f-b7f3e438fb34.png?v=1739351653 110w"
  15911.      src="//www.garvee.com/cdn/shop/files/b5_110x110_9cf6c46a-5915-4bfd-a27f-b7f3e438fb34.png?v=1739351653&width=360"
  15912.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15913.      alt=""
  15914.      loading="lazy"
  15915.      class="m:w-full"
  15916.      width="110"
  15917.      height="110"
  15918.      
  15919.  >
  15920.  
  15921.  <noscript>
  15922.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b5_110x110_9cf6c46a-5915-4bfd-a27f-b7f3e438fb34.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  15923.  </noscript>
  15924. </responsive-image>
  15925.  
  15926.        
  15927.        </div>
  15928.      
  15929.    </a>
  15930.    
  15931.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  15932.        
  15933.        <h3 class="m-collection-card__title h6">
  15934.          <a class="m-collection-card__link m:block" href="/collections/outdoorshade">Outdoor Shade</a>
  15935.        </h3>
  15936.        
  15937.        
  15938.        
  15939.        
  15940.        
  15941.      </div>
  15942.    
  15943.  </div>
  15944. </div>
  15945. <style>
  15946.  .collection-card-mobile {
  15947.    display: none;
  15948.  }
  15949.  .horizontal_layout-wrapper {
  15950.    display: flex;
  15951.  }
  15952.  @media screen and (max-width: 768px){
  15953.    #collection_custom_button{
  15954.      padding:4px 12px !important;
  15955.      font-size:14px !important;
  15956.    }
  15957.    .collection-card-mobile {
  15958.      display: block;
  15959.    }
  15960.    .collection-card-desktop {
  15961.      display: none;
  15962.    }
  15963.  }
  15964. </style>
  15965.  
  15966.                      </div>
  15967.                    
  15968.                      <div class="m:column">
  15969.                        
  15970.                        <div
  15971.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  15972.  style="
  15973.    --img-rounded: 0px;
  15974.    --img-width: 32px;
  15975.    height:100%;
  15976.  "
  15977. >
  15978.  <div
  15979.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  15980.    
  15981.    style=""
  15982.  >
  15983.    <a
  15984.      href="/collections/outdoor-patio-furniture"
  15985.      class="m-collection-card__image m:block "
  15986.      aria-label="Outdoor Furniture"
  15987.      style="flex:1;"
  15988.    >
  15989.      <div class="m-hover-box__wrapper collection-card-desktop">
  15990.        
  15991.          
  15992. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  15993.  
  15994.  <img
  15995.      srcset="//www.garvee.com/cdn/shop/files/Outdoor_PatioFurniture.png?v=1741572196 110w"
  15996.      src="//www.garvee.com/cdn/shop/files/Outdoor_PatioFurniture.png?v=1741572196&width=360"
  15997.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  15998.      alt=""
  15999.      loading="lazy"
  16000.      class="m:w-full"
  16001.      width="110"
  16002.      height="110"
  16003.      
  16004.  >
  16005.  
  16006.  <noscript>
  16007.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Outdoor_PatioFurniture.png?crop=center&height=2048&v=1741572196&width=2048" alt="">
  16008.  </noscript>
  16009. </responsive-image>
  16010.  
  16011.        
  16012.      </div>
  16013.      
  16014.        <div class="m-hover-box__wrapper collection-card-mobile">
  16015.        
  16016.          
  16017. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  16018.  
  16019.  <img
  16020.      srcset="//www.garvee.com/cdn/shop/files/Outdoor_PatioFurniture.png?v=1741572196 110w"
  16021.      src="//www.garvee.com/cdn/shop/files/Outdoor_PatioFurniture.png?v=1741572196&width=360"
  16022.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16023.      alt=""
  16024.      loading="lazy"
  16025.      class="m:w-full"
  16026.      width="110"
  16027.      height="110"
  16028.      
  16029.  >
  16030.  
  16031.  <noscript>
  16032.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Outdoor_PatioFurniture.png?crop=center&height=2048&v=1741572196&width=2048" alt="">
  16033.  </noscript>
  16034. </responsive-image>
  16035.  
  16036.        
  16037.        </div>
  16038.      
  16039.    </a>
  16040.    
  16041.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  16042.        
  16043.        <h3 class="m-collection-card__title h6">
  16044.          <a class="m-collection-card__link m:block" href="/collections/outdoor-patio-furniture">Outdoor Furniture</a>
  16045.        </h3>
  16046.        
  16047.        
  16048.        
  16049.        
  16050.        
  16051.      </div>
  16052.    
  16053.  </div>
  16054. </div>
  16055. <style>
  16056.  .collection-card-mobile {
  16057.    display: none;
  16058.  }
  16059.  .horizontal_layout-wrapper {
  16060.    display: flex;
  16061.  }
  16062.  @media screen and (max-width: 768px){
  16063.    #collection_custom_button{
  16064.      padding:4px 12px !important;
  16065.      font-size:14px !important;
  16066.    }
  16067.    .collection-card-mobile {
  16068.      display: block;
  16069.    }
  16070.    .collection-card-desktop {
  16071.      display: none;
  16072.    }
  16073.  }
  16074. </style>
  16075.  
  16076.                      </div>
  16077.                    
  16078.                      <div class="m:column">
  16079.                        
  16080.                        <div
  16081.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-2"
  16082.  style="
  16083.    --img-rounded: 0px;
  16084.    --img-width: 32px;
  16085.    height:100%;
  16086.  "
  16087. >
  16088.  <div
  16089.    class="m-collection-card__wrapper m:text-center horizontal_layout-wrapper "
  16090.    
  16091.    style=""
  16092.  >
  16093.    <a
  16094.      href="/collections/best-sellers-of-plumbing"
  16095.      class="m-collection-card__image m:block "
  16096.      aria-label="Plumbing"
  16097.      style="flex:1;"
  16098.    >
  16099.      <div class="m-hover-box__wrapper collection-card-desktop">
  16100.        
  16101.          
  16102. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  16103.  
  16104.  <img
  16105.      srcset="//www.garvee.com/cdn/shop/files/b18_110x110_f516227f-f654-4877-9762-66184942c85f.png?v=1739351653 110w"
  16106.      src="//www.garvee.com/cdn/shop/files/b18_110x110_f516227f-f654-4877-9762-66184942c85f.png?v=1739351653&width=360"
  16107.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16108.      alt=""
  16109.      loading="lazy"
  16110.      class="m:w-full"
  16111.      width="110"
  16112.      height="110"
  16113.      
  16114.  >
  16115.  
  16116.  <noscript>
  16117.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b18_110x110_f516227f-f654-4877-9762-66184942c85f.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  16118.  </noscript>
  16119. </responsive-image>
  16120.  
  16121.        
  16122.      </div>
  16123.      
  16124.        <div class="m-hover-box__wrapper collection-card-mobile">
  16125.        
  16126.          
  16127. <responsive-image class="m-image "   style="--aspect-ratio: 1.0;">
  16128.  
  16129.  <img
  16130.      srcset="//www.garvee.com/cdn/shop/files/b18_110x110_f516227f-f654-4877-9762-66184942c85f.png?v=1739351653 110w"
  16131.      src="//www.garvee.com/cdn/shop/files/b18_110x110_f516227f-f654-4877-9762-66184942c85f.png?v=1739351653&width=360"
  16132.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16133.      alt=""
  16134.      loading="lazy"
  16135.      class="m:w-full"
  16136.      width="110"
  16137.      height="110"
  16138.      
  16139.  >
  16140.  
  16141.  <noscript>
  16142.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/b18_110x110_f516227f-f654-4877-9762-66184942c85f.png?crop=center&height=2048&v=1739351653&width=2048" alt="">
  16143.  </noscript>
  16144. </responsive-image>
  16145.  
  16146.        
  16147.        </div>
  16148.      
  16149.    </a>
  16150.    
  16151.      <div class="m-collection-card__info m:justify-center" style="flex:1.5;display:flex;align-items:center;padding: 0 0 0 5px;text-align: left;justify-content:left;">
  16152.        
  16153.        <h3 class="m-collection-card__title h6">
  16154.          <a class="m-collection-card__link m:block" href="/collections/best-sellers-of-plumbing">Plumbing</a>
  16155.        </h3>
  16156.        
  16157.        
  16158.        
  16159.        
  16160.        
  16161.      </div>
  16162.    
  16163.  </div>
  16164. </div>
  16165. <style>
  16166.  .collection-card-mobile {
  16167.    display: none;
  16168.  }
  16169.  .horizontal_layout-wrapper {
  16170.    display: flex;
  16171.  }
  16172.  @media screen and (max-width: 768px){
  16173.    #collection_custom_button{
  16174.      padding:4px 12px !important;
  16175.      font-size:14px !important;
  16176.    }
  16177.    .collection-card-mobile {
  16178.      display: block;
  16179.    }
  16180.    .collection-card-desktop {
  16181.      display: none;
  16182.    }
  16183.  }
  16184. </style>
  16185.  
  16186.                      </div>
  16187.                    
  16188.                  
  16189.                </div>
  16190.              </div>
  16191.              
  16192.            </div>
  16193.          </m-collection-list>
  16194.        </div>
  16195.      </div>
  16196.    </div>
  16197.  </div>
  16198. </section>
  16199.  
  16200. <style>
  16201.  m-collection-list .m-collection-card__info {
  16202.    overflow: hidden;
  16203.  }
  16204.  m-collection-list .m-collection-card__title {
  16205.    max-width: 100%;
  16206.    overflow-wrap: break-word;
  16207.  }
  16208.  .m-collection-card__link {
  16209.    font-weight: normal;
  16210.  }
  16211.  .mobile_slider {
  16212.    display: none;
  16213.  }
  16214.  @media screen and (max-width: 768px) {
  16215.    .mobile_slider {
  16216.      display: block;
  16217.    }
  16218.    .desktop_slider {
  16219.      display: none;
  16220.    }
  16221.    .m-collection-card__link {
  16222.      font-size: 12px;
  16223.    }
  16224.  }
  16225.  /* .m:column.swiper-slide.swiper-slide-duplicate{
  16226.      width:33% !important;
  16227.    } */
  16228.  
  16229.  @media (max-width: 640px) {
  16230.    .m-button {
  16231.      font-size: 12px;
  16232.    }
  16233.  }
  16234. </style>
  16235.  
  16236.  
  16237. <style> #shopify-section-template--24257712095545__3d92e37f-b44b-49a7-8000-f53f057128ae .m-collection-card {--img-width: 140px !important;} #shopify-section-template--24257712095545__3d92e37f-b44b-49a7-8000-f53f057128ae .m-collection-card__link:hover {color: rgb(var(--color-primary));} @media (max-width: 767px) {#shopify-section-template--24257712095545__3d92e37f-b44b-49a7-8000-f53f057128ae .m-collection-card {--img-width: 120px !important; } #shopify-section-template--24257712095545__3d92e37f-b44b-49a7-8000-f53f057128ae .m-mixed-layout--mobile-scroll {--mobile-column-width: 38vw !important; }} </style></div><div id="shopify-section-template--24257712095545__collection_list_7d8BBV" class="shopify-section"><link href="//www.garvee.com/cdn/shop/t/132/assets/component-collection-card.css?v=167412810450751081801740986011" rel="stylesheet" type="text/css" media="all" />
  16238. <link href="//www.garvee.com/cdn/shop/t/132/assets/section-collection-list.css?v=111592447707792523701740986010" rel="stylesheet" type="text/css" media="all" />
  16239.  
  16240.  
  16241.  
  16242. <section
  16243.  id="m-collection-list-template--24257712095545__collection_list_7d8BBV"
  16244.  data-section-type="collection-list"
  16245.  data-section-id="template--24257712095545__collection_list_7d8BBV"
  16246.  class="m-section m-section--padding m-collection-list m-gradient m-color-background-1"
  16247.  style="
  16248.    --section-padding-top: 0px;
  16249.    --section-padding-bottom: 30px;
  16250.    --column-gap: 5px;
  16251.    --column-gap-mobile: 7px;
  16252.    --row-gap: 5px;
  16253.    --row-gap-mobile: 0px;
  16254.    --items: 5
  16255.  "
  16256. >
  16257.  <div
  16258.    class="m-page-width "
  16259.    
  16260.  >
  16261.    <div class="m-section__wrapper">
  16262.      
  16263.        <div class="m-section__header m:display-flex m:justify-between sm:m:flex-row m:items-start sm:m:items-center">
  16264.          
  16265.            <h2 class="m-section__heading h4">
  16266.              
  16267.                Shop Outdoor Deals
  16268.              
  16269.            </h2>
  16270.          
  16271.          
  16272.          
  16273.          
  16274.          
  16275.        </div>
  16276.      
  16277.      <div class="m-section__content">
  16278.        
  16279.  
  16280.        <div class="mobile_slider">
  16281.          <m-collection-list
  16282.            data-enable-slider="true"
  16283.            
  16284.              data-items="5"
  16285.              data-laptop-items="4"
  16286.              data-tablet-items="3"
  16287.              data-mobile-items="2"
  16288.              data-show-pagination="false"
  16289.              data-show-navigation="true"
  16290.              data-pagination-type="fraction"
  16291.              data-mobile-layout="col-2"
  16292.            
  16293.            class="m-collection-list__inner m:block"
  16294.          >
  16295.            <div
  16296.              class="m-mixed-layout m-mixed-layout--mobile-grid"
  16297.              
  16298.                style="
  16299.                  --grid-columns-mobile: 2;
  16300.                  --mobile-column-width: 40vw;
  16301.                "
  16302.              
  16303.            >
  16304.              <div class="m-mixed-layout__wrapper swiper swiper--equal-height">
  16305.                <div class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-4-cols xl:m:grid-5-cols swiper-wrapper">
  16306.                  
  16307.                    
  16308.                    
  16309.                    
  16310.                      <div class="m:column swiper-slide">
  16311.                        
  16312.                        <div
  16313.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  16314.  style="
  16315.    --img-rounded: 0px;
  16316.    --img-width: 100%;
  16317.    height:100%;
  16318.  "
  16319. >
  16320.  <div
  16321.    class="m-collection-card__wrapper m:text-center"
  16322.    
  16323.    style=""
  16324.  >
  16325.    <a
  16326.      href="/collections/outdoorshade"
  16327.      class="m-collection-card__image m:block "
  16328.      aria-label="Example collection title"
  16329.      style=""
  16330.    >
  16331.      <div class="m-hover-box__wrapper collection-card-desktop">
  16332.        
  16333.          
  16334. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  16335.  
  16336.  <img
  16337.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974 500w"
  16338.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974&width=360"
  16339.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16340.      alt=""
  16341.      loading="lazy"
  16342.      class="m:w-full"
  16343.      width="500"
  16344.      height="319"
  16345.      
  16346.  >
  16347.  
  16348.  <noscript>
  16349.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  16350.  </noscript>
  16351. </responsive-image>
  16352.  
  16353.        
  16354.      </div>
  16355.      
  16356.        <div class="m-hover-box__wrapper collection-card-mobile">
  16357.        
  16358.          
  16359. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  16360.  
  16361.  <img
  16362.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974 500w"
  16363.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974&width=360"
  16364.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16365.      alt=""
  16366.      loading="lazy"
  16367.      class="m:w-full"
  16368.      width="500"
  16369.      height="319"
  16370.      
  16371.  >
  16372.  
  16373.  <noscript>
  16374.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  16375.  </noscript>
  16376. </responsive-image>
  16377.  
  16378.        
  16379.        </div>
  16380.      
  16381.    </a>
  16382.    
  16383.      <div class="m-collection-card__info m:justify-center" style="">
  16384.        
  16385.        
  16386.        
  16387.        
  16388.        
  16389.      </div>
  16390.    
  16391.  </div>
  16392. </div>
  16393. <style>
  16394.  .collection-card-mobile {
  16395.    display: none;
  16396.  }
  16397.  .horizontal_layout-wrapper {
  16398.    display: flex;
  16399.  }
  16400.  @media screen and (max-width: 768px){
  16401.    #collection_custom_button{
  16402.      padding:4px 12px !important;
  16403.      font-size:14px !important;
  16404.    }
  16405.    .collection-card-mobile {
  16406.      display: block;
  16407.    }
  16408.    .collection-card-desktop {
  16409.      display: none;
  16410.    }
  16411.  }
  16412. </style>
  16413.  
  16414.                      </div>
  16415.                    
  16416.                      <div class="m:column swiper-slide">
  16417.                        
  16418.                        <div
  16419.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  16420.  style="
  16421.    --img-rounded: 0px;
  16422.    --img-width: 100%;
  16423.    height:100%;
  16424.  "
  16425. >
  16426.  <div
  16427.    class="m-collection-card__wrapper m:text-center"
  16428.    
  16429.    style=""
  16430.  >
  16431.    <a
  16432.      href="/collections/outdoor-patio-furniture"
  16433.      class="m-collection-card__image m:block "
  16434.      aria-label="Example collection title"
  16435.      style=""
  16436.    >
  16437.      <div class="m-hover-box__wrapper collection-card-desktop">
  16438.        
  16439.          
  16440. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  16441.  
  16442.  <img
  16443.      srcset="//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283&width=165 165w,//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283&width=360 360w,//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283 500w"
  16444.      src="//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283&width=360"
  16445.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16446.      alt=""
  16447.      loading="lazy"
  16448.      class="m:w-full"
  16449.      width="500"
  16450.      height="319"
  16451.      
  16452.  >
  16453.  
  16454.  <noscript>
  16455.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/7-20250314.jpg?crop=center&height=2048&v=1741951283&width=2048" alt="">
  16456.  </noscript>
  16457. </responsive-image>
  16458.  
  16459.        
  16460.      </div>
  16461.      
  16462.        <div class="m-hover-box__wrapper collection-card-mobile">
  16463.        
  16464.          
  16465. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  16466.  
  16467.  <img
  16468.      srcset="//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283&width=165 165w,//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283&width=360 360w,//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283 500w"
  16469.      src="//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283&width=360"
  16470.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16471.      alt=""
  16472.      loading="lazy"
  16473.      class="m:w-full"
  16474.      width="500"
  16475.      height="319"
  16476.      
  16477.  >
  16478.  
  16479.  <noscript>
  16480.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/7-20250314.jpg?crop=center&height=2048&v=1741951283&width=2048" alt="">
  16481.  </noscript>
  16482. </responsive-image>
  16483.  
  16484.        
  16485.        </div>
  16486.      
  16487.    </a>
  16488.    
  16489.      <div class="m-collection-card__info m:justify-center" style="">
  16490.        
  16491.        
  16492.        
  16493.        
  16494.        
  16495.      </div>
  16496.    
  16497.  </div>
  16498. </div>
  16499. <style>
  16500.  .collection-card-mobile {
  16501.    display: none;
  16502.  }
  16503.  .horizontal_layout-wrapper {
  16504.    display: flex;
  16505.  }
  16506.  @media screen and (max-width: 768px){
  16507.    #collection_custom_button{
  16508.      padding:4px 12px !important;
  16509.      font-size:14px !important;
  16510.    }
  16511.    .collection-card-mobile {
  16512.      display: block;
  16513.    }
  16514.    .collection-card-desktop {
  16515.      display: none;
  16516.    }
  16517.  }
  16518. </style>
  16519.  
  16520.                      </div>
  16521.                    
  16522.                      <div class="m:column swiper-slide">
  16523.                        
  16524.                        <div
  16525.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  16526.  style="
  16527.    --img-rounded: 0px;
  16528.    --img-width: 100%;
  16529.    height:100%;
  16530.  "
  16531. >
  16532.  <div
  16533.    class="m-collection-card__wrapper m:text-center"
  16534.    
  16535.    style=""
  16536.  >
  16537.    <a
  16538.      href="/collections/plant-pots"
  16539.      class="m-collection-card__image m:block "
  16540.      aria-label="Example collection title"
  16541.      style=""
  16542.    >
  16543.      <div class="m-hover-box__wrapper collection-card-desktop">
  16544.        
  16545.          
  16546. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  16547.  
  16548.  <img
  16549.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974 500w"
  16550.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974&width=360"
  16551.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16552.      alt=""
  16553.      loading="lazy"
  16554.      class="m:w-full"
  16555.      width="500"
  16556.      height="319"
  16557.      
  16558.  >
  16559.  
  16560.  <noscript>
  16561.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  16562.  </noscript>
  16563. </responsive-image>
  16564.  
  16565.        
  16566.      </div>
  16567.      
  16568.        <div class="m-hover-box__wrapper collection-card-mobile">
  16569.        
  16570.          
  16571. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  16572.  
  16573.  <img
  16574.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974 500w"
  16575.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974&width=360"
  16576.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16577.      alt=""
  16578.      loading="lazy"
  16579.      class="m:w-full"
  16580.      width="500"
  16581.      height="319"
  16582.      
  16583.  >
  16584.  
  16585.  <noscript>
  16586.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  16587.  </noscript>
  16588. </responsive-image>
  16589.  
  16590.        
  16591.        </div>
  16592.      
  16593.    </a>
  16594.    
  16595.      <div class="m-collection-card__info m:justify-center" style="">
  16596.        
  16597.        
  16598.        
  16599.        
  16600.        
  16601.      </div>
  16602.    
  16603.  </div>
  16604. </div>
  16605. <style>
  16606.  .collection-card-mobile {
  16607.    display: none;
  16608.  }
  16609.  .horizontal_layout-wrapper {
  16610.    display: flex;
  16611.  }
  16612.  @media screen and (max-width: 768px){
  16613.    #collection_custom_button{
  16614.      padding:4px 12px !important;
  16615.      font-size:14px !important;
  16616.    }
  16617.    .collection-card-mobile {
  16618.      display: block;
  16619.    }
  16620.    .collection-card-desktop {
  16621.      display: none;
  16622.    }
  16623.  }
  16624. </style>
  16625.  
  16626.                      </div>
  16627.                    
  16628.                      <div class="m:column swiper-slide">
  16629.                        
  16630.                        <div
  16631.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  16632.  style="
  16633.    --img-rounded: 0px;
  16634.    --img-width: 100%;
  16635.    height:100%;
  16636.  "
  16637. >
  16638.  <div
  16639.    class="m-collection-card__wrapper m:text-center"
  16640.    
  16641.    style=""
  16642.  >
  16643.    <a
  16644.      href="/collections/garden-supplies"
  16645.      class="m-collection-card__image m:block "
  16646.      aria-label="Example collection title"
  16647.      style=""
  16648.    >
  16649.      <div class="m-hover-box__wrapper collection-card-desktop">
  16650.        
  16651.          
  16652. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  16653.  
  16654.  <img
  16655.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974 500w"
  16656.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974&width=360"
  16657.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16658.      alt=""
  16659.      loading="lazy"
  16660.      class="m:w-full"
  16661.      width="500"
  16662.      height="319"
  16663.      
  16664.  >
  16665.  
  16666.  <noscript>
  16667.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  16668.  </noscript>
  16669. </responsive-image>
  16670.  
  16671.        
  16672.      </div>
  16673.      
  16674.        <div class="m-hover-box__wrapper collection-card-mobile">
  16675.        
  16676.          
  16677. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  16678.  
  16679.  <img
  16680.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974 500w"
  16681.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974&width=360"
  16682.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16683.      alt=""
  16684.      loading="lazy"
  16685.      class="m:w-full"
  16686.      width="500"
  16687.      height="319"
  16688.      
  16689.  >
  16690.  
  16691.  <noscript>
  16692.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  16693.  </noscript>
  16694. </responsive-image>
  16695.  
  16696.        
  16697.        </div>
  16698.      
  16699.    </a>
  16700.    
  16701.      <div class="m-collection-card__info m:justify-center" style="">
  16702.        
  16703.        
  16704.        
  16705.        
  16706.        
  16707.      </div>
  16708.    
  16709.  </div>
  16710. </div>
  16711. <style>
  16712.  .collection-card-mobile {
  16713.    display: none;
  16714.  }
  16715.  .horizontal_layout-wrapper {
  16716.    display: flex;
  16717.  }
  16718.  @media screen and (max-width: 768px){
  16719.    #collection_custom_button{
  16720.      padding:4px 12px !important;
  16721.      font-size:14px !important;
  16722.    }
  16723.    .collection-card-mobile {
  16724.      display: block;
  16725.    }
  16726.    .collection-card-desktop {
  16727.      display: none;
  16728.    }
  16729.  }
  16730. </style>
  16731.  
  16732.                      </div>
  16733.                    
  16734.                      <div class="m:column swiper-slide">
  16735.                        
  16736.                        <div
  16737.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  16738.  style="
  16739.    --img-rounded: 0px;
  16740.    --img-width: 100%;
  16741.    height:100%;
  16742.  "
  16743. >
  16744.  <div
  16745.    class="m-collection-card__wrapper m:text-center"
  16746.    
  16747.    style=""
  16748.  >
  16749.    <a
  16750.      href="/collections/outdoor-decoration"
  16751.      class="m-collection-card__image m:block "
  16752.      aria-label="Example collection title"
  16753.      style=""
  16754.    >
  16755.      <div class="m-hover-box__wrapper collection-card-desktop">
  16756.        
  16757.          
  16758. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  16759.  
  16760.  <img
  16761.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974 500w"
  16762.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974&width=360"
  16763.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16764.      alt=""
  16765.      loading="lazy"
  16766.      class="m:w-full"
  16767.      width="500"
  16768.      height="319"
  16769.      
  16770.  >
  16771.  
  16772.  <noscript>
  16773.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  16774.  </noscript>
  16775. </responsive-image>
  16776.  
  16777.        
  16778.      </div>
  16779.      
  16780.        <div class="m-hover-box__wrapper collection-card-mobile">
  16781.        
  16782.          
  16783. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  16784.  
  16785.  <img
  16786.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974 500w"
  16787.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974&width=360"
  16788.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16789.      alt=""
  16790.      loading="lazy"
  16791.      class="m:w-full"
  16792.      width="500"
  16793.      height="319"
  16794.      
  16795.  >
  16796.  
  16797.  <noscript>
  16798.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  16799.  </noscript>
  16800. </responsive-image>
  16801.  
  16802.        
  16803.        </div>
  16804.      
  16805.    </a>
  16806.    
  16807.      <div class="m-collection-card__info m:justify-center" style="">
  16808.        
  16809.        
  16810.        
  16811.        
  16812.        
  16813.      </div>
  16814.    
  16815.  </div>
  16816. </div>
  16817. <style>
  16818.  .collection-card-mobile {
  16819.    display: none;
  16820.  }
  16821.  .horizontal_layout-wrapper {
  16822.    display: flex;
  16823.  }
  16824.  @media screen and (max-width: 768px){
  16825.    #collection_custom_button{
  16826.      padding:4px 12px !important;
  16827.      font-size:14px !important;
  16828.    }
  16829.    .collection-card-mobile {
  16830.      display: block;
  16831.    }
  16832.    .collection-card-desktop {
  16833.      display: none;
  16834.    }
  16835.  }
  16836. </style>
  16837.  
  16838.                      </div>
  16839.                    
  16840.                      <div class="m:column swiper-slide">
  16841.                        
  16842.                        <div
  16843.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  16844.  style="
  16845.    --img-rounded: 0px;
  16846.    --img-width: 100%;
  16847.    height:100%;
  16848.  "
  16849. >
  16850.  <div
  16851.    class="m-collection-card__wrapper m:text-center"
  16852.    
  16853.    style=""
  16854.  >
  16855.    <a
  16856.      href="/collections/fire-pits"
  16857.      class="m-collection-card__image m:block "
  16858.      aria-label="Example collection title"
  16859.      style=""
  16860.    >
  16861.      <div class="m-hover-box__wrapper collection-card-desktop">
  16862.        
  16863.          
  16864. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  16865.  
  16866.  <img
  16867.      srcset="//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270&width=165 165w,//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270&width=360 360w,//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270 500w"
  16868.      src="//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270&width=360"
  16869.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16870.      alt=""
  16871.      loading="lazy"
  16872.      class="m:w-full"
  16873.      width="500"
  16874.      height="319"
  16875.      
  16876.  >
  16877.  
  16878.  <noscript>
  16879.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/6-20250314.jpg?crop=center&height=2048&v=1741951270&width=2048" alt="">
  16880.  </noscript>
  16881. </responsive-image>
  16882.  
  16883.        
  16884.      </div>
  16885.      
  16886.        <div class="m-hover-box__wrapper collection-card-mobile">
  16887.        
  16888.          
  16889. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  16890.  
  16891.  <img
  16892.      srcset="//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270&width=165 165w,//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270&width=360 360w,//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270 500w"
  16893.      src="//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270&width=360"
  16894.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  16895.      alt=""
  16896.      loading="lazy"
  16897.      class="m:w-full"
  16898.      width="500"
  16899.      height="319"
  16900.      
  16901.  >
  16902.  
  16903.  <noscript>
  16904.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/6-20250314.jpg?crop=center&height=2048&v=1741951270&width=2048" alt="">
  16905.  </noscript>
  16906. </responsive-image>
  16907.  
  16908.        
  16909.        </div>
  16910.      
  16911.    </a>
  16912.    
  16913.      <div class="m-collection-card__info m:justify-center" style="">
  16914.        
  16915.        
  16916.        
  16917.        
  16918.        
  16919.      </div>
  16920.    
  16921.  </div>
  16922. </div>
  16923. <style>
  16924.  .collection-card-mobile {
  16925.    display: none;
  16926.  }
  16927.  .horizontal_layout-wrapper {
  16928.    display: flex;
  16929.  }
  16930.  @media screen and (max-width: 768px){
  16931.    #collection_custom_button{
  16932.      padding:4px 12px !important;
  16933.      font-size:14px !important;
  16934.    }
  16935.    .collection-card-mobile {
  16936.      display: block;
  16937.    }
  16938.    .collection-card-desktop {
  16939.      display: none;
  16940.    }
  16941.  }
  16942. </style>
  16943.  
  16944.                      </div>
  16945.                    
  16946.                  
  16947.                </div>
  16948.              </div>
  16949.              
  16950.                
  16951.  
  16952.  
  16953. <div class="m-slider-controls m:text-center m-slider-controls--show-nav m-slider-controls--nav-inside">
  16954.  <div class="m-slider-controls__wrapper">
  16955.    
  16956.      
  16957.        <button
  16958.          class="m-slider-controls__button m:inline-flex m-slider-controls__button-prev swiper-button-prev "
  16959.          aria-label="Previous"
  16960.        >
  16961.          <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
  16962.            <path d="M20 6L10 16L20 26" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  16963.          </svg>
  16964.        </button>
  16965.      
  16966.      
  16967.      
  16968.        <button
  16969.          class="m-slider-controls__button m:inline-flex m-slider-controls__button-next swiper-button-next "
  16970.          aria-label="Next"
  16971.        >
  16972.          <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
  16973.            <path d="M12 6L22 16L12 26" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  16974.          </svg>
  16975.        </button>
  16976.      
  16977.    
  16978.  </div>
  16979. </div>
  16980. <style>
  16981.  .dots-container{
  16982.    display:flex;
  16983.  }
  16984.  .dot {
  16985.        width: 10px;
  16986.        height: 10px;
  16987.        background-color: gray;
  16988.        border-radius: 50%;
  16989.        margin: 0 5px;
  16990.        cursor: pointer;
  16991.        pointer-events: all;
  16992.    }
  16993.  .dot.active {
  16994.        background-color: #074174;
  16995.    }
  16996. </style>
  16997. <script>
  16998.  const dotEles=document.body.querySelectorAll(".dot")
  16999.  dotEles.forEach((dot,i)=>{
  17000.    dot.addEventListener('click', () => {
  17001.            console.log("轮播图小点")
  17002.            showSlide(i)
  17003.      });
  17004.  })
  17005.  const slider=document.body.querySelector('.m-slide__wrapper .swiper-wrapper')
  17006.  function showSlide(slideIndex) {
  17007.        currentSlide = slideIndex;
  17008.        slider.style.transform = `translateX(-${(currentSlide+1) * 100}%)`;
  17009.        dotEles.forEach((dot, index) => {
  17010.            if (index === currentSlide) {
  17011.                dot.classList.add('active');
  17012.            } else {
  17013.                dot.classList.remove('active');
  17014.            }
  17015.        });
  17016.    }
  17017. </script>
  17018.  
  17019.              
  17020.            </div>
  17021.          </m-collection-list>
  17022.        </div>
  17023.        <div class="desktop_slider">
  17024.          <m-collection-list
  17025.            data-enable-slider="true"
  17026.            
  17027.              data-items="5"
  17028.              data-laptop-items="4"
  17029.              data-tablet-items="3"
  17030.              data-mobile-items="2"
  17031.              data-show-pagination="false"
  17032.              data-show-navigation="true"
  17033.              data-pagination-type="fraction"
  17034.              data-mobile-layout="col-2"
  17035.            
  17036.            class="m-collection-list__inner m:block"
  17037.          >
  17038.            <div
  17039.              class="m-mixed-layout m-mixed-layout--mobile-grid"
  17040.              
  17041.                style="
  17042.                  --grid-columns-mobile: 2;
  17043.                  --mobile-column-width: 40vw;
  17044.                "
  17045.              
  17046.            >
  17047.              <div class="m-mixed-layout__wrapper swiper swiper--equal-height">
  17048.                <div class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-4-cols xl:m:grid-5-cols swiper-wrapper">
  17049.                  
  17050.                    
  17051.                      <div class="m:column swiper-slide">
  17052.                        
  17053.                        <div
  17054.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  17055.  style="
  17056.    --img-rounded: 0px;
  17057.    --img-width: 100%;
  17058.    height:100%;
  17059.  "
  17060. >
  17061.  <div
  17062.    class="m-collection-card__wrapper m:text-center"
  17063.    
  17064.    style=""
  17065.  >
  17066.    <a
  17067.      href="/collections/outdoorshade"
  17068.      class="m-collection-card__image m:block "
  17069.      aria-label="Example collection title"
  17070.      style=""
  17071.    >
  17072.      <div class="m-hover-box__wrapper collection-card-desktop">
  17073.        
  17074.          
  17075. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17076.  
  17077.  <img
  17078.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974 500w"
  17079.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974&width=360"
  17080.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17081.      alt=""
  17082.      loading="lazy"
  17083.      class="m:w-full"
  17084.      width="500"
  17085.      height="319"
  17086.      
  17087.  >
  17088.  
  17089.  <noscript>
  17090.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  17091.  </noscript>
  17092. </responsive-image>
  17093.  
  17094.        
  17095.      </div>
  17096.      
  17097.        <div class="m-hover-box__wrapper collection-card-mobile">
  17098.        
  17099.          
  17100. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17101.  
  17102.  <img
  17103.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974 500w"
  17104.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?v=1741139974&width=360"
  17105.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17106.      alt=""
  17107.      loading="lazy"
  17108.      class="m:w-full"
  17109.      width="500"
  17110.      height="319"
  17111.      
  17112.  >
  17113.  
  17114.  <noscript>
  17115.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-4_073567fa-333f-4645-b359-e3deb6bea5ea.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  17116.  </noscript>
  17117. </responsive-image>
  17118.  
  17119.        
  17120.        </div>
  17121.      
  17122.    </a>
  17123.    
  17124.      <div class="m-collection-card__info m:justify-center" style="">
  17125.        
  17126.        
  17127.        
  17128.        
  17129.        
  17130.      </div>
  17131.    
  17132.  </div>
  17133. </div>
  17134. <style>
  17135.  .collection-card-mobile {
  17136.    display: none;
  17137.  }
  17138.  .horizontal_layout-wrapper {
  17139.    display: flex;
  17140.  }
  17141.  @media screen and (max-width: 768px){
  17142.    #collection_custom_button{
  17143.      padding:4px 12px !important;
  17144.      font-size:14px !important;
  17145.    }
  17146.    .collection-card-mobile {
  17147.      display: block;
  17148.    }
  17149.    .collection-card-desktop {
  17150.      display: none;
  17151.    }
  17152.  }
  17153. </style>
  17154.  
  17155.                      </div>
  17156.                    
  17157.                      <div class="m:column swiper-slide">
  17158.                        
  17159.                        <div
  17160.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  17161.  style="
  17162.    --img-rounded: 0px;
  17163.    --img-width: 100%;
  17164.    height:100%;
  17165.  "
  17166. >
  17167.  <div
  17168.    class="m-collection-card__wrapper m:text-center"
  17169.    
  17170.    style=""
  17171.  >
  17172.    <a
  17173.      href="/collections/outdoor-patio-furniture"
  17174.      class="m-collection-card__image m:block "
  17175.      aria-label="Example collection title"
  17176.      style=""
  17177.    >
  17178.      <div class="m-hover-box__wrapper collection-card-desktop">
  17179.        
  17180.          
  17181. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17182.  
  17183.  <img
  17184.      srcset="//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283&width=165 165w,//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283&width=360 360w,//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283 500w"
  17185.      src="//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283&width=360"
  17186.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17187.      alt=""
  17188.      loading="lazy"
  17189.      class="m:w-full"
  17190.      width="500"
  17191.      height="319"
  17192.      
  17193.  >
  17194.  
  17195.  <noscript>
  17196.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/7-20250314.jpg?crop=center&height=2048&v=1741951283&width=2048" alt="">
  17197.  </noscript>
  17198. </responsive-image>
  17199.  
  17200.        
  17201.      </div>
  17202.      
  17203.        <div class="m-hover-box__wrapper collection-card-mobile">
  17204.        
  17205.          
  17206. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17207.  
  17208.  <img
  17209.      srcset="//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283&width=165 165w,//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283&width=360 360w,//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283 500w"
  17210.      src="//www.garvee.com/cdn/shop/files/7-20250314.jpg?v=1741951283&width=360"
  17211.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17212.      alt=""
  17213.      loading="lazy"
  17214.      class="m:w-full"
  17215.      width="500"
  17216.      height="319"
  17217.      
  17218.  >
  17219.  
  17220.  <noscript>
  17221.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/7-20250314.jpg?crop=center&height=2048&v=1741951283&width=2048" alt="">
  17222.  </noscript>
  17223. </responsive-image>
  17224.  
  17225.        
  17226.        </div>
  17227.      
  17228.    </a>
  17229.    
  17230.      <div class="m-collection-card__info m:justify-center" style="">
  17231.        
  17232.        
  17233.        
  17234.        
  17235.        
  17236.      </div>
  17237.    
  17238.  </div>
  17239. </div>
  17240. <style>
  17241.  .collection-card-mobile {
  17242.    display: none;
  17243.  }
  17244.  .horizontal_layout-wrapper {
  17245.    display: flex;
  17246.  }
  17247.  @media screen and (max-width: 768px){
  17248.    #collection_custom_button{
  17249.      padding:4px 12px !important;
  17250.      font-size:14px !important;
  17251.    }
  17252.    .collection-card-mobile {
  17253.      display: block;
  17254.    }
  17255.    .collection-card-desktop {
  17256.      display: none;
  17257.    }
  17258.  }
  17259. </style>
  17260.  
  17261.                      </div>
  17262.                    
  17263.                      <div class="m:column swiper-slide">
  17264.                        
  17265.                        <div
  17266.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  17267.  style="
  17268.    --img-rounded: 0px;
  17269.    --img-width: 100%;
  17270.    height:100%;
  17271.  "
  17272. >
  17273.  <div
  17274.    class="m-collection-card__wrapper m:text-center"
  17275.    
  17276.    style=""
  17277.  >
  17278.    <a
  17279.      href="/collections/plant-pots"
  17280.      class="m-collection-card__image m:block "
  17281.      aria-label="Example collection title"
  17282.      style=""
  17283.    >
  17284.      <div class="m-hover-box__wrapper collection-card-desktop">
  17285.        
  17286.          
  17287. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17288.  
  17289.  <img
  17290.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974 500w"
  17291.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974&width=360"
  17292.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17293.      alt=""
  17294.      loading="lazy"
  17295.      class="m:w-full"
  17296.      width="500"
  17297.      height="319"
  17298.      
  17299.  >
  17300.  
  17301.  <noscript>
  17302.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  17303.  </noscript>
  17304. </responsive-image>
  17305.  
  17306.        
  17307.      </div>
  17308.      
  17309.        <div class="m-hover-box__wrapper collection-card-mobile">
  17310.        
  17311.          
  17312. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17313.  
  17314.  <img
  17315.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974 500w"
  17316.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?v=1741139974&width=360"
  17317.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17318.      alt=""
  17319.      loading="lazy"
  17320.      class="m:w-full"
  17321.      width="500"
  17322.      height="319"
  17323.      
  17324.  >
  17325.  
  17326.  <noscript>
  17327.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-1_89cb4f56-59c9-4498-97a6-89ce50f6cc5d.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  17328.  </noscript>
  17329. </responsive-image>
  17330.  
  17331.        
  17332.        </div>
  17333.      
  17334.    </a>
  17335.    
  17336.      <div class="m-collection-card__info m:justify-center" style="">
  17337.        
  17338.        
  17339.        
  17340.        
  17341.        
  17342.      </div>
  17343.    
  17344.  </div>
  17345. </div>
  17346. <style>
  17347.  .collection-card-mobile {
  17348.    display: none;
  17349.  }
  17350.  .horizontal_layout-wrapper {
  17351.    display: flex;
  17352.  }
  17353.  @media screen and (max-width: 768px){
  17354.    #collection_custom_button{
  17355.      padding:4px 12px !important;
  17356.      font-size:14px !important;
  17357.    }
  17358.    .collection-card-mobile {
  17359.      display: block;
  17360.    }
  17361.    .collection-card-desktop {
  17362.      display: none;
  17363.    }
  17364.  }
  17365. </style>
  17366.  
  17367.                      </div>
  17368.                    
  17369.                      <div class="m:column swiper-slide">
  17370.                        
  17371.                        <div
  17372.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  17373.  style="
  17374.    --img-rounded: 0px;
  17375.    --img-width: 100%;
  17376.    height:100%;
  17377.  "
  17378. >
  17379.  <div
  17380.    class="m-collection-card__wrapper m:text-center"
  17381.    
  17382.    style=""
  17383.  >
  17384.    <a
  17385.      href="/collections/garden-supplies"
  17386.      class="m-collection-card__image m:block "
  17387.      aria-label="Example collection title"
  17388.      style=""
  17389.    >
  17390.      <div class="m-hover-box__wrapper collection-card-desktop">
  17391.        
  17392.          
  17393. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17394.  
  17395.  <img
  17396.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974 500w"
  17397.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974&width=360"
  17398.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17399.      alt=""
  17400.      loading="lazy"
  17401.      class="m:w-full"
  17402.      width="500"
  17403.      height="319"
  17404.      
  17405.  >
  17406.  
  17407.  <noscript>
  17408.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  17409.  </noscript>
  17410. </responsive-image>
  17411.  
  17412.        
  17413.      </div>
  17414.      
  17415.        <div class="m-hover-box__wrapper collection-card-mobile">
  17416.        
  17417.          
  17418. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17419.  
  17420.  <img
  17421.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974 500w"
  17422.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?v=1741139974&width=360"
  17423.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17424.      alt=""
  17425.      loading="lazy"
  17426.      class="m:w-full"
  17427.      width="500"
  17428.      height="319"
  17429.      
  17430.  >
  17431.  
  17432.  <noscript>
  17433.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-2_477b3c1b-ed40-40c4-a911-3b35644066f9.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  17434.  </noscript>
  17435. </responsive-image>
  17436.  
  17437.        
  17438.        </div>
  17439.      
  17440.    </a>
  17441.    
  17442.      <div class="m-collection-card__info m:justify-center" style="">
  17443.        
  17444.        
  17445.        
  17446.        
  17447.        
  17448.      </div>
  17449.    
  17450.  </div>
  17451. </div>
  17452. <style>
  17453.  .collection-card-mobile {
  17454.    display: none;
  17455.  }
  17456.  .horizontal_layout-wrapper {
  17457.    display: flex;
  17458.  }
  17459.  @media screen and (max-width: 768px){
  17460.    #collection_custom_button{
  17461.      padding:4px 12px !important;
  17462.      font-size:14px !important;
  17463.    }
  17464.    .collection-card-mobile {
  17465.      display: block;
  17466.    }
  17467.    .collection-card-desktop {
  17468.      display: none;
  17469.    }
  17470.  }
  17471. </style>
  17472.  
  17473.                      </div>
  17474.                    
  17475.                      <div class="m:column swiper-slide">
  17476.                        
  17477.                        <div
  17478.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  17479.  style="
  17480.    --img-rounded: 0px;
  17481.    --img-width: 100%;
  17482.    height:100%;
  17483.  "
  17484. >
  17485.  <div
  17486.    class="m-collection-card__wrapper m:text-center"
  17487.    
  17488.    style=""
  17489.  >
  17490.    <a
  17491.      href="/collections/outdoor-decoration"
  17492.      class="m-collection-card__image m:block "
  17493.      aria-label="Example collection title"
  17494.      style=""
  17495.    >
  17496.      <div class="m-hover-box__wrapper collection-card-desktop">
  17497.        
  17498.          
  17499. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17500.  
  17501.  <img
  17502.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974 500w"
  17503.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974&width=360"
  17504.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17505.      alt=""
  17506.      loading="lazy"
  17507.      class="m:w-full"
  17508.      width="500"
  17509.      height="319"
  17510.      
  17511.  >
  17512.  
  17513.  <noscript>
  17514.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  17515.  </noscript>
  17516. </responsive-image>
  17517.  
  17518.        
  17519.      </div>
  17520.      
  17521.        <div class="m-hover-box__wrapper collection-card-mobile">
  17522.        
  17523.          
  17524. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17525.  
  17526.  <img
  17527.      srcset="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974&width=165 165w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974&width=360 360w,//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974 500w"
  17528.      src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?v=1741139974&width=360"
  17529.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17530.      alt=""
  17531.      loading="lazy"
  17532.      class="m:w-full"
  17533.      width="500"
  17534.      height="319"
  17535.      
  17536.  >
  17537.  
  17538.  <noscript>
  17539.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Shop-Outdoor-Deals-500x319-5_a82ff2a9-99ac-4ca0-b56a-95b50f1e14f3.jpg?crop=center&height=2048&v=1741139974&width=2048" alt="">
  17540.  </noscript>
  17541. </responsive-image>
  17542.  
  17543.        
  17544.        </div>
  17545.      
  17546.    </a>
  17547.    
  17548.      <div class="m-collection-card__info m:justify-center" style="">
  17549.        
  17550.        
  17551.        
  17552.        
  17553.        
  17554.      </div>
  17555.    
  17556.  </div>
  17557. </div>
  17558. <style>
  17559.  .collection-card-mobile {
  17560.    display: none;
  17561.  }
  17562.  .horizontal_layout-wrapper {
  17563.    display: flex;
  17564.  }
  17565.  @media screen and (max-width: 768px){
  17566.    #collection_custom_button{
  17567.      padding:4px 12px !important;
  17568.      font-size:14px !important;
  17569.    }
  17570.    .collection-card-mobile {
  17571.      display: block;
  17572.    }
  17573.    .collection-card-desktop {
  17574.      display: none;
  17575.    }
  17576.  }
  17577. </style>
  17578.  
  17579.                      </div>
  17580.                    
  17581.                      <div class="m:column swiper-slide">
  17582.                        
  17583.                        <div
  17584.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  17585.  style="
  17586.    --img-rounded: 0px;
  17587.    --img-width: 100%;
  17588.    height:100%;
  17589.  "
  17590. >
  17591.  <div
  17592.    class="m-collection-card__wrapper m:text-center"
  17593.    
  17594.    style=""
  17595.  >
  17596.    <a
  17597.      href="/collections/fire-pits"
  17598.      class="m-collection-card__image m:block "
  17599.      aria-label="Example collection title"
  17600.      style=""
  17601.    >
  17602.      <div class="m-hover-box__wrapper collection-card-desktop">
  17603.        
  17604.          
  17605. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17606.  
  17607.  <img
  17608.      srcset="//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270&width=165 165w,//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270&width=360 360w,//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270 500w"
  17609.      src="//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270&width=360"
  17610.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17611.      alt=""
  17612.      loading="lazy"
  17613.      class="m:w-full"
  17614.      width="500"
  17615.      height="319"
  17616.      
  17617.  >
  17618.  
  17619.  <noscript>
  17620.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/6-20250314.jpg?crop=center&height=2048&v=1741951270&width=2048" alt="">
  17621.  </noscript>
  17622. </responsive-image>
  17623.  
  17624.        
  17625.      </div>
  17626.      
  17627.        <div class="m-hover-box__wrapper collection-card-mobile">
  17628.        
  17629.          
  17630. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17631.  
  17632.  <img
  17633.      srcset="//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270&width=165 165w,//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270&width=360 360w,//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270 500w"
  17634.      src="//www.garvee.com/cdn/shop/files/6-20250314.jpg?v=1741951270&width=360"
  17635.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17636.      alt=""
  17637.      loading="lazy"
  17638.      class="m:w-full"
  17639.      width="500"
  17640.      height="319"
  17641.      
  17642.  >
  17643.  
  17644.  <noscript>
  17645.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/6-20250314.jpg?crop=center&height=2048&v=1741951270&width=2048" alt="">
  17646.  </noscript>
  17647. </responsive-image>
  17648.  
  17649.        
  17650.        </div>
  17651.      
  17652.    </a>
  17653.    
  17654.      <div class="m-collection-card__info m:justify-center" style="">
  17655.        
  17656.        
  17657.        
  17658.        
  17659.        
  17660.      </div>
  17661.    
  17662.  </div>
  17663. </div>
  17664. <style>
  17665.  .collection-card-mobile {
  17666.    display: none;
  17667.  }
  17668.  .horizontal_layout-wrapper {
  17669.    display: flex;
  17670.  }
  17671.  @media screen and (max-width: 768px){
  17672.    #collection_custom_button{
  17673.      padding:4px 12px !important;
  17674.      font-size:14px !important;
  17675.    }
  17676.    .collection-card-mobile {
  17677.      display: block;
  17678.    }
  17679.    .collection-card-desktop {
  17680.      display: none;
  17681.    }
  17682.  }
  17683. </style>
  17684.  
  17685.                      </div>
  17686.                    
  17687.                  
  17688.                </div>
  17689.              </div>
  17690.              
  17691.                
  17692.  
  17693.  
  17694. <div class="m-slider-controls m:text-center m-slider-controls--show-nav m-slider-controls--nav-inside">
  17695.  <div class="m-slider-controls__wrapper">
  17696.    
  17697.      
  17698.        <button
  17699.          class="m-slider-controls__button m:inline-flex m-slider-controls__button-prev swiper-button-prev "
  17700.          aria-label="Previous"
  17701.        >
  17702.          <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
  17703.            <path d="M20 6L10 16L20 26" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  17704.          </svg>
  17705.        </button>
  17706.      
  17707.      
  17708.      
  17709.        <button
  17710.          class="m-slider-controls__button m:inline-flex m-slider-controls__button-next swiper-button-next "
  17711.          aria-label="Next"
  17712.        >
  17713.          <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
  17714.            <path d="M12 6L22 16L12 26" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  17715.          </svg>
  17716.        </button>
  17717.      
  17718.    
  17719.  </div>
  17720. </div>
  17721. <style>
  17722.  .dots-container{
  17723.    display:flex;
  17724.  }
  17725.  .dot {
  17726.        width: 10px;
  17727.        height: 10px;
  17728.        background-color: gray;
  17729.        border-radius: 50%;
  17730.        margin: 0 5px;
  17731.        cursor: pointer;
  17732.        pointer-events: all;
  17733.    }
  17734.  .dot.active {
  17735.        background-color: #074174;
  17736.    }
  17737. </style>
  17738. <script>
  17739.  const dotEles=document.body.querySelectorAll(".dot")
  17740.  dotEles.forEach((dot,i)=>{
  17741.    dot.addEventListener('click', () => {
  17742.            console.log("轮播图小点")
  17743.            showSlide(i)
  17744.      });
  17745.  })
  17746.  const slider=document.body.querySelector('.m-slide__wrapper .swiper-wrapper')
  17747.  function showSlide(slideIndex) {
  17748.        currentSlide = slideIndex;
  17749.        slider.style.transform = `translateX(-${(currentSlide+1) * 100}%)`;
  17750.        dotEles.forEach((dot, index) => {
  17751.            if (index === currentSlide) {
  17752.                dot.classList.add('active');
  17753.            } else {
  17754.                dot.classList.remove('active');
  17755.            }
  17756.        });
  17757.    }
  17758. </script>
  17759.  
  17760.              
  17761.            </div>
  17762.          </m-collection-list>
  17763.        </div>
  17764.      </div>
  17765.    </div>
  17766.  </div>
  17767. </section>
  17768.  
  17769. <style>
  17770.  m-collection-list .m-collection-card__info {
  17771.    overflow: hidden;
  17772.  }
  17773.  m-collection-list .m-collection-card__title {
  17774.    max-width: 100%;
  17775.    overflow-wrap: break-word;
  17776.  }
  17777.  .m-collection-card__link {
  17778.    font-weight: normal;
  17779.  }
  17780.  .mobile_slider {
  17781.    display: none;
  17782.  }
  17783.  @media screen and (max-width: 768px) {
  17784.    .mobile_slider {
  17785.      display: block;
  17786.    }
  17787.    .desktop_slider {
  17788.      display: none;
  17789.    }
  17790.    .m-collection-card__link {
  17791.      font-size: 12px;
  17792.    }
  17793.  }
  17794.  /* .m:column.swiper-slide.swiper-slide-duplicate{
  17795.      width:33% !important;
  17796.    } */
  17797.  
  17798.  @media (max-width: 640px) {
  17799.    .m-button {
  17800.      font-size: 12px;
  17801.    }
  17802.  }
  17803. </style>
  17804.  
  17805.  
  17806. </div><div id="shopify-section-template--24257712095545__collection_list_gaffjP" class="shopify-section"><link href="//www.garvee.com/cdn/shop/t/132/assets/component-collection-card.css?v=167412810450751081801740986011" rel="stylesheet" type="text/css" media="all" />
  17807. <link href="//www.garvee.com/cdn/shop/t/132/assets/section-collection-list.css?v=111592447707792523701740986010" rel="stylesheet" type="text/css" media="all" />
  17808.  
  17809.  
  17810.  
  17811. <section
  17812.  id="m-collection-list-template--24257712095545__collection_list_gaffjP"
  17813.  data-section-type="collection-list"
  17814.  data-section-id="template--24257712095545__collection_list_gaffjP"
  17815.  class="m-section m-section--padding m-collection-list m-gradient m-color-background-1"
  17816.  style="
  17817.    --section-padding-top: 0px;
  17818.    --section-padding-bottom: 30px;
  17819.    --column-gap: 5px;
  17820.    --column-gap-mobile: 7px;
  17821.    --row-gap: 5px;
  17822.    --row-gap-mobile: 0px;
  17823.    --items: 5
  17824.  "
  17825. >
  17826.  <div
  17827.    class="m-page-width "
  17828.    
  17829.  >
  17830.    <div class="m-section__wrapper">
  17831.      
  17832.        <div class="m-section__header m:display-flex m:justify-between sm:m:flex-row m:items-start sm:m:items-center">
  17833.          
  17834.            <h2 class="m-section__heading h4">
  17835.              
  17836.                Shop Cooling Deals
  17837.              
  17838.            </h2>
  17839.          
  17840.          
  17841.          
  17842.          
  17843.          
  17844.        </div>
  17845.      
  17846.      <div class="m-section__content">
  17847.        
  17848.  
  17849.        <div class="mobile_slider">
  17850.          <m-collection-list
  17851.            data-enable-slider="true"
  17852.            
  17853.              data-items="5"
  17854.              data-laptop-items="4"
  17855.              data-tablet-items="3"
  17856.              data-mobile-items="2"
  17857.              data-show-pagination="false"
  17858.              data-show-navigation="true"
  17859.              data-pagination-type="fraction"
  17860.              data-mobile-layout="col-2"
  17861.            
  17862.            class="m-collection-list__inner m:block"
  17863.          >
  17864.            <div
  17865.              class="m-mixed-layout m-mixed-layout--mobile-grid"
  17866.              
  17867.                style="
  17868.                  --grid-columns-mobile: 2;
  17869.                  --mobile-column-width: 40vw;
  17870.                "
  17871.              
  17872.            >
  17873.              <div class="m-mixed-layout__wrapper swiper swiper--equal-height">
  17874.                <div class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-4-cols xl:m:grid-5-cols swiper-wrapper">
  17875.                  
  17876.                    
  17877.                    
  17878.                    
  17879.                      <div class="m:column swiper-slide">
  17880.                        
  17881.                        <div
  17882.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  17883.  style="
  17884.    --img-rounded: 0px;
  17885.    --img-width: 100%;
  17886.    height:100%;
  17887.  "
  17888. >
  17889.  <div
  17890.    class="m-collection-card__wrapper m:text-center"
  17891.    
  17892.    style=""
  17893.  >
  17894.    <a
  17895.      href="/collections/granita-slushy-machines-2"
  17896.      class="m-collection-card__image m:block "
  17897.      aria-label="Example collection title"
  17898.      style=""
  17899.    >
  17900.      <div class="m-hover-box__wrapper collection-card-desktop">
  17901.        
  17902.          
  17903. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17904.  
  17905.  <img
  17906.      srcset="//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890 500w"
  17907.      src="//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890&width=360"
  17908.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17909.      alt=""
  17910.      loading="lazy"
  17911.      class="m:w-full"
  17912.      width="500"
  17913.      height="319"
  17914.      
  17915.  >
  17916.  
  17917.  <noscript>
  17918.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  17919.  </noscript>
  17920. </responsive-image>
  17921.  
  17922.        
  17923.      </div>
  17924.      
  17925.        <div class="m-hover-box__wrapper collection-card-mobile">
  17926.        
  17927.          
  17928. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  17929.  
  17930.  <img
  17931.      srcset="//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890 500w"
  17932.      src="//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890&width=360"
  17933.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  17934.      alt=""
  17935.      loading="lazy"
  17936.      class="m:w-full"
  17937.      width="500"
  17938.      height="319"
  17939.      
  17940.  >
  17941.  
  17942.  <noscript>
  17943.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  17944.  </noscript>
  17945. </responsive-image>
  17946.  
  17947.        
  17948.        </div>
  17949.      
  17950.    </a>
  17951.    
  17952.      <div class="m-collection-card__info m:justify-center" style="">
  17953.        
  17954.        
  17955.        
  17956.        
  17957.        
  17958.      </div>
  17959.    
  17960.  </div>
  17961. </div>
  17962. <style>
  17963.  .collection-card-mobile {
  17964.    display: none;
  17965.  }
  17966.  .horizontal_layout-wrapper {
  17967.    display: flex;
  17968.  }
  17969.  @media screen and (max-width: 768px){
  17970.    #collection_custom_button{
  17971.      padding:4px 12px !important;
  17972.      font-size:14px !important;
  17973.    }
  17974.    .collection-card-mobile {
  17975.      display: block;
  17976.    }
  17977.    .collection-card-desktop {
  17978.      display: none;
  17979.    }
  17980.  }
  17981. </style>
  17982.  
  17983.                      </div>
  17984.                    
  17985.                      <div class="m:column swiper-slide">
  17986.                        
  17987.                        <div
  17988.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  17989.  style="
  17990.    --img-rounded: 0px;
  17991.    --img-width: 100%;
  17992.    height:100%;
  17993.  "
  17994. >
  17995.  <div
  17996.    class="m-collection-card__wrapper m:text-center"
  17997.    
  17998.    style=""
  17999.  >
  18000.    <a
  18001.      href="/collections/refrigerated-beverage-dispensers"
  18002.      class="m-collection-card__image m:block "
  18003.      aria-label="Example collection title"
  18004.      style=""
  18005.    >
  18006.      <div class="m-hover-box__wrapper collection-card-desktop">
  18007.        
  18008.          
  18009. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18010.  
  18011.  <img
  18012.      srcset="//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890 500w"
  18013.      src="//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890&width=360"
  18014.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18015.      alt=""
  18016.      loading="lazy"
  18017.      class="m:w-full"
  18018.      width="500"
  18019.      height="319"
  18020.      
  18021.  >
  18022.  
  18023.  <noscript>
  18024.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18025.  </noscript>
  18026. </responsive-image>
  18027.  
  18028.        
  18029.      </div>
  18030.      
  18031.        <div class="m-hover-box__wrapper collection-card-mobile">
  18032.        
  18033.          
  18034. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18035.  
  18036.  <img
  18037.      srcset="//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890 500w"
  18038.      src="//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890&width=360"
  18039.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18040.      alt=""
  18041.      loading="lazy"
  18042.      class="m:w-full"
  18043.      width="500"
  18044.      height="319"
  18045.      
  18046.  >
  18047.  
  18048.  <noscript>
  18049.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18050.  </noscript>
  18051. </responsive-image>
  18052.  
  18053.        
  18054.        </div>
  18055.      
  18056.    </a>
  18057.    
  18058.      <div class="m-collection-card__info m:justify-center" style="">
  18059.        
  18060.        
  18061.        
  18062.        
  18063.        
  18064.      </div>
  18065.    
  18066.  </div>
  18067. </div>
  18068. <style>
  18069.  .collection-card-mobile {
  18070.    display: none;
  18071.  }
  18072.  .horizontal_layout-wrapper {
  18073.    display: flex;
  18074.  }
  18075.  @media screen and (max-width: 768px){
  18076.    #collection_custom_button{
  18077.      padding:4px 12px !important;
  18078.      font-size:14px !important;
  18079.    }
  18080.    .collection-card-mobile {
  18081.      display: block;
  18082.    }
  18083.    .collection-card-desktop {
  18084.      display: none;
  18085.    }
  18086.  }
  18087. </style>
  18088.  
  18089.                      </div>
  18090.                    
  18091.                      <div class="m:column swiper-slide">
  18092.                        
  18093.                        <div
  18094.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  18095.  style="
  18096.    --img-rounded: 0px;
  18097.    --img-width: 100%;
  18098.    height:100%;
  18099.  "
  18100. >
  18101.  <div
  18102.    class="m-collection-card__wrapper m:text-center"
  18103.    
  18104.    style=""
  18105.  >
  18106.    <a
  18107.      href="/collections/air-conditioners-accessories"
  18108.      class="m-collection-card__image m:block "
  18109.      aria-label="Example collection title"
  18110.      style=""
  18111.    >
  18112.      <div class="m-hover-box__wrapper collection-card-desktop">
  18113.        
  18114.          
  18115. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18116.  
  18117.  <img
  18118.      srcset="//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890 500w"
  18119.      src="//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890&width=360"
  18120.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18121.      alt=""
  18122.      loading="lazy"
  18123.      class="m:w-full"
  18124.      width="500"
  18125.      height="319"
  18126.      
  18127.  >
  18128.  
  18129.  <noscript>
  18130.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18131.  </noscript>
  18132. </responsive-image>
  18133.  
  18134.        
  18135.      </div>
  18136.      
  18137.        <div class="m-hover-box__wrapper collection-card-mobile">
  18138.        
  18139.          
  18140. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18141.  
  18142.  <img
  18143.      srcset="//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890 500w"
  18144.      src="//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890&width=360"
  18145.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18146.      alt=""
  18147.      loading="lazy"
  18148.      class="m:w-full"
  18149.      width="500"
  18150.      height="319"
  18151.      
  18152.  >
  18153.  
  18154.  <noscript>
  18155.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18156.  </noscript>
  18157. </responsive-image>
  18158.  
  18159.        
  18160.        </div>
  18161.      
  18162.    </a>
  18163.    
  18164.      <div class="m-collection-card__info m:justify-center" style="">
  18165.        
  18166.        
  18167.        
  18168.        
  18169.        
  18170.      </div>
  18171.    
  18172.  </div>
  18173. </div>
  18174. <style>
  18175.  .collection-card-mobile {
  18176.    display: none;
  18177.  }
  18178.  .horizontal_layout-wrapper {
  18179.    display: flex;
  18180.  }
  18181.  @media screen and (max-width: 768px){
  18182.    #collection_custom_button{
  18183.      padding:4px 12px !important;
  18184.      font-size:14px !important;
  18185.    }
  18186.    .collection-card-mobile {
  18187.      display: block;
  18188.    }
  18189.    .collection-card-desktop {
  18190.      display: none;
  18191.    }
  18192.  }
  18193. </style>
  18194.  
  18195.                      </div>
  18196.                    
  18197.                      <div class="m:column swiper-slide">
  18198.                        
  18199.                        <div
  18200.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  18201.  style="
  18202.    --img-rounded: 0px;
  18203.    --img-width: 100%;
  18204.    height:100%;
  18205.  "
  18206. >
  18207.  <div
  18208.    class="m-collection-card__wrapper m:text-center"
  18209.    
  18210.    style=""
  18211.  >
  18212.    <a
  18213.      href="/collections/soft-serve-ice-cream-machines"
  18214.      class="m-collection-card__image m:block "
  18215.      aria-label="Example collection title"
  18216.      style=""
  18217.    >
  18218.      <div class="m-hover-box__wrapper collection-card-desktop">
  18219.        
  18220.          
  18221. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18222.  
  18223.  <img
  18224.      srcset="//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890 500w"
  18225.      src="//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890&width=360"
  18226.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18227.      alt=""
  18228.      loading="lazy"
  18229.      class="m:w-full"
  18230.      width="500"
  18231.      height="319"
  18232.      
  18233.  >
  18234.  
  18235.  <noscript>
  18236.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18237.  </noscript>
  18238. </responsive-image>
  18239.  
  18240.        
  18241.      </div>
  18242.      
  18243.        <div class="m-hover-box__wrapper collection-card-mobile">
  18244.        
  18245.          
  18246. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18247.  
  18248.  <img
  18249.      srcset="//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890 500w"
  18250.      src="//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890&width=360"
  18251.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18252.      alt=""
  18253.      loading="lazy"
  18254.      class="m:w-full"
  18255.      width="500"
  18256.      height="319"
  18257.      
  18258.  >
  18259.  
  18260.  <noscript>
  18261.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18262.  </noscript>
  18263. </responsive-image>
  18264.  
  18265.        
  18266.        </div>
  18267.      
  18268.    </a>
  18269.    
  18270.      <div class="m-collection-card__info m:justify-center" style="">
  18271.        
  18272.        
  18273.        
  18274.        
  18275.        
  18276.      </div>
  18277.    
  18278.  </div>
  18279. </div>
  18280. <style>
  18281.  .collection-card-mobile {
  18282.    display: none;
  18283.  }
  18284.  .horizontal_layout-wrapper {
  18285.    display: flex;
  18286.  }
  18287.  @media screen and (max-width: 768px){
  18288.    #collection_custom_button{
  18289.      padding:4px 12px !important;
  18290.      font-size:14px !important;
  18291.    }
  18292.    .collection-card-mobile {
  18293.      display: block;
  18294.    }
  18295.    .collection-card-desktop {
  18296.      display: none;
  18297.    }
  18298.  }
  18299. </style>
  18300.  
  18301.                      </div>
  18302.                    
  18303.                      <div class="m:column swiper-slide">
  18304.                        
  18305.                        <div
  18306.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  18307.  style="
  18308.    --img-rounded: 0px;
  18309.    --img-width: 100%;
  18310.    height:100%;
  18311.  "
  18312. >
  18313.  <div
  18314.    class="m-collection-card__wrapper m:text-center"
  18315.    
  18316.    style=""
  18317.  >
  18318.    <a
  18319.      href="/collections/ice-machines"
  18320.      class="m-collection-card__image m:block "
  18321.      aria-label="Example collection title"
  18322.      style=""
  18323.    >
  18324.      <div class="m-hover-box__wrapper collection-card-desktop">
  18325.        
  18326.          
  18327. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18328.  
  18329.  <img
  18330.      srcset="//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890 500w"
  18331.      src="//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890&width=360"
  18332.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18333.      alt=""
  18334.      loading="lazy"
  18335.      class="m:w-full"
  18336.      width="500"
  18337.      height="319"
  18338.      
  18339.  >
  18340.  
  18341.  <noscript>
  18342.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18343.  </noscript>
  18344. </responsive-image>
  18345.  
  18346.        
  18347.      </div>
  18348.      
  18349.        <div class="m-hover-box__wrapper collection-card-mobile">
  18350.        
  18351.          
  18352. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18353.  
  18354.  <img
  18355.      srcset="//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890 500w"
  18356.      src="//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890&width=360"
  18357.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18358.      alt=""
  18359.      loading="lazy"
  18360.      class="m:w-full"
  18361.      width="500"
  18362.      height="319"
  18363.      
  18364.  >
  18365.  
  18366.  <noscript>
  18367.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18368.  </noscript>
  18369. </responsive-image>
  18370.  
  18371.        
  18372.        </div>
  18373.      
  18374.    </a>
  18375.    
  18376.      <div class="m-collection-card__info m:justify-center" style="">
  18377.        
  18378.        
  18379.        
  18380.        
  18381.        
  18382.      </div>
  18383.    
  18384.  </div>
  18385. </div>
  18386. <style>
  18387.  .collection-card-mobile {
  18388.    display: none;
  18389.  }
  18390.  .horizontal_layout-wrapper {
  18391.    display: flex;
  18392.  }
  18393.  @media screen and (max-width: 768px){
  18394.    #collection_custom_button{
  18395.      padding:4px 12px !important;
  18396.      font-size:14px !important;
  18397.    }
  18398.    .collection-card-mobile {
  18399.      display: block;
  18400.    }
  18401.    .collection-card-desktop {
  18402.      display: none;
  18403.    }
  18404.  }
  18405. </style>
  18406.  
  18407.                      </div>
  18408.                    
  18409.                      <div class="m:column swiper-slide">
  18410.                        
  18411.                        <div
  18412.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  18413.  style="
  18414.    --img-rounded: 0px;
  18415.    --img-width: 100%;
  18416.    height:100%;
  18417.  "
  18418. >
  18419.  <div
  18420.    class="m-collection-card__wrapper m:text-center"
  18421.    
  18422.    style=""
  18423.  >
  18424.    <a
  18425.      href="/collections/beverage-refrigerator"
  18426.      class="m-collection-card__image m:block "
  18427.      aria-label="Example collection title"
  18428.      style=""
  18429.    >
  18430.      <div class="m-hover-box__wrapper collection-card-desktop">
  18431.        
  18432.          
  18433. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18434.  
  18435.  <img
  18436.      srcset="//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890 500w"
  18437.      src="//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890&width=360"
  18438.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18439.      alt=""
  18440.      loading="lazy"
  18441.      class="m:w-full"
  18442.      width="500"
  18443.      height="319"
  18444.      
  18445.  >
  18446.  
  18447.  <noscript>
  18448.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18449.  </noscript>
  18450. </responsive-image>
  18451.  
  18452.        
  18453.      </div>
  18454.      
  18455.        <div class="m-hover-box__wrapper collection-card-mobile">
  18456.        
  18457.          
  18458. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18459.  
  18460.  <img
  18461.      srcset="//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890 500w"
  18462.      src="//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890&width=360"
  18463.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18464.      alt=""
  18465.      loading="lazy"
  18466.      class="m:w-full"
  18467.      width="500"
  18468.      height="319"
  18469.      
  18470.  >
  18471.  
  18472.  <noscript>
  18473.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18474.  </noscript>
  18475. </responsive-image>
  18476.  
  18477.        
  18478.        </div>
  18479.      
  18480.    </a>
  18481.    
  18482.      <div class="m-collection-card__info m:justify-center" style="">
  18483.        
  18484.        
  18485.        
  18486.        
  18487.        
  18488.      </div>
  18489.    
  18490.  </div>
  18491. </div>
  18492. <style>
  18493.  .collection-card-mobile {
  18494.    display: none;
  18495.  }
  18496.  .horizontal_layout-wrapper {
  18497.    display: flex;
  18498.  }
  18499.  @media screen and (max-width: 768px){
  18500.    #collection_custom_button{
  18501.      padding:4px 12px !important;
  18502.      font-size:14px !important;
  18503.    }
  18504.    .collection-card-mobile {
  18505.      display: block;
  18506.    }
  18507.    .collection-card-desktop {
  18508.      display: none;
  18509.    }
  18510.  }
  18511. </style>
  18512.  
  18513.                      </div>
  18514.                    
  18515.                      <div class="m:column swiper-slide">
  18516.                        
  18517.                        <div
  18518.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  18519.  style="
  18520.    --img-rounded: 0px;
  18521.    --img-width: 100%;
  18522.    height:100%;
  18523.  "
  18524. >
  18525.  <div
  18526.    class="m-collection-card__wrapper m:text-center"
  18527.    
  18528.    style=""
  18529.  >
  18530.    <a
  18531.      href="/collections/merchandising-refrigerators"
  18532.      class="m-collection-card__image m:block "
  18533.      aria-label="Example collection title"
  18534.      style=""
  18535.    >
  18536.      <div class="m-hover-box__wrapper collection-card-desktop">
  18537.        
  18538.          
  18539. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18540.  
  18541.  <img
  18542.      srcset="//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890 500w"
  18543.      src="//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890&width=360"
  18544.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18545.      alt=""
  18546.      loading="lazy"
  18547.      class="m:w-full"
  18548.      width="500"
  18549.      height="319"
  18550.      
  18551.  >
  18552.  
  18553.  <noscript>
  18554.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18555.  </noscript>
  18556. </responsive-image>
  18557.  
  18558.        
  18559.      </div>
  18560.      
  18561.        <div class="m-hover-box__wrapper collection-card-mobile">
  18562.        
  18563.          
  18564. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18565.  
  18566.  <img
  18567.      srcset="//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890 500w"
  18568.      src="//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890&width=360"
  18569.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18570.      alt=""
  18571.      loading="lazy"
  18572.      class="m:w-full"
  18573.      width="500"
  18574.      height="319"
  18575.      
  18576.  >
  18577.  
  18578.  <noscript>
  18579.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18580.  </noscript>
  18581. </responsive-image>
  18582.  
  18583.        
  18584.        </div>
  18585.      
  18586.    </a>
  18587.    
  18588.      <div class="m-collection-card__info m:justify-center" style="">
  18589.        
  18590.        
  18591.        
  18592.        
  18593.        
  18594.      </div>
  18595.    
  18596.  </div>
  18597. </div>
  18598. <style>
  18599.  .collection-card-mobile {
  18600.    display: none;
  18601.  }
  18602.  .horizontal_layout-wrapper {
  18603.    display: flex;
  18604.  }
  18605.  @media screen and (max-width: 768px){
  18606.    #collection_custom_button{
  18607.      padding:4px 12px !important;
  18608.      font-size:14px !important;
  18609.    }
  18610.    .collection-card-mobile {
  18611.      display: block;
  18612.    }
  18613.    .collection-card-desktop {
  18614.      display: none;
  18615.    }
  18616.  }
  18617. </style>
  18618.  
  18619.                      </div>
  18620.                    
  18621.                      <div class="m:column swiper-slide">
  18622.                        
  18623.                        <div
  18624.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  18625.  style="
  18626.    --img-rounded: 0px;
  18627.    --img-width: 100%;
  18628.    height:100%;
  18629.  "
  18630. >
  18631.  <div
  18632.    class="m-collection-card__wrapper m:text-center"
  18633.    
  18634.    style=""
  18635.  >
  18636.    <a
  18637.      href="/collections/car-refrigerator"
  18638.      class="m-collection-card__image m:block "
  18639.      aria-label="Example collection title"
  18640.      style=""
  18641.    >
  18642.      <div class="m-hover-box__wrapper collection-card-desktop">
  18643.        
  18644.          
  18645. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18646.  
  18647.  <img
  18648.      srcset="//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890 500w"
  18649.      src="//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890&width=360"
  18650.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18651.      alt=""
  18652.      loading="lazy"
  18653.      class="m:w-full"
  18654.      width="500"
  18655.      height="319"
  18656.      
  18657.  >
  18658.  
  18659.  <noscript>
  18660.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18661.  </noscript>
  18662. </responsive-image>
  18663.  
  18664.        
  18665.      </div>
  18666.      
  18667.        <div class="m-hover-box__wrapper collection-card-mobile">
  18668.        
  18669.          
  18670. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18671.  
  18672.  <img
  18673.      srcset="//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890 500w"
  18674.      src="//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890&width=360"
  18675.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18676.      alt=""
  18677.      loading="lazy"
  18678.      class="m:w-full"
  18679.      width="500"
  18680.      height="319"
  18681.      
  18682.  >
  18683.  
  18684.  <noscript>
  18685.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18686.  </noscript>
  18687. </responsive-image>
  18688.  
  18689.        
  18690.        </div>
  18691.      
  18692.    </a>
  18693.    
  18694.      <div class="m-collection-card__info m:justify-center" style="">
  18695.        
  18696.        
  18697.        
  18698.        
  18699.        
  18700.      </div>
  18701.    
  18702.  </div>
  18703. </div>
  18704. <style>
  18705.  .collection-card-mobile {
  18706.    display: none;
  18707.  }
  18708.  .horizontal_layout-wrapper {
  18709.    display: flex;
  18710.  }
  18711.  @media screen and (max-width: 768px){
  18712.    #collection_custom_button{
  18713.      padding:4px 12px !important;
  18714.      font-size:14px !important;
  18715.    }
  18716.    .collection-card-mobile {
  18717.      display: block;
  18718.    }
  18719.    .collection-card-desktop {
  18720.      display: none;
  18721.    }
  18722.  }
  18723. </style>
  18724.  
  18725.                      </div>
  18726.                    
  18727.                  
  18728.                </div>
  18729.              </div>
  18730.              
  18731.                
  18732.  
  18733.  
  18734. <div class="m-slider-controls m:text-center m-slider-controls--show-nav m-slider-controls--nav-inside">
  18735.  <div class="m-slider-controls__wrapper">
  18736.    
  18737.      
  18738.        <button
  18739.          class="m-slider-controls__button m:inline-flex m-slider-controls__button-prev swiper-button-prev "
  18740.          aria-label="Previous"
  18741.        >
  18742.          <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
  18743.            <path d="M20 6L10 16L20 26" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  18744.          </svg>
  18745.        </button>
  18746.      
  18747.      
  18748.      
  18749.        <button
  18750.          class="m-slider-controls__button m:inline-flex m-slider-controls__button-next swiper-button-next "
  18751.          aria-label="Next"
  18752.        >
  18753.          <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
  18754.            <path d="M12 6L22 16L12 26" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  18755.          </svg>
  18756.        </button>
  18757.      
  18758.    
  18759.  </div>
  18760. </div>
  18761. <style>
  18762.  .dots-container{
  18763.    display:flex;
  18764.  }
  18765.  .dot {
  18766.        width: 10px;
  18767.        height: 10px;
  18768.        background-color: gray;
  18769.        border-radius: 50%;
  18770.        margin: 0 5px;
  18771.        cursor: pointer;
  18772.        pointer-events: all;
  18773.    }
  18774.  .dot.active {
  18775.        background-color: #074174;
  18776.    }
  18777. </style>
  18778. <script>
  18779.  const dotEles=document.body.querySelectorAll(".dot")
  18780.  dotEles.forEach((dot,i)=>{
  18781.    dot.addEventListener('click', () => {
  18782.            console.log("轮播图小点")
  18783.            showSlide(i)
  18784.      });
  18785.  })
  18786.  const slider=document.body.querySelector('.m-slide__wrapper .swiper-wrapper')
  18787.  function showSlide(slideIndex) {
  18788.        currentSlide = slideIndex;
  18789.        slider.style.transform = `translateX(-${(currentSlide+1) * 100}%)`;
  18790.        dotEles.forEach((dot, index) => {
  18791.            if (index === currentSlide) {
  18792.                dot.classList.add('active');
  18793.            } else {
  18794.                dot.classList.remove('active');
  18795.            }
  18796.        });
  18797.    }
  18798. </script>
  18799.  
  18800.              
  18801.            </div>
  18802.          </m-collection-list>
  18803.        </div>
  18804.        <div class="desktop_slider">
  18805.          <m-collection-list
  18806.            data-enable-slider="true"
  18807.            
  18808.              data-items="5"
  18809.              data-laptop-items="4"
  18810.              data-tablet-items="3"
  18811.              data-mobile-items="2"
  18812.              data-show-pagination="false"
  18813.              data-show-navigation="true"
  18814.              data-pagination-type="fraction"
  18815.              data-mobile-layout="col-2"
  18816.            
  18817.            class="m-collection-list__inner m:block"
  18818.          >
  18819.            <div
  18820.              class="m-mixed-layout m-mixed-layout--mobile-grid"
  18821.              
  18822.                style="
  18823.                  --grid-columns-mobile: 2;
  18824.                  --mobile-column-width: 40vw;
  18825.                "
  18826.              
  18827.            >
  18828.              <div class="m-mixed-layout__wrapper swiper swiper--equal-height">
  18829.                <div class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-4-cols xl:m:grid-5-cols swiper-wrapper">
  18830.                  
  18831.                    
  18832.                      <div class="m:column swiper-slide">
  18833.                        
  18834.                        <div
  18835.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  18836.  style="
  18837.    --img-rounded: 0px;
  18838.    --img-width: 100%;
  18839.    height:100%;
  18840.  "
  18841. >
  18842.  <div
  18843.    class="m-collection-card__wrapper m:text-center"
  18844.    
  18845.    style=""
  18846.  >
  18847.    <a
  18848.      href="/collections/granita-slushy-machines-2"
  18849.      class="m-collection-card__image m:block "
  18850.      aria-label="Example collection title"
  18851.      style=""
  18852.    >
  18853.      <div class="m-hover-box__wrapper collection-card-desktop">
  18854.        
  18855.          
  18856. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18857.  
  18858.  <img
  18859.      srcset="//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890 500w"
  18860.      src="//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890&width=360"
  18861.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18862.      alt=""
  18863.      loading="lazy"
  18864.      class="m:w-full"
  18865.      width="500"
  18866.      height="319"
  18867.      
  18868.  >
  18869.  
  18870.  <noscript>
  18871.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18872.  </noscript>
  18873. </responsive-image>
  18874.  
  18875.        
  18876.      </div>
  18877.      
  18878.        <div class="m-hover-box__wrapper collection-card-mobile">
  18879.        
  18880.          
  18881. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18882.  
  18883.  <img
  18884.      srcset="//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890 500w"
  18885.      src="//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?v=1747987890&width=360"
  18886.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18887.      alt=""
  18888.      loading="lazy"
  18889.      class="m:w-full"
  18890.      width="500"
  18891.      height="319"
  18892.      
  18893.  >
  18894.  
  18895.  <noscript>
  18896.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_1_71dc6847-5269-4783-859c-1fcf5b6c2129.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18897.  </noscript>
  18898. </responsive-image>
  18899.  
  18900.        
  18901.        </div>
  18902.      
  18903.    </a>
  18904.    
  18905.      <div class="m-collection-card__info m:justify-center" style="">
  18906.        
  18907.        
  18908.        
  18909.        
  18910.        
  18911.      </div>
  18912.    
  18913.  </div>
  18914. </div>
  18915. <style>
  18916.  .collection-card-mobile {
  18917.    display: none;
  18918.  }
  18919.  .horizontal_layout-wrapper {
  18920.    display: flex;
  18921.  }
  18922.  @media screen and (max-width: 768px){
  18923.    #collection_custom_button{
  18924.      padding:4px 12px !important;
  18925.      font-size:14px !important;
  18926.    }
  18927.    .collection-card-mobile {
  18928.      display: block;
  18929.    }
  18930.    .collection-card-desktop {
  18931.      display: none;
  18932.    }
  18933.  }
  18934. </style>
  18935.  
  18936.                      </div>
  18937.                    
  18938.                      <div class="m:column swiper-slide">
  18939.                        
  18940.                        <div
  18941.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  18942.  style="
  18943.    --img-rounded: 0px;
  18944.    --img-width: 100%;
  18945.    height:100%;
  18946.  "
  18947. >
  18948.  <div
  18949.    class="m-collection-card__wrapper m:text-center"
  18950.    
  18951.    style=""
  18952.  >
  18953.    <a
  18954.      href="/collections/refrigerated-beverage-dispensers"
  18955.      class="m-collection-card__image m:block "
  18956.      aria-label="Example collection title"
  18957.      style=""
  18958.    >
  18959.      <div class="m-hover-box__wrapper collection-card-desktop">
  18960.        
  18961.          
  18962. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18963.  
  18964.  <img
  18965.      srcset="//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890 500w"
  18966.      src="//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890&width=360"
  18967.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18968.      alt=""
  18969.      loading="lazy"
  18970.      class="m:w-full"
  18971.      width="500"
  18972.      height="319"
  18973.      
  18974.  >
  18975.  
  18976.  <noscript>
  18977.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  18978.  </noscript>
  18979. </responsive-image>
  18980.  
  18981.        
  18982.      </div>
  18983.      
  18984.        <div class="m-hover-box__wrapper collection-card-mobile">
  18985.        
  18986.          
  18987. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  18988.  
  18989.  <img
  18990.      srcset="//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890 500w"
  18991.      src="//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?v=1747987890&width=360"
  18992.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  18993.      alt=""
  18994.      loading="lazy"
  18995.      class="m:w-full"
  18996.      width="500"
  18997.      height="319"
  18998.      
  18999.  >
  19000.  
  19001.  <noscript>
  19002.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_2_e2f40351-4853-425b-89bf-c5ad8c233786.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  19003.  </noscript>
  19004. </responsive-image>
  19005.  
  19006.        
  19007.        </div>
  19008.      
  19009.    </a>
  19010.    
  19011.      <div class="m-collection-card__info m:justify-center" style="">
  19012.        
  19013.        
  19014.        
  19015.        
  19016.        
  19017.      </div>
  19018.    
  19019.  </div>
  19020. </div>
  19021. <style>
  19022.  .collection-card-mobile {
  19023.    display: none;
  19024.  }
  19025.  .horizontal_layout-wrapper {
  19026.    display: flex;
  19027.  }
  19028.  @media screen and (max-width: 768px){
  19029.    #collection_custom_button{
  19030.      padding:4px 12px !important;
  19031.      font-size:14px !important;
  19032.    }
  19033.    .collection-card-mobile {
  19034.      display: block;
  19035.    }
  19036.    .collection-card-desktop {
  19037.      display: none;
  19038.    }
  19039.  }
  19040. </style>
  19041.  
  19042.                      </div>
  19043.                    
  19044.                      <div class="m:column swiper-slide">
  19045.                        
  19046.                        <div
  19047.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  19048.  style="
  19049.    --img-rounded: 0px;
  19050.    --img-width: 100%;
  19051.    height:100%;
  19052.  "
  19053. >
  19054.  <div
  19055.    class="m-collection-card__wrapper m:text-center"
  19056.    
  19057.    style=""
  19058.  >
  19059.    <a
  19060.      href="/collections/air-conditioners-accessories"
  19061.      class="m-collection-card__image m:block "
  19062.      aria-label="Example collection title"
  19063.      style=""
  19064.    >
  19065.      <div class="m-hover-box__wrapper collection-card-desktop">
  19066.        
  19067.          
  19068. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  19069.  
  19070.  <img
  19071.      srcset="//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890 500w"
  19072.      src="//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890&width=360"
  19073.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19074.      alt=""
  19075.      loading="lazy"
  19076.      class="m:w-full"
  19077.      width="500"
  19078.      height="319"
  19079.      
  19080.  >
  19081.  
  19082.  <noscript>
  19083.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  19084.  </noscript>
  19085. </responsive-image>
  19086.  
  19087.        
  19088.      </div>
  19089.      
  19090.        <div class="m-hover-box__wrapper collection-card-mobile">
  19091.        
  19092.          
  19093. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  19094.  
  19095.  <img
  19096.      srcset="//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890 500w"
  19097.      src="//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?v=1747987890&width=360"
  19098.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19099.      alt=""
  19100.      loading="lazy"
  19101.      class="m:w-full"
  19102.      width="500"
  19103.      height="319"
  19104.      
  19105.  >
  19106.  
  19107.  <noscript>
  19108.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_3_2f2c6a35-1408-420b-8505-483d39c85f4b.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  19109.  </noscript>
  19110. </responsive-image>
  19111.  
  19112.        
  19113.        </div>
  19114.      
  19115.    </a>
  19116.    
  19117.      <div class="m-collection-card__info m:justify-center" style="">
  19118.        
  19119.        
  19120.        
  19121.        
  19122.        
  19123.      </div>
  19124.    
  19125.  </div>
  19126. </div>
  19127. <style>
  19128.  .collection-card-mobile {
  19129.    display: none;
  19130.  }
  19131.  .horizontal_layout-wrapper {
  19132.    display: flex;
  19133.  }
  19134.  @media screen and (max-width: 768px){
  19135.    #collection_custom_button{
  19136.      padding:4px 12px !important;
  19137.      font-size:14px !important;
  19138.    }
  19139.    .collection-card-mobile {
  19140.      display: block;
  19141.    }
  19142.    .collection-card-desktop {
  19143.      display: none;
  19144.    }
  19145.  }
  19146. </style>
  19147.  
  19148.                      </div>
  19149.                    
  19150.                      <div class="m:column swiper-slide">
  19151.                        
  19152.                        <div
  19153.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  19154.  style="
  19155.    --img-rounded: 0px;
  19156.    --img-width: 100%;
  19157.    height:100%;
  19158.  "
  19159. >
  19160.  <div
  19161.    class="m-collection-card__wrapper m:text-center"
  19162.    
  19163.    style=""
  19164.  >
  19165.    <a
  19166.      href="/collections/soft-serve-ice-cream-machines"
  19167.      class="m-collection-card__image m:block "
  19168.      aria-label="Example collection title"
  19169.      style=""
  19170.    >
  19171.      <div class="m-hover-box__wrapper collection-card-desktop">
  19172.        
  19173.          
  19174. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  19175.  
  19176.  <img
  19177.      srcset="//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890 500w"
  19178.      src="//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890&width=360"
  19179.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19180.      alt=""
  19181.      loading="lazy"
  19182.      class="m:w-full"
  19183.      width="500"
  19184.      height="319"
  19185.      
  19186.  >
  19187.  
  19188.  <noscript>
  19189.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  19190.  </noscript>
  19191. </responsive-image>
  19192.  
  19193.        
  19194.      </div>
  19195.      
  19196.        <div class="m-hover-box__wrapper collection-card-mobile">
  19197.        
  19198.          
  19199. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  19200.  
  19201.  <img
  19202.      srcset="//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890 500w"
  19203.      src="//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?v=1747987890&width=360"
  19204.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19205.      alt=""
  19206.      loading="lazy"
  19207.      class="m:w-full"
  19208.      width="500"
  19209.      height="319"
  19210.      
  19211.  >
  19212.  
  19213.  <noscript>
  19214.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_4_2f9a575b-c524-48bd-9aed-7eb36dc97748.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  19215.  </noscript>
  19216. </responsive-image>
  19217.  
  19218.        
  19219.        </div>
  19220.      
  19221.    </a>
  19222.    
  19223.      <div class="m-collection-card__info m:justify-center" style="">
  19224.        
  19225.        
  19226.        
  19227.        
  19228.        
  19229.      </div>
  19230.    
  19231.  </div>
  19232. </div>
  19233. <style>
  19234.  .collection-card-mobile {
  19235.    display: none;
  19236.  }
  19237.  .horizontal_layout-wrapper {
  19238.    display: flex;
  19239.  }
  19240.  @media screen and (max-width: 768px){
  19241.    #collection_custom_button{
  19242.      padding:4px 12px !important;
  19243.      font-size:14px !important;
  19244.    }
  19245.    .collection-card-mobile {
  19246.      display: block;
  19247.    }
  19248.    .collection-card-desktop {
  19249.      display: none;
  19250.    }
  19251.  }
  19252. </style>
  19253.  
  19254.                      </div>
  19255.                    
  19256.                      <div class="m:column swiper-slide">
  19257.                        
  19258.                        <div
  19259.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  19260.  style="
  19261.    --img-rounded: 0px;
  19262.    --img-width: 100%;
  19263.    height:100%;
  19264.  "
  19265. >
  19266.  <div
  19267.    class="m-collection-card__wrapper m:text-center"
  19268.    
  19269.    style=""
  19270.  >
  19271.    <a
  19272.      href="/collections/ice-machines"
  19273.      class="m-collection-card__image m:block "
  19274.      aria-label="Example collection title"
  19275.      style=""
  19276.    >
  19277.      <div class="m-hover-box__wrapper collection-card-desktop">
  19278.        
  19279.          
  19280. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  19281.  
  19282.  <img
  19283.      srcset="//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890 500w"
  19284.      src="//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890&width=360"
  19285.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19286.      alt=""
  19287.      loading="lazy"
  19288.      class="m:w-full"
  19289.      width="500"
  19290.      height="319"
  19291.      
  19292.  >
  19293.  
  19294.  <noscript>
  19295.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  19296.  </noscript>
  19297. </responsive-image>
  19298.  
  19299.        
  19300.      </div>
  19301.      
  19302.        <div class="m-hover-box__wrapper collection-card-mobile">
  19303.        
  19304.          
  19305. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  19306.  
  19307.  <img
  19308.      srcset="//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890 500w"
  19309.      src="//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?v=1747987890&width=360"
  19310.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19311.      alt=""
  19312.      loading="lazy"
  19313.      class="m:w-full"
  19314.      width="500"
  19315.      height="319"
  19316.      
  19317.  >
  19318.  
  19319.  <noscript>
  19320.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_5_d56fbcea-fedb-42a0-bdf3-782ce7cb7116.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  19321.  </noscript>
  19322. </responsive-image>
  19323.  
  19324.        
  19325.        </div>
  19326.      
  19327.    </a>
  19328.    
  19329.      <div class="m-collection-card__info m:justify-center" style="">
  19330.        
  19331.        
  19332.        
  19333.        
  19334.        
  19335.      </div>
  19336.    
  19337.  </div>
  19338. </div>
  19339. <style>
  19340.  .collection-card-mobile {
  19341.    display: none;
  19342.  }
  19343.  .horizontal_layout-wrapper {
  19344.    display: flex;
  19345.  }
  19346.  @media screen and (max-width: 768px){
  19347.    #collection_custom_button{
  19348.      padding:4px 12px !important;
  19349.      font-size:14px !important;
  19350.    }
  19351.    .collection-card-mobile {
  19352.      display: block;
  19353.    }
  19354.    .collection-card-desktop {
  19355.      display: none;
  19356.    }
  19357.  }
  19358. </style>
  19359.  
  19360.                      </div>
  19361.                    
  19362.                      <div class="m:column swiper-slide">
  19363.                        
  19364.                        <div
  19365.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  19366.  style="
  19367.    --img-rounded: 0px;
  19368.    --img-width: 100%;
  19369.    height:100%;
  19370.  "
  19371. >
  19372.  <div
  19373.    class="m-collection-card__wrapper m:text-center"
  19374.    
  19375.    style=""
  19376.  >
  19377.    <a
  19378.      href="/collections/beverage-refrigerator"
  19379.      class="m-collection-card__image m:block "
  19380.      aria-label="Example collection title"
  19381.      style=""
  19382.    >
  19383.      <div class="m-hover-box__wrapper collection-card-desktop">
  19384.        
  19385.          
  19386. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  19387.  
  19388.  <img
  19389.      srcset="//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890 500w"
  19390.      src="//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890&width=360"
  19391.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19392.      alt=""
  19393.      loading="lazy"
  19394.      class="m:w-full"
  19395.      width="500"
  19396.      height="319"
  19397.      
  19398.  >
  19399.  
  19400.  <noscript>
  19401.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  19402.  </noscript>
  19403. </responsive-image>
  19404.  
  19405.        
  19406.      </div>
  19407.      
  19408.        <div class="m-hover-box__wrapper collection-card-mobile">
  19409.        
  19410.          
  19411. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  19412.  
  19413.  <img
  19414.      srcset="//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890 500w"
  19415.      src="//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?v=1747987890&width=360"
  19416.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19417.      alt=""
  19418.      loading="lazy"
  19419.      class="m:w-full"
  19420.      width="500"
  19421.      height="319"
  19422.      
  19423.  >
  19424.  
  19425.  <noscript>
  19426.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_6_bbe43ef6-1b66-48eb-9653-6e7a345140e3.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  19427.  </noscript>
  19428. </responsive-image>
  19429.  
  19430.        
  19431.        </div>
  19432.      
  19433.    </a>
  19434.    
  19435.      <div class="m-collection-card__info m:justify-center" style="">
  19436.        
  19437.        
  19438.        
  19439.        
  19440.        
  19441.      </div>
  19442.    
  19443.  </div>
  19444. </div>
  19445. <style>
  19446.  .collection-card-mobile {
  19447.    display: none;
  19448.  }
  19449.  .horizontal_layout-wrapper {
  19450.    display: flex;
  19451.  }
  19452.  @media screen and (max-width: 768px){
  19453.    #collection_custom_button{
  19454.      padding:4px 12px !important;
  19455.      font-size:14px !important;
  19456.    }
  19457.    .collection-card-mobile {
  19458.      display: block;
  19459.    }
  19460.    .collection-card-desktop {
  19461.      display: none;
  19462.    }
  19463.  }
  19464. </style>
  19465.  
  19466.                      </div>
  19467.                    
  19468.                      <div class="m:column swiper-slide">
  19469.                        
  19470.                        <div
  19471.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  19472.  style="
  19473.    --img-rounded: 0px;
  19474.    --img-width: 100%;
  19475.    height:100%;
  19476.  "
  19477. >
  19478.  <div
  19479.    class="m-collection-card__wrapper m:text-center"
  19480.    
  19481.    style=""
  19482.  >
  19483.    <a
  19484.      href="/collections/merchandising-refrigerators"
  19485.      class="m-collection-card__image m:block "
  19486.      aria-label="Example collection title"
  19487.      style=""
  19488.    >
  19489.      <div class="m-hover-box__wrapper collection-card-desktop">
  19490.        
  19491.          
  19492. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  19493.  
  19494.  <img
  19495.      srcset="//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890 500w"
  19496.      src="//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890&width=360"
  19497.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19498.      alt=""
  19499.      loading="lazy"
  19500.      class="m:w-full"
  19501.      width="500"
  19502.      height="319"
  19503.      
  19504.  >
  19505.  
  19506.  <noscript>
  19507.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  19508.  </noscript>
  19509. </responsive-image>
  19510.  
  19511.        
  19512.      </div>
  19513.      
  19514.        <div class="m-hover-box__wrapper collection-card-mobile">
  19515.        
  19516.          
  19517. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  19518.  
  19519.  <img
  19520.      srcset="//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890 500w"
  19521.      src="//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?v=1747987890&width=360"
  19522.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19523.      alt=""
  19524.      loading="lazy"
  19525.      class="m:w-full"
  19526.      width="500"
  19527.      height="319"
  19528.      
  19529.  >
  19530.  
  19531.  <noscript>
  19532.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_7_19bb549e-ea3d-4b27-a9c0-1a14f8098916.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  19533.  </noscript>
  19534. </responsive-image>
  19535.  
  19536.        
  19537.        </div>
  19538.      
  19539.    </a>
  19540.    
  19541.      <div class="m-collection-card__info m:justify-center" style="">
  19542.        
  19543.        
  19544.        
  19545.        
  19546.        
  19547.      </div>
  19548.    
  19549.  </div>
  19550. </div>
  19551. <style>
  19552.  .collection-card-mobile {
  19553.    display: none;
  19554.  }
  19555.  .horizontal_layout-wrapper {
  19556.    display: flex;
  19557.  }
  19558.  @media screen and (max-width: 768px){
  19559.    #collection_custom_button{
  19560.      padding:4px 12px !important;
  19561.      font-size:14px !important;
  19562.    }
  19563.    .collection-card-mobile {
  19564.      display: block;
  19565.    }
  19566.    .collection-card-desktop {
  19567.      display: none;
  19568.    }
  19569.  }
  19570. </style>
  19571.  
  19572.                      </div>
  19573.                    
  19574.                      <div class="m:column swiper-slide">
  19575.                        
  19576.                        <div
  19577.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  19578.  style="
  19579.    --img-rounded: 0px;
  19580.    --img-width: 100%;
  19581.    height:100%;
  19582.  "
  19583. >
  19584.  <div
  19585.    class="m-collection-card__wrapper m:text-center"
  19586.    
  19587.    style=""
  19588.  >
  19589.    <a
  19590.      href="/collections/car-refrigerator"
  19591.      class="m-collection-card__image m:block "
  19592.      aria-label="Example collection title"
  19593.      style=""
  19594.    >
  19595.      <div class="m-hover-box__wrapper collection-card-desktop">
  19596.        
  19597.          
  19598. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  19599.  
  19600.  <img
  19601.      srcset="//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890 500w"
  19602.      src="//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890&width=360"
  19603.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19604.      alt=""
  19605.      loading="lazy"
  19606.      class="m:w-full"
  19607.      width="500"
  19608.      height="319"
  19609.      
  19610.  >
  19611.  
  19612.  <noscript>
  19613.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  19614.  </noscript>
  19615. </responsive-image>
  19616.  
  19617.        
  19618.      </div>
  19619.      
  19620.        <div class="m-hover-box__wrapper collection-card-mobile">
  19621.        
  19622.          
  19623. <responsive-image class="m-image "   style="--aspect-ratio: 1.567398119122257;">
  19624.  
  19625.  <img
  19626.      srcset="//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890&width=165 165w,//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890&width=360 360w,//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890 500w"
  19627.      src="//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?v=1747987890&width=360"
  19628.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19629.      alt=""
  19630.      loading="lazy"
  19631.      class="m:w-full"
  19632.      width="500"
  19633.      height="319"
  19634.      
  19635.  >
  19636.  
  19637.  <noscript>
  19638.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/500x319_8_0a47c242-beb6-42e6-9c21-5f67d9ed458a.jpg?crop=center&height=2048&v=1747987890&width=2048" alt="">
  19639.  </noscript>
  19640. </responsive-image>
  19641.  
  19642.        
  19643.        </div>
  19644.      
  19645.    </a>
  19646.    
  19647.      <div class="m-collection-card__info m:justify-center" style="">
  19648.        
  19649.        
  19650.        
  19651.        
  19652.        
  19653.      </div>
  19654.    
  19655.  </div>
  19656. </div>
  19657. <style>
  19658.  .collection-card-mobile {
  19659.    display: none;
  19660.  }
  19661.  .horizontal_layout-wrapper {
  19662.    display: flex;
  19663.  }
  19664.  @media screen and (max-width: 768px){
  19665.    #collection_custom_button{
  19666.      padding:4px 12px !important;
  19667.      font-size:14px !important;
  19668.    }
  19669.    .collection-card-mobile {
  19670.      display: block;
  19671.    }
  19672.    .collection-card-desktop {
  19673.      display: none;
  19674.    }
  19675.  }
  19676. </style>
  19677.  
  19678.                      </div>
  19679.                    
  19680.                  
  19681.                </div>
  19682.              </div>
  19683.              
  19684.                
  19685.  
  19686.  
  19687. <div class="m-slider-controls m:text-center m-slider-controls--show-nav m-slider-controls--nav-inside">
  19688.  <div class="m-slider-controls__wrapper">
  19689.    
  19690.      
  19691.        <button
  19692.          class="m-slider-controls__button m:inline-flex m-slider-controls__button-prev swiper-button-prev "
  19693.          aria-label="Previous"
  19694.        >
  19695.          <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
  19696.            <path d="M20 6L10 16L20 26" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  19697.          </svg>
  19698.        </button>
  19699.      
  19700.      
  19701.      
  19702.        <button
  19703.          class="m-slider-controls__button m:inline-flex m-slider-controls__button-next swiper-button-next "
  19704.          aria-label="Next"
  19705.        >
  19706.          <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
  19707.            <path d="M12 6L22 16L12 26" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  19708.          </svg>
  19709.        </button>
  19710.      
  19711.    
  19712.  </div>
  19713. </div>
  19714. <style>
  19715.  .dots-container{
  19716.    display:flex;
  19717.  }
  19718.  .dot {
  19719.        width: 10px;
  19720.        height: 10px;
  19721.        background-color: gray;
  19722.        border-radius: 50%;
  19723.        margin: 0 5px;
  19724.        cursor: pointer;
  19725.        pointer-events: all;
  19726.    }
  19727.  .dot.active {
  19728.        background-color: #074174;
  19729.    }
  19730. </style>
  19731. <script>
  19732.  const dotEles=document.body.querySelectorAll(".dot")
  19733.  dotEles.forEach((dot,i)=>{
  19734.    dot.addEventListener('click', () => {
  19735.            console.log("轮播图小点")
  19736.            showSlide(i)
  19737.      });
  19738.  })
  19739.  const slider=document.body.querySelector('.m-slide__wrapper .swiper-wrapper')
  19740.  function showSlide(slideIndex) {
  19741.        currentSlide = slideIndex;
  19742.        slider.style.transform = `translateX(-${(currentSlide+1) * 100}%)`;
  19743.        dotEles.forEach((dot, index) => {
  19744.            if (index === currentSlide) {
  19745.                dot.classList.add('active');
  19746.            } else {
  19747.                dot.classList.remove('active');
  19748.            }
  19749.        });
  19750.    }
  19751. </script>
  19752.  
  19753.              
  19754.            </div>
  19755.          </m-collection-list>
  19756.        </div>
  19757.      </div>
  19758.    </div>
  19759.  </div>
  19760. </section>
  19761.  
  19762. <style>
  19763.  m-collection-list .m-collection-card__info {
  19764.    overflow: hidden;
  19765.  }
  19766.  m-collection-list .m-collection-card__title {
  19767.    max-width: 100%;
  19768.    overflow-wrap: break-word;
  19769.  }
  19770.  .m-collection-card__link {
  19771.    font-weight: normal;
  19772.  }
  19773.  .mobile_slider {
  19774.    display: none;
  19775.  }
  19776.  @media screen and (max-width: 768px) {
  19777.    .mobile_slider {
  19778.      display: block;
  19779.    }
  19780.    .desktop_slider {
  19781.      display: none;
  19782.    }
  19783.    .m-collection-card__link {
  19784.      font-size: 12px;
  19785.    }
  19786.  }
  19787.  /* .m:column.swiper-slide.swiper-slide-duplicate{
  19788.      width:33% !important;
  19789.    } */
  19790.  
  19791.  @media (max-width: 640px) {
  19792.    .m-button {
  19793.      font-size: 12px;
  19794.    }
  19795.  }
  19796. </style>
  19797.  
  19798.  
  19799. </div><div id="shopify-section-template--24257712095545__custom_content_8XmWC7" class="shopify-section"><link href="//www.garvee.com/cdn/shop/t/132/assets/section-custom-content.css?v=122805073732079906441740986011" rel="stylesheet" type="text/css" media="all" />
  19800.  
  19801.  
  19802.  
  19803. <div
  19804.  id="m-custom-template--24257712095545__custom_content_8XmWC7"
  19805.  class="m-section m-custom-content  m-section--padding m-color-background-1 m-gradient"
  19806.  data-section-type="custom-content"
  19807.  data-section-id="template--24257712095545__custom_content_8XmWC7"
  19808.  style="--column-gap: 5px; --column-gap-mobile: 5px; --row-gap: 5px; --row-gap-mobile: 10px;--section-padding-top: 0px; --section-padding-bottom: 0px;"
  19809. >
  19810.  <div class="m-page-width">
  19811.    <div class="m-section__wrapper">
  19812.  
  19813.  
  19814.  
  19815.  
  19816.  <div class="m-section__header m:text-left sm:m:text-left">
  19817.    
  19818.    
  19819.      <h2 class="m-section__heading h4">Shop by Room</h2>
  19820.    
  19821.    
  19822.  </div>
  19823.  
  19824.  
  19825.  
  19826.      
  19827.    </div>
  19828.  </div>
  19829. </div>
  19830.  
  19831.  
  19832. </div><div id="shopify-section-template--24257712095545__banner_grid_czLmai" class="shopify-section"><link href="//www.garvee.com/cdn/shop/t/132/assets/section-banner-grid-layout-2.css?v=13332574337378823941745459077" rel="stylesheet" type="text/css" media="all" />
  19833. <link href="//www.garvee.com/cdn/shop/t/132/assets/component-image-card.css?v=45576406673057111881740986010" rel="stylesheet" type="text/css" media="all" />
  19834.  
  19835. <div
  19836.  class="m-image-cards m-section--padding m-image-cards__template--24257712095545__banner_grid_czLmai m-image-cards--blocks-num-4  "
  19837.  style="--section-padding-top: 0px; --section-padding-bottom: 10px; --column-gap: 10px; --column-gap-mobile: 0px;--row-gap: 10px; --row-gap-mobile: 16px;"
  19838. >
  19839.  <div class="m-page-width">
  19840.        <div class="m-image-cards--layout-2 md:m:grid m:flex m:flex-col">
  19841.          
  19842.            
  19843. <div class="m-image-card m:h-full m-image-card__image_AGwj4j m:column"
  19844.  style="--content-padding-desktop:10px; --content-padding-mobile:10px"
  19845. >
  19846.  <div class="m-image-card__inner m-color-background-1 m-gradient m:w-full m:h-full">
  19847.    <a href="/collections/living-room" class="m-image-card__link"></a>
  19848.    <div class="m-image-card__media m:h-full">
  19849.      
  19850.      
  19851.        <div
  19852.          class="m-image-card__desktop m:w-full m:h-full  m:hidden md:m:block"
  19853.          aria-labelledby="CardNoMediaLink-image_AGwj4j"
  19854.        >
  19855.          
  19856. <responsive-image class="m-image m:w-full m:h-full"   style="--aspect-ratio: 1.2424849699398797;">
  19857.  
  19858.  <img
  19859.      srcset="//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_01_2805805d-cf09-404a-975a-5e463eeecdd3.jpg?v=1741153166&width=165 165w,//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_01_2805805d-cf09-404a-975a-5e463eeecdd3.jpg?v=1741153166&width=360 360w,//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_01_2805805d-cf09-404a-975a-5e463eeecdd3.jpg?v=1741153166&width=533 533w,//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_01_2805805d-cf09-404a-975a-5e463eeecdd3.jpg?v=1741153166 620w"
  19860.      src="//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_01_2805805d-cf09-404a-975a-5e463eeecdd3.jpg?v=1741153166&width=360"
  19861.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19862.      alt=""
  19863.      loading="lazy"
  19864.      class="m-image-card__desktop"
  19865.      width="620"
  19866.      height="499"
  19867.      
  19868.  >
  19869.  
  19870.  <noscript>
  19871.    <img class="m-image-card__desktop" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_01_2805805d-cf09-404a-975a-5e463eeecdd3.jpg?crop=center&height=2048&v=1741153166&width=2048" alt="">
  19872.  </noscript>
  19873. </responsive-image>
  19874.  
  19875.        </div>
  19876.      
  19877.      
  19878.        <div
  19879.          class="m-image-card__mobile m:w-full m:h-full m:block md:m:hidden"
  19880.          aria-labelledby="CardNoMediaLink-image_AGwj4j"
  19881.        >
  19882.          
  19883. <responsive-image class="m-image m:w-full m:h-full"   style="--aspect-ratio: 1.0;">
  19884.  
  19885.  <img
  19886.      srcset="//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_01_a63404a8-2410-435c-80c2-40862c2f1bbc.jpg?v=1741153176&width=165 165w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_01_a63404a8-2410-435c-80c2-40862c2f1bbc.jpg?v=1741153176&width=360 360w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_01_a63404a8-2410-435c-80c2-40862c2f1bbc.jpg?v=1741153176&width=533 533w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_01_a63404a8-2410-435c-80c2-40862c2f1bbc.jpg?v=1741153176&width=720 720w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_01_a63404a8-2410-435c-80c2-40862c2f1bbc.jpg?v=1741153176&width=940 940w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_01_a63404a8-2410-435c-80c2-40862c2f1bbc.jpg?v=1741153176 1000w"
  19887.      src="//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_01_a63404a8-2410-435c-80c2-40862c2f1bbc.jpg?v=1741153176&width=360"
  19888.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19889.      alt=""
  19890.      loading="lazy"
  19891.      class=""
  19892.      width="1000"
  19893.      height="1000"
  19894.      
  19895.  >
  19896.  
  19897.  <noscript>
  19898.    <img class="" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_01_a63404a8-2410-435c-80c2-40862c2f1bbc.jpg?crop=center&height=2048&v=1741153176&width=2048" alt="">
  19899.  </noscript>
  19900. </responsive-image>
  19901.  
  19902.        </div>
  19903.      
  19904.    </div>
  19905.    <div class="m-image-card__content  m:items-center m:justify-center m:text-center m-image-card--h3">
  19906.      <div class="m-image-card__content-inner">
  19907.        <div class="m-image-card__content-main">
  19908.          
  19909.          
  19910.        </div>
  19911.        
  19912.      </div>
  19913.    </div>
  19914.  </div>
  19915. </div>
  19916.          
  19917.            
  19918. <div class="m-image-card m:h-full m-image-card__image_pGCfUQ m:column"
  19919.  style="--content-padding-desktop:30px; --content-padding-mobile:19px"
  19920. >
  19921.  <div class="m-image-card__inner m-color-background-1 m-gradient m:w-full m:h-full">
  19922.    <a href="/collections/bedroom" class="m-image-card__link"></a>
  19923.    <div class="m-image-card__media m:h-full">
  19924.      
  19925.      
  19926.        <div
  19927.          class="m-image-card__desktop m:w-full m:h-full  m:hidden md:m:block"
  19928.          aria-labelledby="CardNoMediaLink-image_pGCfUQ"
  19929.        >
  19930.          
  19931. <responsive-image class="m-image m:w-full m:h-full"   style="--aspect-ratio: 0.6673346693386774;">
  19932.  
  19933.  <img
  19934.      srcset="//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_02_ba484d07-2877-4e31-8f53-09bf8b9744ac.jpg?v=1741153174&width=165 165w,//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_02_ba484d07-2877-4e31-8f53-09bf8b9744ac.jpg?v=1741153174 333w"
  19935.      src="//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_02_ba484d07-2877-4e31-8f53-09bf8b9744ac.jpg?v=1741153174&width=360"
  19936.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19937.      alt=""
  19938.      loading="lazy"
  19939.      class="m-image-card__desktop"
  19940.      width="333"
  19941.      height="499"
  19942.      
  19943.  >
  19944.  
  19945.  <noscript>
  19946.    <img class="m-image-card__desktop" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_02_ba484d07-2877-4e31-8f53-09bf8b9744ac.jpg?crop=center&height=2048&v=1741153174&width=2048" alt="">
  19947.  </noscript>
  19948. </responsive-image>
  19949.  
  19950.        </div>
  19951.      
  19952.      
  19953.        <div
  19954.          class="m-image-card__mobile m:w-full m:h-full m:block md:m:hidden"
  19955.          aria-labelledby="CardNoMediaLink-image_pGCfUQ"
  19956.        >
  19957.          
  19958. <responsive-image class="m-image m:w-full m:h-full"   style="--aspect-ratio: 1.0;">
  19959.  
  19960.  <img
  19961.      srcset="//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_02_597e02ad-e61c-4516-9451-29a160ef1dec.jpg?v=1741153177&width=165 165w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_02_597e02ad-e61c-4516-9451-29a160ef1dec.jpg?v=1741153177&width=360 360w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_02_597e02ad-e61c-4516-9451-29a160ef1dec.jpg?v=1741153177&width=533 533w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_02_597e02ad-e61c-4516-9451-29a160ef1dec.jpg?v=1741153177&width=720 720w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_02_597e02ad-e61c-4516-9451-29a160ef1dec.jpg?v=1741153177&width=940 940w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_02_597e02ad-e61c-4516-9451-29a160ef1dec.jpg?v=1741153177 1000w"
  19962.      src="//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_02_597e02ad-e61c-4516-9451-29a160ef1dec.jpg?v=1741153177&width=360"
  19963.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  19964.      alt=""
  19965.      loading="lazy"
  19966.      class=""
  19967.      width="1000"
  19968.      height="1000"
  19969.      
  19970.  >
  19971.  
  19972.  <noscript>
  19973.    <img class="" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_02_597e02ad-e61c-4516-9451-29a160ef1dec.jpg?crop=center&height=2048&v=1741153177&width=2048" alt="">
  19974.  </noscript>
  19975. </responsive-image>
  19976.  
  19977.        </div>
  19978.      
  19979.    </div>
  19980.    <div class="m-image-card__content  m:items-center m:justify-center m:text-center m-image-card--h3">
  19981.      <div class="m-image-card__content-inner">
  19982.        <div class="m-image-card__content-main">
  19983.          
  19984.          
  19985.        </div>
  19986.        
  19987.      </div>
  19988.    </div>
  19989.  </div>
  19990. </div>
  19991.          
  19992.            
  19993. <div class="m-image-card m:h-full m-image-card__image_VXFCnb m:column"
  19994.  style="--content-padding-desktop:30px; --content-padding-mobile:19px"
  19995. >
  19996.  <div class="m-image-card__inner m-color-background-1 m-gradient m:w-full m:h-full">
  19997.    <a href="/collections/kitchen-dining" class="m-image-card__link"></a>
  19998.    <div class="m-image-card__media m:h-full">
  19999.      
  20000.      
  20001.        <div
  20002.          class="m-image-card__desktop m:w-full m:h-full  m:hidden md:m:block"
  20003.          aria-labelledby="CardNoMediaLink-image_VXFCnb"
  20004.        >
  20005.          
  20006. <responsive-image class="m-image m:w-full m:h-full"   style="--aspect-ratio: 1.5040983606557377;">
  20007.  
  20008.  <img
  20009.      srcset="//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_03_73f0f80e-612a-42d3-bfb0-f5dd3bb3ecc8.jpg?v=1741153173&width=165 165w,//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_03_73f0f80e-612a-42d3-bfb0-f5dd3bb3ecc8.jpg?v=1741153173&width=360 360w,//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_03_73f0f80e-612a-42d3-bfb0-f5dd3bb3ecc8.jpg?v=1741153173 367w"
  20010.      src="//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_03_73f0f80e-612a-42d3-bfb0-f5dd3bb3ecc8.jpg?v=1741153173&width=360"
  20011.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20012.      alt=""
  20013.      loading="lazy"
  20014.      class="m-image-card__desktop"
  20015.      width="367"
  20016.      height="244"
  20017.      
  20018.  >
  20019.  
  20020.  <noscript>
  20021.    <img class="m-image-card__desktop" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/PC-Shop_Furniture_Deals_03_73f0f80e-612a-42d3-bfb0-f5dd3bb3ecc8.jpg?crop=center&height=2048&v=1741153173&width=2048" alt="">
  20022.  </noscript>
  20023. </responsive-image>
  20024.  
  20025.        </div>
  20026.      
  20027.      
  20028.        <div
  20029.          class="m-image-card__mobile m:w-full m:h-full m:block md:m:hidden"
  20030.          aria-labelledby="CardNoMediaLink-image_VXFCnb"
  20031.        >
  20032.          
  20033. <responsive-image class="m-image m:w-full m:h-full"   style="--aspect-ratio: 1.0;">
  20034.  
  20035.  <img
  20036.      srcset="//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_03_b653862e-e145-4d72-b397-fadb4151d6c8.jpg?v=1741153177&width=165 165w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_03_b653862e-e145-4d72-b397-fadb4151d6c8.jpg?v=1741153177&width=360 360w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_03_b653862e-e145-4d72-b397-fadb4151d6c8.jpg?v=1741153177&width=533 533w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_03_b653862e-e145-4d72-b397-fadb4151d6c8.jpg?v=1741153177&width=720 720w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_03_b653862e-e145-4d72-b397-fadb4151d6c8.jpg?v=1741153177&width=940 940w,//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_03_b653862e-e145-4d72-b397-fadb4151d6c8.jpg?v=1741153177 1000w"
  20037.      src="//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_03_b653862e-e145-4d72-b397-fadb4151d6c8.jpg?v=1741153177&width=360"
  20038.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20039.      alt=""
  20040.      loading="lazy"
  20041.      class=""
  20042.      width="1000"
  20043.      height="1000"
  20044.      
  20045.  >
  20046.  
  20047.  <noscript>
  20048.    <img class="" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/M-Shop_Furniture_Deals_03_b653862e-e145-4d72-b397-fadb4151d6c8.jpg?crop=center&height=2048&v=1741153177&width=2048" alt="">
  20049.  </noscript>
  20050. </responsive-image>
  20051.  
  20052.        </div>
  20053.      
  20054.    </div>
  20055.    <div class="m-image-card__content  m:items-center m:justify-center m:text-center m-image-card--h3">
  20056.      <div class="m-image-card__content-inner">
  20057.        <div class="m-image-card__content-main">
  20058.          
  20059.          
  20060.        </div>
  20061.        
  20062.      </div>
  20063.    </div>
  20064.  </div>
  20065. </div>
  20066.          
  20067.            
  20068. <div class="m-image-card m:h-full m-image-card__image_KByWUi m:column"
  20069.  style="--content-padding-desktop:30px; --content-padding-mobile:19px"
  20070. >
  20071.  <div class="m-image-card__inner m-color-background-1 m-gradient m:w-full m:h-full">
  20072.    <a href="/collections/baby-kids" class="m-image-card__link"></a>
  20073.    <div class="m-image-card__media m:h-full">
  20074.      
  20075.      
  20076.        <div
  20077.          class="m-image-card__desktop m:w-full m:h-full  m:hidden md:m:block"
  20078.          aria-labelledby="CardNoMediaLink-image_KByWUi"
  20079.        >
  20080.          
  20081. <responsive-image class="m-image m:w-full m:h-full"   style="--aspect-ratio: 1.5040983606557377;">
  20082.  
  20083.  <img
  20084.      srcset="//www.garvee.com/cdn/shop/files/pc_69ac2eb8-31ea-41ea-b85c-603c0e08bf4b.jpg?v=1748933647&width=165 165w,//www.garvee.com/cdn/shop/files/pc_69ac2eb8-31ea-41ea-b85c-603c0e08bf4b.jpg?v=1748933647&width=360 360w,//www.garvee.com/cdn/shop/files/pc_69ac2eb8-31ea-41ea-b85c-603c0e08bf4b.jpg?v=1748933647 367w"
  20085.      src="//www.garvee.com/cdn/shop/files/pc_69ac2eb8-31ea-41ea-b85c-603c0e08bf4b.jpg?v=1748933647&width=360"
  20086.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20087.      alt=""
  20088.      loading="lazy"
  20089.      class="m-image-card__desktop"
  20090.      width="367"
  20091.      height="244"
  20092.      
  20093.  >
  20094.  
  20095.  <noscript>
  20096.    <img class="m-image-card__desktop" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/pc_69ac2eb8-31ea-41ea-b85c-603c0e08bf4b.jpg?crop=center&height=2048&v=1748933647&width=2048" alt="">
  20097.  </noscript>
  20098. </responsive-image>
  20099.  
  20100.        </div>
  20101.      
  20102.      
  20103.        <div
  20104.          class="m-image-card__mobile m:w-full m:h-full m:block md:m:hidden"
  20105.          aria-labelledby="CardNoMediaLink-image_KByWUi"
  20106.        >
  20107.          
  20108. <responsive-image class="m-image m:w-full m:h-full"   style="--aspect-ratio: 1.0;">
  20109.  
  20110.  <img
  20111.      srcset="//www.garvee.com/cdn/shop/files/M.jpg?v=1748933662&width=165 165w,//www.garvee.com/cdn/shop/files/M.jpg?v=1748933662&width=360 360w,//www.garvee.com/cdn/shop/files/M.jpg?v=1748933662&width=533 533w,//www.garvee.com/cdn/shop/files/M.jpg?v=1748933662&width=720 720w,//www.garvee.com/cdn/shop/files/M.jpg?v=1748933662&width=940 940w,//www.garvee.com/cdn/shop/files/M.jpg?v=1748933662 1000w"
  20112.      src="//www.garvee.com/cdn/shop/files/M.jpg?v=1748933662&width=360"
  20113.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20114.      alt=""
  20115.      loading="lazy"
  20116.      class=""
  20117.      width="1000"
  20118.      height="1000"
  20119.      
  20120.  >
  20121.  
  20122.  <noscript>
  20123.    <img class="" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/M.jpg?crop=center&height=2048&v=1748933662&width=2048" alt="">
  20124.  </noscript>
  20125. </responsive-image>
  20126.  
  20127.        </div>
  20128.      
  20129.    </div>
  20130.    <div class="m-image-card__content  m:items-center m:justify-center m:text-center m-image-card--h3">
  20131.      <div class="m-image-card__content-inner">
  20132.        <div class="m-image-card__content-main">
  20133.          
  20134.          
  20135.        </div>
  20136.        
  20137.      </div>
  20138.    </div>
  20139.  </div>
  20140. </div>
  20141.          
  20142.        </div>
  20143.      
  20144.  </div>
  20145. </div>
  20146.  
  20147. <style>
  20148.  .m-image-cards--layout-2.md\:m\:grid {
  20149.    display: grid;
  20150.    grid-template-columns: repeat(4, 1fr);
  20151.    grid-template-areas:
  20152.        "item1 item1 item2 item3"
  20153.        "item1 item1 item2 item4";
  20154.  }
  20155.  .m-image-cards--layout-2.md\:m\:grid .m-image-card:nth-of-type(1) {
  20156.    margin: 0px;
  20157.  }
  20158.  @media screen and (max-width: 1024px) {
  20159.    .m-image-cards--layout-2.md\:m\:grid .m-image-card {
  20160.      padding: 0 2.5px;
  20161.    }
  20162.    .m-image-cards--layout-2.md\:m\:grid {
  20163.      row-gap: 5px;
  20164.      grid-template-columns: repeat(2, 1fr);
  20165.      grid-template-areas:
  20166.         "item1 item2"
  20167.         "item3 item4";
  20168.    }
  20169.    .m-image-cards--layout-2 .m-image-card__inner {
  20170.      aspect-ratio: 1;
  20171.    }
  20172.  }
  20173.  
  20174.  @media screen and (max-width: 768px) {
  20175.    .m-image-card__content-heading.h2 {
  20176.      font-size: 22px;
  20177.    }
  20178.  }
  20179. </style>
  20180.  
  20181.  
  20182. </div><div id="shopify-section-template--24257712095545__collection_list_zrATPW" class="shopify-section"><link href="//www.garvee.com/cdn/shop/t/132/assets/component-collection-card.css?v=167412810450751081801740986011" rel="stylesheet" type="text/css" media="all" />
  20183. <link href="//www.garvee.com/cdn/shop/t/132/assets/section-collection-list.css?v=111592447707792523701740986010" rel="stylesheet" type="text/css" media="all" />
  20184.  
  20185.  
  20186.  
  20187. <section
  20188.  id="m-collection-list-template--24257712095545__collection_list_zrATPW"
  20189.  data-section-type="collection-list"
  20190.  data-section-id="template--24257712095545__collection_list_zrATPW"
  20191.  class="m-section m-section--padding m-collection-list m-gradient m-color-background-1"
  20192.  style="
  20193.    --section-padding-top: 30px;
  20194.    --section-padding-bottom: 0px;
  20195.    --column-gap: 0px;
  20196.    --column-gap-mobile: 6px;
  20197.    --row-gap: 0px;
  20198.    --row-gap-mobile: 0px;
  20199.    --items: 4
  20200.  "
  20201. >
  20202.  <div
  20203.    class="m-page-width "
  20204.    
  20205.  >
  20206.    <div class="m-section__wrapper">
  20207.      
  20208.        <div class="m-section__header m:display-flex m:justify-between sm:m:flex-row m:items-start sm:m:items-center">
  20209.          
  20210.            <h2 class="m-section__heading h4">
  20211.              
  20212.                Recommended for You
  20213.              
  20214.            </h2>
  20215.          
  20216.          
  20217.          
  20218.          
  20219.          
  20220.        </div>
  20221.      
  20222.      <div class="m-section__content">
  20223.        
  20224.  
  20225.        <div class="mobile_slider">
  20226.          <m-collection-list
  20227.            data-enable-slider="false"
  20228.            
  20229.            class="m-collection-list__inner m:block"
  20230.          >
  20231.            <div
  20232.              class="m-mixed-layout m-mixed-layout--mobile-grid"
  20233.              
  20234.                style="
  20235.                  --grid-columns-mobile: 2;
  20236.                  --mobile-column-width: 40vw;
  20237.                "
  20238.              
  20239.            >
  20240.              <div class="m-mixed-layout__wrapper">
  20241.                <div class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-4-cols xl:m:grid-4-cols">
  20242.                  
  20243.                    
  20244.                    
  20245.                    
  20246.                      <div class="m:column">
  20247.                        
  20248.                        <div
  20249.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  20250.  style="
  20251.    --img-rounded: 0px;
  20252.    --img-width: 100%;
  20253.    height:100%;
  20254.  "
  20255. >
  20256.  <div
  20257.    class="m-collection-card__wrapper m:text-center"
  20258.    
  20259.    style=""
  20260.  >
  20261.    <a
  20262.      href="/collections/fuel-transfer-lubrication"
  20263.      class="m-collection-card__image m:block "
  20264.      aria-label="Fuel Transfer & Lubrication"
  20265.      style=""
  20266.    >
  20267.      <div class="m-hover-box__wrapper collection-card-desktop">
  20268.        
  20269.          
  20270. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20271.  
  20272.  <img
  20273.      srcset="//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867&width=165 165w,//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867&width=360 360w,//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867 500w"
  20274.      src="//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867&width=360"
  20275.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20276.      alt=""
  20277.      loading="lazy"
  20278.      class="m:w-full"
  20279.      width="500"
  20280.      height="519"
  20281.      
  20282.  >
  20283.  
  20284.  <noscript>
  20285.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?crop=center&height=2048&v=1741831867&width=2048" alt="">
  20286.  </noscript>
  20287. </responsive-image>
  20288.  
  20289.        
  20290.      </div>
  20291.      
  20292.        <div class="m-hover-box__wrapper collection-card-mobile">
  20293.        
  20294.          
  20295. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20296.  
  20297.  <img
  20298.      srcset="//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867&width=165 165w,//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867&width=360 360w,//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867 500w"
  20299.      src="//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867&width=360"
  20300.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20301.      alt=""
  20302.      loading="lazy"
  20303.      class="m:w-full"
  20304.      width="500"
  20305.      height="519"
  20306.      
  20307.  >
  20308.  
  20309.  <noscript>
  20310.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?crop=center&height=2048&v=1741831867&width=2048" alt="">
  20311.  </noscript>
  20312. </responsive-image>
  20313.  
  20314.        
  20315.        </div>
  20316.      
  20317.    </a>
  20318.    
  20319.      <div class="m-collection-card__info m:justify-center" style="">
  20320.        
  20321.        
  20322.        
  20323.        
  20324.        
  20325.      </div>
  20326.    
  20327.  </div>
  20328. </div>
  20329. <style>
  20330.  .collection-card-mobile {
  20331.    display: none;
  20332.  }
  20333.  .horizontal_layout-wrapper {
  20334.    display: flex;
  20335.  }
  20336.  @media screen and (max-width: 768px){
  20337.    #collection_custom_button{
  20338.      padding:4px 12px !important;
  20339.      font-size:14px !important;
  20340.    }
  20341.    .collection-card-mobile {
  20342.      display: block;
  20343.    }
  20344.    .collection-card-desktop {
  20345.      display: none;
  20346.    }
  20347.  }
  20348. </style>
  20349.  
  20350.                      </div>
  20351.                    
  20352.                      <div class="m:column">
  20353.                        
  20354.                        <div
  20355.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  20356.  style="
  20357.    --img-rounded: 0px;
  20358.    --img-width: 100%;
  20359.    height:100%;
  20360.  "
  20361. >
  20362.  <div
  20363.    class="m-collection-card__wrapper m:text-center"
  20364.    
  20365.    style=""
  20366.  >
  20367.    <a
  20368.      href="/collections/pallet-moving-equipment-accessories"
  20369.      class="m-collection-card__image m:block "
  20370.      aria-label="Pallet Moving Equipment & Accessories"
  20371.      style=""
  20372.    >
  20373.      <div class="m-hover-box__wrapper collection-card-desktop">
  20374.        
  20375.          
  20376. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20377.  
  20378.  <img
  20379.      srcset="//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866&width=165 165w,//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866&width=360 360w,//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866 500w"
  20380.      src="//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866&width=360"
  20381.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20382.      alt=""
  20383.      loading="lazy"
  20384.      class="m:w-full"
  20385.      width="500"
  20386.      height="519"
  20387.      
  20388.  >
  20389.  
  20390.  <noscript>
  20391.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?crop=center&height=2048&v=1741831866&width=2048" alt="">
  20392.  </noscript>
  20393. </responsive-image>
  20394.  
  20395.        
  20396.      </div>
  20397.      
  20398.        <div class="m-hover-box__wrapper collection-card-mobile">
  20399.        
  20400.          
  20401. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20402.  
  20403.  <img
  20404.      srcset="//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866&width=165 165w,//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866&width=360 360w,//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866 500w"
  20405.      src="//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866&width=360"
  20406.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20407.      alt=""
  20408.      loading="lazy"
  20409.      class="m:w-full"
  20410.      width="500"
  20411.      height="519"
  20412.      
  20413.  >
  20414.  
  20415.  <noscript>
  20416.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?crop=center&height=2048&v=1741831866&width=2048" alt="">
  20417.  </noscript>
  20418. </responsive-image>
  20419.  
  20420.        
  20421.        </div>
  20422.      
  20423.    </a>
  20424.    
  20425.      <div class="m-collection-card__info m:justify-center" style="">
  20426.        
  20427.        
  20428.        
  20429.        
  20430.        
  20431.      </div>
  20432.    
  20433.  </div>
  20434. </div>
  20435. <style>
  20436.  .collection-card-mobile {
  20437.    display: none;
  20438.  }
  20439.  .horizontal_layout-wrapper {
  20440.    display: flex;
  20441.  }
  20442.  @media screen and (max-width: 768px){
  20443.    #collection_custom_button{
  20444.      padding:4px 12px !important;
  20445.      font-size:14px !important;
  20446.    }
  20447.    .collection-card-mobile {
  20448.      display: block;
  20449.    }
  20450.    .collection-card-desktop {
  20451.      display: none;
  20452.    }
  20453.  }
  20454. </style>
  20455.  
  20456.                      </div>
  20457.                    
  20458.                      <div class="m:column">
  20459.                        
  20460.                        <div
  20461.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  20462.  style="
  20463.    --img-rounded: 0px;
  20464.    --img-width: 100%;
  20465.    height:100%;
  20466.  "
  20467. >
  20468.  <div
  20469.    class="m-collection-card__wrapper m:text-center"
  20470.    
  20471.    style=""
  20472.  >
  20473.    <a
  20474.      href="/collections/best-kids-furniture"
  20475.      class="m-collection-card__image m:block "
  20476.      aria-label="Example collection title"
  20477.      style=""
  20478.    >
  20479.      <div class="m-hover-box__wrapper collection-card-desktop">
  20480.        
  20481.          
  20482. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20483.  
  20484.  <img
  20485.      srcset="//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866&width=165 165w,//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866&width=360 360w,//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866 500w"
  20486.      src="//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866&width=360"
  20487.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20488.      alt=""
  20489.      loading="lazy"
  20490.      class="m:w-full"
  20491.      width="500"
  20492.      height="519"
  20493.      
  20494.  >
  20495.  
  20496.  <noscript>
  20497.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?crop=center&height=2048&v=1741831866&width=2048" alt="">
  20498.  </noscript>
  20499. </responsive-image>
  20500.  
  20501.        
  20502.      </div>
  20503.      
  20504.        <div class="m-hover-box__wrapper collection-card-mobile">
  20505.        
  20506.          
  20507. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20508.  
  20509.  <img
  20510.      srcset="//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866&width=165 165w,//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866&width=360 360w,//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866 500w"
  20511.      src="//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866&width=360"
  20512.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20513.      alt=""
  20514.      loading="lazy"
  20515.      class="m:w-full"
  20516.      width="500"
  20517.      height="519"
  20518.      
  20519.  >
  20520.  
  20521.  <noscript>
  20522.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?crop=center&height=2048&v=1741831866&width=2048" alt="">
  20523.  </noscript>
  20524. </responsive-image>
  20525.  
  20526.        
  20527.        </div>
  20528.      
  20529.    </a>
  20530.    
  20531.      <div class="m-collection-card__info m:justify-center" style="">
  20532.        
  20533.        
  20534.        
  20535.        
  20536.        
  20537.      </div>
  20538.    
  20539.  </div>
  20540. </div>
  20541. <style>
  20542.  .collection-card-mobile {
  20543.    display: none;
  20544.  }
  20545.  .horizontal_layout-wrapper {
  20546.    display: flex;
  20547.  }
  20548.  @media screen and (max-width: 768px){
  20549.    #collection_custom_button{
  20550.      padding:4px 12px !important;
  20551.      font-size:14px !important;
  20552.    }
  20553.    .collection-card-mobile {
  20554.      display: block;
  20555.    }
  20556.    .collection-card-desktop {
  20557.      display: none;
  20558.    }
  20559.  }
  20560. </style>
  20561.  
  20562.                      </div>
  20563.                    
  20564.                      <div class="m:column">
  20565.                        
  20566.                        <div
  20567.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  20568.  style="
  20569.    --img-rounded: 0px;
  20570.    --img-width: 100%;
  20571.    height:100%;
  20572.  "
  20573. >
  20574.  <div
  20575.    class="m-collection-card__wrapper m:text-center"
  20576.    
  20577.    style=""
  20578.  >
  20579.    <a
  20580.      href="/collections/safety-bollard"
  20581.      class="m-collection-card__image m:block "
  20582.      aria-label="Example collection title"
  20583.      style=""
  20584.    >
  20585.      <div class="m-hover-box__wrapper collection-card-desktop">
  20586.        
  20587.          
  20588. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20589.  
  20590.  <img
  20591.      srcset="//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045&width=165 165w,//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045&width=360 360w,//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045 500w"
  20592.      src="//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045&width=360"
  20593.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20594.      alt=""
  20595.      loading="lazy"
  20596.      class="m:w-full"
  20597.      width="500"
  20598.      height="519"
  20599.      
  20600.  >
  20601.  
  20602.  <noscript>
  20603.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?crop=center&height=2048&v=1741140045&width=2048" alt="">
  20604.  </noscript>
  20605. </responsive-image>
  20606.  
  20607.        
  20608.      </div>
  20609.      
  20610.        <div class="m-hover-box__wrapper collection-card-mobile">
  20611.        
  20612.          
  20613. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20614.  
  20615.  <img
  20616.      srcset="//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045&width=165 165w,//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045&width=360 360w,//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045 500w"
  20617.      src="//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045&width=360"
  20618.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20619.      alt=""
  20620.      loading="lazy"
  20621.      class="m:w-full"
  20622.      width="500"
  20623.      height="519"
  20624.      
  20625.  >
  20626.  
  20627.  <noscript>
  20628.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?crop=center&height=2048&v=1741140045&width=2048" alt="">
  20629.  </noscript>
  20630. </responsive-image>
  20631.  
  20632.        
  20633.        </div>
  20634.      
  20635.    </a>
  20636.    
  20637.      <div class="m-collection-card__info m:justify-center" style="">
  20638.        
  20639.        
  20640.        
  20641.        
  20642.        
  20643.      </div>
  20644.    
  20645.  </div>
  20646. </div>
  20647. <style>
  20648.  .collection-card-mobile {
  20649.    display: none;
  20650.  }
  20651.  .horizontal_layout-wrapper {
  20652.    display: flex;
  20653.  }
  20654.  @media screen and (max-width: 768px){
  20655.    #collection_custom_button{
  20656.      padding:4px 12px !important;
  20657.      font-size:14px !important;
  20658.    }
  20659.    .collection-card-mobile {
  20660.      display: block;
  20661.    }
  20662.    .collection-card-desktop {
  20663.      display: none;
  20664.    }
  20665.  }
  20666. </style>
  20667.  
  20668.                      </div>
  20669.                    
  20670.                  
  20671.                </div>
  20672.              </div>
  20673.              
  20674.            </div>
  20675.          </m-collection-list>
  20676.        </div>
  20677.        <div class="desktop_slider">
  20678.          <m-collection-list
  20679.            data-enable-slider="false"
  20680.            
  20681.            class="m-collection-list__inner m:block"
  20682.          >
  20683.            <div
  20684.              class="m-mixed-layout m-mixed-layout--mobile-grid"
  20685.              
  20686.                style="
  20687.                  --grid-columns-mobile: 2;
  20688.                  --mobile-column-width: 40vw;
  20689.                "
  20690.              
  20691.            >
  20692.              <div class="m-mixed-layout__wrapper">
  20693.                <div class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-4-cols xl:m:grid-4-cols">
  20694.                  
  20695.                    
  20696.                      <div class="m:column">
  20697.                        
  20698.                        <div
  20699.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  20700.  style="
  20701.    --img-rounded: 0px;
  20702.    --img-width: 100%;
  20703.    height:100%;
  20704.  "
  20705. >
  20706.  <div
  20707.    class="m-collection-card__wrapper m:text-center"
  20708.    
  20709.    style=""
  20710.  >
  20711.    <a
  20712.      href="/collections/fuel-transfer-lubrication"
  20713.      class="m-collection-card__image m:block "
  20714.      aria-label="Fuel Transfer & Lubrication"
  20715.      style=""
  20716.    >
  20717.      <div class="m-hover-box__wrapper collection-card-desktop">
  20718.        
  20719.          
  20720. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20721.  
  20722.  <img
  20723.      srcset="//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867&width=165 165w,//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867&width=360 360w,//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867 500w"
  20724.      src="//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867&width=360"
  20725.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20726.      alt=""
  20727.      loading="lazy"
  20728.      class="m:w-full"
  20729.      width="500"
  20730.      height="519"
  20731.      
  20732.  >
  20733.  
  20734.  <noscript>
  20735.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?crop=center&height=2048&v=1741831867&width=2048" alt="">
  20736.  </noscript>
  20737. </responsive-image>
  20738.  
  20739.        
  20740.      </div>
  20741.      
  20742.        <div class="m-hover-box__wrapper collection-card-mobile">
  20743.        
  20744.          
  20745. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20746.  
  20747.  <img
  20748.      srcset="//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867&width=165 165w,//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867&width=360 360w,//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867 500w"
  20749.      src="//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?v=1741831867&width=360"
  20750.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20751.      alt=""
  20752.      loading="lazy"
  20753.      class="m:w-full"
  20754.      width="500"
  20755.      height="519"
  20756.      
  20757.  >
  20758.  
  20759.  <noscript>
  20760.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Oil-Drain-Pan_5a232d95-8c21-42df-ba65-2d714f54bfea.jpg?crop=center&height=2048&v=1741831867&width=2048" alt="">
  20761.  </noscript>
  20762. </responsive-image>
  20763.  
  20764.        
  20765.        </div>
  20766.      
  20767.    </a>
  20768.    
  20769.      <div class="m-collection-card__info m:justify-center" style="">
  20770.        
  20771.        
  20772.        
  20773.        
  20774.        
  20775.      </div>
  20776.    
  20777.  </div>
  20778. </div>
  20779. <style>
  20780.  .collection-card-mobile {
  20781.    display: none;
  20782.  }
  20783.  .horizontal_layout-wrapper {
  20784.    display: flex;
  20785.  }
  20786.  @media screen and (max-width: 768px){
  20787.    #collection_custom_button{
  20788.      padding:4px 12px !important;
  20789.      font-size:14px !important;
  20790.    }
  20791.    .collection-card-mobile {
  20792.      display: block;
  20793.    }
  20794.    .collection-card-desktop {
  20795.      display: none;
  20796.    }
  20797.  }
  20798. </style>
  20799.  
  20800.                      </div>
  20801.                    
  20802.                      <div class="m:column">
  20803.                        
  20804.                        <div
  20805.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  20806.  style="
  20807.    --img-rounded: 0px;
  20808.    --img-width: 100%;
  20809.    height:100%;
  20810.  "
  20811. >
  20812.  <div
  20813.    class="m-collection-card__wrapper m:text-center"
  20814.    
  20815.    style=""
  20816.  >
  20817.    <a
  20818.      href="/collections/pallet-moving-equipment-accessories"
  20819.      class="m-collection-card__image m:block "
  20820.      aria-label="Pallet Moving Equipment & Accessories"
  20821.      style=""
  20822.    >
  20823.      <div class="m-hover-box__wrapper collection-card-desktop">
  20824.        
  20825.          
  20826. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20827.  
  20828.  <img
  20829.      srcset="//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866&width=165 165w,//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866&width=360 360w,//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866 500w"
  20830.      src="//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866&width=360"
  20831.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20832.      alt=""
  20833.      loading="lazy"
  20834.      class="m:w-full"
  20835.      width="500"
  20836.      height="519"
  20837.      
  20838.  >
  20839.  
  20840.  <noscript>
  20841.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?crop=center&height=2048&v=1741831866&width=2048" alt="">
  20842.  </noscript>
  20843. </responsive-image>
  20844.  
  20845.        
  20846.      </div>
  20847.      
  20848.        <div class="m-hover-box__wrapper collection-card-mobile">
  20849.        
  20850.          
  20851. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20852.  
  20853.  <img
  20854.      srcset="//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866&width=165 165w,//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866&width=360 360w,//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866 500w"
  20855.      src="//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?v=1741831866&width=360"
  20856.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20857.      alt=""
  20858.      loading="lazy"
  20859.      class="m:w-full"
  20860.      width="500"
  20861.      height="519"
  20862.      
  20863.  >
  20864.  
  20865.  <noscript>
  20866.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Pallet-Moving.jpg?crop=center&height=2048&v=1741831866&width=2048" alt="">
  20867.  </noscript>
  20868. </responsive-image>
  20869.  
  20870.        
  20871.        </div>
  20872.      
  20873.    </a>
  20874.    
  20875.      <div class="m-collection-card__info m:justify-center" style="">
  20876.        
  20877.        
  20878.        
  20879.        
  20880.        
  20881.      </div>
  20882.    
  20883.  </div>
  20884. </div>
  20885. <style>
  20886.  .collection-card-mobile {
  20887.    display: none;
  20888.  }
  20889.  .horizontal_layout-wrapper {
  20890.    display: flex;
  20891.  }
  20892.  @media screen and (max-width: 768px){
  20893.    #collection_custom_button{
  20894.      padding:4px 12px !important;
  20895.      font-size:14px !important;
  20896.    }
  20897.    .collection-card-mobile {
  20898.      display: block;
  20899.    }
  20900.    .collection-card-desktop {
  20901.      display: none;
  20902.    }
  20903.  }
  20904. </style>
  20905.  
  20906.                      </div>
  20907.                    
  20908.                      <div class="m:column">
  20909.                        
  20910.                        <div
  20911.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  20912.  style="
  20913.    --img-rounded: 0px;
  20914.    --img-width: 100%;
  20915.    height:100%;
  20916.  "
  20917. >
  20918.  <div
  20919.    class="m-collection-card__wrapper m:text-center"
  20920.    
  20921.    style=""
  20922.  >
  20923.    <a
  20924.      href="/collections/best-kids-furniture"
  20925.      class="m-collection-card__image m:block "
  20926.      aria-label="Example collection title"
  20927.      style=""
  20928.    >
  20929.      <div class="m-hover-box__wrapper collection-card-desktop">
  20930.        
  20931.          
  20932. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20933.  
  20934.  <img
  20935.      srcset="//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866&width=165 165w,//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866&width=360 360w,//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866 500w"
  20936.      src="//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866&width=360"
  20937.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20938.      alt=""
  20939.      loading="lazy"
  20940.      class="m:w-full"
  20941.      width="500"
  20942.      height="519"
  20943.      
  20944.  >
  20945.  
  20946.  <noscript>
  20947.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?crop=center&height=2048&v=1741831866&width=2048" alt="">
  20948.  </noscript>
  20949. </responsive-image>
  20950.  
  20951.        
  20952.      </div>
  20953.      
  20954.        <div class="m-hover-box__wrapper collection-card-mobile">
  20955.        
  20956.          
  20957. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  20958.  
  20959.  <img
  20960.      srcset="//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866&width=165 165w,//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866&width=360 360w,//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866 500w"
  20961.      src="//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?v=1741831866&width=360"
  20962.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  20963.      alt=""
  20964.      loading="lazy"
  20965.      class="m:w-full"
  20966.      width="500"
  20967.      height="519"
  20968.      
  20969.  >
  20970.  
  20971.  <noscript>
  20972.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/Kids-Furniture.jpg?crop=center&height=2048&v=1741831866&width=2048" alt="">
  20973.  </noscript>
  20974. </responsive-image>
  20975.  
  20976.        
  20977.        </div>
  20978.      
  20979.    </a>
  20980.    
  20981.      <div class="m-collection-card__info m:justify-center" style="">
  20982.        
  20983.        
  20984.        
  20985.        
  20986.        
  20987.      </div>
  20988.    
  20989.  </div>
  20990. </div>
  20991. <style>
  20992.  .collection-card-mobile {
  20993.    display: none;
  20994.  }
  20995.  .horizontal_layout-wrapper {
  20996.    display: flex;
  20997.  }
  20998.  @media screen and (max-width: 768px){
  20999.    #collection_custom_button{
  21000.      padding:4px 12px !important;
  21001.      font-size:14px !important;
  21002.    }
  21003.    .collection-card-mobile {
  21004.      display: block;
  21005.    }
  21006.    .collection-card-desktop {
  21007.      display: none;
  21008.    }
  21009.  }
  21010. </style>
  21011.  
  21012.                      </div>
  21013.                    
  21014.                      <div class="m:column">
  21015.                        
  21016.                        <div
  21017.  class="m-collection-card m-collection-card--standard m-gradient m-color-background-1"
  21018.  style="
  21019.    --img-rounded: 0px;
  21020.    --img-width: 100%;
  21021.    height:100%;
  21022.  "
  21023. >
  21024.  <div
  21025.    class="m-collection-card__wrapper m:text-center"
  21026.    
  21027.    style=""
  21028.  >
  21029.    <a
  21030.      href="/collections/safety-bollard"
  21031.      class="m-collection-card__image m:block "
  21032.      aria-label="Example collection title"
  21033.      style=""
  21034.    >
  21035.      <div class="m-hover-box__wrapper collection-card-desktop">
  21036.        
  21037.          
  21038. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  21039.  
  21040.  <img
  21041.      srcset="//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045&width=165 165w,//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045&width=360 360w,//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045 500w"
  21042.      src="//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045&width=360"
  21043.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  21044.      alt=""
  21045.      loading="lazy"
  21046.      class="m:w-full"
  21047.      width="500"
  21048.      height="519"
  21049.      
  21050.  >
  21051.  
  21052.  <noscript>
  21053.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?crop=center&height=2048&v=1741140045&width=2048" alt="">
  21054.  </noscript>
  21055. </responsive-image>
  21056.  
  21057.        
  21058.      </div>
  21059.      
  21060.        <div class="m-hover-box__wrapper collection-card-mobile">
  21061.        
  21062.          
  21063. <responsive-image class="m-image "   style="--aspect-ratio: 0.9633911368015414;">
  21064.  
  21065.  <img
  21066.      srcset="//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045&width=165 165w,//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045&width=360 360w,//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045 500w"
  21067.      src="//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?v=1741140045&width=360"
  21068.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  21069.      alt=""
  21070.      loading="lazy"
  21071.      class="m:w-full"
  21072.      width="500"
  21073.      height="519"
  21074.      
  21075.  >
  21076.  
  21077.  <noscript>
  21078.    <img class="m:w-full" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/3-322x334_6fbb251b-97f5-4346-a089-45dfde64ea76.jpg?crop=center&height=2048&v=1741140045&width=2048" alt="">
  21079.  </noscript>
  21080. </responsive-image>
  21081.  
  21082.        
  21083.        </div>
  21084.      
  21085.    </a>
  21086.    
  21087.      <div class="m-collection-card__info m:justify-center" style="">
  21088.        
  21089.        
  21090.        
  21091.        
  21092.        
  21093.      </div>
  21094.    
  21095.  </div>
  21096. </div>
  21097. <style>
  21098.  .collection-card-mobile {
  21099.    display: none;
  21100.  }
  21101.  .horizontal_layout-wrapper {
  21102.    display: flex;
  21103.  }
  21104.  @media screen and (max-width: 768px){
  21105.    #collection_custom_button{
  21106.      padding:4px 12px !important;
  21107.      font-size:14px !important;
  21108.    }
  21109.    .collection-card-mobile {
  21110.      display: block;
  21111.    }
  21112.    .collection-card-desktop {
  21113.      display: none;
  21114.    }
  21115.  }
  21116. </style>
  21117.  
  21118.                      </div>
  21119.                    
  21120.                  
  21121.                </div>
  21122.              </div>
  21123.              
  21124.            </div>
  21125.          </m-collection-list>
  21126.        </div>
  21127.      </div>
  21128.    </div>
  21129.  </div>
  21130. </section>
  21131.  
  21132. <style>
  21133.  m-collection-list .m-collection-card__info {
  21134.    overflow: hidden;
  21135.  }
  21136.  m-collection-list .m-collection-card__title {
  21137.    max-width: 100%;
  21138.    overflow-wrap: break-word;
  21139.  }
  21140.  .m-collection-card__link {
  21141.    font-weight: normal;
  21142.  }
  21143.  .mobile_slider {
  21144.    display: none;
  21145.  }
  21146.  @media screen and (max-width: 768px) {
  21147.    .mobile_slider {
  21148.      display: block;
  21149.    }
  21150.    .desktop_slider {
  21151.      display: none;
  21152.    }
  21153.    .m-collection-card__link {
  21154.      font-size: 12px;
  21155.    }
  21156.  }
  21157.  /* .m:column.swiper-slide.swiper-slide-duplicate{
  21158.      width:33% !important;
  21159.    } */
  21160.  
  21161.  @media (max-width: 640px) {
  21162.    .m-button {
  21163.      font-size: 12px;
  21164.    }
  21165.  }
  21166. </style>
  21167.  
  21168.  
  21169. </div><div id="shopify-section-template--24257712095545__product_tabs_n8Xacw" class="shopify-section"><link href="//www.garvee.com/cdn/shop/t/132/assets/section-product-tabs.css?v=109810401480480645101740986012" rel="stylesheet" type="text/css" media="all" />
  21170. <link href="//www.garvee.com/cdn/shop/t/132/assets/component-product-card.css?v=63559463559402183161741331241" rel="stylesheet" type="text/css" media="all" />
  21171.  
  21172. <section
  21173.  class="m-section m-section--padding m-section--header-separated m-gradient m-color-background-1 "
  21174.  data-product-card-style="2"
  21175.  style="
  21176.    --column-gap: 5px;
  21177.    --column-gap-mobile: 5px;
  21178.    --row-gap: 5px;
  21179.    --row-gap-mobile: 5px;
  21180.    --items: 4;
  21181.    --section-padding-top: 30px;
  21182.    --section-padding-bottom: 20px;
  21183.  "
  21184. >
  21185.  <div
  21186.    class="m-page-width "
  21187.    
  21188.  >
  21189.    <product-tabs
  21190.      class="m-product-tabs m-section__wrapper"
  21191.      data-url="/search?section_id=template--24257712095545__product_tabs_n8Xacw&type=product&q="
  21192.      data-product-to-show="8"
  21193.      data-items="4"
  21194.      data-laptop-items="4"
  21195.      data-tablet-items="3"
  21196.      data-mobile-items="2"
  21197.      data-show-pagination="false"
  21198.      data-show-navigation="false"
  21199.      data-pagination-type="fraction"
  21200.      data-mobile-layout="col-2"
  21201.      data-section-id="template--24257712095545__product_tabs_n8Xacw"
  21202.    >
  21203.      <div class="m-section__header m-section__header--style-1"><h2
  21204.            class="m-section__heading h4"
  21205.            style="text-align:left"
  21206.          >
  21207.            More Ways to Save
  21208.          </h2><div class="m-product-tabs__buttons m:display-flex">
  21209.          <div class="m-product-tabs__buttons-inner m-product-tabs__buttons--style-1">
  21210. <button
  21211.                  data-tab-index="0"
  21212.                  class="m-product-tabs__button"
  21213.                  
  21214.                ><span class="m-product-tabs__button-text">Outdoor Shade</span>
  21215.                </button>
  21216. <button
  21217.                  data-tab-index="1"
  21218.                  class="m-product-tabs__button"
  21219.                  
  21220.                ><span class="m-product-tabs__button-text">Air Conditioners</span>
  21221.                </button>
  21222. <button
  21223.                  data-tab-index="2"
  21224.                  class="m-product-tabs__button"
  21225.                  
  21226.                ><span class="m-product-tabs__button-text">Agriculture & Forestry Equipment</span>
  21227.                </button>
  21228. <button
  21229.                  data-tab-index="3"
  21230.                  class="m-product-tabs__button"
  21231.                  
  21232.                ><span class="m-product-tabs__button-text">Ride on Toys</span>
  21233.                </button>
  21234. <button
  21235.                  data-tab-index="4"
  21236.                  class="m-product-tabs__button"
  21237.                  
  21238.                ><span class="m-product-tabs__button-text">Pet Grooming Products</span>
  21239.                </button></div>
  21240.        </div>
  21241.      </div>
  21242.      <div class="m-product-tabs__contents m-section__content">
  21243.        
  21244.      </div>
  21245.      
  21246.      
  21247.      
  21248.      
  21249.      
  21250.  
  21251.      <template><div
  21252.              class="m-product-tabs__content m-product-tabs__inner m-mixed-layout m-mixed-layout--mobile-grid"
  21253.              data-tab-index="0"
  21254.              data-enable-slider="false"
  21255.              
  21256.            >
  21257.              <div class="m-mixed-layout__wrapper">
  21258.                <div
  21259.                  class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-4-cols xl:m:grid-4-cols"
  21260.                  
  21261.                    style="
  21262.                      --grid-columns-mobile: 2;
  21263.                      --mobile-column-width: 40vw;
  21264.                    "
  21265.                  
  21266.                >
  21267.                    
  21268.                    
  21269.                    
  21270.                      
  21271.                        <div class="m:column">
  21272.                          
  21273.  
  21274.  
  21275. <div
  21276.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  21277.  data-view="card"
  21278.  
  21279.  data-product-id="9482975936825"
  21280.  
  21281. >
  21282.  
  21283.  <div class="m-product-card__wrapper">
  21284.    <div class="m-product-card__media">
  21285.      <a
  21286.        class="m-product-card__link m:block m:w-full"
  21287.        href="/products/canopy-tent-pho-12c3"
  21288.        aria-label="GARVEE 13x13ft Pop-Up Canopy Tent with Mosquito Netting, Portable Outdoor Shelter for Lawn Garden Backyard Deck (Khaki & Dark Khaki)"
  21289.        style="position: relative;"
  21290.      >
  21291.          
  21292.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  21293.            <img src="//www.garvee.com/cdn/shop/files/fe17407284306145713.jpg?v=1744774305&amp;width=1100" alt="GARVEE 13x13ft Pop-Up Canopy Tent with Mosquito Netting, Portable Outdoor Shelter for Lawn Garden Backyard Deck (Khaki &amp; Dark Khaki)" srcset="//www.garvee.com/cdn/shop/files/fe17407284306145713.jpg?v=1744774305&amp;width=165 165w, //www.garvee.com/cdn/shop/files/fe17407284306145713.jpg?v=1744774305&amp;width=352 352w, //www.garvee.com/cdn/shop/files/fe17407284306145713.jpg?v=1744774305&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  21294.          </responsive-image>
  21295.  
  21296.        <div class="badges-wrapper">
  21297.          
  21298.            
  21299.              
  21300.            
  21301.              
  21302.            
  21303.              
  21304.            
  21305.              
  21306.            
  21307.              
  21308.            
  21309.              
  21310.            
  21311.              
  21312.            
  21313.              
  21314.            
  21315.              
  21316.            
  21317.              
  21318.            
  21319.              
  21320.            
  21321.              
  21322.            
  21323.              
  21324.            
  21325.              
  21326.            
  21327.              
  21328.            
  21329.              
  21330.            
  21331.              
  21332.            
  21333.              
  21334.            
  21335.              
  21336.            
  21337.              
  21338.            
  21339.              
  21340.            
  21341.              
  21342.            
  21343.              
  21344.            
  21345.              
  21346.            
  21347.              
  21348.            
  21349.              
  21350.            
  21351.              
  21352.            
  21353.              
  21354.            
  21355.          
  21356.        </div>
  21357.      </a></div>
  21358.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  21359.      <a class="m-product-card__hidden-link m:hidden" href="/products/canopy-tent-pho-12c3" aria-label="GARVEE 13x13ft Pop-Up Canopy Tent with Mosquito Netting, Portable Outdoor Shelter for Lawn Garden Backyard Deck (Khaki & Dark Khaki)"></a>
  21360.      <div class="m-product-card__info">
  21361.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  21362.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  21363.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  21364.                
  21365.                  style="display:none;"
  21366.                
  21367.              >Sold Out</span><span
  21368.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  21369.              data-foxkit-preorder-badge="9482975936825"
  21370.            ></span>
  21371.            
  21372. <div style="display:flex;">
  21373.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-48%
  21374. </span>
  21375.              </div>
  21376.            
  21377.          </div>
  21378.          
  21379.            <!-- <span style="font-size:12px;font-weight:bold;color:rgb(205,34,21,0.8);">Father's Day Deal</span> -->
  21380.          
  21381.        </div><h3 class="m-product-card__title h6">
  21382.          <a
  21383.            href="/products/canopy-tent-pho-12c3"
  21384.            class="m-product-card__name"
  21385.            style="font-weight:normal;"
  21386.          >
  21387.            GARVEE 13x13ft Pop-Up Canopy Tent with Mosquito Netting, Portable Outdoor Shelter for Lawn Garden Backyard Deck (Khaki & Dark Khaki)
  21388.          </a>
  21389.        </h3>
  21390.  
  21391.        
  21392.          <div class="m-product-card__reviews">
  21393.            
  21394.  
  21395.    
  21396.    
  21397.      
  21398.  
  21399.  
  21400.  <div
  21401.    style=""
  21402.    class="jdgm-widget jdgm-preview-badge"
  21403.    data-id="9482975936825"
  21404.    data-template="manual-installation"
  21405.    data-auto-install="false"
  21406.  >
  21407.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.72' data-number-of-reviews='88' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.72' tabindex='0' aria-label='4.72 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--half'></span> </span> <span class='jdgm-prev-badge__text'> 88 reviews </span> </div>
  21408.  </div>
  21409.  
  21410.  
  21411. <style>
  21412.  @media screen and (max-width: 768px){
  21413.    .jdgm-qa-badge{
  21414.      display:none;
  21415.    }
  21416.    .jdgm-histogram{
  21417.    float:none;
  21418.  }
  21419.  }
  21420.  .jdgm-widget.jdgm-preview-badge{
  21421.    display:block !important;
  21422.  }
  21423.  .jdgm-sort-dropdown-arrow:before{
  21424.    position: relative;
  21425.    left: -8px;
  21426.  }
  21427. </style>
  21428.  
  21429.    
  21430.  
  21431.  
  21432.          </div>
  21433.        
  21434.  
  21435.        <div class="m-product-card__price">
  21436.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  21437. <div
  21438.  class="
  21439.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  21440.  data-sale-badge-type="percentage"
  21441. >
  21442.  <div class="m-price__regular">
  21443.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  21444.    <span class="m-price-item m-price-item--regular ">
  21445.      $199.99
  21446.    </span>
  21447.  </div>
  21448.  <div class="m-price__sale">
  21449.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  21450.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  21451.      $199.99
  21452.    </span>
  21453.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  21454.      <s class="m-price-item m-price-item--regular">
  21455.        
  21456.          $389.99
  21457.        
  21458.      </s></div>
  21459.  <div class="m-price__unit-wrapper m:hidden">
  21460.    <span class="m:visually-hidden">Unit price</span>
  21461.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  21462.  </div>
  21463.  
  21464.  
  21465. </div>
  21466.  
  21467. <style>
  21468.  .m-product-tag.m-product-tag--discounted.isSpring {
  21469.    background: #EC7521;
  21470.    color: #E6EBB3;
  21471.  }
  21472. </style>
  21473.  
  21474.        </div>
  21475.  
  21476.        
  21477.  
  21478.        
  21479.  
  21480.        <div class="m-product-card__description">
  21481.          Specifications Brand GARVEE Material Oxford fabric Style Garden Frame Material Alloy Steel Water Resistance Level...
  21482.        </div></div>
  21483.      <div class="m-product-card__quick-add ">
  21484.    <product-form class="m-product-form m:w-full m:block" data-product-id="49450941579577"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49450941579577" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49450941579577" data-selected-variant=""><button
  21485.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  21486.          name="add"
  21487.          
  21488.          aria-label="Add to cart"
  21489.        >
  21490.          <span class="m-spinner-icon">
  21491.            <svg
  21492.              class="animate-spin m-svg-icon--medium"
  21493.              viewBox="0 0 24 24"
  21494.              fill="none"
  21495.            >
  21496.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  21497.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  21498.            </svg>
  21499.          </span>
  21500.          
  21501.          <span class="m-add-to-cart--text" data-atc-text>
  21502.            
  21503.              Add to cart
  21504.            
  21505.          </span>
  21506.        </button><input type="hidden" name="product-id" value="9482975936825" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  21507.  
  21508.    <!--
  21509.      
  21510.        <input hidden name="id" required value="49450941579577" data-selected-variant="">
  21511.        <button
  21512.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  21513.          data-product-url="/products/canopy-tent-pho-12c3"
  21514.          data-product-id="9482975936825"
  21515.          data-product-handle="canopy-tent-pho-12c3"
  21516.          aria-label="Add to cart"
  21517.        >
  21518.          <span class="m-spinner-icon">
  21519.            <svg
  21520.              class="animate-spin m-svg-icon--medium"
  21521.              xmlns="http://www.w3.org/2000/svg"
  21522.              viewBox="0 0 24 24"
  21523.              fill="none"
  21524.            >
  21525.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  21526.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  21527.            </svg>
  21528.          </span>
  21529.          
  21530.          <span class="m-add-to-cart--text">Add to cart</span>
  21531.        </button>
  21532.      
  21533.    -->
  21534.  
  21535. </div>
  21536. <style>
  21537.  @media screen and (max-width: 768px){
  21538.    .m-product-card__quick-add{
  21539.      /* display:none; */
  21540.      /* margin:5px auto 0 auto !important; */
  21541.      margin-top:5px !important;
  21542.    }
  21543.    .m-product-card__quick-add .m-add-to-cart{
  21544.      height:30px;
  21545.    }
  21546.    .m-product-card__quick-add .m-add-to-cart--text{
  21547.      font-size:14px !important;
  21548.    }
  21549.  }
  21550.  
  21551. </style>
  21552.  
  21553.    </div>
  21554.  </div>
  21555.  <input hidden name="id" required value="49450941579577" data-selected-variant="">
  21556. </div><script></script>
  21557. <style>
  21558.  .media_banner_collection {
  21559.    position: absolute;
  21560.    top:0;
  21561.    left:0;
  21562.    width: 20%;
  21563.    z-index:10;
  21564.  }
  21565.  .badges-wrapper {
  21566.    position: absolute;
  21567.    top:0;
  21568.    right:0;
  21569.    z-index:10;
  21570.  }
  21571.    /* .triangle_left{
  21572.      position: relative;
  21573.    }
  21574.    .triangle_left::after{
  21575.      content:'';
  21576.      width: 0;
  21577.      height: 0;
  21578.      position: absolute;
  21579.      border-top: 13px solid transparent;
  21580.      border-bottom: 13px solid transparent;
  21581.      border-right: 0px solid transparent;
  21582.      border-left: 13px solid #CD2215;
  21583.      left:100%;
  21584.    } */
  21585.  .m-product-card__wrapper{
  21586.    display:flex;
  21587.    flex-direction:column;
  21588.    height:100%;
  21589.  }
  21590.      .m-product-card__info{
  21591.      display: flex;
  21592.      flex-direction: column;
  21593.    }
  21594.      .m-product-card__price{
  21595.      order:1;
  21596.    }
  21597.    .m-product-card__title{
  21598.      order:2;
  21599.    }
  21600.    .m-product-card__reviews{
  21601.      order:3;
  21602.    }
  21603.    .m-product-shipping__content{
  21604.      order:4;
  21605.    }
  21606.    .m-product-shipping__text{
  21607.      font-size:11px !important;
  21608.    }
  21609.  .m-product-card--style-2 .m-product-card__name {
  21610.    font-size: 14px;
  21611.  }
  21612.    @media screen and (max-width: 768px) {
  21613.      /* .triangle_left::after{
  21614.      border-top: 11px solid transparent;
  21615.      border-bottom: 11px solid transparent;
  21616.      border-left: 11px solid #CD2215;
  21617.    } */
  21618.  
  21619.    .m-product-card--style-2 .m-product-card__name {
  21620.      line-height: 1.3;
  21621.      -webkit-line-clamp: 2;
  21622.      font-size: 12px;
  21623.    }
  21624.    .m-product-card--style-2 .m-price-item--last {
  21625.      font-size: 18px;
  21626.    }
  21627.    .m-product-shipping__content {
  21628.      display: none;
  21629.    }
  21630.  }
  21631. </style>
  21632.  
  21633.  
  21634.                        </div>
  21635.                      
  21636.                        <div class="m:column">
  21637.                          
  21638.  
  21639.  
  21640. <div
  21641.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  21642.  data-view="card"
  21643.  
  21644.  data-product-id="9508471767353"
  21645.  
  21646. >
  21647.  
  21648.  <div class="m-product-card__wrapper">
  21649.    <div class="m-product-card__media">
  21650.      <a
  21651.        class="m-product-card__link m:block m:w-full"
  21652.        href="/products/garvee-garveelife-10x10-commercial-pop-up-pou-0a39mqkv"
  21653.        aria-label="GARVEE 10'x10' Commercial Pop-Up Canopy Portable Outdoor Tent with 1 Sidewall, 4 Stakes, Ropes, Weight Bags & Wheel Bag, White"
  21654.        style="position: relative;"
  21655.      >
  21656.          
  21657.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  21658.            <img src="//www.garvee.com/cdn/shop/files/1716605369153.jpg?v=1740992313&amp;width=1100" alt="GARVEE 10&#39;x10&#39; Commercial Pop-Up Canopy Portable Outdoor Tent with 1 Sidewall, 4 Stakes, Ropes, Weight Bags &amp; Wheel Bag, White" srcset="//www.garvee.com/cdn/shop/files/1716605369153.jpg?v=1740992313&amp;width=165 165w, //www.garvee.com/cdn/shop/files/1716605369153.jpg?v=1740992313&amp;width=352 352w, //www.garvee.com/cdn/shop/files/1716605369153.jpg?v=1740992313&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  21659.          </responsive-image>
  21660.  
  21661.        <div class="badges-wrapper">
  21662.          
  21663.            
  21664.              
  21665.            
  21666.              
  21667.            
  21668.              
  21669.            
  21670.              
  21671.            
  21672.              
  21673.            
  21674.              
  21675.            
  21676.              
  21677.            
  21678.              
  21679.            
  21680.              
  21681.            
  21682.              
  21683.            
  21684.              
  21685.            
  21686.              
  21687.            
  21688.              
  21689.            
  21690.              
  21691.            
  21692.              
  21693.            
  21694.              
  21695.            
  21696.              
  21697.            
  21698.              
  21699.            
  21700.              
  21701.            
  21702.              
  21703.            
  21704.              
  21705.            
  21706.              
  21707.            
  21708.              
  21709.            
  21710.              
  21711.            
  21712.              
  21713.            
  21714.          
  21715.        </div>
  21716.      </a></div>
  21717.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  21718.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-garveelife-10x10-commercial-pop-up-pou-0a39mqkv" aria-label="GARVEE 10'x10' Commercial Pop-Up Canopy Portable Outdoor Tent with 1 Sidewall, 4 Stakes, Ropes, Weight Bags & Wheel Bag, White"></a>
  21719.      <div class="m-product-card__info">
  21720.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  21721.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  21722.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  21723.                
  21724.                  style="display:none;"
  21725.                
  21726.              >Sold Out</span><span
  21727.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  21728.              data-foxkit-preorder-badge="9508471767353"
  21729.            ></span>
  21730.            
  21731. <div style="display:flex;">
  21732.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-23%
  21733. </span>
  21734.              </div>
  21735.            
  21736.          </div>
  21737.          
  21738.        </div><h3 class="m-product-card__title h6">
  21739.          <a
  21740.            href="/products/garvee-garveelife-10x10-commercial-pop-up-pou-0a39mqkv"
  21741.            class="m-product-card__name"
  21742.            style="font-weight:normal;"
  21743.          >
  21744.            GARVEE 10'x10' Commercial Pop-Up Canopy Portable Outdoor Tent with 1 Sidewall, 4 Stakes, Ropes, Weight Bags & Wheel Bag, White
  21745.          </a>
  21746.        </h3>
  21747.  
  21748.        
  21749.          <div class="m-product-card__reviews">
  21750.            
  21751.  
  21752.    
  21753.    
  21754.      
  21755.  
  21756.  
  21757.  <div
  21758.    style=""
  21759.    class="jdgm-widget jdgm-preview-badge"
  21760.    data-id="9508471767353"
  21761.    data-template="manual-installation"
  21762.    data-auto-install="false"
  21763.  >
  21764.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.31' data-number-of-reviews='35' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.31' tabindex='0' aria-label='4.31 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--half'></span> </span> <span class='jdgm-prev-badge__text'> 35 reviews </span> </div>
  21765.  </div>
  21766.  
  21767.  
  21768. <style>
  21769.  @media screen and (max-width: 768px){
  21770.    .jdgm-qa-badge{
  21771.      display:none;
  21772.    }
  21773.    .jdgm-histogram{
  21774.    float:none;
  21775.  }
  21776.  }
  21777.  .jdgm-widget.jdgm-preview-badge{
  21778.    display:block !important;
  21779.  }
  21780.  .jdgm-sort-dropdown-arrow:before{
  21781.    position: relative;
  21782.    left: -8px;
  21783.  }
  21784. </style>
  21785.  
  21786.    
  21787.  
  21788.  
  21789.          </div>
  21790.        
  21791.  
  21792.        <div class="m-product-card__price">
  21793.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  21794. <div
  21795.  class="
  21796.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  21797.  data-sale-badge-type="percentage"
  21798. >
  21799.  <div class="m-price__regular">
  21800.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  21801.    <span class="m-price-item m-price-item--regular ">
  21802.      $129.99
  21803.    </span>
  21804.  </div>
  21805.  <div class="m-price__sale">
  21806.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  21807.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  21808.      $129.99
  21809.    </span>
  21810.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  21811.      <s class="m-price-item m-price-item--regular">
  21812.        
  21813.          $169.99
  21814.        
  21815.      </s></div>
  21816.  <div class="m-price__unit-wrapper m:hidden">
  21817.    <span class="m:visually-hidden">Unit price</span>
  21818.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  21819.  </div>
  21820.  
  21821.  
  21822. </div>
  21823.  
  21824. <style>
  21825.  .m-product-tag.m-product-tag--discounted.isSpring {
  21826.    background: #EC7521;
  21827.    color: #E6EBB3;
  21828.  }
  21829. </style>
  21830.  
  21831.        </div>
  21832.  
  21833.        
  21834.  
  21835.        
  21836.  
  21837.        <div class="m-product-card__description">
  21838.          Experience superior outdoor protection with the GARVEE Commercial Pop Up Canopy GARVEE Commercial Pop Up...
  21839.        </div></div>
  21840.      <div class="m-product-card__quick-add ">
  21841.    <product-form class="m-product-form m:w-full m:block" data-product-id="49546496606521"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49546496606521" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49546496606521" data-selected-variant=""><button
  21842.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  21843.          name="add"
  21844.          
  21845.          aria-label="Add to cart"
  21846.        >
  21847.          <span class="m-spinner-icon">
  21848.            <svg
  21849.              class="animate-spin m-svg-icon--medium"
  21850.              viewBox="0 0 24 24"
  21851.              fill="none"
  21852.            >
  21853.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  21854.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  21855.            </svg>
  21856.          </span>
  21857.          
  21858.          <span class="m-add-to-cart--text" data-atc-text>
  21859.            
  21860.              Add to cart
  21861.            
  21862.          </span>
  21863.        </button><input type="hidden" name="product-id" value="9508471767353" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  21864.  
  21865.    <!--
  21866.      
  21867.        <input hidden name="id" required value="49546496606521" data-selected-variant="">
  21868.        <button
  21869.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  21870.          data-product-url="/products/garvee-garveelife-10x10-commercial-pop-up-pou-0a39mqkv"
  21871.          data-product-id="9508471767353"
  21872.          data-product-handle="garvee-garveelife-10x10-commercial-pop-up-pou-0a39mqkv"
  21873.          aria-label="Add to cart"
  21874.        >
  21875.          <span class="m-spinner-icon">
  21876.            <svg
  21877.              class="animate-spin m-svg-icon--medium"
  21878.              xmlns="http://www.w3.org/2000/svg"
  21879.              viewBox="0 0 24 24"
  21880.              fill="none"
  21881.            >
  21882.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  21883.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  21884.            </svg>
  21885.          </span>
  21886.          
  21887.          <span class="m-add-to-cart--text">Add to cart</span>
  21888.        </button>
  21889.      
  21890.    -->
  21891.  
  21892. </div>
  21893. <style>
  21894.  @media screen and (max-width: 768px){
  21895.    .m-product-card__quick-add{
  21896.      /* display:none; */
  21897.      /* margin:5px auto 0 auto !important; */
  21898.      margin-top:5px !important;
  21899.    }
  21900.    .m-product-card__quick-add .m-add-to-cart{
  21901.      height:30px;
  21902.    }
  21903.    .m-product-card__quick-add .m-add-to-cart--text{
  21904.      font-size:14px !important;
  21905.    }
  21906.  }
  21907.  
  21908. </style>
  21909.  
  21910.    </div>
  21911.  </div>
  21912.  <input hidden name="id" required value="49546496606521" data-selected-variant="">
  21913. </div><script></script>
  21914. <style>
  21915.  .media_banner_collection {
  21916.    position: absolute;
  21917.    top:0;
  21918.    left:0;
  21919.    width: 20%;
  21920.    z-index:10;
  21921.  }
  21922.  .badges-wrapper {
  21923.    position: absolute;
  21924.    top:0;
  21925.    right:0;
  21926.    z-index:10;
  21927.  }
  21928.    /* .triangle_left{
  21929.      position: relative;
  21930.    }
  21931.    .triangle_left::after{
  21932.      content:'';
  21933.      width: 0;
  21934.      height: 0;
  21935.      position: absolute;
  21936.      border-top: 13px solid transparent;
  21937.      border-bottom: 13px solid transparent;
  21938.      border-right: 0px solid transparent;
  21939.      border-left: 13px solid #CD2215;
  21940.      left:100%;
  21941.    } */
  21942.  .m-product-card__wrapper{
  21943.    display:flex;
  21944.    flex-direction:column;
  21945.    height:100%;
  21946.  }
  21947.      .m-product-card__info{
  21948.      display: flex;
  21949.      flex-direction: column;
  21950.    }
  21951.      .m-product-card__price{
  21952.      order:1;
  21953.    }
  21954.    .m-product-card__title{
  21955.      order:2;
  21956.    }
  21957.    .m-product-card__reviews{
  21958.      order:3;
  21959.    }
  21960.    .m-product-shipping__content{
  21961.      order:4;
  21962.    }
  21963.    .m-product-shipping__text{
  21964.      font-size:11px !important;
  21965.    }
  21966.  .m-product-card--style-2 .m-product-card__name {
  21967.    font-size: 14px;
  21968.  }
  21969.    @media screen and (max-width: 768px) {
  21970.      /* .triangle_left::after{
  21971.      border-top: 11px solid transparent;
  21972.      border-bottom: 11px solid transparent;
  21973.      border-left: 11px solid #CD2215;
  21974.    } */
  21975.  
  21976.    .m-product-card--style-2 .m-product-card__name {
  21977.      line-height: 1.3;
  21978.      -webkit-line-clamp: 2;
  21979.      font-size: 12px;
  21980.    }
  21981.    .m-product-card--style-2 .m-price-item--last {
  21982.      font-size: 18px;
  21983.    }
  21984.    .m-product-shipping__content {
  21985.      display: none;
  21986.    }
  21987.  }
  21988. </style>
  21989.  
  21990.  
  21991.                        </div>
  21992.                      
  21993.                        <div class="m:column">
  21994.                          
  21995.  
  21996.  
  21997. <div
  21998.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  21999.  data-view="card"
  22000.  
  22001.  data-product-id="9508471275833"
  22002.  
  22003. >
  22004.  
  22005.  <div class="m-product-card__wrapper">
  22006.    <div class="m-product-card__media">
  22007.      <a
  22008.        class="m-product-card__link m:block m:w-full"
  22009.        href="/products/garvee-13-x20-carport-heavy-duty-pho-113pmjqm"
  22010.        aria-label="GARVEE 13'x20' Heavy Duty Carport UV Resistant Waterproof Car Canopy with Leg Skirts, Galvanized Steel Frame, Easy Assembly, Yellow"
  22011.        style="position: relative;"
  22012.      >
  22013.          
  22014.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  22015.            <img src="//www.garvee.com/cdn/shop/files/31Xuh1vWVCL_a6eaa6ba-4e69-46e9-a223-7d9ca22d873f.jpg?v=1720082124&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/31Xuh1vWVCL_a6eaa6ba-4e69-46e9-a223-7d9ca22d873f.jpg?v=1720082124&amp;width=165 165w, //www.garvee.com/cdn/shop/files/31Xuh1vWVCL_a6eaa6ba-4e69-46e9-a223-7d9ca22d873f.jpg?v=1720082124&amp;width=352 352w, //www.garvee.com/cdn/shop/files/31Xuh1vWVCL_a6eaa6ba-4e69-46e9-a223-7d9ca22d873f.jpg?v=1720082124&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  22016.          </responsive-image>
  22017.  
  22018.        <div class="badges-wrapper">
  22019.          
  22020.            
  22021.              
  22022.            
  22023.              
  22024.            
  22025.              
  22026.            
  22027.              
  22028.            
  22029.              
  22030.            
  22031.              
  22032.            
  22033.              
  22034.            
  22035.              
  22036.            
  22037.              
  22038.            
  22039.              
  22040.            
  22041.              
  22042.            
  22043.              
  22044.            
  22045.              
  22046.            
  22047.              
  22048.            
  22049.              
  22050.            
  22051.              
  22052.            
  22053.              
  22054.            
  22055.              
  22056.            
  22057.              
  22058.            
  22059.              
  22060.            
  22061.              
  22062.            
  22063.              
  22064.            
  22065.          
  22066.        </div>
  22067.      </a></div>
  22068.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  22069.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-13-x20-carport-heavy-duty-pho-113pmjqm" aria-label="GARVEE 13'x20' Heavy Duty Carport UV Resistant Waterproof Car Canopy with Leg Skirts, Galvanized Steel Frame, Easy Assembly, Yellow"></a>
  22070.      <div class="m-product-card__info">
  22071.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  22072.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  22073.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  22074.                
  22075.                  style="display:none;"
  22076.                
  22077.              >Sold Out</span><span
  22078.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  22079.              data-foxkit-preorder-badge="9508471275833"
  22080.            ></span>
  22081.            
  22082. <div style="display:flex;">
  22083.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-28%
  22084. </span>
  22085.              </div>
  22086.            
  22087.          </div>
  22088.          
  22089.        </div><h3 class="m-product-card__title h6">
  22090.          <a
  22091.            href="/products/garvee-13-x20-carport-heavy-duty-pho-113pmjqm"
  22092.            class="m-product-card__name"
  22093.            style="font-weight:normal;"
  22094.          >
  22095.            GARVEE 13'x20' Heavy Duty Carport UV Resistant Waterproof Car Canopy with Leg Skirts, Galvanized Steel Frame, Easy Assembly, Yellow
  22096.          </a>
  22097.        </h3>
  22098.  
  22099.        
  22100.          <div class="m-product-card__reviews">
  22101.            
  22102.  
  22103.    
  22104.    
  22105.      
  22106.  
  22107.  
  22108.  <div
  22109.    style=""
  22110.    class="jdgm-widget jdgm-preview-badge"
  22111.    data-id="9508471275833"
  22112.    data-template="manual-installation"
  22113.    data-auto-install="false"
  22114.  >
  22115.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.72' data-number-of-reviews='18' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.72' tabindex='0' aria-label='4.72 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--half'></span> </span> <span class='jdgm-prev-badge__text'> 18 reviews </span> </div>
  22116.  </div>
  22117.  
  22118.  
  22119. <style>
  22120.  @media screen and (max-width: 768px){
  22121.    .jdgm-qa-badge{
  22122.      display:none;
  22123.    }
  22124.    .jdgm-histogram{
  22125.    float:none;
  22126.  }
  22127.  }
  22128.  .jdgm-widget.jdgm-preview-badge{
  22129.    display:block !important;
  22130.  }
  22131.  .jdgm-sort-dropdown-arrow:before{
  22132.    position: relative;
  22133.    left: -8px;
  22134.  }
  22135. </style>
  22136.  
  22137.    
  22138.  
  22139.  
  22140.          </div>
  22141.        
  22142.  
  22143.        <div class="m-product-card__price">
  22144.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  22145. <div
  22146.  class="
  22147.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  22148.  data-sale-badge-type="percentage"
  22149. >
  22150.  <div class="m-price__regular">
  22151.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  22152.    <span class="m-price-item m-price-item--regular ">
  22153.      $359.99
  22154.    </span>
  22155.  </div>
  22156.  <div class="m-price__sale">
  22157.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  22158.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  22159.      $359.99
  22160.    </span>
  22161.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  22162.      <s class="m-price-item m-price-item--regular">
  22163.        
  22164.          $499.99
  22165.        
  22166.      </s></div>
  22167.  <div class="m-price__unit-wrapper m:hidden">
  22168.    <span class="m:visually-hidden">Unit price</span>
  22169.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  22170.  </div>
  22171.  
  22172.  
  22173. </div>
  22174.  
  22175. <style>
  22176.  .m-product-tag.m-product-tag--discounted.isSpring {
  22177.    background: #EC7521;
  22178.    color: #E6EBB3;
  22179.  }
  22180. </style>
  22181.  
  22182.        </div>
  22183.  
  22184.        
  22185.  
  22186.        
  22187.  
  22188.        <div class="m-product-card__description">
  22189.          Protect your vehicles with the GARVEE 13'x20' Heavy Duty Carport GARVEE Carport: Ultimate Protection for...
  22190.        </div></div>
  22191.      <div class="m-product-card__quick-add ">
  22192.    <product-form class="m-product-form m:w-full m:block" data-product-id="49546495099193"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49546495099193" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49546495099193" data-selected-variant=""><button
  22193.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  22194.          name="add"
  22195.          
  22196.          aria-label="Add to cart"
  22197.        >
  22198.          <span class="m-spinner-icon">
  22199.            <svg
  22200.              class="animate-spin m-svg-icon--medium"
  22201.              viewBox="0 0 24 24"
  22202.              fill="none"
  22203.            >
  22204.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  22205.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  22206.            </svg>
  22207.          </span>
  22208.          
  22209.          <span class="m-add-to-cart--text" data-atc-text>
  22210.            
  22211.              Add to cart
  22212.            
  22213.          </span>
  22214.        </button><input type="hidden" name="product-id" value="9508471275833" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  22215.  
  22216.    <!--
  22217.      
  22218.        <input hidden name="id" required value="49546495099193" data-selected-variant="">
  22219.        <button
  22220.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  22221.          data-product-url="/products/garvee-13-x20-carport-heavy-duty-pho-113pmjqm"
  22222.          data-product-id="9508471275833"
  22223.          data-product-handle="garvee-13-x20-carport-heavy-duty-pho-113pmjqm"
  22224.          aria-label="Add to cart"
  22225.        >
  22226.          <span class="m-spinner-icon">
  22227.            <svg
  22228.              class="animate-spin m-svg-icon--medium"
  22229.              xmlns="http://www.w3.org/2000/svg"
  22230.              viewBox="0 0 24 24"
  22231.              fill="none"
  22232.            >
  22233.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  22234.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  22235.            </svg>
  22236.          </span>
  22237.          
  22238.          <span class="m-add-to-cart--text">Add to cart</span>
  22239.        </button>
  22240.      
  22241.    -->
  22242.  
  22243. </div>
  22244. <style>
  22245.  @media screen and (max-width: 768px){
  22246.    .m-product-card__quick-add{
  22247.      /* display:none; */
  22248.      /* margin:5px auto 0 auto !important; */
  22249.      margin-top:5px !important;
  22250.    }
  22251.    .m-product-card__quick-add .m-add-to-cart{
  22252.      height:30px;
  22253.    }
  22254.    .m-product-card__quick-add .m-add-to-cart--text{
  22255.      font-size:14px !important;
  22256.    }
  22257.  }
  22258.  
  22259. </style>
  22260.  
  22261.    </div>
  22262.  </div>
  22263.  <input hidden name="id" required value="49546495099193" data-selected-variant="">
  22264. </div><script></script>
  22265. <style>
  22266.  .media_banner_collection {
  22267.    position: absolute;
  22268.    top:0;
  22269.    left:0;
  22270.    width: 20%;
  22271.    z-index:10;
  22272.  }
  22273.  .badges-wrapper {
  22274.    position: absolute;
  22275.    top:0;
  22276.    right:0;
  22277.    z-index:10;
  22278.  }
  22279.    /* .triangle_left{
  22280.      position: relative;
  22281.    }
  22282.    .triangle_left::after{
  22283.      content:'';
  22284.      width: 0;
  22285.      height: 0;
  22286.      position: absolute;
  22287.      border-top: 13px solid transparent;
  22288.      border-bottom: 13px solid transparent;
  22289.      border-right: 0px solid transparent;
  22290.      border-left: 13px solid #CD2215;
  22291.      left:100%;
  22292.    } */
  22293.  .m-product-card__wrapper{
  22294.    display:flex;
  22295.    flex-direction:column;
  22296.    height:100%;
  22297.  }
  22298.      .m-product-card__info{
  22299.      display: flex;
  22300.      flex-direction: column;
  22301.    }
  22302.      .m-product-card__price{
  22303.      order:1;
  22304.    }
  22305.    .m-product-card__title{
  22306.      order:2;
  22307.    }
  22308.    .m-product-card__reviews{
  22309.      order:3;
  22310.    }
  22311.    .m-product-shipping__content{
  22312.      order:4;
  22313.    }
  22314.    .m-product-shipping__text{
  22315.      font-size:11px !important;
  22316.    }
  22317.  .m-product-card--style-2 .m-product-card__name {
  22318.    font-size: 14px;
  22319.  }
  22320.    @media screen and (max-width: 768px) {
  22321.      /* .triangle_left::after{
  22322.      border-top: 11px solid transparent;
  22323.      border-bottom: 11px solid transparent;
  22324.      border-left: 11px solid #CD2215;
  22325.    } */
  22326.  
  22327.    .m-product-card--style-2 .m-product-card__name {
  22328.      line-height: 1.3;
  22329.      -webkit-line-clamp: 2;
  22330.      font-size: 12px;
  22331.    }
  22332.    .m-product-card--style-2 .m-price-item--last {
  22333.      font-size: 18px;
  22334.    }
  22335.    .m-product-shipping__content {
  22336.      display: none;
  22337.    }
  22338.  }
  22339. </style>
  22340.  
  22341.  
  22342.                        </div>
  22343.                      
  22344.                        <div class="m:column">
  22345.                          
  22346.  
  22347.  
  22348. <div
  22349.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  22350.  data-view="card"
  22351.  
  22352.  data-product-id="9682446680377"
  22353.  
  22354. >
  22355.  
  22356.  <div class="m-product-card__wrapper">
  22357.    <div class="m-product-card__media">
  22358.      <a
  22359.        class="m-product-card__link m:block m:w-full"
  22360.        href="/products/garvee-storage-tent-sheds-6x8-ft-pau-0jzsn2yg"
  22361.        aria-label="GARVEE 6'x8' Portable Carport with Rolled-Up Zipper Door, Waterproof Garage for Motorcycle, Bike, Firewood Storage, Grey"
  22362.        style="position: relative;"
  22363.      >
  22364.          
  22365.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  22366.            <img src="//www.garvee.com/cdn/shop/files/61cV9swK77L_74af734c-574f-4786-bc5e-9ed4965a03e2.jpg?v=1734588761&amp;width=1100" alt="GARVEE 6&#39;x8&#39; Portable Carport with Rolled-Up Zipper Door, Waterproof Garage for Motorcycle, Bike, Firewood Storage, Grey" srcset="//www.garvee.com/cdn/shop/files/61cV9swK77L_74af734c-574f-4786-bc5e-9ed4965a03e2.jpg?v=1734588761&amp;width=165 165w, //www.garvee.com/cdn/shop/files/61cV9swK77L_74af734c-574f-4786-bc5e-9ed4965a03e2.jpg?v=1734588761&amp;width=352 352w, //www.garvee.com/cdn/shop/files/61cV9swK77L_74af734c-574f-4786-bc5e-9ed4965a03e2.jpg?v=1734588761&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  22367.          </responsive-image>
  22368.  
  22369.        <div class="badges-wrapper">
  22370.          
  22371.            
  22372.              
  22373.            
  22374.              
  22375.            
  22376.              
  22377.            
  22378.              
  22379.            
  22380.              
  22381.            
  22382.              
  22383.            
  22384.              
  22385.            
  22386.              
  22387.            
  22388.              
  22389.            
  22390.              
  22391.            
  22392.              
  22393.            
  22394.              
  22395.            
  22396.              
  22397.            
  22398.              
  22399.            
  22400.              
  22401.            
  22402.              
  22403.            
  22404.              
  22405.            
  22406.              
  22407.            
  22408.              
  22409.            
  22410.              
  22411.            
  22412.              
  22413.            
  22414.              
  22415.            
  22416.          
  22417.        </div>
  22418.      </a></div>
  22419.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  22420.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-storage-tent-sheds-6x8-ft-pau-0jzsn2yg" aria-label="GARVEE 6'x8' Portable Carport with Rolled-Up Zipper Door, Waterproof Garage for Motorcycle, Bike, Firewood Storage, Grey"></a>
  22421.      <div class="m-product-card__info">
  22422.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  22423.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  22424.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  22425.                
  22426.                  style="display:none;"
  22427.                
  22428.              >Sold Out</span><span
  22429.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  22430.              data-foxkit-preorder-badge="9682446680377"
  22431.            ></span>
  22432.            
  22433. <div style="display:flex;">
  22434.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-23%
  22435. </span>
  22436.              </div>
  22437.            
  22438.          </div>
  22439.          
  22440.        </div><h3 class="m-product-card__title h6">
  22441.          <a
  22442.            href="/products/garvee-storage-tent-sheds-6x8-ft-pau-0jzsn2yg"
  22443.            class="m-product-card__name"
  22444.            style="font-weight:normal;"
  22445.          >
  22446.            GARVEE 6'x8' Portable Carport with Rolled-Up Zipper Door, Waterproof Garage for Motorcycle, Bike, Firewood Storage, Grey
  22447.          </a>
  22448.        </h3>
  22449.  
  22450.        
  22451.          <div class="m-product-card__reviews">
  22452.            
  22453.  
  22454.    
  22455.    
  22456.      
  22457.  
  22458.  
  22459.  <div
  22460.    style=""
  22461.    class="jdgm-widget jdgm-preview-badge"
  22462.    data-id="9682446680377"
  22463.    data-template="manual-installation"
  22464.    data-auto-install="false"
  22465.  >
  22466.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.10' data-number-of-reviews='60' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.10' tabindex='0' aria-label='4.10 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--off'></span> </span> <span class='jdgm-prev-badge__text'> 60 reviews </span> </div>
  22467.  </div>
  22468.  
  22469.  
  22470. <style>
  22471.  @media screen and (max-width: 768px){
  22472.    .jdgm-qa-badge{
  22473.      display:none;
  22474.    }
  22475.    .jdgm-histogram{
  22476.    float:none;
  22477.  }
  22478.  }
  22479.  .jdgm-widget.jdgm-preview-badge{
  22480.    display:block !important;
  22481.  }
  22482.  .jdgm-sort-dropdown-arrow:before{
  22483.    position: relative;
  22484.    left: -8px;
  22485.  }
  22486. </style>
  22487.  
  22488.    
  22489.  
  22490.  
  22491.          </div>
  22492.        
  22493.  
  22494.        <div class="m-product-card__price">
  22495.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  22496. <div
  22497.  class="
  22498.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  22499.  data-sale-badge-type="percentage"
  22500. >
  22501.  <div class="m-price__regular">
  22502.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  22503.    <span class="m-price-item m-price-item--regular ">
  22504.      $175.99
  22505.    </span>
  22506.  </div>
  22507.  <div class="m-price__sale">
  22508.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  22509.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  22510.      $175.99
  22511.    </span>
  22512.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  22513.      <s class="m-price-item m-price-item--regular">
  22514.        
  22515.          $230.99
  22516.        
  22517.      </s></div>
  22518.  <div class="m-price__unit-wrapper m:hidden">
  22519.    <span class="m:visually-hidden">Unit price</span>
  22520.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  22521.  </div>
  22522.  
  22523.  
  22524. </div>
  22525.  
  22526. <style>
  22527.  .m-product-tag.m-product-tag--discounted.isSpring {
  22528.    background: #EC7521;
  22529.    color: #E6EBB3;
  22530.  }
  22531. </style>
  22532.  
  22533.        </div>
  22534.  
  22535.        
  22536.  
  22537.        
  22538.  
  22539.        <div class="m-product-card__description">
  22540.          【Easy Installation】 No additional tools are required for assembly, and you can easily complete assembly...
  22541.        </div></div>
  22542.      <div class="m-product-card__quick-add ">
  22543.    <product-form class="m-product-form m:w-full m:block" data-product-id="50053371527481"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="50053371527481" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="50053371527481" data-selected-variant=""><button
  22544.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  22545.          name="add"
  22546.          
  22547.          aria-label="Add to cart"
  22548.        >
  22549.          <span class="m-spinner-icon">
  22550.            <svg
  22551.              class="animate-spin m-svg-icon--medium"
  22552.              viewBox="0 0 24 24"
  22553.              fill="none"
  22554.            >
  22555.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  22556.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  22557.            </svg>
  22558.          </span>
  22559.          
  22560.          <span class="m-add-to-cart--text" data-atc-text>
  22561.            
  22562.              Add to cart
  22563.            
  22564.          </span>
  22565.        </button><input type="hidden" name="product-id" value="9682446680377" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  22566.  
  22567.    <!--
  22568.      
  22569.        <input hidden name="id" required value="50053371527481" data-selected-variant="">
  22570.        <button
  22571.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  22572.          data-product-url="/products/garvee-storage-tent-sheds-6x8-ft-pau-0jzsn2yg"
  22573.          data-product-id="9682446680377"
  22574.          data-product-handle="garvee-storage-tent-sheds-6x8-ft-pau-0jzsn2yg"
  22575.          aria-label="Add to cart"
  22576.        >
  22577.          <span class="m-spinner-icon">
  22578.            <svg
  22579.              class="animate-spin m-svg-icon--medium"
  22580.              xmlns="http://www.w3.org/2000/svg"
  22581.              viewBox="0 0 24 24"
  22582.              fill="none"
  22583.            >
  22584.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  22585.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  22586.            </svg>
  22587.          </span>
  22588.          
  22589.          <span class="m-add-to-cart--text">Add to cart</span>
  22590.        </button>
  22591.      
  22592.    -->
  22593.  
  22594. </div>
  22595. <style>
  22596.  @media screen and (max-width: 768px){
  22597.    .m-product-card__quick-add{
  22598.      /* display:none; */
  22599.      /* margin:5px auto 0 auto !important; */
  22600.      margin-top:5px !important;
  22601.    }
  22602.    .m-product-card__quick-add .m-add-to-cart{
  22603.      height:30px;
  22604.    }
  22605.    .m-product-card__quick-add .m-add-to-cart--text{
  22606.      font-size:14px !important;
  22607.    }
  22608.  }
  22609.  
  22610. </style>
  22611.  
  22612.    </div>
  22613.  </div>
  22614.  <input hidden name="id" required value="50053371527481" data-selected-variant="">
  22615. </div><script></script>
  22616. <style>
  22617.  .media_banner_collection {
  22618.    position: absolute;
  22619.    top:0;
  22620.    left:0;
  22621.    width: 20%;
  22622.    z-index:10;
  22623.  }
  22624.  .badges-wrapper {
  22625.    position: absolute;
  22626.    top:0;
  22627.    right:0;
  22628.    z-index:10;
  22629.  }
  22630.    /* .triangle_left{
  22631.      position: relative;
  22632.    }
  22633.    .triangle_left::after{
  22634.      content:'';
  22635.      width: 0;
  22636.      height: 0;
  22637.      position: absolute;
  22638.      border-top: 13px solid transparent;
  22639.      border-bottom: 13px solid transparent;
  22640.      border-right: 0px solid transparent;
  22641.      border-left: 13px solid #CD2215;
  22642.      left:100%;
  22643.    } */
  22644.  .m-product-card__wrapper{
  22645.    display:flex;
  22646.    flex-direction:column;
  22647.    height:100%;
  22648.  }
  22649.      .m-product-card__info{
  22650.      display: flex;
  22651.      flex-direction: column;
  22652.    }
  22653.      .m-product-card__price{
  22654.      order:1;
  22655.    }
  22656.    .m-product-card__title{
  22657.      order:2;
  22658.    }
  22659.    .m-product-card__reviews{
  22660.      order:3;
  22661.    }
  22662.    .m-product-shipping__content{
  22663.      order:4;
  22664.    }
  22665.    .m-product-shipping__text{
  22666.      font-size:11px !important;
  22667.    }
  22668.  .m-product-card--style-2 .m-product-card__name {
  22669.    font-size: 14px;
  22670.  }
  22671.    @media screen and (max-width: 768px) {
  22672.      /* .triangle_left::after{
  22673.      border-top: 11px solid transparent;
  22674.      border-bottom: 11px solid transparent;
  22675.      border-left: 11px solid #CD2215;
  22676.    } */
  22677.  
  22678.    .m-product-card--style-2 .m-product-card__name {
  22679.      line-height: 1.3;
  22680.      -webkit-line-clamp: 2;
  22681.      font-size: 12px;
  22682.    }
  22683.    .m-product-card--style-2 .m-price-item--last {
  22684.      font-size: 18px;
  22685.    }
  22686.    .m-product-shipping__content {
  22687.      display: none;
  22688.    }
  22689.  }
  22690. </style>
  22691.  
  22692.  
  22693.                        </div>
  22694.                      
  22695.                        <div class="m:column">
  22696.                          
  22697.  
  22698.  
  22699. <div
  22700.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  22701.  data-view="card"
  22702.  
  22703.  data-product-id="9652747469113"
  22704.  
  22705. >
  22706.  
  22707.  <div class="m-product-card__wrapper">
  22708.    <div class="m-product-card__media">
  22709.      <a
  22710.        class="m-product-card__link m:block m:w-full"
  22711.        href="/products/garvee-garveelife-12ft-12ft-gazebo-outdoor-pou-0a3a8adq"
  22712.        aria-label="Garvee 12'x12' Gazebo Outdoor Canopy Tent with Curtains 144 Square Shelter Mosquito Netting 2-Tiered Vented Top for Patio Backyard Party Beige"
  22713.        style="position: relative;"
  22714.      >
  22715.          
  22716.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  22717.            <img src="//www.garvee.com/cdn/shop/files/71kb7kr-fCL.jpg?v=1726834697&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/71kb7kr-fCL.jpg?v=1726834697&amp;width=165 165w, //www.garvee.com/cdn/shop/files/71kb7kr-fCL.jpg?v=1726834697&amp;width=352 352w, //www.garvee.com/cdn/shop/files/71kb7kr-fCL.jpg?v=1726834697&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  22718.          </responsive-image>
  22719.  
  22720.        <div class="badges-wrapper">
  22721.          
  22722.            
  22723.              
  22724.            
  22725.              
  22726.            
  22727.              
  22728.            
  22729.              
  22730.            
  22731.              
  22732.            
  22733.              
  22734.            
  22735.              
  22736.            
  22737.              
  22738.            
  22739.              
  22740.            
  22741.              
  22742.            
  22743.              
  22744.            
  22745.              
  22746.            
  22747.              
  22748.            
  22749.              
  22750.            
  22751.              
  22752.            
  22753.              
  22754.            
  22755.              
  22756.            
  22757.          
  22758.        </div>
  22759.      </a></div>
  22760.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  22761.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-garveelife-12ft-12ft-gazebo-outdoor-pou-0a3a8adq" aria-label="Garvee 12'x12' Gazebo Outdoor Canopy Tent with Curtains 144 Square Shelter Mosquito Netting 2-Tiered Vented Top for Patio Backyard Party Beige"></a>
  22762.      <div class="m-product-card__info">
  22763.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  22764.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  22765.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  22766.                
  22767.                  style="display:none;"
  22768.                
  22769.              >Sold Out</span><span
  22770.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  22771.              data-foxkit-preorder-badge="9652747469113"
  22772.            ></span>
  22773.            
  22774. <div style="display:flex;">
  22775.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-31%
  22776. </span>
  22777.              </div>
  22778.            
  22779.          </div>
  22780.          
  22781.        </div><h3 class="m-product-card__title h6">
  22782.          <a
  22783.            href="/products/garvee-garveelife-12ft-12ft-gazebo-outdoor-pou-0a3a8adq"
  22784.            class="m-product-card__name"
  22785.            style="font-weight:normal;"
  22786.          >
  22787.            Garvee 12'x12' Gazebo Outdoor Canopy Tent with Curtains 144 Square Shelter Mosquito Netting 2-Tiered Vented Top for Patio Backyard Party Beige
  22788.          </a>
  22789.        </h3>
  22790.  
  22791.        
  22792.          <div class="m-product-card__reviews">
  22793.            
  22794.  
  22795.    
  22796.    
  22797.      
  22798.  
  22799.  
  22800.  <div
  22801.    style=""
  22802.    class="jdgm-widget jdgm-preview-badge"
  22803.    data-id="9652747469113"
  22804.    data-template="manual-installation"
  22805.    data-auto-install="false"
  22806.  >
  22807.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='5.00' data-number-of-reviews='1' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='5.00' tabindex='0' aria-label='5.00 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 1 review </span> </div>
  22808.  </div>
  22809.  
  22810.  
  22811. <style>
  22812.  @media screen and (max-width: 768px){
  22813.    .jdgm-qa-badge{
  22814.      display:none;
  22815.    }
  22816.    .jdgm-histogram{
  22817.    float:none;
  22818.  }
  22819.  }
  22820.  .jdgm-widget.jdgm-preview-badge{
  22821.    display:block !important;
  22822.  }
  22823.  .jdgm-sort-dropdown-arrow:before{
  22824.    position: relative;
  22825.    left: -8px;
  22826.  }
  22827. </style>
  22828.  
  22829.    
  22830.  
  22831.  
  22832.          </div>
  22833.        
  22834.  
  22835.        <div class="m-product-card__price">
  22836.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  22837. <div
  22838.  class="
  22839.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  22840.  data-sale-badge-type="percentage"
  22841. >
  22842.  <div class="m-price__regular">
  22843.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  22844.    <span class="m-price-item m-price-item--regular ">
  22845.      $164.99
  22846.    </span>
  22847.  </div>
  22848.  <div class="m-price__sale">
  22849.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  22850.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  22851.      $164.99
  22852.    </span>
  22853.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  22854.      <s class="m-price-item m-price-item--regular">
  22855.        
  22856.          $241.99
  22857.        
  22858.      </s></div>
  22859.  <div class="m-price__unit-wrapper m:hidden">
  22860.    <span class="m:visually-hidden">Unit price</span>
  22861.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  22862.  </div>
  22863.  
  22864.  
  22865. </div>
  22866.  
  22867. <style>
  22868.  .m-product-tag.m-product-tag--discounted.isSpring {
  22869.    background: #EC7521;
  22870.    color: #E6EBB3;
  22871.  }
  22872. </style>
  22873.  
  22874.        </div>
  22875.  
  22876.        
  22877.  
  22878.        
  22879.  
  22880.        <div class="m-product-card__description">
  22881.          Specifications Brand GARVEE Item Weight 45.6 pounds Frame Material Metal Water Resistance Level Waterproof Shape...
  22882.        </div></div>
  22883.      <div class="m-product-card__quick-add ">
  22884.    <product-form class="m-product-form m:w-full m:block" data-product-id="49931152916793"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49931152916793" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49931152916793" data-selected-variant=""><button
  22885.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  22886.          name="add"
  22887.          
  22888.          aria-label="Add to cart"
  22889.        >
  22890.          <span class="m-spinner-icon">
  22891.            <svg
  22892.              class="animate-spin m-svg-icon--medium"
  22893.              viewBox="0 0 24 24"
  22894.              fill="none"
  22895.            >
  22896.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  22897.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  22898.            </svg>
  22899.          </span>
  22900.          
  22901.          <span class="m-add-to-cart--text" data-atc-text>
  22902.            
  22903.              Add to cart
  22904.            
  22905.          </span>
  22906.        </button><input type="hidden" name="product-id" value="9652747469113" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  22907.  
  22908.    <!--
  22909.      
  22910.        <input hidden name="id" required value="49931152916793" data-selected-variant="">
  22911.        <button
  22912.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  22913.          data-product-url="/products/garvee-garveelife-12ft-12ft-gazebo-outdoor-pou-0a3a8adq"
  22914.          data-product-id="9652747469113"
  22915.          data-product-handle="garvee-garveelife-12ft-12ft-gazebo-outdoor-pou-0a3a8adq"
  22916.          aria-label="Add to cart"
  22917.        >
  22918.          <span class="m-spinner-icon">
  22919.            <svg
  22920.              class="animate-spin m-svg-icon--medium"
  22921.              xmlns="http://www.w3.org/2000/svg"
  22922.              viewBox="0 0 24 24"
  22923.              fill="none"
  22924.            >
  22925.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  22926.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  22927.            </svg>
  22928.          </span>
  22929.          
  22930.          <span class="m-add-to-cart--text">Add to cart</span>
  22931.        </button>
  22932.      
  22933.    -->
  22934.  
  22935. </div>
  22936. <style>
  22937.  @media screen and (max-width: 768px){
  22938.    .m-product-card__quick-add{
  22939.      /* display:none; */
  22940.      /* margin:5px auto 0 auto !important; */
  22941.      margin-top:5px !important;
  22942.    }
  22943.    .m-product-card__quick-add .m-add-to-cart{
  22944.      height:30px;
  22945.    }
  22946.    .m-product-card__quick-add .m-add-to-cart--text{
  22947.      font-size:14px !important;
  22948.    }
  22949.  }
  22950.  
  22951. </style>
  22952.  
  22953.    </div>
  22954.  </div>
  22955.  <input hidden name="id" required value="49931152916793" data-selected-variant="">
  22956. </div><script></script>
  22957. <style>
  22958.  .media_banner_collection {
  22959.    position: absolute;
  22960.    top:0;
  22961.    left:0;
  22962.    width: 20%;
  22963.    z-index:10;
  22964.  }
  22965.  .badges-wrapper {
  22966.    position: absolute;
  22967.    top:0;
  22968.    right:0;
  22969.    z-index:10;
  22970.  }
  22971.    /* .triangle_left{
  22972.      position: relative;
  22973.    }
  22974.    .triangle_left::after{
  22975.      content:'';
  22976.      width: 0;
  22977.      height: 0;
  22978.      position: absolute;
  22979.      border-top: 13px solid transparent;
  22980.      border-bottom: 13px solid transparent;
  22981.      border-right: 0px solid transparent;
  22982.      border-left: 13px solid #CD2215;
  22983.      left:100%;
  22984.    } */
  22985.  .m-product-card__wrapper{
  22986.    display:flex;
  22987.    flex-direction:column;
  22988.    height:100%;
  22989.  }
  22990.      .m-product-card__info{
  22991.      display: flex;
  22992.      flex-direction: column;
  22993.    }
  22994.      .m-product-card__price{
  22995.      order:1;
  22996.    }
  22997.    .m-product-card__title{
  22998.      order:2;
  22999.    }
  23000.    .m-product-card__reviews{
  23001.      order:3;
  23002.    }
  23003.    .m-product-shipping__content{
  23004.      order:4;
  23005.    }
  23006.    .m-product-shipping__text{
  23007.      font-size:11px !important;
  23008.    }
  23009.  .m-product-card--style-2 .m-product-card__name {
  23010.    font-size: 14px;
  23011.  }
  23012.    @media screen and (max-width: 768px) {
  23013.      /* .triangle_left::after{
  23014.      border-top: 11px solid transparent;
  23015.      border-bottom: 11px solid transparent;
  23016.      border-left: 11px solid #CD2215;
  23017.    } */
  23018.  
  23019.    .m-product-card--style-2 .m-product-card__name {
  23020.      line-height: 1.3;
  23021.      -webkit-line-clamp: 2;
  23022.      font-size: 12px;
  23023.    }
  23024.    .m-product-card--style-2 .m-price-item--last {
  23025.      font-size: 18px;
  23026.    }
  23027.    .m-product-shipping__content {
  23028.      display: none;
  23029.    }
  23030.  }
  23031. </style>
  23032.  
  23033.  
  23034.                        </div>
  23035.                      
  23036.                        <div class="m:column">
  23037.                          
  23038.  
  23039.  
  23040. <div
  23041.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  23042.  data-view="card"
  23043.  
  23044.  data-product-id="9590747922745"
  23045.  
  23046. >
  23047.  
  23048.  <div class="m-product-card__wrapper">
  23049.    <div class="m-product-card__media">
  23050.      <a
  23051.        class="m-product-card__link m:block m:w-full"
  23052.        href="/products/garvee-gaomon-13-x-16-metal-vam-1ercisfb"
  23053.        aria-label="GARVEE 13'x16' Metal Carport with Heavy Duty Galvanized Steel Roof and Reinforced All-Metal Frame, Permanent Shelter for Agricultural Machinery, Cars, Boats, Grey"
  23054.        style="position: relative;"
  23055.      >
  23056.          
  23057.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  23058.            <img src="//www.garvee.com/cdn/shop/files/614q8JMW6lL.jpg?v=1727691589&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/614q8JMW6lL.jpg?v=1727691589&amp;width=165 165w, //www.garvee.com/cdn/shop/files/614q8JMW6lL.jpg?v=1727691589&amp;width=352 352w, //www.garvee.com/cdn/shop/files/614q8JMW6lL.jpg?v=1727691589&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  23059.          </responsive-image>
  23060.  
  23061.        <div class="badges-wrapper">
  23062.          
  23063.            
  23064.              
  23065.            
  23066.              
  23067.            
  23068.              
  23069.            
  23070.              
  23071.            
  23072.              
  23073.            
  23074.              
  23075.            
  23076.              
  23077.            
  23078.              
  23079.            
  23080.              
  23081.            
  23082.              
  23083.            
  23084.              
  23085.            
  23086.              
  23087.            
  23088.              
  23089.            
  23090.              
  23091.            
  23092.              
  23093.            
  23094.              
  23095.            
  23096.              
  23097.            
  23098.              
  23099.            
  23100.              
  23101.            
  23102.              
  23103.            
  23104.              
  23105.            
  23106.              
  23107.            
  23108.          
  23109.        </div>
  23110.      </a></div>
  23111.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  23112.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-gaomon-13-x-16-metal-vam-1ercisfb" aria-label="GARVEE 13'x16' Metal Carport with Heavy Duty Galvanized Steel Roof and Reinforced All-Metal Frame, Permanent Shelter for Agricultural Machinery, Cars, Boats, Grey"></a>
  23113.      <div class="m-product-card__info">
  23114.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  23115.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  23116.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  23117.                
  23118.                  style="display:none;"
  23119.                
  23120.              >Sold Out</span><span
  23121.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  23122.              data-foxkit-preorder-badge="9590747922745"
  23123.            ></span>
  23124.            
  23125. <div style="display:flex;">
  23126.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-10%
  23127. </span>
  23128.              </div>
  23129.            
  23130.          </div>
  23131.          
  23132.        </div><h3 class="m-product-card__title h6">
  23133.          <a
  23134.            href="/products/garvee-gaomon-13-x-16-metal-vam-1ercisfb"
  23135.            class="m-product-card__name"
  23136.            style="font-weight:normal;"
  23137.          >
  23138.            GARVEE 13'x16' Metal Carport with Heavy Duty Galvanized Steel Roof and Reinforced All-Metal Frame, Permanent Shelter for Agricultural Machinery, Cars, Boats, Grey
  23139.          </a>
  23140.        </h3>
  23141.  
  23142.        
  23143.          <div class="m-product-card__reviews">
  23144.            
  23145.  
  23146.    
  23147.    
  23148.      
  23149.  
  23150.  
  23151.  <div
  23152.    style=""
  23153.    class="jdgm-widget jdgm-preview-badge"
  23154.    data-id="9590747922745"
  23155.    data-template="manual-installation"
  23156.    data-auto-install="false"
  23157.  >
  23158.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.00' data-number-of-reviews='3' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.00' tabindex='0' aria-label='4.00 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--off'></span> </span> <span class='jdgm-prev-badge__text'> 3 reviews </span> </div>
  23159.  </div>
  23160.  
  23161.  
  23162. <style>
  23163.  @media screen and (max-width: 768px){
  23164.    .jdgm-qa-badge{
  23165.      display:none;
  23166.    }
  23167.    .jdgm-histogram{
  23168.    float:none;
  23169.  }
  23170.  }
  23171.  .jdgm-widget.jdgm-preview-badge{
  23172.    display:block !important;
  23173.  }
  23174.  .jdgm-sort-dropdown-arrow:before{
  23175.    position: relative;
  23176.    left: -8px;
  23177.  }
  23178. </style>
  23179.  
  23180.    
  23181.  
  23182.  
  23183.          </div>
  23184.        
  23185.  
  23186.        <div class="m-product-card__price">
  23187.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  23188. <div
  23189.  class="
  23190.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  23191.  data-sale-badge-type="percentage"
  23192. >
  23193.  <div class="m-price__regular">
  23194.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  23195.    <span class="m-price-item m-price-item--regular ">
  23196.      $1,180.99
  23197.    </span>
  23198.  </div>
  23199.  <div class="m-price__sale">
  23200.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  23201.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  23202.      $1,180.99
  23203.    </span>
  23204.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  23205.      <s class="m-price-item m-price-item--regular">
  23206.        
  23207.          $1,319.99
  23208.        
  23209.      </s></div>
  23210.  <div class="m-price__unit-wrapper m:hidden">
  23211.    <span class="m:visually-hidden">Unit price</span>
  23212.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  23213.  </div>
  23214.  
  23215.  
  23216. </div>
  23217.  
  23218. <style>
  23219.  .m-product-tag.m-product-tag--discounted.isSpring {
  23220.    background: #EC7521;
  23221.    color: #E6EBB3;
  23222.  }
  23223. </style>
  23224.  
  23225.        </div>
  23226.  
  23227.        
  23228.  
  23229.        
  23230.  
  23231.        <div class="m-product-card__description">
  23232.          Specifications Brand GARVEE Material Metal Color Gray Item Weight 80 pounds Recommended Uses For Product...
  23233.        </div></div>
  23234.      <div class="m-product-card__quick-add ">
  23235.    <product-form class="m-product-form m:w-full m:block" data-product-id="49728042860857"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49728042860857" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49728042860857" data-selected-variant=""><button
  23236.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  23237.          name="add"
  23238.          
  23239.          aria-label="Add to cart"
  23240.        >
  23241.          <span class="m-spinner-icon">
  23242.            <svg
  23243.              class="animate-spin m-svg-icon--medium"
  23244.              viewBox="0 0 24 24"
  23245.              fill="none"
  23246.            >
  23247.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  23248.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  23249.            </svg>
  23250.          </span>
  23251.          
  23252.          <span class="m-add-to-cart--text" data-atc-text>
  23253.            
  23254.              Add to cart
  23255.            
  23256.          </span>
  23257.        </button><input type="hidden" name="product-id" value="9590747922745" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  23258.  
  23259.    <!--
  23260.      
  23261.        <input hidden name="id" required value="49728042860857" data-selected-variant="">
  23262.        <button
  23263.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  23264.          data-product-url="/products/garvee-gaomon-13-x-16-metal-vam-1ercisfb"
  23265.          data-product-id="9590747922745"
  23266.          data-product-handle="garvee-gaomon-13-x-16-metal-vam-1ercisfb"
  23267.          aria-label="Add to cart"
  23268.        >
  23269.          <span class="m-spinner-icon">
  23270.            <svg
  23271.              class="animate-spin m-svg-icon--medium"
  23272.              xmlns="http://www.w3.org/2000/svg"
  23273.              viewBox="0 0 24 24"
  23274.              fill="none"
  23275.            >
  23276.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  23277.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  23278.            </svg>
  23279.          </span>
  23280.          
  23281.          <span class="m-add-to-cart--text">Add to cart</span>
  23282.        </button>
  23283.      
  23284.    -->
  23285.  
  23286. </div>
  23287. <style>
  23288.  @media screen and (max-width: 768px){
  23289.    .m-product-card__quick-add{
  23290.      /* display:none; */
  23291.      /* margin:5px auto 0 auto !important; */
  23292.      margin-top:5px !important;
  23293.    }
  23294.    .m-product-card__quick-add .m-add-to-cart{
  23295.      height:30px;
  23296.    }
  23297.    .m-product-card__quick-add .m-add-to-cart--text{
  23298.      font-size:14px !important;
  23299.    }
  23300.  }
  23301.  
  23302. </style>
  23303.  
  23304.    </div>
  23305.  </div>
  23306.  <input hidden name="id" required value="49728042860857" data-selected-variant="">
  23307. </div><script></script>
  23308. <style>
  23309.  .media_banner_collection {
  23310.    position: absolute;
  23311.    top:0;
  23312.    left:0;
  23313.    width: 20%;
  23314.    z-index:10;
  23315.  }
  23316.  .badges-wrapper {
  23317.    position: absolute;
  23318.    top:0;
  23319.    right:0;
  23320.    z-index:10;
  23321.  }
  23322.    /* .triangle_left{
  23323.      position: relative;
  23324.    }
  23325.    .triangle_left::after{
  23326.      content:'';
  23327.      width: 0;
  23328.      height: 0;
  23329.      position: absolute;
  23330.      border-top: 13px solid transparent;
  23331.      border-bottom: 13px solid transparent;
  23332.      border-right: 0px solid transparent;
  23333.      border-left: 13px solid #CD2215;
  23334.      left:100%;
  23335.    } */
  23336.  .m-product-card__wrapper{
  23337.    display:flex;
  23338.    flex-direction:column;
  23339.    height:100%;
  23340.  }
  23341.      .m-product-card__info{
  23342.      display: flex;
  23343.      flex-direction: column;
  23344.    }
  23345.      .m-product-card__price{
  23346.      order:1;
  23347.    }
  23348.    .m-product-card__title{
  23349.      order:2;
  23350.    }
  23351.    .m-product-card__reviews{
  23352.      order:3;
  23353.    }
  23354.    .m-product-shipping__content{
  23355.      order:4;
  23356.    }
  23357.    .m-product-shipping__text{
  23358.      font-size:11px !important;
  23359.    }
  23360.  .m-product-card--style-2 .m-product-card__name {
  23361.    font-size: 14px;
  23362.  }
  23363.    @media screen and (max-width: 768px) {
  23364.      /* .triangle_left::after{
  23365.      border-top: 11px solid transparent;
  23366.      border-bottom: 11px solid transparent;
  23367.      border-left: 11px solid #CD2215;
  23368.    } */
  23369.  
  23370.    .m-product-card--style-2 .m-product-card__name {
  23371.      line-height: 1.3;
  23372.      -webkit-line-clamp: 2;
  23373.      font-size: 12px;
  23374.    }
  23375.    .m-product-card--style-2 .m-price-item--last {
  23376.      font-size: 18px;
  23377.    }
  23378.    .m-product-shipping__content {
  23379.      display: none;
  23380.    }
  23381.  }
  23382. </style>
  23383.  
  23384.  
  23385.                        </div>
  23386.                      
  23387.                        <div class="m:column">
  23388.                          
  23389.  
  23390.  
  23391. <div
  23392.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  23393.  data-view="card"
  23394.  
  23395.  data-product-id="9482787324217"
  23396.  
  23397. >
  23398.  
  23399.  <div class="m-product-card__wrapper">
  23400.    <div class="m-product-card__media">
  23401.      <a
  23402.        class="m-product-card__link m:block m:w-full"
  23403.        href="/products/heavy-duty-carport-pho-113p"
  23404.        aria-label="GARVEE 10' X 20' Heavy Duty Carport, Portable Garage with Waterproof UV Protected Car Canopy, Green"
  23405.        style="position: relative;"
  23406.      >
  23407.          
  23408.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  23409.            <img src="//www.garvee.com/cdn/shop/files/51LQViCG6lL.jpg?v=1719383000&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/51LQViCG6lL.jpg?v=1719383000&amp;width=165 165w, //www.garvee.com/cdn/shop/files/51LQViCG6lL.jpg?v=1719383000&amp;width=352 352w, //www.garvee.com/cdn/shop/files/51LQViCG6lL.jpg?v=1719383000&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  23410.          </responsive-image>
  23411.  
  23412.        <div class="badges-wrapper">
  23413.          
  23414.            
  23415.              
  23416.            
  23417.              
  23418.            
  23419.              
  23420.            
  23421.              
  23422.            
  23423.              
  23424.            
  23425.              
  23426.            
  23427.              
  23428.            
  23429.              
  23430.            
  23431.              
  23432.            
  23433.              
  23434.            
  23435.              
  23436.            
  23437.              
  23438.            
  23439.              
  23440.            
  23441.              
  23442.            
  23443.              
  23444.            
  23445.              
  23446.            
  23447.              
  23448.            
  23449.              
  23450.            
  23451.              
  23452.            
  23453.              
  23454.            
  23455.              
  23456.            
  23457.              
  23458.            
  23459.              
  23460.            
  23461.              
  23462.            
  23463.              
  23464.            
  23465.              
  23466.            
  23467.              
  23468.            
  23469.              
  23470.            
  23471.              
  23472.            
  23473.              
  23474.            
  23475.              
  23476.            
  23477.              
  23478.            
  23479.              
  23480.            
  23481.              
  23482.            
  23483.              
  23484.            
  23485.              
  23486.            
  23487.              
  23488.            
  23489.          
  23490.        </div>
  23491.      </a></div>
  23492.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  23493.      <a class="m-product-card__hidden-link m:hidden" href="/products/heavy-duty-carport-pho-113p" aria-label="GARVEE 10' X 20' Heavy Duty Carport, Portable Garage with Waterproof UV Protected Car Canopy, Green"></a>
  23494.      <div class="m-product-card__info">
  23495.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  23496.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  23497.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  23498.                
  23499.                  style="display:none;"
  23500.                
  23501.              >Sold Out</span><span
  23502.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  23503.              data-foxkit-preorder-badge="9482787324217"
  23504.            ></span>
  23505.            
  23506. <div style="display:flex;">
  23507.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-27%
  23508. </span>
  23509.              </div>
  23510.            
  23511.          </div>
  23512.          
  23513.            <!-- <span style="font-size:12px;font-weight:bold;color:rgb(205,34,21,0.8);">Father's Day Deal</span> -->
  23514.          
  23515.        </div><h3 class="m-product-card__title h6">
  23516.          <a
  23517.            href="/products/heavy-duty-carport-pho-113p"
  23518.            class="m-product-card__name"
  23519.            style="font-weight:normal;"
  23520.          >
  23521.            GARVEE 10' X 20' Heavy Duty Carport, Portable Garage with Waterproof UV Protected Car Canopy, Green
  23522.          </a>
  23523.        </h3>
  23524.  
  23525.        
  23526.          <div class="m-product-card__reviews">
  23527.            
  23528.  
  23529.    
  23530.    
  23531.      
  23532.  
  23533.  
  23534.  <div
  23535.    style=""
  23536.    class="jdgm-widget jdgm-preview-badge"
  23537.    data-id="9482787324217"
  23538.    data-template="manual-installation"
  23539.    data-auto-install="false"
  23540.  >
  23541.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.72' data-number-of-reviews='18' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.72' tabindex='0' aria-label='4.72 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--half'></span> </span> <span class='jdgm-prev-badge__text'> 18 reviews </span> </div>
  23542.  </div>
  23543.  
  23544.  
  23545. <style>
  23546.  @media screen and (max-width: 768px){
  23547.    .jdgm-qa-badge{
  23548.      display:none;
  23549.    }
  23550.    .jdgm-histogram{
  23551.    float:none;
  23552.  }
  23553.  }
  23554.  .jdgm-widget.jdgm-preview-badge{
  23555.    display:block !important;
  23556.  }
  23557.  .jdgm-sort-dropdown-arrow:before{
  23558.    position: relative;
  23559.    left: -8px;
  23560.  }
  23561. </style>
  23562.  
  23563.    
  23564.  
  23565.  
  23566.          </div>
  23567.        
  23568.  
  23569.        <div class="m-product-card__price">
  23570.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  23571. <div
  23572.  class="
  23573.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  23574.  data-sale-badge-type="percentage"
  23575. >
  23576.  <div class="m-price__regular">
  23577.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  23578.    <span class="m-price-item m-price-item--regular ">
  23579.      $289.99
  23580.    </span>
  23581.  </div>
  23582.  <div class="m-price__sale">
  23583.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  23584.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  23585.      $289.99
  23586.    </span>
  23587.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  23588.      <s class="m-price-item m-price-item--regular">
  23589.        
  23590.          $399.99
  23591.        
  23592.      </s></div>
  23593.  <div class="m-price__unit-wrapper m:hidden">
  23594.    <span class="m:visually-hidden">Unit price</span>
  23595.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  23596.  </div>
  23597.  
  23598.  
  23599. </div>
  23600.  
  23601. <style>
  23602.  .m-product-tag.m-product-tag--discounted.isSpring {
  23603.    background: #EC7521;
  23604.    color: #E6EBB3;
  23605.  }
  23606. </style>
  23607.  
  23608.        </div>
  23609.  
  23610.        
  23611.  
  23612.        
  23613.  
  23614.        <div class="m-product-card__description">
  23615.          Protect your vehicles with the GARVEE Heavy Duty Carport GARVEE 10'x20' Heavy Duty Carport: Ultimate...
  23616.        </div></div>
  23617.      <div class="m-product-card__quick-add ">
  23618.    <product-form class="m-product-form m:w-full m:block" data-product-id="49449985671481"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49449985671481" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49449985671481" data-selected-variant=""><button
  23619.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  23620.          name="add"
  23621.          
  23622.          aria-label="Add to cart"
  23623.        >
  23624.          <span class="m-spinner-icon">
  23625.            <svg
  23626.              class="animate-spin m-svg-icon--medium"
  23627.              viewBox="0 0 24 24"
  23628.              fill="none"
  23629.            >
  23630.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  23631.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  23632.            </svg>
  23633.          </span>
  23634.          
  23635.          <span class="m-add-to-cart--text" data-atc-text>
  23636.            
  23637.              Add to cart
  23638.            
  23639.          </span>
  23640.        </button><input type="hidden" name="product-id" value="9482787324217" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  23641.  
  23642.    <!--
  23643.      
  23644.        <input hidden name="id" required value="49449985671481" data-selected-variant="">
  23645.        <button
  23646.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  23647.          data-product-url="/products/heavy-duty-carport-pho-113p"
  23648.          data-product-id="9482787324217"
  23649.          data-product-handle="heavy-duty-carport-pho-113p"
  23650.          aria-label="Add to cart"
  23651.        >
  23652.          <span class="m-spinner-icon">
  23653.            <svg
  23654.              class="animate-spin m-svg-icon--medium"
  23655.              xmlns="http://www.w3.org/2000/svg"
  23656.              viewBox="0 0 24 24"
  23657.              fill="none"
  23658.            >
  23659.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  23660.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  23661.            </svg>
  23662.          </span>
  23663.          
  23664.          <span class="m-add-to-cart--text">Add to cart</span>
  23665.        </button>
  23666.      
  23667.    -->
  23668.  
  23669. </div>
  23670. <style>
  23671.  @media screen and (max-width: 768px){
  23672.    .m-product-card__quick-add{
  23673.      /* display:none; */
  23674.      /* margin:5px auto 0 auto !important; */
  23675.      margin-top:5px !important;
  23676.    }
  23677.    .m-product-card__quick-add .m-add-to-cart{
  23678.      height:30px;
  23679.    }
  23680.    .m-product-card__quick-add .m-add-to-cart--text{
  23681.      font-size:14px !important;
  23682.    }
  23683.  }
  23684.  
  23685. </style>
  23686.  
  23687.    </div>
  23688.  </div>
  23689.  <input hidden name="id" required value="49449985671481" data-selected-variant="">
  23690. </div><script></script>
  23691. <style>
  23692.  .media_banner_collection {
  23693.    position: absolute;
  23694.    top:0;
  23695.    left:0;
  23696.    width: 20%;
  23697.    z-index:10;
  23698.  }
  23699.  .badges-wrapper {
  23700.    position: absolute;
  23701.    top:0;
  23702.    right:0;
  23703.    z-index:10;
  23704.  }
  23705.    /* .triangle_left{
  23706.      position: relative;
  23707.    }
  23708.    .triangle_left::after{
  23709.      content:'';
  23710.      width: 0;
  23711.      height: 0;
  23712.      position: absolute;
  23713.      border-top: 13px solid transparent;
  23714.      border-bottom: 13px solid transparent;
  23715.      border-right: 0px solid transparent;
  23716.      border-left: 13px solid #CD2215;
  23717.      left:100%;
  23718.    } */
  23719.  .m-product-card__wrapper{
  23720.    display:flex;
  23721.    flex-direction:column;
  23722.    height:100%;
  23723.  }
  23724.      .m-product-card__info{
  23725.      display: flex;
  23726.      flex-direction: column;
  23727.    }
  23728.      .m-product-card__price{
  23729.      order:1;
  23730.    }
  23731.    .m-product-card__title{
  23732.      order:2;
  23733.    }
  23734.    .m-product-card__reviews{
  23735.      order:3;
  23736.    }
  23737.    .m-product-shipping__content{
  23738.      order:4;
  23739.    }
  23740.    .m-product-shipping__text{
  23741.      font-size:11px !important;
  23742.    }
  23743.  .m-product-card--style-2 .m-product-card__name {
  23744.    font-size: 14px;
  23745.  }
  23746.    @media screen and (max-width: 768px) {
  23747.      /* .triangle_left::after{
  23748.      border-top: 11px solid transparent;
  23749.      border-bottom: 11px solid transparent;
  23750.      border-left: 11px solid #CD2215;
  23751.    } */
  23752.  
  23753.    .m-product-card--style-2 .m-product-card__name {
  23754.      line-height: 1.3;
  23755.      -webkit-line-clamp: 2;
  23756.      font-size: 12px;
  23757.    }
  23758.    .m-product-card--style-2 .m-price-item--last {
  23759.      font-size: 18px;
  23760.    }
  23761.    .m-product-shipping__content {
  23762.      display: none;
  23763.    }
  23764.  }
  23765. </style>
  23766.  
  23767.  
  23768.                        </div>
  23769.                      
  23770.                        <div class="m:column">
  23771.                          
  23772.  
  23773.  
  23774. <div
  23775.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  23776.  data-view="card"
  23777.  
  23778.  data-product-id="9814922789177"
  23779.  
  23780. >
  23781.  
  23782.  <div class="m-product-card__wrapper">
  23783.    <div class="m-product-card__media">
  23784.      <a
  23785.        class="m-product-card__link m:block m:w-full"
  23786.        href="/products/garvee-10x10-canopy-tent-heavy-duty-pou-3akadbk3"
  23787.        aria-label="GARVEE 10'x10' Canopy Tent, Heavy Duty Pop Up Canopy with Mosquito Netting, Waterproof Easy Up Screen Shelter with Wheeled Bag, Outdoor Instant Sun Shade for Parties, Camping, Events, Khaki"
  23788.        style="position: relative;"
  23789.      >
  23790.          
  23791.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  23792.            <img src="//www.garvee.com/cdn/shop/files/fe17376854277784225.jpg?v=1747730165&amp;width=1100" alt="POU_3AKADBK3" srcset="//www.garvee.com/cdn/shop/files/fe17376854277784225.jpg?v=1747730165&amp;width=165 165w, //www.garvee.com/cdn/shop/files/fe17376854277784225.jpg?v=1747730165&amp;width=352 352w, //www.garvee.com/cdn/shop/files/fe17376854277784225.jpg?v=1747730165&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  23793.          </responsive-image>
  23794.  
  23795.        <div class="badges-wrapper">
  23796.          
  23797.            
  23798.              
  23799.            
  23800.              
  23801.            
  23802.              
  23803.            
  23804.              
  23805.            
  23806.              
  23807.            
  23808.              
  23809.            
  23810.              
  23811.            
  23812.              
  23813.            
  23814.              
  23815.            
  23816.              
  23817.            
  23818.              
  23819.            
  23820.              
  23821.            
  23822.          
  23823.        </div>
  23824.      </a></div>
  23825.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  23826.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-10x10-canopy-tent-heavy-duty-pou-3akadbk3" aria-label="GARVEE 10'x10' Canopy Tent, Heavy Duty Pop Up Canopy with Mosquito Netting, Waterproof Easy Up Screen Shelter with Wheeled Bag, Outdoor Instant Sun Shade for Parties, Camping, Events, Khaki"></a>
  23827.      <div class="m-product-card__info">
  23828.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  23829.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  23830.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  23831.                
  23832.                  style="display:none;"
  23833.                
  23834.              >Sold Out</span><span
  23835.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  23836.              data-foxkit-preorder-badge="9814922789177"
  23837.            ></span>
  23838.            
  23839. <div style="display:flex;">
  23840.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-51%
  23841. </span>
  23842.              </div>
  23843.            
  23844.          </div>
  23845.          
  23846.        </div><h3 class="m-product-card__title h6">
  23847.          <a
  23848.            href="/products/garvee-10x10-canopy-tent-heavy-duty-pou-3akadbk3"
  23849.            class="m-product-card__name"
  23850.            style="font-weight:normal;"
  23851.          >
  23852.            GARVEE 10'x10' Canopy Tent, Heavy Duty Pop Up Canopy with Mosquito Netting, Waterproof Easy Up Screen Shelter with Wheeled Bag, Outdoor Instant Sun Shade for Parties, Camping, Events, Khaki
  23853.          </a>
  23854.        </h3>
  23855.  
  23856.        
  23857.          <div class="m-product-card__reviews">
  23858.            
  23859.  
  23860.    
  23861.    
  23862.      
  23863.  
  23864.  
  23865.  <div
  23866.    style=""
  23867.    class="jdgm-widget jdgm-preview-badge"
  23868.    data-id="9814922789177"
  23869.    data-template="manual-installation"
  23870.    data-auto-install="false"
  23871.  >
  23872.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.73' data-number-of-reviews='11' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.73' tabindex='0' aria-label='4.73 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--half'></span> </span> <span class='jdgm-prev-badge__text'> 11 reviews </span> </div>
  23873.  </div>
  23874.  
  23875.  
  23876. <style>
  23877.  @media screen and (max-width: 768px){
  23878.    .jdgm-qa-badge{
  23879.      display:none;
  23880.    }
  23881.    .jdgm-histogram{
  23882.    float:none;
  23883.  }
  23884.  }
  23885.  .jdgm-widget.jdgm-preview-badge{
  23886.    display:block !important;
  23887.  }
  23888.  .jdgm-sort-dropdown-arrow:before{
  23889.    position: relative;
  23890.    left: -8px;
  23891.  }
  23892. </style>
  23893.  
  23894.    
  23895.  
  23896.  
  23897.          </div>
  23898.        
  23899.  
  23900.        <div class="m-product-card__price">
  23901.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  23902. <div
  23903.  class="
  23904.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  23905.  data-sale-badge-type="percentage"
  23906. >
  23907.  <div class="m-price__regular">
  23908.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  23909.    <span class="m-price-item m-price-item--regular ">
  23910.      $159.99
  23911.    </span>
  23912.  </div>
  23913.  <div class="m-price__sale">
  23914.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  23915.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  23916.      $159.99
  23917.    </span>
  23918.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  23919.      <s class="m-price-item m-price-item--regular">
  23920.        
  23921.          $329.99
  23922.        
  23923.      </s></div>
  23924.  <div class="m-price__unit-wrapper m:hidden">
  23925.    <span class="m:visually-hidden">Unit price</span>
  23926.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  23927.  </div>
  23928.  
  23929.  
  23930. </div>
  23931.  
  23932. <style>
  23933.  .m-product-tag.m-product-tag--discounted.isSpring {
  23934.    background: #EC7521;
  23935.    color: #E6EBB3;
  23936.  }
  23937. </style>
  23938.  
  23939.        </div>
  23940.  
  23941.        
  23942.  
  23943.        
  23944.  
  23945.        <div class="m-product-card__description">
  23946.          Friendly Note: While the canopy is designed to provide protection from UV rays and light...
  23947.        </div></div>
  23948.      <div class="m-product-card__quick-add ">
  23949.    <product-form class="m-product-form m:w-full m:block" data-product-id="50540843467065"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="50540843467065" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="50540843467065" data-selected-variant=""><button
  23950.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  23951.          name="add"
  23952.          
  23953.          aria-label="Add to cart"
  23954.        >
  23955.          <span class="m-spinner-icon">
  23956.            <svg
  23957.              class="animate-spin m-svg-icon--medium"
  23958.              viewBox="0 0 24 24"
  23959.              fill="none"
  23960.            >
  23961.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  23962.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  23963.            </svg>
  23964.          </span>
  23965.          
  23966.          <span class="m-add-to-cart--text" data-atc-text>
  23967.            
  23968.              Add to cart
  23969.            
  23970.          </span>
  23971.        </button><input type="hidden" name="product-id" value="9814922789177" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  23972.  
  23973.    <!--
  23974.      
  23975.        <input hidden name="id" required value="50540843467065" data-selected-variant="">
  23976.        <button
  23977.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  23978.          data-product-url="/products/garvee-10x10-canopy-tent-heavy-duty-pou-3akadbk3"
  23979.          data-product-id="9814922789177"
  23980.          data-product-handle="garvee-10x10-canopy-tent-heavy-duty-pou-3akadbk3"
  23981.          aria-label="Add to cart"
  23982.        >
  23983.          <span class="m-spinner-icon">
  23984.            <svg
  23985.              class="animate-spin m-svg-icon--medium"
  23986.              xmlns="http://www.w3.org/2000/svg"
  23987.              viewBox="0 0 24 24"
  23988.              fill="none"
  23989.            >
  23990.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  23991.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  23992.            </svg>
  23993.          </span>
  23994.          
  23995.          <span class="m-add-to-cart--text">Add to cart</span>
  23996.        </button>
  23997.      
  23998.    -->
  23999.  
  24000. </div>
  24001. <style>
  24002.  @media screen and (max-width: 768px){
  24003.    .m-product-card__quick-add{
  24004.      /* display:none; */
  24005.      /* margin:5px auto 0 auto !important; */
  24006.      margin-top:5px !important;
  24007.    }
  24008.    .m-product-card__quick-add .m-add-to-cart{
  24009.      height:30px;
  24010.    }
  24011.    .m-product-card__quick-add .m-add-to-cart--text{
  24012.      font-size:14px !important;
  24013.    }
  24014.  }
  24015.  
  24016. </style>
  24017.  
  24018.    </div>
  24019.  </div>
  24020.  <input hidden name="id" required value="50540843467065" data-selected-variant="">
  24021. </div><script></script>
  24022. <style>
  24023.  .media_banner_collection {
  24024.    position: absolute;
  24025.    top:0;
  24026.    left:0;
  24027.    width: 20%;
  24028.    z-index:10;
  24029.  }
  24030.  .badges-wrapper {
  24031.    position: absolute;
  24032.    top:0;
  24033.    right:0;
  24034.    z-index:10;
  24035.  }
  24036.    /* .triangle_left{
  24037.      position: relative;
  24038.    }
  24039.    .triangle_left::after{
  24040.      content:'';
  24041.      width: 0;
  24042.      height: 0;
  24043.      position: absolute;
  24044.      border-top: 13px solid transparent;
  24045.      border-bottom: 13px solid transparent;
  24046.      border-right: 0px solid transparent;
  24047.      border-left: 13px solid #CD2215;
  24048.      left:100%;
  24049.    } */
  24050.  .m-product-card__wrapper{
  24051.    display:flex;
  24052.    flex-direction:column;
  24053.    height:100%;
  24054.  }
  24055.      .m-product-card__info{
  24056.      display: flex;
  24057.      flex-direction: column;
  24058.    }
  24059.      .m-product-card__price{
  24060.      order:1;
  24061.    }
  24062.    .m-product-card__title{
  24063.      order:2;
  24064.    }
  24065.    .m-product-card__reviews{
  24066.      order:3;
  24067.    }
  24068.    .m-product-shipping__content{
  24069.      order:4;
  24070.    }
  24071.    .m-product-shipping__text{
  24072.      font-size:11px !important;
  24073.    }
  24074.  .m-product-card--style-2 .m-product-card__name {
  24075.    font-size: 14px;
  24076.  }
  24077.    @media screen and (max-width: 768px) {
  24078.      /* .triangle_left::after{
  24079.      border-top: 11px solid transparent;
  24080.      border-bottom: 11px solid transparent;
  24081.      border-left: 11px solid #CD2215;
  24082.    } */
  24083.  
  24084.    .m-product-card--style-2 .m-product-card__name {
  24085.      line-height: 1.3;
  24086.      -webkit-line-clamp: 2;
  24087.      font-size: 12px;
  24088.    }
  24089.    .m-product-card--style-2 .m-price-item--last {
  24090.      font-size: 18px;
  24091.    }
  24092.    .m-product-shipping__content {
  24093.      display: none;
  24094.    }
  24095.  }
  24096. </style>
  24097.  
  24098.  
  24099.                        </div>
  24100.                      
  24101.                    
  24102. </div>
  24103.              </div>
  24104.              
  24105.            </div><div
  24106.              class="m-product-tabs__content m-product-tabs__inner m-mixed-layout m-mixed-layout--mobile-grid"
  24107.              data-tab-index="1"
  24108.              data-enable-slider="false"
  24109.              
  24110.            >
  24111.              <div class="m-mixed-layout__wrapper">
  24112.                <div
  24113.                  class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-4-cols xl:m:grid-4-cols"
  24114.                  
  24115.                    style="
  24116.                      --grid-columns-mobile: 2;
  24117.                      --mobile-column-width: 40vw;
  24118.                    "
  24119.                  
  24120.                >
  24121.                    
  24122.                    
  24123.                    
  24124.                      
  24125.                        <div class="m:column">
  24126.                          
  24127.  
  24128.  
  24129. <div
  24130.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  24131.  data-view="card"
  24132.  
  24133.  data-product-id="9484231016761"
  24134.  
  24135. >
  24136.  
  24137.  <div class="m-product-card__wrapper">
  24138.    <div class="m-product-card__media">
  24139.      <a
  24140.        class="m-product-card__link m:block m:w-full"
  24141.        href="/products/8000-btu-portable-air-pho_108w6io3"
  24142.        aria-label="GARVEE PPortable Air Conditioner 8000 BTU Easy Setup Remote Control 3-in-1 Quiet for Small Room or Office 250-350 Sq.Ft Ideal for Summer Heat Relief and Personal Comfort"
  24143.        style="position: relative;"
  24144.      >
  24145.          
  24146.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  24147.            <img src="//www.garvee.com/cdn/shop/files/61hInZcxnrL.jpg?v=1718965196&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/61hInZcxnrL.jpg?v=1718965196&amp;width=165 165w, //www.garvee.com/cdn/shop/files/61hInZcxnrL.jpg?v=1718965196&amp;width=352 352w, //www.garvee.com/cdn/shop/files/61hInZcxnrL.jpg?v=1718965196&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  24148.          </responsive-image>
  24149.  
  24150.        <div class="badges-wrapper">
  24151.          
  24152.            
  24153.              
  24154.            
  24155.              
  24156.            
  24157.              
  24158.            
  24159.              
  24160.            
  24161.              
  24162.            
  24163.              
  24164.            
  24165.              
  24166.            
  24167.              
  24168.            
  24169.              
  24170.            
  24171.              
  24172.            
  24173.              
  24174.            
  24175.              
  24176.            
  24177.              
  24178.            
  24179.              
  24180.            
  24181.              
  24182.            
  24183.              
  24184.            
  24185.              
  24186.            
  24187.              
  24188.            
  24189.              
  24190.            
  24191.              
  24192.            
  24193.              
  24194.            
  24195.              
  24196.            
  24197.              
  24198.            
  24199.              
  24200.            
  24201.              
  24202.            
  24203.              
  24204.            
  24205.              
  24206.            
  24207.              
  24208.            
  24209.              
  24210.            
  24211.              
  24212.            
  24213.              
  24214.            
  24215.              
  24216.            
  24217.              
  24218.            
  24219.              
  24220.            
  24221.              
  24222.            
  24223.              
  24224.            
  24225.              
  24226.            
  24227.              
  24228. <span class="m-product-card__tag-name m-product-tag m-product-tag--hot m-gradient m-color-scheme-a402d81f-d7b9-4c3a-a76b-e400e1634c1d">Best-Seller</span>
  24229.              
  24230.            
  24231.              
  24232.            
  24233.          
  24234.        </div>
  24235.      </a></div>
  24236.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  24237.      <a class="m-product-card__hidden-link m:hidden" href="/products/8000-btu-portable-air-pho_108w6io3" aria-label="GARVEE PPortable Air Conditioner 8000 BTU Easy Setup Remote Control 3-in-1 Quiet for Small Room or Office 250-350 Sq.Ft Ideal for Summer Heat Relief and Personal Comfort"></a>
  24238.      <div class="m-product-card__info">
  24239.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  24240.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  24241.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  24242.                
  24243.                  style="display:none;"
  24244.                
  24245.              >Sold Out</span><span
  24246.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  24247.              data-foxkit-preorder-badge="9484231016761"
  24248.            ></span>
  24249.            
  24250. <div style="display:flex;">
  24251.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-36%
  24252. </span>
  24253.              </div>
  24254.            
  24255.          </div>
  24256.          
  24257.            <!-- <span style="font-size:12px;font-weight:bold;color:rgb(205,34,21,0.8);">Father's Day Deal</span> -->
  24258.          
  24259.        </div><h3 class="m-product-card__title h6">
  24260.          <a
  24261.            href="/products/8000-btu-portable-air-pho_108w6io3"
  24262.            class="m-product-card__name"
  24263.            style="font-weight:normal;"
  24264.          >
  24265.            GARVEE PPortable Air Conditioner 8000 BTU Easy Setup Remote Control 3-in-1 Quiet for Small Room or Office 250-350 Sq.Ft Ideal for Summer Heat Relief and Personal Comfort
  24266.          </a>
  24267.        </h3>
  24268.  
  24269.        
  24270.          <div class="m-product-card__reviews">
  24271.            
  24272.  
  24273.    
  24274.    
  24275.      
  24276.  
  24277.  
  24278.  <div
  24279.    style=""
  24280.    class="jdgm-widget jdgm-preview-badge"
  24281.    data-id="9484231016761"
  24282.    data-template="manual-installation"
  24283.    data-auto-install="false"
  24284.  >
  24285.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.89' data-number-of-reviews='217' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.89' tabindex='0' aria-label='4.89 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 217 reviews </span> </div>
  24286.  </div>
  24287.  
  24288.  
  24289. <style>
  24290.  @media screen and (max-width: 768px){
  24291.    .jdgm-qa-badge{
  24292.      display:none;
  24293.    }
  24294.    .jdgm-histogram{
  24295.    float:none;
  24296.  }
  24297.  }
  24298.  .jdgm-widget.jdgm-preview-badge{
  24299.    display:block !important;
  24300.  }
  24301.  .jdgm-sort-dropdown-arrow:before{
  24302.    position: relative;
  24303.    left: -8px;
  24304.  }
  24305. </style>
  24306.  
  24307.    
  24308.  
  24309.  
  24310.          </div>
  24311.        
  24312.  
  24313.        <div class="m-product-card__price">
  24314.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  24315. <div
  24316.  class="
  24317.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  24318.  data-sale-badge-type="percentage"
  24319. >
  24320.  <div class="m-price__regular">
  24321.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  24322.    <span class="m-price-item m-price-item--regular ">
  24323.      $229.99
  24324.    </span>
  24325.  </div>
  24326.  <div class="m-price__sale">
  24327.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  24328.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  24329.      $229.99
  24330.    </span>
  24331.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  24332.      <s class="m-price-item m-price-item--regular">
  24333.        
  24334.          $360.99
  24335.        
  24336.      </s></div>
  24337.  <div class="m-price__unit-wrapper m:hidden">
  24338.    <span class="m:visually-hidden">Unit price</span>
  24339.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  24340.  </div>
  24341.  
  24342.  
  24343. </div>
  24344.  
  24345. <style>
  24346.  .m-product-tag.m-product-tag--discounted.isSpring {
  24347.    background: #EC7521;
  24348.    color: #E6EBB3;
  24349.  }
  24350. </style>
  24351.  
  24352.        </div>
  24353.  
  24354.        
  24355.  
  24356.        
  24357.  
  24358.        <div class="m-product-card__description">
  24359.          Product Description Specifications Brand GARVEE Model Info 8000 BTU Item Weight ‎60 pounds Country of...
  24360.        </div></div>
  24361.      <div class="m-product-card__quick-add ">
  24362.    <product-form class="m-product-form m:w-full m:block" data-product-id="49456648880441"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49456648880441" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49456648880441" data-selected-variant=""><button
  24363.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  24364.          name="add"
  24365.          
  24366.          aria-label="Add to cart"
  24367.        >
  24368.          <span class="m-spinner-icon">
  24369.            <svg
  24370.              class="animate-spin m-svg-icon--medium"
  24371.              viewBox="0 0 24 24"
  24372.              fill="none"
  24373.            >
  24374.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  24375.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  24376.            </svg>
  24377.          </span>
  24378.          
  24379.          <span class="m-add-to-cart--text" data-atc-text>
  24380.            
  24381.              Add to cart
  24382.            
  24383.          </span>
  24384.        </button><input type="hidden" name="product-id" value="9484231016761" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  24385.  
  24386.    <!--
  24387.      
  24388.        <input hidden name="id" required value="49456648880441" data-selected-variant="">
  24389.        <button
  24390.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  24391.          data-product-url="/products/8000-btu-portable-air-pho_108w6io3"
  24392.          data-product-id="9484231016761"
  24393.          data-product-handle="8000-btu-portable-air-pho_108w6io3"
  24394.          aria-label="Add to cart"
  24395.        >
  24396.          <span class="m-spinner-icon">
  24397.            <svg
  24398.              class="animate-spin m-svg-icon--medium"
  24399.              xmlns="http://www.w3.org/2000/svg"
  24400.              viewBox="0 0 24 24"
  24401.              fill="none"
  24402.            >
  24403.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  24404.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  24405.            </svg>
  24406.          </span>
  24407.          
  24408.          <span class="m-add-to-cart--text">Add to cart</span>
  24409.        </button>
  24410.      
  24411.    -->
  24412.  
  24413. </div>
  24414. <style>
  24415.  @media screen and (max-width: 768px){
  24416.    .m-product-card__quick-add{
  24417.      /* display:none; */
  24418.      /* margin:5px auto 0 auto !important; */
  24419.      margin-top:5px !important;
  24420.    }
  24421.    .m-product-card__quick-add .m-add-to-cart{
  24422.      height:30px;
  24423.    }
  24424.    .m-product-card__quick-add .m-add-to-cart--text{
  24425.      font-size:14px !important;
  24426.    }
  24427.  }
  24428.  
  24429. </style>
  24430.  
  24431.    </div>
  24432.  </div>
  24433.  <input hidden name="id" required value="49456648880441" data-selected-variant="">
  24434. </div><script></script>
  24435. <style>
  24436.  .media_banner_collection {
  24437.    position: absolute;
  24438.    top:0;
  24439.    left:0;
  24440.    width: 20%;
  24441.    z-index:10;
  24442.  }
  24443.  .badges-wrapper {
  24444.    position: absolute;
  24445.    top:0;
  24446.    right:0;
  24447.    z-index:10;
  24448.  }
  24449.    /* .triangle_left{
  24450.      position: relative;
  24451.    }
  24452.    .triangle_left::after{
  24453.      content:'';
  24454.      width: 0;
  24455.      height: 0;
  24456.      position: absolute;
  24457.      border-top: 13px solid transparent;
  24458.      border-bottom: 13px solid transparent;
  24459.      border-right: 0px solid transparent;
  24460.      border-left: 13px solid #CD2215;
  24461.      left:100%;
  24462.    } */
  24463.  .m-product-card__wrapper{
  24464.    display:flex;
  24465.    flex-direction:column;
  24466.    height:100%;
  24467.  }
  24468.      .m-product-card__info{
  24469.      display: flex;
  24470.      flex-direction: column;
  24471.    }
  24472.      .m-product-card__price{
  24473.      order:1;
  24474.    }
  24475.    .m-product-card__title{
  24476.      order:2;
  24477.    }
  24478.    .m-product-card__reviews{
  24479.      order:3;
  24480.    }
  24481.    .m-product-shipping__content{
  24482.      order:4;
  24483.    }
  24484.    .m-product-shipping__text{
  24485.      font-size:11px !important;
  24486.    }
  24487.  .m-product-card--style-2 .m-product-card__name {
  24488.    font-size: 14px;
  24489.  }
  24490.    @media screen and (max-width: 768px) {
  24491.      /* .triangle_left::after{
  24492.      border-top: 11px solid transparent;
  24493.      border-bottom: 11px solid transparent;
  24494.      border-left: 11px solid #CD2215;
  24495.    } */
  24496.  
  24497.    .m-product-card--style-2 .m-product-card__name {
  24498.      line-height: 1.3;
  24499.      -webkit-line-clamp: 2;
  24500.      font-size: 12px;
  24501.    }
  24502.    .m-product-card--style-2 .m-price-item--last {
  24503.      font-size: 18px;
  24504.    }
  24505.    .m-product-shipping__content {
  24506.      display: none;
  24507.    }
  24508.  }
  24509. </style>
  24510.  
  24511.  
  24512.                        </div>
  24513.                      
  24514.                        <div class="m:column">
  24515.                          
  24516.  
  24517.  
  24518. <div
  24519.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  24520.  data-view="card"
  24521.  
  24522.  data-product-id="9482167124281"
  24523.  
  24524. >
  24525.  
  24526.  <div class="m-product-card__wrapper">
  24527.    <div class="m-product-card__media">
  24528.      <a
  24529.        class="m-product-card__link m:block m:w-full"
  24530.        href="/products/portable-air-conditioner-pho-0xj0o4pk"
  24531.        aria-label="GARVEE Portable Air Conditioner 10000 BTU 3-in-1 AC Remote Control Digital Display 24H Timer Dual Motor for Office Home Bedroom Dorms 450 Sq Ft"
  24532.        style="position: relative;"
  24533.      >
  24534.          
  24535.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  24536.            <img src="//www.garvee.com/cdn/shop/files/613UXxmvmEL_7d09a31a-35a3-4d7f-bf97-5855ba0fdcce.jpg?v=1718824654&amp;width=1100" alt="GARVEE Portable Air Conditioner 10000 BTU 3-in-1 AC Remote Control Digital Display 24H Timer Dual Motor for Office Home Bedroom Dorms 450 Sq Ft" srcset="//www.garvee.com/cdn/shop/files/613UXxmvmEL_7d09a31a-35a3-4d7f-bf97-5855ba0fdcce.jpg?v=1718824654&amp;width=165 165w, //www.garvee.com/cdn/shop/files/613UXxmvmEL_7d09a31a-35a3-4d7f-bf97-5855ba0fdcce.jpg?v=1718824654&amp;width=352 352w, //www.garvee.com/cdn/shop/files/613UXxmvmEL_7d09a31a-35a3-4d7f-bf97-5855ba0fdcce.jpg?v=1718824654&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  24537.          </responsive-image>
  24538.  
  24539.        <div class="badges-wrapper">
  24540.          
  24541.            
  24542.              
  24543.            
  24544.              
  24545.            
  24546.              
  24547.            
  24548.              
  24549.            
  24550.              
  24551.            
  24552.              
  24553.            
  24554.              
  24555.            
  24556.              
  24557.            
  24558.              
  24559.            
  24560.              
  24561.            
  24562.              
  24563.            
  24564.              
  24565.            
  24566.              
  24567.            
  24568.              
  24569.            
  24570.              
  24571.            
  24572.              
  24573.            
  24574.              
  24575.            
  24576.              
  24577.            
  24578.              
  24579.            
  24580.              
  24581.            
  24582.              
  24583.            
  24584.              
  24585.            
  24586.              
  24587.            
  24588.              
  24589.            
  24590.              
  24591.            
  24592.              
  24593.            
  24594.              
  24595.            
  24596.              
  24597.            
  24598.              
  24599.            
  24600.              
  24601.            
  24602.              
  24603.            
  24604.              
  24605.            
  24606.              
  24607.            
  24608.              
  24609.            
  24610.              
  24611.            
  24612.              
  24613.            
  24614.              
  24615.            
  24616.              
  24617. <span class="m-product-card__tag-name m-product-tag m-product-tag--hot m-gradient m-color-scheme-a402d81f-d7b9-4c3a-a76b-e400e1634c1d">Best-Seller</span>
  24618.              
  24619.            
  24620.              
  24621.            
  24622.          
  24623.        </div>
  24624.      </a></div>
  24625.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  24626.      <a class="m-product-card__hidden-link m:hidden" href="/products/portable-air-conditioner-pho-0xj0o4pk" aria-label="GARVEE Portable Air Conditioner 10000 BTU 3-in-1 AC Remote Control Digital Display 24H Timer Dual Motor for Office Home Bedroom Dorms 450 Sq Ft"></a>
  24627.      <div class="m-product-card__info">
  24628.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  24629.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  24630.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  24631.                
  24632.                  style="display:none;"
  24633.                
  24634.              >Sold Out</span><span
  24635.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  24636.              data-foxkit-preorder-badge="9482167124281"
  24637.            ></span>
  24638.            
  24639. <div style="display:flex;">
  24640.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-39%
  24641. </span>
  24642.              </div>
  24643.            
  24644.          </div>
  24645.          
  24646.        </div><h3 class="m-product-card__title h6">
  24647.          <a
  24648.            href="/products/portable-air-conditioner-pho-0xj0o4pk"
  24649.            class="m-product-card__name"
  24650.            style="font-weight:normal;"
  24651.          >
  24652.            GARVEE Portable Air Conditioner 10000 BTU 3-in-1 AC Remote Control Digital Display 24H Timer Dual Motor for Office Home Bedroom Dorms 450 Sq Ft
  24653.          </a>
  24654.        </h3>
  24655.  
  24656.        
  24657.          <div class="m-product-card__reviews">
  24658.            
  24659.  
  24660.    
  24661.    
  24662.      
  24663.  
  24664.  
  24665.  <div
  24666.    style=""
  24667.    class="jdgm-widget jdgm-preview-badge"
  24668.    data-id="9482167124281"
  24669.    data-template="manual-installation"
  24670.    data-auto-install="false"
  24671.  >
  24672.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.92' data-number-of-reviews='185' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.92' tabindex='0' aria-label='4.92 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 185 reviews </span> </div>
  24673.  </div>
  24674.  
  24675.  
  24676. <style>
  24677.  @media screen and (max-width: 768px){
  24678.    .jdgm-qa-badge{
  24679.      display:none;
  24680.    }
  24681.    .jdgm-histogram{
  24682.    float:none;
  24683.  }
  24684.  }
  24685.  .jdgm-widget.jdgm-preview-badge{
  24686.    display:block !important;
  24687.  }
  24688.  .jdgm-sort-dropdown-arrow:before{
  24689.    position: relative;
  24690.    left: -8px;
  24691.  }
  24692. </style>
  24693.  
  24694.    
  24695.  
  24696.  
  24697.          </div>
  24698.        
  24699.  
  24700.        <div class="m-product-card__price">
  24701.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  24702. <div
  24703.  class="
  24704.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  24705.  data-sale-badge-type="percentage"
  24706. >
  24707.  <div class="m-price__regular">
  24708.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  24709.    <span class="m-price-item m-price-item--regular ">
  24710.      $299.99
  24711.    </span>
  24712.  </div>
  24713.  <div class="m-price__sale">
  24714.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  24715.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  24716.      $299.99
  24717.    </span>
  24718.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  24719.      <s class="m-price-item m-price-item--regular">
  24720.        
  24721.          $494.99
  24722.        
  24723.      </s></div>
  24724.  <div class="m-price__unit-wrapper m:hidden">
  24725.    <span class="m:visually-hidden">Unit price</span>
  24726.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  24727.  </div>
  24728.  
  24729.  
  24730. </div>
  24731.  
  24732. <style>
  24733.  .m-product-tag.m-product-tag--discounted.isSpring {
  24734.    background: #EC7521;
  24735.    color: #E6EBB3;
  24736.  }
  24737. </style>
  24738.  
  24739.        </div>
  24740.  
  24741.        
  24742.  
  24743.        
  24744.  
  24745.        <div class="m-product-card__description">
  24746.          Dual Motor Cooling The biggest advantage of our product is its dual motor cooling system,...
  24747.        </div></div>
  24748.      <div class="m-product-card__quick-add ">
  24749.    <product-form class="m-product-form m:w-full m:block" data-product-id="49446691733817"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49446691733817" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49446691733817" data-selected-variant=""><button
  24750.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  24751.          name="add"
  24752.          
  24753.          aria-label="Add to cart"
  24754.        >
  24755.          <span class="m-spinner-icon">
  24756.            <svg
  24757.              class="animate-spin m-svg-icon--medium"
  24758.              viewBox="0 0 24 24"
  24759.              fill="none"
  24760.            >
  24761.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  24762.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  24763.            </svg>
  24764.          </span>
  24765.          
  24766.          <span class="m-add-to-cart--text" data-atc-text>
  24767.            
  24768.              Add to cart
  24769.            
  24770.          </span>
  24771.        </button><input type="hidden" name="product-id" value="9482167124281" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  24772.  
  24773.    <!--
  24774.      
  24775.        <input hidden name="id" required value="49446691733817" data-selected-variant="">
  24776.        <button
  24777.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  24778.          data-product-url="/products/portable-air-conditioner-pho-0xj0o4pk"
  24779.          data-product-id="9482167124281"
  24780.          data-product-handle="portable-air-conditioner-pho-0xj0o4pk"
  24781.          aria-label="Add to cart"
  24782.        >
  24783.          <span class="m-spinner-icon">
  24784.            <svg
  24785.              class="animate-spin m-svg-icon--medium"
  24786.              xmlns="http://www.w3.org/2000/svg"
  24787.              viewBox="0 0 24 24"
  24788.              fill="none"
  24789.            >
  24790.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  24791.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  24792.            </svg>
  24793.          </span>
  24794.          
  24795.          <span class="m-add-to-cart--text">Add to cart</span>
  24796.        </button>
  24797.      
  24798.    -->
  24799.  
  24800. </div>
  24801. <style>
  24802.  @media screen and (max-width: 768px){
  24803.    .m-product-card__quick-add{
  24804.      /* display:none; */
  24805.      /* margin:5px auto 0 auto !important; */
  24806.      margin-top:5px !important;
  24807.    }
  24808.    .m-product-card__quick-add .m-add-to-cart{
  24809.      height:30px;
  24810.    }
  24811.    .m-product-card__quick-add .m-add-to-cart--text{
  24812.      font-size:14px !important;
  24813.    }
  24814.  }
  24815.  
  24816. </style>
  24817.  
  24818.    </div>
  24819.  </div>
  24820.  <input hidden name="id" required value="49446691733817" data-selected-variant="">
  24821. </div><script></script>
  24822. <style>
  24823.  .media_banner_collection {
  24824.    position: absolute;
  24825.    top:0;
  24826.    left:0;
  24827.    width: 20%;
  24828.    z-index:10;
  24829.  }
  24830.  .badges-wrapper {
  24831.    position: absolute;
  24832.    top:0;
  24833.    right:0;
  24834.    z-index:10;
  24835.  }
  24836.    /* .triangle_left{
  24837.      position: relative;
  24838.    }
  24839.    .triangle_left::after{
  24840.      content:'';
  24841.      width: 0;
  24842.      height: 0;
  24843.      position: absolute;
  24844.      border-top: 13px solid transparent;
  24845.      border-bottom: 13px solid transparent;
  24846.      border-right: 0px solid transparent;
  24847.      border-left: 13px solid #CD2215;
  24848.      left:100%;
  24849.    } */
  24850.  .m-product-card__wrapper{
  24851.    display:flex;
  24852.    flex-direction:column;
  24853.    height:100%;
  24854.  }
  24855.      .m-product-card__info{
  24856.      display: flex;
  24857.      flex-direction: column;
  24858.    }
  24859.      .m-product-card__price{
  24860.      order:1;
  24861.    }
  24862.    .m-product-card__title{
  24863.      order:2;
  24864.    }
  24865.    .m-product-card__reviews{
  24866.      order:3;
  24867.    }
  24868.    .m-product-shipping__content{
  24869.      order:4;
  24870.    }
  24871.    .m-product-shipping__text{
  24872.      font-size:11px !important;
  24873.    }
  24874.  .m-product-card--style-2 .m-product-card__name {
  24875.    font-size: 14px;
  24876.  }
  24877.    @media screen and (max-width: 768px) {
  24878.      /* .triangle_left::after{
  24879.      border-top: 11px solid transparent;
  24880.      border-bottom: 11px solid transparent;
  24881.      border-left: 11px solid #CD2215;
  24882.    } */
  24883.  
  24884.    .m-product-card--style-2 .m-product-card__name {
  24885.      line-height: 1.3;
  24886.      -webkit-line-clamp: 2;
  24887.      font-size: 12px;
  24888.    }
  24889.    .m-product-card--style-2 .m-price-item--last {
  24890.      font-size: 18px;
  24891.    }
  24892.    .m-product-shipping__content {
  24893.      display: none;
  24894.    }
  24895.  }
  24896. </style>
  24897.  
  24898.  
  24899.                        </div>
  24900.                      
  24901.                        <div class="m:column">
  24902.                          
  24903.  
  24904.  
  24905. <div
  24906.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  24907.  data-view="card"
  24908.  
  24909.  data-product-id="9482329424185"
  24910.  
  24911. >
  24912.  
  24913.  <div class="m-product-card__wrapper">
  24914.    <div class="m-product-card__media">
  24915.      <a
  24916.        class="m-product-card__link m:block m:w-full"
  24917.        href="/products/10000-btu-air-conditioner-pho-10ggebcx"
  24918.        aria-label="GARVEE Portable AC/Dehumidifier & Fan - 3-In-1, 10000 BTU 115V~, Suitable for 350-450 Sq. Ft"
  24919.        style="position: relative;"
  24920.      >
  24921.          
  24922.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  24923.            <img src="//www.garvee.com/cdn/shop/files/image_1_9db85986-2637-4780-992e-1fd1ed2a92ac.jpg?v=1718873434&amp;width=1100" alt="GARVEE Portable AC/Dehumidifier &amp; Fan - 3-In-1, 10000 BTU 115V~, Suitable for 350-450 Sq. Ft" srcset="//www.garvee.com/cdn/shop/files/image_1_9db85986-2637-4780-992e-1fd1ed2a92ac.jpg?v=1718873434&amp;width=165 165w, //www.garvee.com/cdn/shop/files/image_1_9db85986-2637-4780-992e-1fd1ed2a92ac.jpg?v=1718873434&amp;width=352 352w, //www.garvee.com/cdn/shop/files/image_1_9db85986-2637-4780-992e-1fd1ed2a92ac.jpg?v=1718873434&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  24924.          </responsive-image>
  24925.  
  24926.        <div class="badges-wrapper">
  24927.          
  24928.            
  24929.              
  24930.            
  24931.              
  24932.            
  24933.              
  24934.            
  24935.              
  24936.            
  24937.              
  24938.            
  24939.              
  24940.            
  24941.              
  24942.            
  24943.              
  24944.            
  24945.              
  24946.            
  24947.              
  24948.            
  24949.              
  24950.            
  24951.              
  24952.            
  24953.              
  24954.            
  24955.              
  24956.            
  24957.              
  24958.            
  24959.              
  24960.            
  24961.              
  24962.            
  24963.              
  24964.            
  24965.              
  24966.            
  24967.              
  24968.            
  24969.              
  24970.            
  24971.              
  24972.            
  24973.              
  24974.            
  24975.              
  24976.            
  24977.              
  24978.            
  24979.              
  24980.            
  24981.              
  24982.            
  24983.              
  24984.            
  24985.              
  24986.            
  24987.              
  24988.            
  24989.              
  24990.            
  24991.              
  24992. <span class="m-product-card__tag-name m-product-tag m-product-tag--hot m-gradient m-color-scheme-a402d81f-d7b9-4c3a-a76b-e400e1634c1d">Best-Seller</span>
  24993.              
  24994.            
  24995.              
  24996.            
  24997.          
  24998.        </div>
  24999.      </a></div>
  25000.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  25001.      <a class="m-product-card__hidden-link m:hidden" href="/products/10000-btu-air-conditioner-pho-10ggebcx" aria-label="GARVEE Portable AC/Dehumidifier & Fan - 3-In-1, 10000 BTU 115V~, Suitable for 350-450 Sq. Ft"></a>
  25002.      <div class="m-product-card__info">
  25003.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  25004.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  25005.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  25006.                
  25007.                  style="display:none;"
  25008.                
  25009.              >Sold Out</span><span
  25010.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  25011.              data-foxkit-preorder-badge="9482329424185"
  25012.            ></span>
  25013.            
  25014. <div style="display:flex;">
  25015.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-38%
  25016. </span>
  25017.              </div>
  25018.            
  25019.          </div>
  25020.          
  25021.        </div><h3 class="m-product-card__title h6">
  25022.          <a
  25023.            href="/products/10000-btu-air-conditioner-pho-10ggebcx"
  25024.            class="m-product-card__name"
  25025.            style="font-weight:normal;"
  25026.          >
  25027.            GARVEE Portable AC/Dehumidifier & Fan - 3-In-1, 10000 BTU 115V~, Suitable for 350-450 Sq. Ft
  25028.          </a>
  25029.        </h3>
  25030.  
  25031.        
  25032.          <div class="m-product-card__reviews">
  25033.            
  25034.  
  25035.    
  25036.    
  25037.      
  25038.  
  25039.  
  25040.  <div
  25041.    style=""
  25042.    class="jdgm-widget jdgm-preview-badge"
  25043.    data-id="9482329424185"
  25044.    data-template="manual-installation"
  25045.    data-auto-install="false"
  25046.  >
  25047.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.89' data-number-of-reviews='217' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.89' tabindex='0' aria-label='4.89 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 217 reviews </span> </div>
  25048.  </div>
  25049.  
  25050.  
  25051. <style>
  25052.  @media screen and (max-width: 768px){
  25053.    .jdgm-qa-badge{
  25054.      display:none;
  25055.    }
  25056.    .jdgm-histogram{
  25057.    float:none;
  25058.  }
  25059.  }
  25060.  .jdgm-widget.jdgm-preview-badge{
  25061.    display:block !important;
  25062.  }
  25063.  .jdgm-sort-dropdown-arrow:before{
  25064.    position: relative;
  25065.    left: -8px;
  25066.  }
  25067. </style>
  25068.  
  25069.    
  25070.  
  25071.  
  25072.          </div>
  25073.        
  25074.  
  25075.        <div class="m-product-card__price">
  25076.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  25077. <div
  25078.  class="
  25079.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  25080.  data-sale-badge-type="percentage"
  25081. >
  25082.  <div class="m-price__regular">
  25083.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  25084.    <span class="m-price-item m-price-item--regular ">
  25085.      $249.99
  25086.    </span>
  25087.  </div>
  25088.  <div class="m-price__sale">
  25089.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  25090.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  25091.      $249.99
  25092.    </span>
  25093.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  25094.      <s class="m-price-item m-price-item--regular">
  25095.        
  25096.          $403.99
  25097.        
  25098.      </s></div>
  25099.  <div class="m-price__unit-wrapper m:hidden">
  25100.    <span class="m:visually-hidden">Unit price</span>
  25101.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  25102.  </div>
  25103.  
  25104.  
  25105. </div>
  25106.  
  25107. <style>
  25108.  .m-product-tag.m-product-tag--discounted.isSpring {
  25109.    background: #EC7521;
  25110.    color: #E6EBB3;
  25111.  }
  25112. </style>
  25113.  
  25114.        </div>
  25115.  
  25116.        
  25117.  
  25118.        
  25119.  
  25120.        <div class="m-product-card__description">
  25121.          Convenient drain pipe Removable filter Easy to clean Specifications Brand GARVEE Cooling Power 10000 British...
  25122.        </div></div>
  25123.      <div class="m-product-card__quick-add ">
  25124.    <product-form class="m-product-form m:w-full m:block" data-product-id="49447430390073"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49447430390073" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49447430390073" data-selected-variant=""><button
  25125.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  25126.          name="add"
  25127.          
  25128.          aria-label="Add to cart"
  25129.        >
  25130.          <span class="m-spinner-icon">
  25131.            <svg
  25132.              class="animate-spin m-svg-icon--medium"
  25133.              viewBox="0 0 24 24"
  25134.              fill="none"
  25135.            >
  25136.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  25137.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  25138.            </svg>
  25139.          </span>
  25140.          
  25141.          <span class="m-add-to-cart--text" data-atc-text>
  25142.            
  25143.              Add to cart
  25144.            
  25145.          </span>
  25146.        </button><input type="hidden" name="product-id" value="9482329424185" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  25147.  
  25148.    <!--
  25149.      
  25150.        <input hidden name="id" required value="49447430390073" data-selected-variant="">
  25151.        <button
  25152.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  25153.          data-product-url="/products/10000-btu-air-conditioner-pho-10ggebcx"
  25154.          data-product-id="9482329424185"
  25155.          data-product-handle="10000-btu-air-conditioner-pho-10ggebcx"
  25156.          aria-label="Add to cart"
  25157.        >
  25158.          <span class="m-spinner-icon">
  25159.            <svg
  25160.              class="animate-spin m-svg-icon--medium"
  25161.              xmlns="http://www.w3.org/2000/svg"
  25162.              viewBox="0 0 24 24"
  25163.              fill="none"
  25164.            >
  25165.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  25166.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  25167.            </svg>
  25168.          </span>
  25169.          
  25170.          <span class="m-add-to-cart--text">Add to cart</span>
  25171.        </button>
  25172.      
  25173.    -->
  25174.  
  25175. </div>
  25176. <style>
  25177.  @media screen and (max-width: 768px){
  25178.    .m-product-card__quick-add{
  25179.      /* display:none; */
  25180.      /* margin:5px auto 0 auto !important; */
  25181.      margin-top:5px !important;
  25182.    }
  25183.    .m-product-card__quick-add .m-add-to-cart{
  25184.      height:30px;
  25185.    }
  25186.    .m-product-card__quick-add .m-add-to-cart--text{
  25187.      font-size:14px !important;
  25188.    }
  25189.  }
  25190.  
  25191. </style>
  25192.  
  25193.    </div>
  25194.  </div>
  25195.  <input hidden name="id" required value="49447430390073" data-selected-variant="">
  25196. </div><script></script>
  25197. <style>
  25198.  .media_banner_collection {
  25199.    position: absolute;
  25200.    top:0;
  25201.    left:0;
  25202.    width: 20%;
  25203.    z-index:10;
  25204.  }
  25205.  .badges-wrapper {
  25206.    position: absolute;
  25207.    top:0;
  25208.    right:0;
  25209.    z-index:10;
  25210.  }
  25211.    /* .triangle_left{
  25212.      position: relative;
  25213.    }
  25214.    .triangle_left::after{
  25215.      content:'';
  25216.      width: 0;
  25217.      height: 0;
  25218.      position: absolute;
  25219.      border-top: 13px solid transparent;
  25220.      border-bottom: 13px solid transparent;
  25221.      border-right: 0px solid transparent;
  25222.      border-left: 13px solid #CD2215;
  25223.      left:100%;
  25224.    } */
  25225.  .m-product-card__wrapper{
  25226.    display:flex;
  25227.    flex-direction:column;
  25228.    height:100%;
  25229.  }
  25230.      .m-product-card__info{
  25231.      display: flex;
  25232.      flex-direction: column;
  25233.    }
  25234.      .m-product-card__price{
  25235.      order:1;
  25236.    }
  25237.    .m-product-card__title{
  25238.      order:2;
  25239.    }
  25240.    .m-product-card__reviews{
  25241.      order:3;
  25242.    }
  25243.    .m-product-shipping__content{
  25244.      order:4;
  25245.    }
  25246.    .m-product-shipping__text{
  25247.      font-size:11px !important;
  25248.    }
  25249.  .m-product-card--style-2 .m-product-card__name {
  25250.    font-size: 14px;
  25251.  }
  25252.    @media screen and (max-width: 768px) {
  25253.      /* .triangle_left::after{
  25254.      border-top: 11px solid transparent;
  25255.      border-bottom: 11px solid transparent;
  25256.      border-left: 11px solid #CD2215;
  25257.    } */
  25258.  
  25259.    .m-product-card--style-2 .m-product-card__name {
  25260.      line-height: 1.3;
  25261.      -webkit-line-clamp: 2;
  25262.      font-size: 12px;
  25263.    }
  25264.    .m-product-card--style-2 .m-price-item--last {
  25265.      font-size: 18px;
  25266.    }
  25267.    .m-product-shipping__content {
  25268.      display: none;
  25269.    }
  25270.  }
  25271. </style>
  25272.  
  25273.  
  25274.                        </div>
  25275.                      
  25276.                        <div class="m:column">
  25277.                          
  25278.  
  25279.  
  25280. <div
  25281.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  25282.  data-view="card"
  25283.  
  25284.  data-product-id="9482190422329"
  25285.  
  25286. >
  25287.  
  25288.  <div class="m-product-card__wrapper">
  25289.    <div class="m-product-card__media">
  25290.      <a
  25291.        class="m-product-card__link m:block m:w-full"
  25292.        href="/products/14000-btu-portable-pho_10hz5v1q"
  25293.        aria-label="GARVEE 14000 BTU Portable Air Conditioner 3-in-1 AC Unit Dehumidifier Fan Remote Control for Rooms Up to 700 Sq Ft Sleep Mode Timer - White"
  25294.        style="position: relative;"
  25295.      >
  25296.          
  25297.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  25298.            <img src="//www.garvee.com/cdn/shop/files/White_13.19_D_x_17.32_W_x_27.95_H-01_4f3ed391-c84f-400f-8bd0-f9467a664e26.jpg?v=1744695702&amp;width=1100" alt="GARVEE 14000 BTU Portable Air Conditioner 3-in-1 AC Unit Dehumidifier Fan Remote Control for Rooms Up to 700 Sq Ft Sleep Mode Timer - White" srcset="//www.garvee.com/cdn/shop/files/White_13.19_D_x_17.32_W_x_27.95_H-01_4f3ed391-c84f-400f-8bd0-f9467a664e26.jpg?v=1744695702&amp;width=165 165w, //www.garvee.com/cdn/shop/files/White_13.19_D_x_17.32_W_x_27.95_H-01_4f3ed391-c84f-400f-8bd0-f9467a664e26.jpg?v=1744695702&amp;width=352 352w, //www.garvee.com/cdn/shop/files/White_13.19_D_x_17.32_W_x_27.95_H-01_4f3ed391-c84f-400f-8bd0-f9467a664e26.jpg?v=1744695702&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  25299.          </responsive-image>
  25300.  
  25301.        <div class="badges-wrapper">
  25302.          
  25303.            
  25304.              
  25305.            
  25306.              
  25307.            
  25308.              
  25309.            
  25310.              
  25311.            
  25312.              
  25313.            
  25314.              
  25315.            
  25316.              
  25317.            
  25318.              
  25319.            
  25320.              
  25321.            
  25322.              
  25323.            
  25324.              
  25325.            
  25326.              
  25327.            
  25328.              
  25329.            
  25330.              
  25331.            
  25332.              
  25333.            
  25334.              
  25335.            
  25336.              
  25337.            
  25338.              
  25339.            
  25340.              
  25341.            
  25342.              
  25343.            
  25344.              
  25345.            
  25346.              
  25347.            
  25348.              
  25349.            
  25350.              
  25351.            
  25352.              
  25353.            
  25354.              
  25355.            
  25356.              
  25357.            
  25358.              
  25359.            
  25360.              
  25361.            
  25362.              
  25363.            
  25364.              
  25365.            
  25366.              
  25367.            
  25368.              
  25369.            
  25370.              
  25371.            
  25372.              
  25373.            
  25374.              
  25375.            
  25376.          
  25377.        </div>
  25378.      </a></div>
  25379.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  25380.      <a class="m-product-card__hidden-link m:hidden" href="/products/14000-btu-portable-pho_10hz5v1q" aria-label="GARVEE 14000 BTU Portable Air Conditioner 3-in-1 AC Unit Dehumidifier Fan Remote Control for Rooms Up to 700 Sq Ft Sleep Mode Timer - White"></a>
  25381.      <div class="m-product-card__info">
  25382.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  25383.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  25384.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  25385.                
  25386.                  style="display:none;"
  25387.                
  25388.              >Sold Out</span><span
  25389.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  25390.              data-foxkit-preorder-badge="9482190422329"
  25391.            ></span>
  25392.            
  25393. <div style="display:flex;">
  25394.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-29%
  25395. </span>
  25396.              </div>
  25397.            
  25398.          </div>
  25399.          
  25400.        </div><h3 class="m-product-card__title h6">
  25401.          <a
  25402.            href="/products/14000-btu-portable-pho_10hz5v1q"
  25403.            class="m-product-card__name"
  25404.            style="font-weight:normal;"
  25405.          >
  25406.            GARVEE 14000 BTU Portable Air Conditioner 3-in-1 AC Unit Dehumidifier Fan Remote Control for Rooms Up to 700 Sq Ft Sleep Mode Timer - White
  25407.          </a>
  25408.        </h3>
  25409.  
  25410.        
  25411.          <div class="m-product-card__reviews">
  25412.            
  25413.  
  25414.    
  25415.    
  25416.      
  25417.  
  25418.  
  25419.  <div
  25420.    style=""
  25421.    class="jdgm-widget jdgm-preview-badge"
  25422.    data-id="9482190422329"
  25423.    data-template="manual-installation"
  25424.    data-auto-install="false"
  25425.  >
  25426.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.92' data-number-of-reviews='185' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.92' tabindex='0' aria-label='4.92 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 185 reviews </span> </div>
  25427.  </div>
  25428.  
  25429.  
  25430. <style>
  25431.  @media screen and (max-width: 768px){
  25432.    .jdgm-qa-badge{
  25433.      display:none;
  25434.    }
  25435.    .jdgm-histogram{
  25436.    float:none;
  25437.  }
  25438.  }
  25439.  .jdgm-widget.jdgm-preview-badge{
  25440.    display:block !important;
  25441.  }
  25442.  .jdgm-sort-dropdown-arrow:before{
  25443.    position: relative;
  25444.    left: -8px;
  25445.  }
  25446. </style>
  25447.  
  25448.    
  25449.  
  25450.  
  25451.          </div>
  25452.        
  25453.  
  25454.        <div class="m-product-card__price">
  25455.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  25456. <div
  25457.  class="
  25458.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  25459.  data-sale-badge-type="percentage"
  25460. >
  25461.  <div class="m-price__regular">
  25462.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  25463.    <span class="m-price-item m-price-item--regular ">
  25464.      $349.99
  25465.    </span>
  25466.  </div>
  25467.  <div class="m-price__sale">
  25468.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  25469.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  25470.      $349.99
  25471.    </span>
  25472.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  25473.      <s class="m-price-item m-price-item--regular">
  25474.        
  25475.          $493.99
  25476.        
  25477.      </s></div>
  25478.  <div class="m-price__unit-wrapper m:hidden">
  25479.    <span class="m:visually-hidden">Unit price</span>
  25480.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  25481.  </div>
  25482.  
  25483.  
  25484. </div>
  25485.  
  25486. <style>
  25487.  .m-product-tag.m-product-tag--discounted.isSpring {
  25488.    background: #EC7521;
  25489.    color: #E6EBB3;
  25490.  }
  25491. </style>
  25492.  
  25493.        </div>
  25494.  
  25495.        
  25496.  
  25497.        
  25498.  
  25499.        <div class="m-product-card__description">
  25500.          Remote Control The upgraded remote control with a larger backlit LCD screen makes it easy...
  25501.        </div></div>
  25502.      <div class="m-product-card__quick-add ">
  25503.    <product-form class="m-product-form m:w-full m:block" data-product-id="49446767886649"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49446767886649" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49446767886649" data-selected-variant=""><button
  25504.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  25505.          name="add"
  25506.          
  25507.          aria-label="Add to cart"
  25508.        >
  25509.          <span class="m-spinner-icon">
  25510.            <svg
  25511.              class="animate-spin m-svg-icon--medium"
  25512.              viewBox="0 0 24 24"
  25513.              fill="none"
  25514.            >
  25515.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  25516.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  25517.            </svg>
  25518.          </span>
  25519.          
  25520.          <span class="m-add-to-cart--text" data-atc-text>
  25521.            
  25522.              Add to cart
  25523.            
  25524.          </span>
  25525.        </button><input type="hidden" name="product-id" value="9482190422329" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  25526.  
  25527.    <!--
  25528.      
  25529.        <input hidden name="id" required value="49446767886649" data-selected-variant="">
  25530.        <button
  25531.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  25532.          data-product-url="/products/14000-btu-portable-pho_10hz5v1q"
  25533.          data-product-id="9482190422329"
  25534.          data-product-handle="14000-btu-portable-pho_10hz5v1q"
  25535.          aria-label="Add to cart"
  25536.        >
  25537.          <span class="m-spinner-icon">
  25538.            <svg
  25539.              class="animate-spin m-svg-icon--medium"
  25540.              xmlns="http://www.w3.org/2000/svg"
  25541.              viewBox="0 0 24 24"
  25542.              fill="none"
  25543.            >
  25544.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  25545.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  25546.            </svg>
  25547.          </span>
  25548.          
  25549.          <span class="m-add-to-cart--text">Add to cart</span>
  25550.        </button>
  25551.      
  25552.    -->
  25553.  
  25554. </div>
  25555. <style>
  25556.  @media screen and (max-width: 768px){
  25557.    .m-product-card__quick-add{
  25558.      /* display:none; */
  25559.      /* margin:5px auto 0 auto !important; */
  25560.      margin-top:5px !important;
  25561.    }
  25562.    .m-product-card__quick-add .m-add-to-cart{
  25563.      height:30px;
  25564.    }
  25565.    .m-product-card__quick-add .m-add-to-cart--text{
  25566.      font-size:14px !important;
  25567.    }
  25568.  }
  25569.  
  25570. </style>
  25571.  
  25572.    </div>
  25573.  </div>
  25574.  <input hidden name="id" required value="49446767886649" data-selected-variant="">
  25575. </div><script></script>
  25576. <style>
  25577.  .media_banner_collection {
  25578.    position: absolute;
  25579.    top:0;
  25580.    left:0;
  25581.    width: 20%;
  25582.    z-index:10;
  25583.  }
  25584.  .badges-wrapper {
  25585.    position: absolute;
  25586.    top:0;
  25587.    right:0;
  25588.    z-index:10;
  25589.  }
  25590.    /* .triangle_left{
  25591.      position: relative;
  25592.    }
  25593.    .triangle_left::after{
  25594.      content:'';
  25595.      width: 0;
  25596.      height: 0;
  25597.      position: absolute;
  25598.      border-top: 13px solid transparent;
  25599.      border-bottom: 13px solid transparent;
  25600.      border-right: 0px solid transparent;
  25601.      border-left: 13px solid #CD2215;
  25602.      left:100%;
  25603.    } */
  25604.  .m-product-card__wrapper{
  25605.    display:flex;
  25606.    flex-direction:column;
  25607.    height:100%;
  25608.  }
  25609.      .m-product-card__info{
  25610.      display: flex;
  25611.      flex-direction: column;
  25612.    }
  25613.      .m-product-card__price{
  25614.      order:1;
  25615.    }
  25616.    .m-product-card__title{
  25617.      order:2;
  25618.    }
  25619.    .m-product-card__reviews{
  25620.      order:3;
  25621.    }
  25622.    .m-product-shipping__content{
  25623.      order:4;
  25624.    }
  25625.    .m-product-shipping__text{
  25626.      font-size:11px !important;
  25627.    }
  25628.  .m-product-card--style-2 .m-product-card__name {
  25629.    font-size: 14px;
  25630.  }
  25631.    @media screen and (max-width: 768px) {
  25632.      /* .triangle_left::after{
  25633.      border-top: 11px solid transparent;
  25634.      border-bottom: 11px solid transparent;
  25635.      border-left: 11px solid #CD2215;
  25636.    } */
  25637.  
  25638.    .m-product-card--style-2 .m-product-card__name {
  25639.      line-height: 1.3;
  25640.      -webkit-line-clamp: 2;
  25641.      font-size: 12px;
  25642.    }
  25643.    .m-product-card--style-2 .m-price-item--last {
  25644.      font-size: 18px;
  25645.    }
  25646.    .m-product-shipping__content {
  25647.      display: none;
  25648.    }
  25649.  }
  25650. </style>
  25651.  
  25652.  
  25653.                        </div>
  25654.                      
  25655.                        <div class="m:column">
  25656.                          
  25657.  
  25658.  
  25659. <div
  25660.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  25661.  data-view="card"
  25662.  
  25663.  data-product-id="9482781032761"
  25664.  
  25665. >
  25666.  
  25667.  <div class="m-product-card__wrapper">
  25668.    <div class="m-product-card__media">
  25669.      <a
  25670.        class="m-product-card__link m:block m:w-full"
  25671.        href="/products/14-000-btu-portable-ac-cools-pho_109iopp3"
  25672.        aria-label="GARVEE Portable Air Conditioner 14000 BTU 3-in-1 AC Dehumidifier Fan with Sleep Mode Remote for Large Homes RV Office up to 750 Sq.Ft Efficient Cooling and Air Comfort"
  25673.        style="position: relative;"
  25674.      >
  25675.          
  25676.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  25677.            <img src="//www.garvee.com/cdn/shop/files/image_1_2715f072-4dd1-48b5-89d3-7a5a02fbe845.jpg?v=1718868768&amp;width=1100" alt="14,000 BTU Portable AC, Cools 750 Sq. Ft, Quiet, 3-in-1 - GARVEE" srcset="//www.garvee.com/cdn/shop/files/image_1_2715f072-4dd1-48b5-89d3-7a5a02fbe845.jpg?v=1718868768&amp;width=165 165w, //www.garvee.com/cdn/shop/files/image_1_2715f072-4dd1-48b5-89d3-7a5a02fbe845.jpg?v=1718868768&amp;width=352 352w, //www.garvee.com/cdn/shop/files/image_1_2715f072-4dd1-48b5-89d3-7a5a02fbe845.jpg?v=1718868768&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  25678.          </responsive-image>
  25679.  
  25680.        <div class="badges-wrapper">
  25681.          
  25682.            
  25683.              
  25684.            
  25685.              
  25686.            
  25687.              
  25688.            
  25689.              
  25690.            
  25691.              
  25692.            
  25693.              
  25694.            
  25695.              
  25696.            
  25697.              
  25698.            
  25699.              
  25700.            
  25701.              
  25702.            
  25703.              
  25704.            
  25705.              
  25706.            
  25707.              
  25708.            
  25709.              
  25710.            
  25711.              
  25712.            
  25713.              
  25714.            
  25715.              
  25716.            
  25717.              
  25718.            
  25719.              
  25720.            
  25721.              
  25722.            
  25723.              
  25724.            
  25725.              
  25726.            
  25727.              
  25728.            
  25729.              
  25730.            
  25731.              
  25732.            
  25733.              
  25734.            
  25735.              
  25736.            
  25737.              
  25738.            
  25739.              
  25740.            
  25741.              
  25742.            
  25743.              
  25744.            
  25745.              
  25746.            
  25747.              
  25748.            
  25749.              
  25750.            
  25751.              
  25752. <span class="m-product-card__tag-name m-product-tag m-product-tag--hot m-gradient m-color-scheme-a402d81f-d7b9-4c3a-a76b-e400e1634c1d">Best-Seller</span>
  25753.              
  25754.            
  25755.              
  25756.            
  25757.              
  25758.            
  25759.          
  25760.        </div>
  25761.      </a></div>
  25762.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  25763.      <a class="m-product-card__hidden-link m:hidden" href="/products/14-000-btu-portable-ac-cools-pho_109iopp3" aria-label="GARVEE Portable Air Conditioner 14000 BTU 3-in-1 AC Dehumidifier Fan with Sleep Mode Remote for Large Homes RV Office up to 750 Sq.Ft Efficient Cooling and Air Comfort"></a>
  25764.      <div class="m-product-card__info">
  25765.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  25766.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  25767.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  25768.                
  25769.                  style="display:none;"
  25770.                
  25771.              >Sold Out</span><span
  25772.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  25773.              data-foxkit-preorder-badge="9482781032761"
  25774.            ></span>
  25775.            
  25776. <div style="display:flex;">
  25777.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-22%
  25778. </span>
  25779.              </div>
  25780.            
  25781.          </div>
  25782.          
  25783.        </div><h3 class="m-product-card__title h6">
  25784.          <a
  25785.            href="/products/14-000-btu-portable-ac-cools-pho_109iopp3"
  25786.            class="m-product-card__name"
  25787.            style="font-weight:normal;"
  25788.          >
  25789.            GARVEE Portable Air Conditioner 14000 BTU 3-in-1 AC Dehumidifier Fan with Sleep Mode Remote for Large Homes RV Office up to 750 Sq.Ft Efficient Cooling and Air Comfort
  25790.          </a>
  25791.        </h3>
  25792.  
  25793.        
  25794.          <div class="m-product-card__reviews">
  25795.            
  25796.  
  25797.    
  25798.    
  25799.      
  25800.  
  25801.  
  25802.  <div
  25803.    style=""
  25804.    class="jdgm-widget jdgm-preview-badge"
  25805.    data-id="9482781032761"
  25806.    data-template="manual-installation"
  25807.    data-auto-install="false"
  25808.  >
  25809.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.91' data-number-of-reviews='109' data-number-of-questions='2'> <span class='jdgm-prev-badge__stars' data-score='4.91' tabindex='0' aria-label='4.91 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 109 reviews </span> </div>
  25810.  </div>
  25811.  
  25812.  
  25813. <style>
  25814.  @media screen and (max-width: 768px){
  25815.    .jdgm-qa-badge{
  25816.      display:none;
  25817.    }
  25818.    .jdgm-histogram{
  25819.    float:none;
  25820.  }
  25821.  }
  25822.  .jdgm-widget.jdgm-preview-badge{
  25823.    display:block !important;
  25824.  }
  25825.  .jdgm-sort-dropdown-arrow:before{
  25826.    position: relative;
  25827.    left: -8px;
  25828.  }
  25829. </style>
  25830.  
  25831.    
  25832.  
  25833.  
  25834.          </div>
  25835.        
  25836.  
  25837.        <div class="m-product-card__price">
  25838.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  25839. <div
  25840.  class="
  25841.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  25842.  data-sale-badge-type="percentage"
  25843. >
  25844.  <div class="m-price__regular">
  25845.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  25846.    <span class="m-price-item m-price-item--regular ">
  25847.      $359.99
  25848.    </span>
  25849.  </div>
  25850.  <div class="m-price__sale">
  25851.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  25852.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  25853.      $359.99
  25854.    </span>
  25855.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  25856.      <s class="m-price-item m-price-item--regular">
  25857.        
  25858.          $461.99
  25859.        
  25860.      </s></div>
  25861.  <div class="m-price__unit-wrapper m:hidden">
  25862.    <span class="m:visually-hidden">Unit price</span>
  25863.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  25864.  </div>
  25865.  
  25866.  
  25867. </div>
  25868.  
  25869. <style>
  25870.  .m-product-tag.m-product-tag--discounted.isSpring {
  25871.    background: #EC7521;
  25872.    color: #E6EBB3;
  25873.  }
  25874. </style>
  25875.  
  25876.        </div>
  25877.  
  25878.        
  25879.  
  25880.        
  25881.  
  25882.        <div class="m-product-card__description">
  25883.          Temperature setting(61-88°F) and LED display Auto Swing function: Automatic up and down direction Silent Sleep...
  25884.        </div></div>
  25885.      <div class="m-product-card__quick-add ">
  25886.    <product-form class="m-product-form m:w-full m:block" data-product-id="49449933177145"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49449933177145" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49449933177145" data-selected-variant=""><button
  25887.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  25888.          name="add"
  25889.          
  25890.          aria-label="Add to cart"
  25891.        >
  25892.          <span class="m-spinner-icon">
  25893.            <svg
  25894.              class="animate-spin m-svg-icon--medium"
  25895.              viewBox="0 0 24 24"
  25896.              fill="none"
  25897.            >
  25898.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  25899.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  25900.            </svg>
  25901.          </span>
  25902.          
  25903.          <span class="m-add-to-cart--text" data-atc-text>
  25904.            
  25905.              Add to cart
  25906.            
  25907.          </span>
  25908.        </button><input type="hidden" name="product-id" value="9482781032761" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  25909.  
  25910.    <!--
  25911.      
  25912.        <input hidden name="id" required value="49449933177145" data-selected-variant="">
  25913.        <button
  25914.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  25915.          data-product-url="/products/14-000-btu-portable-ac-cools-pho_109iopp3"
  25916.          data-product-id="9482781032761"
  25917.          data-product-handle="14-000-btu-portable-ac-cools-pho_109iopp3"
  25918.          aria-label="Add to cart"
  25919.        >
  25920.          <span class="m-spinner-icon">
  25921.            <svg
  25922.              class="animate-spin m-svg-icon--medium"
  25923.              xmlns="http://www.w3.org/2000/svg"
  25924.              viewBox="0 0 24 24"
  25925.              fill="none"
  25926.            >
  25927.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  25928.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  25929.            </svg>
  25930.          </span>
  25931.          
  25932.          <span class="m-add-to-cart--text">Add to cart</span>
  25933.        </button>
  25934.      
  25935.    -->
  25936.  
  25937. </div>
  25938. <style>
  25939.  @media screen and (max-width: 768px){
  25940.    .m-product-card__quick-add{
  25941.      /* display:none; */
  25942.      /* margin:5px auto 0 auto !important; */
  25943.      margin-top:5px !important;
  25944.    }
  25945.    .m-product-card__quick-add .m-add-to-cart{
  25946.      height:30px;
  25947.    }
  25948.    .m-product-card__quick-add .m-add-to-cart--text{
  25949.      font-size:14px !important;
  25950.    }
  25951.  }
  25952.  
  25953. </style>
  25954.  
  25955.    </div>
  25956.  </div>
  25957.  <input hidden name="id" required value="49449933177145" data-selected-variant="">
  25958. </div><script></script>
  25959. <style>
  25960.  .media_banner_collection {
  25961.    position: absolute;
  25962.    top:0;
  25963.    left:0;
  25964.    width: 20%;
  25965.    z-index:10;
  25966.  }
  25967.  .badges-wrapper {
  25968.    position: absolute;
  25969.    top:0;
  25970.    right:0;
  25971.    z-index:10;
  25972.  }
  25973.    /* .triangle_left{
  25974.      position: relative;
  25975.    }
  25976.    .triangle_left::after{
  25977.      content:'';
  25978.      width: 0;
  25979.      height: 0;
  25980.      position: absolute;
  25981.      border-top: 13px solid transparent;
  25982.      border-bottom: 13px solid transparent;
  25983.      border-right: 0px solid transparent;
  25984.      border-left: 13px solid #CD2215;
  25985.      left:100%;
  25986.    } */
  25987.  .m-product-card__wrapper{
  25988.    display:flex;
  25989.    flex-direction:column;
  25990.    height:100%;
  25991.  }
  25992.      .m-product-card__info{
  25993.      display: flex;
  25994.      flex-direction: column;
  25995.    }
  25996.      .m-product-card__price{
  25997.      order:1;
  25998.    }
  25999.    .m-product-card__title{
  26000.      order:2;
  26001.    }
  26002.    .m-product-card__reviews{
  26003.      order:3;
  26004.    }
  26005.    .m-product-shipping__content{
  26006.      order:4;
  26007.    }
  26008.    .m-product-shipping__text{
  26009.      font-size:11px !important;
  26010.    }
  26011.  .m-product-card--style-2 .m-product-card__name {
  26012.    font-size: 14px;
  26013.  }
  26014.    @media screen and (max-width: 768px) {
  26015.      /* .triangle_left::after{
  26016.      border-top: 11px solid transparent;
  26017.      border-bottom: 11px solid transparent;
  26018.      border-left: 11px solid #CD2215;
  26019.    } */
  26020.  
  26021.    .m-product-card--style-2 .m-product-card__name {
  26022.      line-height: 1.3;
  26023.      -webkit-line-clamp: 2;
  26024.      font-size: 12px;
  26025.    }
  26026.    .m-product-card--style-2 .m-price-item--last {
  26027.      font-size: 18px;
  26028.    }
  26029.    .m-product-shipping__content {
  26030.      display: none;
  26031.    }
  26032.  }
  26033. </style>
  26034.  
  26035.  
  26036.                        </div>
  26037.                      
  26038.                        <div class="m:column">
  26039.                          
  26040.  
  26041.  
  26042. <div
  26043.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  26044.  data-view="card"
  26045.  
  26046.  data-product-id="9482670080313"
  26047.  
  26048. >
  26049.  
  26050.  <div class="m-product-card__wrapper">
  26051.    <div class="m-product-card__media">
  26052.      <a
  26053.        class="m-product-card__link m:block m:w-full"
  26054.        href="/products/14-000-btu-750-sq-pho_10a14u39"
  26055.        aria-label="GARVEE Portable AC/Dehumidifier & Fan - 3-In-1, 14000 BTU 115V~ - White, Suitable for 550-750 Sq.Ft"
  26056.        style="position: relative;"
  26057.      >
  26058.          
  26059.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  26060.            <img src="//www.garvee.com/cdn/shop/files/image_1_3b93ce33-27e8-45dc-be44-1307f69255ae.jpg?v=1718855134&amp;width=1100" alt="14,000 BTU Portable AC, Cools 750 Sq.Ft, Quiet, Home/Office - GARVEE" srcset="//www.garvee.com/cdn/shop/files/image_1_3b93ce33-27e8-45dc-be44-1307f69255ae.jpg?v=1718855134&amp;width=165 165w, //www.garvee.com/cdn/shop/files/image_1_3b93ce33-27e8-45dc-be44-1307f69255ae.jpg?v=1718855134&amp;width=352 352w, //www.garvee.com/cdn/shop/files/image_1_3b93ce33-27e8-45dc-be44-1307f69255ae.jpg?v=1718855134&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  26061.          </responsive-image>
  26062.  
  26063.        <div class="badges-wrapper">
  26064.          
  26065.            
  26066.              
  26067.            
  26068.              
  26069.            
  26070.              
  26071.            
  26072.              
  26073.            
  26074.              
  26075.            
  26076.              
  26077.            
  26078.              
  26079.            
  26080.              
  26081.            
  26082.              
  26083.            
  26084.              
  26085.            
  26086.              
  26087.            
  26088.              
  26089.            
  26090.              
  26091.            
  26092.              
  26093.            
  26094.              
  26095.            
  26096.              
  26097.            
  26098.              
  26099.            
  26100.              
  26101.            
  26102.              
  26103.            
  26104.              
  26105.            
  26106.              
  26107.            
  26108.              
  26109.            
  26110.              
  26111.            
  26112.              
  26113.            
  26114.              
  26115.            
  26116.              
  26117.            
  26118.              
  26119.            
  26120.              
  26121.            
  26122.              
  26123.            
  26124.              
  26125.            
  26126.              
  26127.            
  26128.              
  26129.            
  26130.              
  26131.            
  26132.              
  26133.            
  26134.          
  26135.        </div>
  26136.      </a></div>
  26137.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  26138.      <a class="m-product-card__hidden-link m:hidden" href="/products/14-000-btu-750-sq-pho_10a14u39" aria-label="GARVEE Portable AC/Dehumidifier & Fan - 3-In-1, 14000 BTU 115V~ - White, Suitable for 550-750 Sq.Ft"></a>
  26139.      <div class="m-product-card__info">
  26140.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  26141.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  26142.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  26143.                
  26144.                  style="display:none;"
  26145.                
  26146.              >Sold Out</span><span
  26147.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  26148.              data-foxkit-preorder-badge="9482670080313"
  26149.            ></span>
  26150.            
  26151. <div style="display:flex;">
  26152.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-41%
  26153. </span>
  26154.              </div>
  26155.            
  26156.          </div>
  26157.          
  26158.            <!-- <span style="font-size:12px;font-weight:bold;color:rgb(205,34,21,0.8);">Father's Day Deal</span> -->
  26159.          
  26160.        </div><h3 class="m-product-card__title h6">
  26161.          <a
  26162.            href="/products/14-000-btu-750-sq-pho_10a14u39"
  26163.            class="m-product-card__name"
  26164.            style="font-weight:normal;"
  26165.          >
  26166.            GARVEE Portable AC/Dehumidifier & Fan - 3-In-1, 14000 BTU 115V~ - White, Suitable for 550-750 Sq.Ft
  26167.          </a>
  26168.        </h3>
  26169.  
  26170.        
  26171.          <div class="m-product-card__reviews">
  26172.            
  26173.  
  26174.    
  26175.    
  26176.      
  26177.  
  26178.  
  26179.  <div
  26180.    style=""
  26181.    class="jdgm-widget jdgm-preview-badge"
  26182.    data-id="9482670080313"
  26183.    data-template="manual-installation"
  26184.    data-auto-install="false"
  26185.  >
  26186.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.84' data-number-of-reviews='533' data-number-of-questions='2'> <span class='jdgm-prev-badge__stars' data-score='4.84' tabindex='0' aria-label='4.84 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 533 reviews </span> </div>
  26187.  </div>
  26188.  
  26189.  
  26190. <style>
  26191.  @media screen and (max-width: 768px){
  26192.    .jdgm-qa-badge{
  26193.      display:none;
  26194.    }
  26195.    .jdgm-histogram{
  26196.    float:none;
  26197.  }
  26198.  }
  26199.  .jdgm-widget.jdgm-preview-badge{
  26200.    display:block !important;
  26201.  }
  26202.  .jdgm-sort-dropdown-arrow:before{
  26203.    position: relative;
  26204.    left: -8px;
  26205.  }
  26206. </style>
  26207.  
  26208.    
  26209.  
  26210.  
  26211.          </div>
  26212.        
  26213.  
  26214.        <div class="m-product-card__price">
  26215.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  26216. <div
  26217.  class="
  26218.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  26219.  data-sale-badge-type="percentage"
  26220. >
  26221.  <div class="m-price__regular">
  26222.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  26223.    <span class="m-price-item m-price-item--regular ">
  26224.      $357.99
  26225.    </span>
  26226.  </div>
  26227.  <div class="m-price__sale">
  26228.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  26229.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  26230.      $357.99
  26231.    </span>
  26232.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  26233.      <s class="m-price-item m-price-item--regular">
  26234.        
  26235.          $611.99
  26236.        
  26237.      </s></div>
  26238.  <div class="m-price__unit-wrapper m:hidden">
  26239.    <span class="m:visually-hidden">Unit price</span>
  26240.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  26241.  </div>
  26242.  
  26243.  
  26244. </div>
  26245.  
  26246. <style>
  26247.  .m-product-tag.m-product-tag--discounted.isSpring {
  26248.    background: #EC7521;
  26249.    color: #E6EBB3;
  26250.  }
  26251. </style>
  26252.  
  26253.        </div>
  26254.  
  26255.        
  26256.  
  26257.        
  26258.  
  26259.        <div class="m-product-card__description">
  26260.                        Convenient drain pipe   Removable filter   Easy...
  26261.        </div></div>
  26262.      <div class="m-product-card__quick-add ">
  26263.    <product-form class="m-product-form m:w-full m:block" data-product-id="49449168732473"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49449168732473" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49449168732473" data-selected-variant=""><button
  26264.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  26265.          name="add"
  26266.          
  26267.          aria-label="Add to cart"
  26268.        >
  26269.          <span class="m-spinner-icon">
  26270.            <svg
  26271.              class="animate-spin m-svg-icon--medium"
  26272.              viewBox="0 0 24 24"
  26273.              fill="none"
  26274.            >
  26275.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  26276.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  26277.            </svg>
  26278.          </span>
  26279.          
  26280.          <span class="m-add-to-cart--text" data-atc-text>
  26281.            
  26282.              Add to cart
  26283.            
  26284.          </span>
  26285.        </button><input type="hidden" name="product-id" value="9482670080313" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  26286.  
  26287.    <!--
  26288.      
  26289.        <input hidden name="id" required value="49449168732473" data-selected-variant="">
  26290.        <button
  26291.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  26292.          data-product-url="/products/14-000-btu-750-sq-pho_10a14u39"
  26293.          data-product-id="9482670080313"
  26294.          data-product-handle="14-000-btu-750-sq-pho_10a14u39"
  26295.          aria-label="Add to cart"
  26296.        >
  26297.          <span class="m-spinner-icon">
  26298.            <svg
  26299.              class="animate-spin m-svg-icon--medium"
  26300.              xmlns="http://www.w3.org/2000/svg"
  26301.              viewBox="0 0 24 24"
  26302.              fill="none"
  26303.            >
  26304.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  26305.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  26306.            </svg>
  26307.          </span>
  26308.          
  26309.          <span class="m-add-to-cart--text">Add to cart</span>
  26310.        </button>
  26311.      
  26312.    -->
  26313.  
  26314. </div>
  26315. <style>
  26316.  @media screen and (max-width: 768px){
  26317.    .m-product-card__quick-add{
  26318.      /* display:none; */
  26319.      /* margin:5px auto 0 auto !important; */
  26320.      margin-top:5px !important;
  26321.    }
  26322.    .m-product-card__quick-add .m-add-to-cart{
  26323.      height:30px;
  26324.    }
  26325.    .m-product-card__quick-add .m-add-to-cart--text{
  26326.      font-size:14px !important;
  26327.    }
  26328.  }
  26329.  
  26330. </style>
  26331.  
  26332.    </div>
  26333.  </div>
  26334.  <input hidden name="id" required value="49449168732473" data-selected-variant="">
  26335. </div><script></script>
  26336. <style>
  26337.  .media_banner_collection {
  26338.    position: absolute;
  26339.    top:0;
  26340.    left:0;
  26341.    width: 20%;
  26342.    z-index:10;
  26343.  }
  26344.  .badges-wrapper {
  26345.    position: absolute;
  26346.    top:0;
  26347.    right:0;
  26348.    z-index:10;
  26349.  }
  26350.    /* .triangle_left{
  26351.      position: relative;
  26352.    }
  26353.    .triangle_left::after{
  26354.      content:'';
  26355.      width: 0;
  26356.      height: 0;
  26357.      position: absolute;
  26358.      border-top: 13px solid transparent;
  26359.      border-bottom: 13px solid transparent;
  26360.      border-right: 0px solid transparent;
  26361.      border-left: 13px solid #CD2215;
  26362.      left:100%;
  26363.    } */
  26364.  .m-product-card__wrapper{
  26365.    display:flex;
  26366.    flex-direction:column;
  26367.    height:100%;
  26368.  }
  26369.      .m-product-card__info{
  26370.      display: flex;
  26371.      flex-direction: column;
  26372.    }
  26373.      .m-product-card__price{
  26374.      order:1;
  26375.    }
  26376.    .m-product-card__title{
  26377.      order:2;
  26378.    }
  26379.    .m-product-card__reviews{
  26380.      order:3;
  26381.    }
  26382.    .m-product-shipping__content{
  26383.      order:4;
  26384.    }
  26385.    .m-product-shipping__text{
  26386.      font-size:11px !important;
  26387.    }
  26388.  .m-product-card--style-2 .m-product-card__name {
  26389.    font-size: 14px;
  26390.  }
  26391.    @media screen and (max-width: 768px) {
  26392.      /* .triangle_left::after{
  26393.      border-top: 11px solid transparent;
  26394.      border-bottom: 11px solid transparent;
  26395.      border-left: 11px solid #CD2215;
  26396.    } */
  26397.  
  26398.    .m-product-card--style-2 .m-product-card__name {
  26399.      line-height: 1.3;
  26400.      -webkit-line-clamp: 2;
  26401.      font-size: 12px;
  26402.    }
  26403.    .m-product-card--style-2 .m-price-item--last {
  26404.      font-size: 18px;
  26405.    }
  26406.    .m-product-shipping__content {
  26407.      display: none;
  26408.    }
  26409.  }
  26410. </style>
  26411.  
  26412.  
  26413.                        </div>
  26414.                      
  26415.                        <div class="m:column">
  26416.                          
  26417.  
  26418.  
  26419. <div
  26420.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--bordered m-gradient m-color-background-2"
  26421.  data-view="card"
  26422.  
  26423.  data-product-id="9482328375609"
  26424.  
  26425. >
  26426.  
  26427.  <div class="m-product-card__wrapper">
  26428.    <div class="m-product-card__media">
  26429.      <a
  26430.        class="m-product-card__link m:block m:w-full"
  26431.        href="/products/14000-btu-portable-air-conditioner-pho_10i3m63j"
  26432.        aria-label="GARVEE Portable AC/Dehumidifier & Fan - 3-In-1, 14000 BTU 115V~, Suitable for 550-750 Sq.Ft"
  26433.        style="position: relative;"
  26434.      >
  26435.          
  26436.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  26437.            <img src="//www.garvee.com/cdn/shop/files/513r14IBYNL._AC_SL1500.jpg?v=1719391919&amp;width=1100" alt="GARVEE Portable AC/Dehumidifier &amp; Fan - 3-In-1, 14000 BTU 115V~, Suitable for 550-750 Sq.Ft" srcset="//www.garvee.com/cdn/shop/files/513r14IBYNL._AC_SL1500.jpg?v=1719391919&amp;width=165 165w, //www.garvee.com/cdn/shop/files/513r14IBYNL._AC_SL1500.jpg?v=1719391919&amp;width=352 352w, //www.garvee.com/cdn/shop/files/513r14IBYNL._AC_SL1500.jpg?v=1719391919&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  26438.          </responsive-image>
  26439.  
  26440.        <div class="badges-wrapper">
  26441.          
  26442.            
  26443.              
  26444.            
  26445.              
  26446.            
  26447.              
  26448.            
  26449.              
  26450.            
  26451.              
  26452.            
  26453.              
  26454.            
  26455.              
  26456.            
  26457.              
  26458.            
  26459.              
  26460.            
  26461.              
  26462.            
  26463.              
  26464.            
  26465.              
  26466.            
  26467.              
  26468.            
  26469.              
  26470.            
  26471.              
  26472.            
  26473.              
  26474.            
  26475.              
  26476.            
  26477.              
  26478.            
  26479.              
  26480.            
  26481.              
  26482.            
  26483.              
  26484.            
  26485.              
  26486.            
  26487.              
  26488.            
  26489.              
  26490.            
  26491.              
  26492.            
  26493.              
  26494.            
  26495.              
  26496.            
  26497.              
  26498.            
  26499.              
  26500.            
  26501.              
  26502.            
  26503.              
  26504.            
  26505.              
  26506.            
  26507.              
  26508.            
  26509.          
  26510.        </div>
  26511.      </a></div>
  26512.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  26513.      <a class="m-product-card__hidden-link m:hidden" href="/products/14000-btu-portable-air-conditioner-pho_10i3m63j" aria-label="GARVEE Portable AC/Dehumidifier & Fan - 3-In-1, 14000 BTU 115V~, Suitable for 550-750 Sq.Ft"></a>
  26514.      <div class="m-product-card__info">
  26515.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  26516.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  26517.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  26518.                
  26519.                  style="display:none;"
  26520.                
  26521.              >Sold Out</span><span
  26522.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  26523.              data-foxkit-preorder-badge="9482328375609"
  26524.            ></span>
  26525.            
  26526.          </div>
  26527.          
  26528.        </div><h3 class="m-product-card__title h6">
  26529.          <a
  26530.            href="/products/14000-btu-portable-air-conditioner-pho_10i3m63j"
  26531.            class="m-product-card__name"
  26532.            style="font-weight:normal;"
  26533.          >
  26534.            GARVEE Portable AC/Dehumidifier & Fan - 3-In-1, 14000 BTU 115V~, Suitable for 550-750 Sq.Ft
  26535.          </a>
  26536.        </h3>
  26537.  
  26538.        
  26539.          <div class="m-product-card__reviews">
  26540.            
  26541.  
  26542.    
  26543.    
  26544.      
  26545.  
  26546.  
  26547.  <div
  26548.    style=""
  26549.    class="jdgm-widget jdgm-preview-badge"
  26550.    data-id="9482328375609"
  26551.    data-template="manual-installation"
  26552.    data-auto-install="false"
  26553.  >
  26554.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.89' data-number-of-reviews='217' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.89' tabindex='0' aria-label='4.89 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 217 reviews </span> </div>
  26555.  </div>
  26556.  
  26557.  
  26558. <style>
  26559.  @media screen and (max-width: 768px){
  26560.    .jdgm-qa-badge{
  26561.      display:none;
  26562.    }
  26563.    .jdgm-histogram{
  26564.    float:none;
  26565.  }
  26566.  }
  26567.  .jdgm-widget.jdgm-preview-badge{
  26568.    display:block !important;
  26569.  }
  26570.  .jdgm-sort-dropdown-arrow:before{
  26571.    position: relative;
  26572.    left: -8px;
  26573.  }
  26574. </style>
  26575.  
  26576.    
  26577.  
  26578.  
  26579.          </div>
  26580.        
  26581.  
  26582.        <div class="m-product-card__price">
  26583.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  26584. <div
  26585.  class="
  26586.    m-price m:inline-flex m:items-center m:flex-wrap"
  26587.  data-sale-badge-type="percentage"
  26588. >
  26589.  <div class="m-price__regular">
  26590.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  26591.    <span class="m-price-item m-price-item--regular ">
  26592.      $349.99
  26593.    </span>
  26594.  </div>
  26595.  <div class="m-price__sale">
  26596.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  26597.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  26598.      $349.99
  26599.    </span>
  26600.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  26601.      <s class="m-price-item m-price-item--regular">
  26602.        
  26603.          
  26604.        
  26605.      </s></div>
  26606.  <div class="m-price__unit-wrapper m:hidden">
  26607.    <span class="m:visually-hidden">Unit price</span>
  26608.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  26609.  </div>
  26610.  
  26611.  
  26612. </div>
  26613.  
  26614. <style>
  26615.  .m-product-tag.m-product-tag--discounted.isSpring {
  26616.    background: #EC7521;
  26617.    color: #E6EBB3;
  26618.  }
  26619. </style>
  26620.  
  26621.        </div>
  26622.  
  26623.        
  26624.  
  26625.        
  26626.  
  26627.        <div class="m-product-card__description">
  26628.          Specifications Item Weight 64 pounds Warranty Description 1 Year Warranty Batteries required No Included Components...
  26629.        </div></div>
  26630.      <div class="m-product-card__quick-add ">
  26631.    <product-form class="m-product-form m:w-full m:block" data-product-id="49447427604793"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49447427604793" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49447427604793" data-selected-variant=""><button
  26632.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  26633.          name="add"
  26634.          
  26635.          aria-label="Add to cart"
  26636.        >
  26637.          <span class="m-spinner-icon">
  26638.            <svg
  26639.              class="animate-spin m-svg-icon--medium"
  26640.              viewBox="0 0 24 24"
  26641.              fill="none"
  26642.            >
  26643.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  26644.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  26645.            </svg>
  26646.          </span>
  26647.          
  26648.          <span class="m-add-to-cart--text" data-atc-text>
  26649.            
  26650.              Add to cart
  26651.            
  26652.          </span>
  26653.        </button><input type="hidden" name="product-id" value="9482328375609" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  26654.  
  26655.    <!--
  26656.      
  26657.        <input hidden name="id" required value="49447427604793" data-selected-variant="">
  26658.        <button
  26659.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  26660.          data-product-url="/products/14000-btu-portable-air-conditioner-pho_10i3m63j"
  26661.          data-product-id="9482328375609"
  26662.          data-product-handle="14000-btu-portable-air-conditioner-pho_10i3m63j"
  26663.          aria-label="Add to cart"
  26664.        >
  26665.          <span class="m-spinner-icon">
  26666.            <svg
  26667.              class="animate-spin m-svg-icon--medium"
  26668.              xmlns="http://www.w3.org/2000/svg"
  26669.              viewBox="0 0 24 24"
  26670.              fill="none"
  26671.            >
  26672.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  26673.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  26674.            </svg>
  26675.          </span>
  26676.          
  26677.          <span class="m-add-to-cart--text">Add to cart</span>
  26678.        </button>
  26679.      
  26680.    -->
  26681.  
  26682. </div>
  26683. <style>
  26684.  @media screen and (max-width: 768px){
  26685.    .m-product-card__quick-add{
  26686.      /* display:none; */
  26687.      /* margin:5px auto 0 auto !important; */
  26688.      margin-top:5px !important;
  26689.    }
  26690.    .m-product-card__quick-add .m-add-to-cart{
  26691.      height:30px;
  26692.    }
  26693.    .m-product-card__quick-add .m-add-to-cart--text{
  26694.      font-size:14px !important;
  26695.    }
  26696.  }
  26697.  
  26698. </style>
  26699.  
  26700.    </div>
  26701.  </div>
  26702.  <input hidden name="id" required value="49447427604793" data-selected-variant="">
  26703. </div><script></script>
  26704. <style>
  26705.  .media_banner_collection {
  26706.    position: absolute;
  26707.    top:0;
  26708.    left:0;
  26709.    width: 20%;
  26710.    z-index:10;
  26711.  }
  26712.  .badges-wrapper {
  26713.    position: absolute;
  26714.    top:0;
  26715.    right:0;
  26716.    z-index:10;
  26717.  }
  26718.    /* .triangle_left{
  26719.      position: relative;
  26720.    }
  26721.    .triangle_left::after{
  26722.      content:'';
  26723.      width: 0;
  26724.      height: 0;
  26725.      position: absolute;
  26726.      border-top: 13px solid transparent;
  26727.      border-bottom: 13px solid transparent;
  26728.      border-right: 0px solid transparent;
  26729.      border-left: 13px solid #CD2215;
  26730.      left:100%;
  26731.    } */
  26732.  .m-product-card__wrapper{
  26733.    display:flex;
  26734.    flex-direction:column;
  26735.    height:100%;
  26736.  }
  26737.      .m-product-card__info{
  26738.      display: flex;
  26739.      flex-direction: column;
  26740.    }
  26741.      .m-product-card__price{
  26742.      order:1;
  26743.    }
  26744.    .m-product-card__title{
  26745.      order:2;
  26746.    }
  26747.    .m-product-card__reviews{
  26748.      order:3;
  26749.    }
  26750.    .m-product-shipping__content{
  26751.      order:4;
  26752.    }
  26753.    .m-product-shipping__text{
  26754.      font-size:11px !important;
  26755.    }
  26756.  .m-product-card--style-2 .m-product-card__name {
  26757.    font-size: 14px;
  26758.  }
  26759.    @media screen and (max-width: 768px) {
  26760.      /* .triangle_left::after{
  26761.      border-top: 11px solid transparent;
  26762.      border-bottom: 11px solid transparent;
  26763.      border-left: 11px solid #CD2215;
  26764.    } */
  26765.  
  26766.    .m-product-card--style-2 .m-product-card__name {
  26767.      line-height: 1.3;
  26768.      -webkit-line-clamp: 2;
  26769.      font-size: 12px;
  26770.    }
  26771.    .m-product-card--style-2 .m-price-item--last {
  26772.      font-size: 18px;
  26773.    }
  26774.    .m-product-shipping__content {
  26775.      display: none;
  26776.    }
  26777.  }
  26778. </style>
  26779.  
  26780.  
  26781.                        </div>
  26782.                      
  26783.                        <div class="m:column">
  26784.                          
  26785.  
  26786.  
  26787. <div
  26788.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  26789.  data-view="card"
  26790.  
  26791.  data-product-id="9482362650937"
  26792.  
  26793. >
  26794.  
  26795.  <div class="m-product-card__wrapper">
  26796.    <div class="m-product-card__media">
  26797.      <a
  26798.        class="m-product-card__link m:block m:w-full"
  26799.        href="/products/12000-btu-air-conditioner-pho-0xj1j44a"
  26800.        aria-label="GARVEE 12000 BTU 3-in-1 Portable AC Unit | Cools 550 sq.ft with Fast Auto Cooling | Quiet Air Conditioner with Dehumidifier for Bedroom & Living Room - White"
  26801.        style="position: relative;"
  26802.      >
  26803.          
  26804.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  26805.            <img src="//www.garvee.com/cdn/shop/files/51Qw_cZkBQL._AC_SX679_b4601fc1-e586-469c-9aaa-611aaae565ad.jpg?v=1736152492&amp;width=1100" alt="GARVEE 12000 BTU 3-in-1 Portable AC Unit | Cools 550 sq.ft with Fast Auto Cooling | Quiet Air Conditioner with Dehumidifier for Bedroom &amp; Living Room - White" srcset="//www.garvee.com/cdn/shop/files/51Qw_cZkBQL._AC_SX679_b4601fc1-e586-469c-9aaa-611aaae565ad.jpg?v=1736152492&amp;width=165 165w, //www.garvee.com/cdn/shop/files/51Qw_cZkBQL._AC_SX679_b4601fc1-e586-469c-9aaa-611aaae565ad.jpg?v=1736152492&amp;width=352 352w, //www.garvee.com/cdn/shop/files/51Qw_cZkBQL._AC_SX679_b4601fc1-e586-469c-9aaa-611aaae565ad.jpg?v=1736152492&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  26806.          </responsive-image>
  26807.  
  26808.        <div class="badges-wrapper">
  26809.          
  26810.            
  26811.              
  26812.            
  26813.              
  26814.            
  26815.              
  26816.            
  26817.              
  26818.            
  26819.              
  26820.            
  26821.              
  26822.            
  26823.              
  26824.            
  26825.              
  26826.            
  26827.              
  26828.            
  26829.              
  26830.            
  26831.              
  26832.            
  26833.              
  26834.            
  26835.              
  26836.            
  26837.              
  26838.            
  26839.              
  26840.            
  26841.              
  26842.            
  26843.              
  26844.            
  26845.              
  26846.            
  26847.              
  26848.            
  26849.              
  26850.            
  26851.              
  26852.            
  26853.              
  26854.            
  26855.              
  26856.            
  26857.              
  26858.            
  26859.              
  26860.            
  26861.              
  26862.            
  26863.              
  26864.            
  26865.              
  26866.            
  26867.              
  26868.            
  26869.              
  26870.            
  26871.              
  26872.            
  26873.              
  26874.            
  26875.              
  26876.            
  26877.              
  26878.            
  26879.          
  26880.        </div>
  26881.      </a></div>
  26882.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  26883.      <a class="m-product-card__hidden-link m:hidden" href="/products/12000-btu-air-conditioner-pho-0xj1j44a" aria-label="GARVEE 12000 BTU 3-in-1 Portable AC Unit | Cools 550 sq.ft with Fast Auto Cooling | Quiet Air Conditioner with Dehumidifier for Bedroom & Living Room - White"></a>
  26884.      <div class="m-product-card__info">
  26885.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  26886.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  26887.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  26888.                
  26889.                  style="display:none;"
  26890.                
  26891.              >Sold Out</span><span
  26892.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  26893.              data-foxkit-preorder-badge="9482362650937"
  26894.            ></span>
  26895.            
  26896. <div style="display:flex;">
  26897.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-29%
  26898. </span>
  26899.              </div>
  26900.            
  26901.          </div>
  26902.          
  26903.        </div><h3 class="m-product-card__title h6">
  26904.          <a
  26905.            href="/products/12000-btu-air-conditioner-pho-0xj1j44a"
  26906.            class="m-product-card__name"
  26907.            style="font-weight:normal;"
  26908.          >
  26909.            GARVEE 12000 BTU 3-in-1 Portable AC Unit | Cools 550 sq.ft with Fast Auto Cooling | Quiet Air Conditioner with Dehumidifier for Bedroom & Living Room - White
  26910.          </a>
  26911.        </h3>
  26912.  
  26913.        
  26914.          <div class="m-product-card__reviews">
  26915.            
  26916.  
  26917.    
  26918.    
  26919.      
  26920.  
  26921.  
  26922.  <div
  26923.    style=""
  26924.    class="jdgm-widget jdgm-preview-badge"
  26925.    data-id="9482362650937"
  26926.    data-template="manual-installation"
  26927.    data-auto-install="false"
  26928.  >
  26929.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.84' data-number-of-reviews='533' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.84' tabindex='0' aria-label='4.84 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 533 reviews </span> </div>
  26930.  </div>
  26931.  
  26932.  
  26933. <style>
  26934.  @media screen and (max-width: 768px){
  26935.    .jdgm-qa-badge{
  26936.      display:none;
  26937.    }
  26938.    .jdgm-histogram{
  26939.    float:none;
  26940.  }
  26941.  }
  26942.  .jdgm-widget.jdgm-preview-badge{
  26943.    display:block !important;
  26944.  }
  26945.  .jdgm-sort-dropdown-arrow:before{
  26946.    position: relative;
  26947.    left: -8px;
  26948.  }
  26949. </style>
  26950.  
  26951.    
  26952.  
  26953.  
  26954.          </div>
  26955.        
  26956.  
  26957.        <div class="m-product-card__price">
  26958.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  26959. <div
  26960.  class="
  26961.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  26962.  data-sale-badge-type="percentage"
  26963. >
  26964.  <div class="m-price__regular">
  26965.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  26966.    <span class="m-price-item m-price-item--regular ">
  26967.      $345.99
  26968.    </span>
  26969.  </div>
  26970.  <div class="m-price__sale">
  26971.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  26972.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  26973.      $345.99
  26974.    </span>
  26975.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  26976.      <s class="m-price-item m-price-item--regular">
  26977.        
  26978.          $487.99
  26979.        
  26980.      </s></div>
  26981.  <div class="m-price__unit-wrapper m:hidden">
  26982.    <span class="m:visually-hidden">Unit price</span>
  26983.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  26984.  </div>
  26985.  
  26986.  
  26987. </div>
  26988.  
  26989. <style>
  26990.  .m-product-tag.m-product-tag--discounted.isSpring {
  26991.    background: #EC7521;
  26992.    color: #E6EBB3;
  26993.  }
  26994. </style>
  26995.  
  26996.        </div>
  26997.  
  26998.        
  26999.  
  27000.        
  27001.  
  27002.        <div class="m-product-card__description">
  27003.          Specifications Brand GARVEE Noise Level 53 dB Capacity 80 Pints Voltage 115 Volts (AC) Item...
  27004.        </div></div>
  27005.      <div class="m-product-card__quick-add ">
  27006.    <product-form class="m-product-form m:w-full m:block" data-product-id="49527190716729"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49527190716729" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49527190716729" data-selected-variant=""><button
  27007.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  27008.          name="add"
  27009.          
  27010.          aria-label="Add to cart"
  27011.        >
  27012.          <span class="m-spinner-icon">
  27013.            <svg
  27014.              class="animate-spin m-svg-icon--medium"
  27015.              viewBox="0 0 24 24"
  27016.              fill="none"
  27017.            >
  27018.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  27019.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  27020.            </svg>
  27021.          </span>
  27022.          
  27023.          <span class="m-add-to-cart--text" data-atc-text>
  27024.            
  27025.              Add to cart
  27026.            
  27027.          </span>
  27028.        </button><input type="hidden" name="product-id" value="9482362650937" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  27029.  
  27030.    <!--
  27031.      
  27032.        <input hidden name="id" required value="49527190716729" data-selected-variant="">
  27033.        <button
  27034.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  27035.          data-product-url="/products/12000-btu-air-conditioner-pho-0xj1j44a"
  27036.          data-product-id="9482362650937"
  27037.          data-product-handle="12000-btu-air-conditioner-pho-0xj1j44a"
  27038.          aria-label="Add to cart"
  27039.        >
  27040.          <span class="m-spinner-icon">
  27041.            <svg
  27042.              class="animate-spin m-svg-icon--medium"
  27043.              xmlns="http://www.w3.org/2000/svg"
  27044.              viewBox="0 0 24 24"
  27045.              fill="none"
  27046.            >
  27047.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  27048.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  27049.            </svg>
  27050.          </span>
  27051.          
  27052.          <span class="m-add-to-cart--text">Add to cart</span>
  27053.        </button>
  27054.      
  27055.    -->
  27056.  
  27057. </div>
  27058. <style>
  27059.  @media screen and (max-width: 768px){
  27060.    .m-product-card__quick-add{
  27061.      /* display:none; */
  27062.      /* margin:5px auto 0 auto !important; */
  27063.      margin-top:5px !important;
  27064.    }
  27065.    .m-product-card__quick-add .m-add-to-cart{
  27066.      height:30px;
  27067.    }
  27068.    .m-product-card__quick-add .m-add-to-cart--text{
  27069.      font-size:14px !important;
  27070.    }
  27071.  }
  27072.  
  27073. </style>
  27074.  
  27075.    </div>
  27076.  </div>
  27077.  <input hidden name="id" required value="49527190716729" data-selected-variant="">
  27078. </div><script></script>
  27079. <style>
  27080.  .media_banner_collection {
  27081.    position: absolute;
  27082.    top:0;
  27083.    left:0;
  27084.    width: 20%;
  27085.    z-index:10;
  27086.  }
  27087.  .badges-wrapper {
  27088.    position: absolute;
  27089.    top:0;
  27090.    right:0;
  27091.    z-index:10;
  27092.  }
  27093.    /* .triangle_left{
  27094.      position: relative;
  27095.    }
  27096.    .triangle_left::after{
  27097.      content:'';
  27098.      width: 0;
  27099.      height: 0;
  27100.      position: absolute;
  27101.      border-top: 13px solid transparent;
  27102.      border-bottom: 13px solid transparent;
  27103.      border-right: 0px solid transparent;
  27104.      border-left: 13px solid #CD2215;
  27105.      left:100%;
  27106.    } */
  27107.  .m-product-card__wrapper{
  27108.    display:flex;
  27109.    flex-direction:column;
  27110.    height:100%;
  27111.  }
  27112.      .m-product-card__info{
  27113.      display: flex;
  27114.      flex-direction: column;
  27115.    }
  27116.      .m-product-card__price{
  27117.      order:1;
  27118.    }
  27119.    .m-product-card__title{
  27120.      order:2;
  27121.    }
  27122.    .m-product-card__reviews{
  27123.      order:3;
  27124.    }
  27125.    .m-product-shipping__content{
  27126.      order:4;
  27127.    }
  27128.    .m-product-shipping__text{
  27129.      font-size:11px !important;
  27130.    }
  27131.  .m-product-card--style-2 .m-product-card__name {
  27132.    font-size: 14px;
  27133.  }
  27134.    @media screen and (max-width: 768px) {
  27135.      /* .triangle_left::after{
  27136.      border-top: 11px solid transparent;
  27137.      border-bottom: 11px solid transparent;
  27138.      border-left: 11px solid #CD2215;
  27139.    } */
  27140.  
  27141.    .m-product-card--style-2 .m-product-card__name {
  27142.      line-height: 1.3;
  27143.      -webkit-line-clamp: 2;
  27144.      font-size: 12px;
  27145.    }
  27146.    .m-product-card--style-2 .m-price-item--last {
  27147.      font-size: 18px;
  27148.    }
  27149.    .m-product-shipping__content {
  27150.      display: none;
  27151.    }
  27152.  }
  27153. </style>
  27154.  
  27155.  
  27156.                        </div>
  27157.                      
  27158.                    
  27159. </div>
  27160.              </div>
  27161.              
  27162.            </div><div
  27163.              class="m-product-tabs__content m-product-tabs__inner m-mixed-layout m-mixed-layout--mobile-grid"
  27164.              data-tab-index="2"
  27165.              data-enable-slider="false"
  27166.              
  27167.            >
  27168.              <div class="m-mixed-layout__wrapper">
  27169.                <div
  27170.                  class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-4-cols xl:m:grid-4-cols"
  27171.                  
  27172.                    style="
  27173.                      --grid-columns-mobile: 2;
  27174.                      --mobile-column-width: 40vw;
  27175.                    "
  27176.                  
  27177.                >
  27178.                    
  27179.                    
  27180.                    
  27181.                      
  27182.                        <div class="m:column">
  27183.                          
  27184.  
  27185.  
  27186. <div
  27187.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  27188.  data-view="card"
  27189.  
  27190.  data-product-id="9534833590585"
  27191.  
  27192. >
  27193.  
  27194.  <div class="m-product-card__wrapper">
  27195.    <div class="m-product-card__media">
  27196.      <a
  27197.        class="m-product-card__link m:block m:w-full"
  27198.        href="/products/garvee-garveelife-39-hay-spear-double-pho-14ppc8f9"
  27199.        aria-label="GARVEE 39" Hay Spear,Double SpearBale Spear 4000lbs Loading Capacity Hay Spear Attachment Skid Steer Loader Tractor Bucket Attachment Quick Attach for Bobcat Tractors"
  27200.        style="position: relative;"
  27201.      >
  27202.          
  27203.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  27204.            <img src="//www.garvee.com/cdn/shop/files/51-LlD6Ws8L_c9de2f4f-a8cd-439f-91d9-73a2c5407ca2.jpg?v=1721267795&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/51-LlD6Ws8L_c9de2f4f-a8cd-439f-91d9-73a2c5407ca2.jpg?v=1721267795&amp;width=165 165w, //www.garvee.com/cdn/shop/files/51-LlD6Ws8L_c9de2f4f-a8cd-439f-91d9-73a2c5407ca2.jpg?v=1721267795&amp;width=352 352w, //www.garvee.com/cdn/shop/files/51-LlD6Ws8L_c9de2f4f-a8cd-439f-91d9-73a2c5407ca2.jpg?v=1721267795&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  27205.          </responsive-image>
  27206.  
  27207.        <div class="badges-wrapper">
  27208.          
  27209.            
  27210.              
  27211.            
  27212.              
  27213.            
  27214.              
  27215.            
  27216.              
  27217.            
  27218.              
  27219.            
  27220.              
  27221.            
  27222.              
  27223.            
  27224.              
  27225.            
  27226.              
  27227.            
  27228.              
  27229.            
  27230.              
  27231.            
  27232.              
  27233.            
  27234.              
  27235.            
  27236.              
  27237.            
  27238.              
  27239.            
  27240.              
  27241.            
  27242.              
  27243.            
  27244.              
  27245.            
  27246.              
  27247.            
  27248.              
  27249.            
  27250.              
  27251.            
  27252.              
  27253.            
  27254.          
  27255.        </div>
  27256.      </a></div>
  27257.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  27258.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-garveelife-39-hay-spear-double-pho-14ppc8f9" aria-label="GARVEE 39" Hay Spear,Double SpearBale Spear 4000lbs Loading Capacity Hay Spear Attachment Skid Steer Loader Tractor Bucket Attachment Quick Attach for Bobcat Tractors"></a>
  27259.      <div class="m-product-card__info">
  27260.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  27261.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  27262.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  27263.                
  27264.                  style="display:none;"
  27265.                
  27266.              >Sold Out</span><span
  27267.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  27268.              data-foxkit-preorder-badge="9534833590585"
  27269.            ></span>
  27270.            
  27271. <div style="display:flex;">
  27272.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-35%
  27273. </span>
  27274.              </div>
  27275.            
  27276.          </div>
  27277.          
  27278.        </div><h3 class="m-product-card__title h6">
  27279.          <a
  27280.            href="/products/garvee-garveelife-39-hay-spear-double-pho-14ppc8f9"
  27281.            class="m-product-card__name"
  27282.            style="font-weight:normal;"
  27283.          >
  27284.            GARVEE 39" Hay Spear,Double SpearBale Spear 4000lbs Loading Capacity Hay Spear Attachment Skid Steer Loader Tractor Bucket Attachment Quick Attach for Bobcat Tractors
  27285.          </a>
  27286.        </h3>
  27287.  
  27288.        
  27289.          <div class="m-product-card__reviews">
  27290.            
  27291.  
  27292.    
  27293.    
  27294.      
  27295.  
  27296.  
  27297.  <div
  27298.    style=""
  27299.    class="jdgm-widget jdgm-preview-badge"
  27300.    data-id="9534833590585"
  27301.    data-template="manual-installation"
  27302.    data-auto-install="false"
  27303.  >
  27304.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.81' data-number-of-reviews='43' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.81' tabindex='0' aria-label='4.81 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 43 reviews </span> </div>
  27305.  </div>
  27306.  
  27307.  
  27308. <style>
  27309.  @media screen and (max-width: 768px){
  27310.    .jdgm-qa-badge{
  27311.      display:none;
  27312.    }
  27313.    .jdgm-histogram{
  27314.    float:none;
  27315.  }
  27316.  }
  27317.  .jdgm-widget.jdgm-preview-badge{
  27318.    display:block !important;
  27319.  }
  27320.  .jdgm-sort-dropdown-arrow:before{
  27321.    position: relative;
  27322.    left: -8px;
  27323.  }
  27324. </style>
  27325.  
  27326.    
  27327.  
  27328.  
  27329.          </div>
  27330.        
  27331.  
  27332.        <div class="m-product-card__price">
  27333.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  27334. <div
  27335.  class="
  27336.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  27337.  data-sale-badge-type="percentage"
  27338. >
  27339.  <div class="m-price__regular">
  27340.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  27341.    <span class="m-price-item m-price-item--regular ">
  27342.      $414.99
  27343.    </span>
  27344.  </div>
  27345.  <div class="m-price__sale">
  27346.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  27347.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  27348.      $414.99
  27349.    </span>
  27350.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  27351.      <s class="m-price-item m-price-item--regular">
  27352.        
  27353.          $644.99
  27354.        
  27355.      </s></div>
  27356.  <div class="m-price__unit-wrapper m:hidden">
  27357.    <span class="m:visually-hidden">Unit price</span>
  27358.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  27359.  </div>
  27360.  
  27361.  
  27362. </div>
  27363.  
  27364. <style>
  27365.  .m-product-tag.m-product-tag--discounted.isSpring {
  27366.    background: #EC7521;
  27367.    color: #E6EBB3;
  27368.  }
  27369. </style>
  27370.  
  27371.        </div>
  27372.  
  27373.        
  27374.  
  27375.        
  27376.  
  27377.        <div class="m-product-card__description">
  27378.          Professional-grade hay spear attachment for efficient farming operations GARVEE 39" Hay Spear: Superior Strength and...
  27379.        </div></div>
  27380.      <div class="m-product-card__quick-add ">
  27381.    <product-form class="m-product-form m:w-full m:block" data-product-id="49631740231993"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49631740231993" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49631740231993" data-selected-variant=""><button
  27382.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  27383.          name="add"
  27384.          
  27385.          aria-label="Add to cart"
  27386.        >
  27387.          <span class="m-spinner-icon">
  27388.            <svg
  27389.              class="animate-spin m-svg-icon--medium"
  27390.              viewBox="0 0 24 24"
  27391.              fill="none"
  27392.            >
  27393.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  27394.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  27395.            </svg>
  27396.          </span>
  27397.          
  27398.          <span class="m-add-to-cart--text" data-atc-text>
  27399.            
  27400.              Add to cart
  27401.            
  27402.          </span>
  27403.        </button><input type="hidden" name="product-id" value="9534833590585" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  27404.  
  27405.    <!--
  27406.      
  27407.        <input hidden name="id" required value="49631740231993" data-selected-variant="">
  27408.        <button
  27409.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  27410.          data-product-url="/products/garvee-garveelife-39-hay-spear-double-pho-14ppc8f9"
  27411.          data-product-id="9534833590585"
  27412.          data-product-handle="garvee-garveelife-39-hay-spear-double-pho-14ppc8f9"
  27413.          aria-label="Add to cart"
  27414.        >
  27415.          <span class="m-spinner-icon">
  27416.            <svg
  27417.              class="animate-spin m-svg-icon--medium"
  27418.              xmlns="http://www.w3.org/2000/svg"
  27419.              viewBox="0 0 24 24"
  27420.              fill="none"
  27421.            >
  27422.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  27423.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  27424.            </svg>
  27425.          </span>
  27426.          
  27427.          <span class="m-add-to-cart--text">Add to cart</span>
  27428.        </button>
  27429.      
  27430.    -->
  27431.  
  27432. </div>
  27433. <style>
  27434.  @media screen and (max-width: 768px){
  27435.    .m-product-card__quick-add{
  27436.      /* display:none; */
  27437.      /* margin:5px auto 0 auto !important; */
  27438.      margin-top:5px !important;
  27439.    }
  27440.    .m-product-card__quick-add .m-add-to-cart{
  27441.      height:30px;
  27442.    }
  27443.    .m-product-card__quick-add .m-add-to-cart--text{
  27444.      font-size:14px !important;
  27445.    }
  27446.  }
  27447.  
  27448. </style>
  27449.  
  27450.    </div>
  27451.  </div>
  27452.  <input hidden name="id" required value="49631740231993" data-selected-variant="">
  27453. </div><script></script>
  27454. <style>
  27455.  .media_banner_collection {
  27456.    position: absolute;
  27457.    top:0;
  27458.    left:0;
  27459.    width: 20%;
  27460.    z-index:10;
  27461.  }
  27462.  .badges-wrapper {
  27463.    position: absolute;
  27464.    top:0;
  27465.    right:0;
  27466.    z-index:10;
  27467.  }
  27468.    /* .triangle_left{
  27469.      position: relative;
  27470.    }
  27471.    .triangle_left::after{
  27472.      content:'';
  27473.      width: 0;
  27474.      height: 0;
  27475.      position: absolute;
  27476.      border-top: 13px solid transparent;
  27477.      border-bottom: 13px solid transparent;
  27478.      border-right: 0px solid transparent;
  27479.      border-left: 13px solid #CD2215;
  27480.      left:100%;
  27481.    } */
  27482.  .m-product-card__wrapper{
  27483.    display:flex;
  27484.    flex-direction:column;
  27485.    height:100%;
  27486.  }
  27487.      .m-product-card__info{
  27488.      display: flex;
  27489.      flex-direction: column;
  27490.    }
  27491.      .m-product-card__price{
  27492.      order:1;
  27493.    }
  27494.    .m-product-card__title{
  27495.      order:2;
  27496.    }
  27497.    .m-product-card__reviews{
  27498.      order:3;
  27499.    }
  27500.    .m-product-shipping__content{
  27501.      order:4;
  27502.    }
  27503.    .m-product-shipping__text{
  27504.      font-size:11px !important;
  27505.    }
  27506.  .m-product-card--style-2 .m-product-card__name {
  27507.    font-size: 14px;
  27508.  }
  27509.    @media screen and (max-width: 768px) {
  27510.      /* .triangle_left::after{
  27511.      border-top: 11px solid transparent;
  27512.      border-bottom: 11px solid transparent;
  27513.      border-left: 11px solid #CD2215;
  27514.    } */
  27515.  
  27516.    .m-product-card--style-2 .m-product-card__name {
  27517.      line-height: 1.3;
  27518.      -webkit-line-clamp: 2;
  27519.      font-size: 12px;
  27520.    }
  27521.    .m-product-card--style-2 .m-price-item--last {
  27522.      font-size: 18px;
  27523.    }
  27524.    .m-product-shipping__content {
  27525.      display: none;
  27526.    }
  27527.  }
  27528. </style>
  27529.  
  27530.  
  27531.                        </div>
  27532.                      
  27533.                        <div class="m:column">
  27534.                          
  27535.  
  27536.  
  27537. <div
  27538.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  27539.  data-view="card"
  27540.  
  27541.  data-product-id="9483206623545"
  27542.  
  27543. >
  27544.  
  27545.  <div class="m-product-card__wrapper">
  27546.    <div class="m-product-card__media">
  27547.      <a
  27548.        class="m-product-card__link m:block m:w-full"
  27549.        href="/products/garvee-land-leveler-heavy-duty-steel-pho-10thcmue"
  27550.        aria-label="GARVEE Driveway Drag 66" Width Heavy Duty Steel Grader for ATV, UTV, Lawn Tractors, Topdressing Spreader, Wide Drag Level, Hay Field, Gravel, Soil"
  27551.        style="position: relative;"
  27552.      >
  27553.          
  27554.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  27555.            <img src="//www.garvee.com/cdn/shop/files/61RTLxO095L.jpg?v=1718941412&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/61RTLxO095L.jpg?v=1718941412&amp;width=165 165w, //www.garvee.com/cdn/shop/files/61RTLxO095L.jpg?v=1718941412&amp;width=352 352w, //www.garvee.com/cdn/shop/files/61RTLxO095L.jpg?v=1718941412&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  27556.          </responsive-image>
  27557.  
  27558.        <div class="badges-wrapper">
  27559.          
  27560.            
  27561.              
  27562.            
  27563.              
  27564.            
  27565.              
  27566.            
  27567.              
  27568.            
  27569.              
  27570.            
  27571.              
  27572.            
  27573.              
  27574.            
  27575.              
  27576.            
  27577.              
  27578.            
  27579.              
  27580.            
  27581.              
  27582.            
  27583.              
  27584.            
  27585.              
  27586.            
  27587.              
  27588.            
  27589.              
  27590.            
  27591.              
  27592.            
  27593.              
  27594.            
  27595.              
  27596.            
  27597.              
  27598.            
  27599.              
  27600.            
  27601.              
  27602.            
  27603.              
  27604.            
  27605.              
  27606.            
  27607.              
  27608.            
  27609.              
  27610.            
  27611.              
  27612.            
  27613.              
  27614. <span class="m-product-card__tag-name m-product-tag m-product-tag--hot m-gradient m-color-scheme-a402d81f-d7b9-4c3a-a76b-e400e1634c1d">Father's Day</span>
  27615.              
  27616.            
  27617.              
  27618.            
  27619.          
  27620.        </div>
  27621.      </a></div>
  27622.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  27623.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-land-leveler-heavy-duty-steel-pho-10thcmue" aria-label="GARVEE Driveway Drag 66" Width Heavy Duty Steel Grader for ATV, UTV, Lawn Tractors, Topdressing Spreader, Wide Drag Level, Hay Field, Gravel, Soil"></a>
  27624.      <div class="m-product-card__info">
  27625.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  27626.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  27627.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  27628.                
  27629.                  style="display:none;"
  27630.                
  27631.              >Sold Out</span><span
  27632.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  27633.              data-foxkit-preorder-badge="9483206623545"
  27634.            ></span>
  27635.            
  27636. <div style="display:flex;">
  27637.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-35%
  27638. </span>
  27639.              </div>
  27640.            
  27641.          </div>
  27642.          
  27643.        </div><h3 class="m-product-card__title h6">
  27644.          <a
  27645.            href="/products/garvee-land-leveler-heavy-duty-steel-pho-10thcmue"
  27646.            class="m-product-card__name"
  27647.            style="font-weight:normal;"
  27648.          >
  27649.            GARVEE Driveway Drag 66" Width Heavy Duty Steel Grader for ATV, UTV, Lawn Tractors, Topdressing Spreader, Wide Drag Level, Hay Field, Gravel, Soil
  27650.          </a>
  27651.        </h3>
  27652.  
  27653.        
  27654.          <div class="m-product-card__reviews">
  27655.            
  27656.  
  27657.    
  27658.    
  27659.      
  27660.  
  27661.  
  27662.  <div
  27663.    style=""
  27664.    class="jdgm-widget jdgm-preview-badge"
  27665.    data-id="9483206623545"
  27666.    data-template="manual-installation"
  27667.    data-auto-install="false"
  27668.  >
  27669.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.89' data-number-of-reviews='73' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.89' tabindex='0' aria-label='4.89 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 73 reviews </span> </div>
  27670.  </div>
  27671.  
  27672.  
  27673. <style>
  27674.  @media screen and (max-width: 768px){
  27675.    .jdgm-qa-badge{
  27676.      display:none;
  27677.    }
  27678.    .jdgm-histogram{
  27679.    float:none;
  27680.  }
  27681.  }
  27682.  .jdgm-widget.jdgm-preview-badge{
  27683.    display:block !important;
  27684.  }
  27685.  .jdgm-sort-dropdown-arrow:before{
  27686.    position: relative;
  27687.    left: -8px;
  27688.  }
  27689. </style>
  27690.  
  27691.    
  27692.  
  27693.  
  27694.          </div>
  27695.        
  27696.  
  27697.        <div class="m-product-card__price">
  27698.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  27699. <div
  27700.  class="
  27701.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  27702.  data-sale-badge-type="percentage"
  27703. >
  27704.  <div class="m-price__regular">
  27705.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  27706.    <span class="m-price-item m-price-item--regular ">
  27707.      $119.99
  27708.    </span>
  27709.  </div>
  27710.  <div class="m-price__sale">
  27711.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  27712.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  27713.      $119.99
  27714.    </span>
  27715.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  27716.      <s class="m-price-item m-price-item--regular">
  27717.        
  27718.          $185.99
  27719.        
  27720.      </s></div>
  27721.  <div class="m-price__unit-wrapper m:hidden">
  27722.    <span class="m:visually-hidden">Unit price</span>
  27723.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  27724.  </div>
  27725.  
  27726.  
  27727. </div>
  27728.  
  27729. <style>
  27730.  .m-product-tag.m-product-tag--discounted.isSpring {
  27731.    background: #EC7521;
  27732.    color: #E6EBB3;
  27733.  }
  27734. </style>
  27735.  
  27736.        </div>
  27737.  
  27738.        
  27739.  
  27740.        
  27741.  
  27742.        <div class="m-product-card__description">
  27743.          Experience efficient land maintenance with the GARVEE 66-inch Drag Harrow GARVEE 66-inch Drag Harrow: Your...
  27744.        </div></div>
  27745.      <div class="m-product-card__quick-add ">
  27746.    <product-form class="m-product-form m:w-full m:block" data-product-id="49451858297145"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49451858297145" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49451858297145" data-selected-variant=""><button
  27747.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  27748.          name="add"
  27749.          
  27750.          aria-label="Add to cart"
  27751.        >
  27752.          <span class="m-spinner-icon">
  27753.            <svg
  27754.              class="animate-spin m-svg-icon--medium"
  27755.              viewBox="0 0 24 24"
  27756.              fill="none"
  27757.            >
  27758.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  27759.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  27760.            </svg>
  27761.          </span>
  27762.          
  27763.          <span class="m-add-to-cart--text" data-atc-text>
  27764.            
  27765.              Add to cart
  27766.            
  27767.          </span>
  27768.        </button><input type="hidden" name="product-id" value="9483206623545" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  27769.  
  27770.    <!--
  27771.      
  27772.        <input hidden name="id" required value="49451858297145" data-selected-variant="">
  27773.        <button
  27774.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  27775.          data-product-url="/products/garvee-land-leveler-heavy-duty-steel-pho-10thcmue"
  27776.          data-product-id="9483206623545"
  27777.          data-product-handle="garvee-land-leveler-heavy-duty-steel-pho-10thcmue"
  27778.          aria-label="Add to cart"
  27779.        >
  27780.          <span class="m-spinner-icon">
  27781.            <svg
  27782.              class="animate-spin m-svg-icon--medium"
  27783.              xmlns="http://www.w3.org/2000/svg"
  27784.              viewBox="0 0 24 24"
  27785.              fill="none"
  27786.            >
  27787.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  27788.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  27789.            </svg>
  27790.          </span>
  27791.          
  27792.          <span class="m-add-to-cart--text">Add to cart</span>
  27793.        </button>
  27794.      
  27795.    -->
  27796.  
  27797. </div>
  27798. <style>
  27799.  @media screen and (max-width: 768px){
  27800.    .m-product-card__quick-add{
  27801.      /* display:none; */
  27802.      /* margin:5px auto 0 auto !important; */
  27803.      margin-top:5px !important;
  27804.    }
  27805.    .m-product-card__quick-add .m-add-to-cart{
  27806.      height:30px;
  27807.    }
  27808.    .m-product-card__quick-add .m-add-to-cart--text{
  27809.      font-size:14px !important;
  27810.    }
  27811.  }
  27812.  
  27813. </style>
  27814.  
  27815.    </div>
  27816.  </div>
  27817.  <input hidden name="id" required value="49451858297145" data-selected-variant="">
  27818. </div><script></script>
  27819. <style>
  27820.  .media_banner_collection {
  27821.    position: absolute;
  27822.    top:0;
  27823.    left:0;
  27824.    width: 20%;
  27825.    z-index:10;
  27826.  }
  27827.  .badges-wrapper {
  27828.    position: absolute;
  27829.    top:0;
  27830.    right:0;
  27831.    z-index:10;
  27832.  }
  27833.    /* .triangle_left{
  27834.      position: relative;
  27835.    }
  27836.    .triangle_left::after{
  27837.      content:'';
  27838.      width: 0;
  27839.      height: 0;
  27840.      position: absolute;
  27841.      border-top: 13px solid transparent;
  27842.      border-bottom: 13px solid transparent;
  27843.      border-right: 0px solid transparent;
  27844.      border-left: 13px solid #CD2215;
  27845.      left:100%;
  27846.    } */
  27847.  .m-product-card__wrapper{
  27848.    display:flex;
  27849.    flex-direction:column;
  27850.    height:100%;
  27851.  }
  27852.      .m-product-card__info{
  27853.      display: flex;
  27854.      flex-direction: column;
  27855.    }
  27856.      .m-product-card__price{
  27857.      order:1;
  27858.    }
  27859.    .m-product-card__title{
  27860.      order:2;
  27861.    }
  27862.    .m-product-card__reviews{
  27863.      order:3;
  27864.    }
  27865.    .m-product-shipping__content{
  27866.      order:4;
  27867.    }
  27868.    .m-product-shipping__text{
  27869.      font-size:11px !important;
  27870.    }
  27871.  .m-product-card--style-2 .m-product-card__name {
  27872.    font-size: 14px;
  27873.  }
  27874.    @media screen and (max-width: 768px) {
  27875.      /* .triangle_left::after{
  27876.      border-top: 11px solid transparent;
  27877.      border-bottom: 11px solid transparent;
  27878.      border-left: 11px solid #CD2215;
  27879.    } */
  27880.  
  27881.    .m-product-card--style-2 .m-product-card__name {
  27882.      line-height: 1.3;
  27883.      -webkit-line-clamp: 2;
  27884.      font-size: 12px;
  27885.    }
  27886.    .m-product-card--style-2 .m-price-item--last {
  27887.      font-size: 18px;
  27888.    }
  27889.    .m-product-shipping__content {
  27890.      display: none;
  27891.    }
  27892.  }
  27893. </style>
  27894.  
  27895.  
  27896.                        </div>
  27897.                      
  27898.                        <div class="m:column">
  27899.                          
  27900.  
  27901.  
  27902. <div
  27903.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  27904.  data-view="card"
  27905.  
  27906.  data-product-id="9704132903225"
  27907.  
  27908. >
  27909.  
  27910.  <div class="m-product-card__wrapper">
  27911.    <div class="m-product-card__media">
  27912.      <a
  27913.        class="m-product-card__link m:block m:w-full"
  27914.        href="/products/garvee-nesting-boxes-for-chickens-6-pho-15fe31ds"
  27915.        aria-label="GARVEE Nesting Boxes for Chickens, 6 Compartment Roll Away Nesting Box with Egg Collection, Perch, Lid Cover for Egg Protection, Wall Mount/Free Standing Nest Box for Chickens"
  27916.        style="position: relative;"
  27917.      >
  27918.          
  27919.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  27920.            <img src="//www.garvee.com/cdn/shop/files/81UhpE8auwL.jpg?v=1731560924&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/81UhpE8auwL.jpg?v=1731560924&amp;width=165 165w, //www.garvee.com/cdn/shop/files/81UhpE8auwL.jpg?v=1731560924&amp;width=352 352w, //www.garvee.com/cdn/shop/files/81UhpE8auwL.jpg?v=1731560924&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  27921.          </responsive-image>
  27922.  
  27923.        <div class="badges-wrapper">
  27924.          
  27925.            
  27926.              
  27927.            
  27928.              
  27929.            
  27930.              
  27931.            
  27932.              
  27933.            
  27934.              
  27935.            
  27936.              
  27937.            
  27938.              
  27939.            
  27940.              
  27941.            
  27942.              
  27943.            
  27944.              
  27945.            
  27946.              
  27947.            
  27948.              
  27949.            
  27950.              
  27951.            
  27952.              
  27953.            
  27954.              
  27955.            
  27956.              
  27957.            
  27958.          
  27959.        </div>
  27960.      </a></div>
  27961.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  27962.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-nesting-boxes-for-chickens-6-pho-15fe31ds" aria-label="GARVEE Nesting Boxes for Chickens, 6 Compartment Roll Away Nesting Box with Egg Collection, Perch, Lid Cover for Egg Protection, Wall Mount/Free Standing Nest Box for Chickens"></a>
  27963.      <div class="m-product-card__info">
  27964.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  27965.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  27966.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  27967.                
  27968.                  style="display:none;"
  27969.                
  27970.              >Sold Out</span><span
  27971.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  27972.              data-foxkit-preorder-badge="9704132903225"
  27973.            ></span>
  27974.            
  27975. <div style="display:flex;">
  27976.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-27%
  27977. </span>
  27978.              </div>
  27979.            
  27980.          </div>
  27981.          
  27982.        </div><h3 class="m-product-card__title h6">
  27983.          <a
  27984.            href="/products/garvee-nesting-boxes-for-chickens-6-pho-15fe31ds"
  27985.            class="m-product-card__name"
  27986.            style="font-weight:normal;"
  27987.          >
  27988.            GARVEE Nesting Boxes for Chickens, 6 Compartment Roll Away Nesting Box with Egg Collection, Perch, Lid Cover for Egg Protection, Wall Mount/Free Standing Nest Box for Chickens
  27989.          </a>
  27990.        </h3>
  27991.  
  27992.        
  27993.          <div class="m-product-card__reviews">
  27994.            
  27995.  
  27996.    
  27997.    
  27998.      
  27999.  
  28000.  
  28001.  <div
  28002.    style=""
  28003.    class="jdgm-widget jdgm-preview-badge"
  28004.    data-id="9704132903225"
  28005.    data-template="manual-installation"
  28006.    data-auto-install="false"
  28007.  >
  28008.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.91' data-number-of-reviews='79' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.91' tabindex='0' aria-label='4.91 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 79 reviews </span> </div>
  28009.  </div>
  28010.  
  28011.  
  28012. <style>
  28013.  @media screen and (max-width: 768px){
  28014.    .jdgm-qa-badge{
  28015.      display:none;
  28016.    }
  28017.    .jdgm-histogram{
  28018.    float:none;
  28019.  }
  28020.  }
  28021.  .jdgm-widget.jdgm-preview-badge{
  28022.    display:block !important;
  28023.  }
  28024.  .jdgm-sort-dropdown-arrow:before{
  28025.    position: relative;
  28026.    left: -8px;
  28027.  }
  28028. </style>
  28029.  
  28030.    
  28031.  
  28032.  
  28033.          </div>
  28034.        
  28035.  
  28036.        <div class="m-product-card__price">
  28037.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  28038. <div
  28039.  class="
  28040.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  28041.  data-sale-badge-type="percentage"
  28042. >
  28043.  <div class="m-price__regular">
  28044.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  28045.    <span class="m-price-item m-price-item--regular ">
  28046.      $131.99
  28047.    </span>
  28048.  </div>
  28049.  <div class="m-price__sale">
  28050.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  28051.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  28052.      $131.99
  28053.    </span>
  28054.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  28055.      <s class="m-price-item m-price-item--regular">
  28056.        
  28057.          $182.99
  28058.        
  28059.      </s></div>
  28060.  <div class="m-price__unit-wrapper m:hidden">
  28061.    <span class="m:visually-hidden">Unit price</span>
  28062.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  28063.  </div>
  28064.  
  28065.  
  28066. </div>
  28067.  
  28068. <style>
  28069.  .m-product-tag.m-product-tag--discounted.isSpring {
  28070.    background: #EC7521;
  28071.    color: #E6EBB3;
  28072.  }
  28073. </style>
  28074.  
  28075.        </div>
  28076.  
  28077.        
  28078.  
  28079.        
  28080.  
  28081.        <div class="m-product-card__description">
  28082.          Efficient Egg Collection Made Easy Auto Egg Collection Nesting Box Our Auto Egg Collection Nesting...
  28083.        </div></div>
  28084.      <div class="m-product-card__quick-add ">
  28085.    <product-form class="m-product-form m:w-full m:block" data-product-id="50151126008121"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="50151126008121" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="50151126008121" data-selected-variant=""><button
  28086.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  28087.          name="add"
  28088.          
  28089.          aria-label="Add to cart"
  28090.        >
  28091.          <span class="m-spinner-icon">
  28092.            <svg
  28093.              class="animate-spin m-svg-icon--medium"
  28094.              viewBox="0 0 24 24"
  28095.              fill="none"
  28096.            >
  28097.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  28098.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  28099.            </svg>
  28100.          </span>
  28101.          
  28102.          <span class="m-add-to-cart--text" data-atc-text>
  28103.            
  28104.              Add to cart
  28105.            
  28106.          </span>
  28107.        </button><input type="hidden" name="product-id" value="9704132903225" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  28108.  
  28109.    <!--
  28110.      
  28111.        <input hidden name="id" required value="50151126008121" data-selected-variant="">
  28112.        <button
  28113.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  28114.          data-product-url="/products/garvee-nesting-boxes-for-chickens-6-pho-15fe31ds"
  28115.          data-product-id="9704132903225"
  28116.          data-product-handle="garvee-nesting-boxes-for-chickens-6-pho-15fe31ds"
  28117.          aria-label="Add to cart"
  28118.        >
  28119.          <span class="m-spinner-icon">
  28120.            <svg
  28121.              class="animate-spin m-svg-icon--medium"
  28122.              xmlns="http://www.w3.org/2000/svg"
  28123.              viewBox="0 0 24 24"
  28124.              fill="none"
  28125.            >
  28126.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  28127.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  28128.            </svg>
  28129.          </span>
  28130.          
  28131.          <span class="m-add-to-cart--text">Add to cart</span>
  28132.        </button>
  28133.      
  28134.    -->
  28135.  
  28136. </div>
  28137. <style>
  28138.  @media screen and (max-width: 768px){
  28139.    .m-product-card__quick-add{
  28140.      /* display:none; */
  28141.      /* margin:5px auto 0 auto !important; */
  28142.      margin-top:5px !important;
  28143.    }
  28144.    .m-product-card__quick-add .m-add-to-cart{
  28145.      height:30px;
  28146.    }
  28147.    .m-product-card__quick-add .m-add-to-cart--text{
  28148.      font-size:14px !important;
  28149.    }
  28150.  }
  28151.  
  28152. </style>
  28153.  
  28154.    </div>
  28155.  </div>
  28156.  <input hidden name="id" required value="50151126008121" data-selected-variant="">
  28157. </div><script></script>
  28158. <style>
  28159.  .media_banner_collection {
  28160.    position: absolute;
  28161.    top:0;
  28162.    left:0;
  28163.    width: 20%;
  28164.    z-index:10;
  28165.  }
  28166.  .badges-wrapper {
  28167.    position: absolute;
  28168.    top:0;
  28169.    right:0;
  28170.    z-index:10;
  28171.  }
  28172.    /* .triangle_left{
  28173.      position: relative;
  28174.    }
  28175.    .triangle_left::after{
  28176.      content:'';
  28177.      width: 0;
  28178.      height: 0;
  28179.      position: absolute;
  28180.      border-top: 13px solid transparent;
  28181.      border-bottom: 13px solid transparent;
  28182.      border-right: 0px solid transparent;
  28183.      border-left: 13px solid #CD2215;
  28184.      left:100%;
  28185.    } */
  28186.  .m-product-card__wrapper{
  28187.    display:flex;
  28188.    flex-direction:column;
  28189.    height:100%;
  28190.  }
  28191.      .m-product-card__info{
  28192.      display: flex;
  28193.      flex-direction: column;
  28194.    }
  28195.      .m-product-card__price{
  28196.      order:1;
  28197.    }
  28198.    .m-product-card__title{
  28199.      order:2;
  28200.    }
  28201.    .m-product-card__reviews{
  28202.      order:3;
  28203.    }
  28204.    .m-product-shipping__content{
  28205.      order:4;
  28206.    }
  28207.    .m-product-shipping__text{
  28208.      font-size:11px !important;
  28209.    }
  28210.  .m-product-card--style-2 .m-product-card__name {
  28211.    font-size: 14px;
  28212.  }
  28213.    @media screen and (max-width: 768px) {
  28214.      /* .triangle_left::after{
  28215.      border-top: 11px solid transparent;
  28216.      border-bottom: 11px solid transparent;
  28217.      border-left: 11px solid #CD2215;
  28218.    } */
  28219.  
  28220.    .m-product-card--style-2 .m-product-card__name {
  28221.      line-height: 1.3;
  28222.      -webkit-line-clamp: 2;
  28223.      font-size: 12px;
  28224.    }
  28225.    .m-product-card--style-2 .m-price-item--last {
  28226.      font-size: 18px;
  28227.    }
  28228.    .m-product-shipping__content {
  28229.      display: none;
  28230.    }
  28231.  }
  28232. </style>
  28233.  
  28234.  
  28235.                        </div>
  28236.                      
  28237.                        <div class="m:column">
  28238.                          
  28239.  
  28240.  
  28241. <div
  28242.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  28243.  data-view="card"
  28244.  
  28245.  data-product-id="9483013751097"
  28246.  
  28247. >
  28248.  
  28249.  <div class="m-product-card__wrapper">
  28250.    <div class="m-product-card__media">
  28251.      <a
  28252.        class="m-product-card__link m:block m:w-full"
  28253.        href="/products/large-metal-chicken-coop-pho-12vj"
  28254.        aria-label="GARVEE Large Metal Chicken Coop, Walk-in Poultry Cage, Chicken House with Waterproof and Anti-Ultraviolet Cover for Outdoor Yard Farm Silver 9.8X13.1X6.6FT"
  28255.        style="position: relative;"
  28256.      >
  28257.          
  28258.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  28259.            <img src="//www.garvee.com/cdn/shop/files/81K4uF6J3IL.jpg?v=1736423349&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/81K4uF6J3IL.jpg?v=1736423349&amp;width=165 165w, //www.garvee.com/cdn/shop/files/81K4uF6J3IL.jpg?v=1736423349&amp;width=352 352w, //www.garvee.com/cdn/shop/files/81K4uF6J3IL.jpg?v=1736423349&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  28260.          </responsive-image>
  28261.  
  28262.        <div class="badges-wrapper">
  28263.          
  28264.            
  28265.              
  28266.            
  28267.              
  28268.            
  28269.              
  28270.            
  28271.              
  28272.            
  28273.              
  28274.            
  28275.              
  28276.            
  28277.              
  28278.            
  28279.              
  28280.            
  28281.              
  28282.            
  28283.              
  28284.            
  28285.              
  28286.            
  28287.              
  28288.            
  28289.              
  28290.            
  28291.              
  28292.            
  28293.              
  28294.            
  28295.              
  28296.            
  28297.              
  28298.            
  28299.              
  28300.            
  28301.              
  28302.            
  28303.              
  28304.            
  28305.              
  28306.            
  28307.              
  28308.            
  28309.              
  28310.            
  28311.              
  28312.            
  28313.              
  28314.            
  28315.              
  28316.            
  28317.              
  28318.            
  28319.              
  28320.            
  28321.              
  28322.            
  28323.              
  28324.            
  28325.              
  28326.            
  28327.              
  28328.            
  28329.              
  28330.            
  28331.              
  28332.            
  28333.              
  28334. <span class="m-product-card__tag-name m-product-tag m-product-tag--hot m-gradient m-color-scheme-a402d81f-d7b9-4c3a-a76b-e400e1634c1d">Father's Day</span>
  28335.              
  28336.            
  28337.              
  28338.            
  28339.          
  28340.        </div>
  28341.      </a></div>
  28342.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  28343.      <a class="m-product-card__hidden-link m:hidden" href="/products/large-metal-chicken-coop-pho-12vj" aria-label="GARVEE Large Metal Chicken Coop, Walk-in Poultry Cage, Chicken House with Waterproof and Anti-Ultraviolet Cover for Outdoor Yard Farm Silver 9.8X13.1X6.6FT"></a>
  28344.      <div class="m-product-card__info">
  28345.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  28346.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  28347.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  28348.                
  28349.                  style="display:none;"
  28350.                
  28351.              >Sold Out</span><span
  28352.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  28353.              data-foxkit-preorder-badge="9483013751097"
  28354.            ></span>
  28355.            
  28356. <div style="display:flex;">
  28357.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-27%
  28358. </span>
  28359.              </div>
  28360.            
  28361.          </div>
  28362.          
  28363.        </div><h3 class="m-product-card__title h6">
  28364.          <a
  28365.            href="/products/large-metal-chicken-coop-pho-12vj"
  28366.            class="m-product-card__name"
  28367.            style="font-weight:normal;"
  28368.          >
  28369.            GARVEE Large Metal Chicken Coop, Walk-in Poultry Cage, Chicken House with Waterproof and Anti-Ultraviolet Cover for Outdoor Yard Farm Silver 9.8X13.1X6.6FT
  28370.          </a>
  28371.        </h3>
  28372.  
  28373.        
  28374.          <div class="m-product-card__reviews">
  28375.            
  28376.  
  28377.    
  28378.    
  28379.      
  28380.  
  28381.  
  28382.  <div
  28383.    style=""
  28384.    class="jdgm-widget jdgm-preview-badge"
  28385.    data-id="9483013751097"
  28386.    data-template="manual-installation"
  28387.    data-auto-install="false"
  28388.  >
  28389.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.79' data-number-of-reviews='56' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.79' tabindex='0' aria-label='4.79 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 56 reviews </span> </div>
  28390.  </div>
  28391.  
  28392.  
  28393. <style>
  28394.  @media screen and (max-width: 768px){
  28395.    .jdgm-qa-badge{
  28396.      display:none;
  28397.    }
  28398.    .jdgm-histogram{
  28399.    float:none;
  28400.  }
  28401.  }
  28402.  .jdgm-widget.jdgm-preview-badge{
  28403.    display:block !important;
  28404.  }
  28405.  .jdgm-sort-dropdown-arrow:before{
  28406.    position: relative;
  28407.    left: -8px;
  28408.  }
  28409. </style>
  28410.  
  28411.    
  28412.  
  28413.  
  28414.          </div>
  28415.        
  28416.  
  28417.        <div class="m-product-card__price">
  28418.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  28419. <div
  28420.  class="
  28421.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  28422.  data-sale-badge-type="percentage"
  28423. >
  28424.  <div class="m-price__regular">
  28425.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  28426.    <span class="m-price-item m-price-item--regular ">
  28427.      $217.99
  28428.    </span>
  28429.  </div>
  28430.  <div class="m-price__sale">
  28431.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  28432.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  28433.      $217.99
  28434.    </span>
  28435.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  28436.      <s class="m-price-item m-price-item--regular">
  28437.        
  28438.          $299.99
  28439.        
  28440.      </s></div>
  28441.  <div class="m-price__unit-wrapper m:hidden">
  28442.    <span class="m:visually-hidden">Unit price</span>
  28443.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  28444.  </div>
  28445.  
  28446.  
  28447. </div>
  28448.  
  28449. <style>
  28450.  .m-product-tag.m-product-tag--discounted.isSpring {
  28451.    background: #EC7521;
  28452.    color: #E6EBB3;
  28453.  }
  28454. </style>
  28455.  
  28456.        </div>
  28457.  
  28458.        
  28459.  
  28460.        
  28461.  
  28462.        <div class="m-product-card__description">
  28463.          Spacious and Secure Housing for Your Feathered Friends Introducing the GARVEE Large Metal Chicken Coop...
  28464.        </div></div>
  28465.      <div class="m-product-card__quick-add ">
  28466.    <product-form class="m-product-form m:w-full m:block" data-product-id="49451064590649"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49451064590649" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49451064590649" data-selected-variant=""><button
  28467.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  28468.          name="add"
  28469.          
  28470.          aria-label="Add to cart"
  28471.        >
  28472.          <span class="m-spinner-icon">
  28473.            <svg
  28474.              class="animate-spin m-svg-icon--medium"
  28475.              viewBox="0 0 24 24"
  28476.              fill="none"
  28477.            >
  28478.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  28479.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  28480.            </svg>
  28481.          </span>
  28482.          
  28483.          <span class="m-add-to-cart--text" data-atc-text>
  28484.            
  28485.              Add to cart
  28486.            
  28487.          </span>
  28488.        </button><input type="hidden" name="product-id" value="9483013751097" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  28489.  
  28490.    <!--
  28491.      
  28492.        <input hidden name="id" required value="49451064590649" data-selected-variant="">
  28493.        <button
  28494.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  28495.          data-product-url="/products/large-metal-chicken-coop-pho-12vj"
  28496.          data-product-id="9483013751097"
  28497.          data-product-handle="large-metal-chicken-coop-pho-12vj"
  28498.          aria-label="Add to cart"
  28499.        >
  28500.          <span class="m-spinner-icon">
  28501.            <svg
  28502.              class="animate-spin m-svg-icon--medium"
  28503.              xmlns="http://www.w3.org/2000/svg"
  28504.              viewBox="0 0 24 24"
  28505.              fill="none"
  28506.            >
  28507.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  28508.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  28509.            </svg>
  28510.          </span>
  28511.          
  28512.          <span class="m-add-to-cart--text">Add to cart</span>
  28513.        </button>
  28514.      
  28515.    -->
  28516.  
  28517. </div>
  28518. <style>
  28519.  @media screen and (max-width: 768px){
  28520.    .m-product-card__quick-add{
  28521.      /* display:none; */
  28522.      /* margin:5px auto 0 auto !important; */
  28523.      margin-top:5px !important;
  28524.    }
  28525.    .m-product-card__quick-add .m-add-to-cart{
  28526.      height:30px;
  28527.    }
  28528.    .m-product-card__quick-add .m-add-to-cart--text{
  28529.      font-size:14px !important;
  28530.    }
  28531.  }
  28532.  
  28533. </style>
  28534.  
  28535.    </div>
  28536.  </div>
  28537.  <input hidden name="id" required value="49451064590649" data-selected-variant="">
  28538. </div><script></script>
  28539. <style>
  28540.  .media_banner_collection {
  28541.    position: absolute;
  28542.    top:0;
  28543.    left:0;
  28544.    width: 20%;
  28545.    z-index:10;
  28546.  }
  28547.  .badges-wrapper {
  28548.    position: absolute;
  28549.    top:0;
  28550.    right:0;
  28551.    z-index:10;
  28552.  }
  28553.    /* .triangle_left{
  28554.      position: relative;
  28555.    }
  28556.    .triangle_left::after{
  28557.      content:'';
  28558.      width: 0;
  28559.      height: 0;
  28560.      position: absolute;
  28561.      border-top: 13px solid transparent;
  28562.      border-bottom: 13px solid transparent;
  28563.      border-right: 0px solid transparent;
  28564.      border-left: 13px solid #CD2215;
  28565.      left:100%;
  28566.    } */
  28567.  .m-product-card__wrapper{
  28568.    display:flex;
  28569.    flex-direction:column;
  28570.    height:100%;
  28571.  }
  28572.      .m-product-card__info{
  28573.      display: flex;
  28574.      flex-direction: column;
  28575.    }
  28576.      .m-product-card__price{
  28577.      order:1;
  28578.    }
  28579.    .m-product-card__title{
  28580.      order:2;
  28581.    }
  28582.    .m-product-card__reviews{
  28583.      order:3;
  28584.    }
  28585.    .m-product-shipping__content{
  28586.      order:4;
  28587.    }
  28588.    .m-product-shipping__text{
  28589.      font-size:11px !important;
  28590.    }
  28591.  .m-product-card--style-2 .m-product-card__name {
  28592.    font-size: 14px;
  28593.  }
  28594.    @media screen and (max-width: 768px) {
  28595.      /* .triangle_left::after{
  28596.      border-top: 11px solid transparent;
  28597.      border-bottom: 11px solid transparent;
  28598.      border-left: 11px solid #CD2215;
  28599.    } */
  28600.  
  28601.    .m-product-card--style-2 .m-product-card__name {
  28602.      line-height: 1.3;
  28603.      -webkit-line-clamp: 2;
  28604.      font-size: 12px;
  28605.    }
  28606.    .m-product-card--style-2 .m-price-item--last {
  28607.      font-size: 18px;
  28608.    }
  28609.    .m-product-shipping__content {
  28610.      display: none;
  28611.    }
  28612.  }
  28613. </style>
  28614.  
  28615.  
  28616.                        </div>
  28617.                      
  28618.                        <div class="m:column">
  28619.                          
  28620.  
  28621.  
  28622. <div
  28623.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  28624.  data-view="card"
  28625.  
  28626.  data-product-id="9482970038585"
  28627.  
  28628. >
  28629.  
  28630.  <div class="m-product-card__wrapper">
  28631.    <div class="m-product-card__media">
  28632.      <a
  28633.        class="m-product-card__link m:block m:w-full"
  28634.        href="/products/log-lifting-tongs-4-claw-pho-0zj3"
  28635.        aria-label="GARVEE Heavy Duty Log Lifting Tongs: 28 inch 4 Claw Log Grapple for Logging Tongs,Eagle Claws Design with 3000 lbs ,  Lumber Skidding Logging Grabber"
  28636.        style="position: relative;"
  28637.      >
  28638.          
  28639.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  28640.            <img src="//www.garvee.com/cdn/shop/files/71OxnWdYXbL.jpg?v=1718948299&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/71OxnWdYXbL.jpg?v=1718948299&amp;width=165 165w, //www.garvee.com/cdn/shop/files/71OxnWdYXbL.jpg?v=1718948299&amp;width=352 352w, //www.garvee.com/cdn/shop/files/71OxnWdYXbL.jpg?v=1718948299&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  28641.          </responsive-image>
  28642.  
  28643.        <div class="badges-wrapper">
  28644.          
  28645.            
  28646.              
  28647.            
  28648.              
  28649.            
  28650.              
  28651.            
  28652.              
  28653.            
  28654.              
  28655.            
  28656.              
  28657.            
  28658.              
  28659.            
  28660.              
  28661.            
  28662.              
  28663.            
  28664.              
  28665.            
  28666.              
  28667.            
  28668.              
  28669.            
  28670.              
  28671.            
  28672.              
  28673.            
  28674.              
  28675.            
  28676.              
  28677.            
  28678.              
  28679.            
  28680.              
  28681.            
  28682.              
  28683.            
  28684.              
  28685.            
  28686.              
  28687.            
  28688.              
  28689.            
  28690.              
  28691.            
  28692.              
  28693.            
  28694.              
  28695.            
  28696.              
  28697.            
  28698.              
  28699.            
  28700.              
  28701.            
  28702.              
  28703.            
  28704.              
  28705.            
  28706.              
  28707.            
  28708.              
  28709.            
  28710.              
  28711.            
  28712.              
  28713.            
  28714.              
  28715.            
  28716.              
  28717.            
  28718.              
  28719.            
  28720.              
  28721. <span class="m-product-card__tag-name m-product-tag m-product-tag--hot m-gradient m-color-scheme-a402d81f-d7b9-4c3a-a76b-e400e1634c1d">Father's Day</span>
  28722.              
  28723.            
  28724.              
  28725.            
  28726.              
  28727.            
  28728.              
  28729.            
  28730.          
  28731.        </div>
  28732.      </a></div>
  28733.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  28734.      <a class="m-product-card__hidden-link m:hidden" href="/products/log-lifting-tongs-4-claw-pho-0zj3" aria-label="GARVEE Heavy Duty Log Lifting Tongs: 28 inch 4 Claw Log Grapple for Logging Tongs,Eagle Claws Design with 3000 lbs ,  Lumber Skidding Logging Grabber"></a>
  28735.      <div class="m-product-card__info">
  28736.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  28737.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  28738.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  28739.                
  28740.                  style="display:none;"
  28741.                
  28742.              >Sold Out</span><span
  28743.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  28744.              data-foxkit-preorder-badge="9482970038585"
  28745.            ></span>
  28746.            
  28747. <div style="display:flex;">
  28748.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-28%
  28749. </span>
  28750.              </div>
  28751.            
  28752.          </div>
  28753.          
  28754.            <!-- <span style="font-size:12px;font-weight:bold;color:rgb(205,34,21,0.8);">Father's Day Deal</span> -->
  28755.          
  28756.        </div><h3 class="m-product-card__title h6">
  28757.          <a
  28758.            href="/products/log-lifting-tongs-4-claw-pho-0zj3"
  28759.            class="m-product-card__name"
  28760.            style="font-weight:normal;"
  28761.          >
  28762.            GARVEE Heavy Duty Log Lifting Tongs: 28 inch 4 Claw Log Grapple for Logging Tongs,Eagle Claws Design with 3000 lbs ,  Lumber Skidding Logging Grabber
  28763.          </a>
  28764.        </h3>
  28765.  
  28766.        
  28767.          <div class="m-product-card__reviews">
  28768.            
  28769.  
  28770.    
  28771.    
  28772.      
  28773.  
  28774.  
  28775.  <div
  28776.    style=""
  28777.    class="jdgm-widget jdgm-preview-badge"
  28778.    data-id="9482970038585"
  28779.    data-template="manual-installation"
  28780.    data-auto-install="false"
  28781.  >
  28782.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.84' data-number-of-reviews='69' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.84' tabindex='0' aria-label='4.84 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 69 reviews </span> </div>
  28783.  </div>
  28784.  
  28785.  
  28786. <style>
  28787.  @media screen and (max-width: 768px){
  28788.    .jdgm-qa-badge{
  28789.      display:none;
  28790.    }
  28791.    .jdgm-histogram{
  28792.    float:none;
  28793.  }
  28794.  }
  28795.  .jdgm-widget.jdgm-preview-badge{
  28796.    display:block !important;
  28797.  }
  28798.  .jdgm-sort-dropdown-arrow:before{
  28799.    position: relative;
  28800.    left: -8px;
  28801.  }
  28802. </style>
  28803.  
  28804.    
  28805.  
  28806.  
  28807.          </div>
  28808.        
  28809.  
  28810.        <div class="m-product-card__price">
  28811.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  28812. <div
  28813.  class="
  28814.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  28815.  data-sale-badge-type="percentage"
  28816. >
  28817.  <div class="m-price__regular">
  28818.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  28819.    <span class="m-price-item m-price-item--regular ">
  28820.      $119.99
  28821.    </span>
  28822.  </div>
  28823.  <div class="m-price__sale">
  28824.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  28825.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  28826.      $119.99
  28827.    </span>
  28828.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  28829.      <s class="m-price-item m-price-item--regular">
  28830.        
  28831.          $167.99
  28832.        
  28833.      </s></div>
  28834.  <div class="m-price__unit-wrapper m:hidden">
  28835.    <span class="m:visually-hidden">Unit price</span>
  28836.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  28837.  </div>
  28838.  
  28839.  
  28840. </div>
  28841.  
  28842. <style>
  28843.  .m-product-tag.m-product-tag--discounted.isSpring {
  28844.    background: #EC7521;
  28845.    color: #E6EBB3;
  28846.  }
  28847. </style>
  28848.  
  28849.        </div>
  28850.  
  28851.        
  28852.  
  28853.        
  28854.  
  28855.        <div class="m-product-card__description">
  28856.          Experience unmatched log handling with our 28" 4-Claw Log Grapple 28" 4-Claw Log Grapple: Revolutionize...
  28857.        </div></div>
  28858.      <div class="m-product-card__quick-add ">
  28859.    <product-form class="m-product-form m:w-full m:block" data-product-id="49450886365497"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49450886365497" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49450886365497" data-selected-variant=""><button
  28860.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  28861.          name="add"
  28862.          
  28863.          aria-label="Add to cart"
  28864.        >
  28865.          <span class="m-spinner-icon">
  28866.            <svg
  28867.              class="animate-spin m-svg-icon--medium"
  28868.              viewBox="0 0 24 24"
  28869.              fill="none"
  28870.            >
  28871.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  28872.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  28873.            </svg>
  28874.          </span>
  28875.          
  28876.          <span class="m-add-to-cart--text" data-atc-text>
  28877.            
  28878.              Add to cart
  28879.            
  28880.          </span>
  28881.        </button><input type="hidden" name="product-id" value="9482970038585" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  28882.  
  28883.    <!--
  28884.      
  28885.        <input hidden name="id" required value="49450886365497" data-selected-variant="">
  28886.        <button
  28887.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  28888.          data-product-url="/products/log-lifting-tongs-4-claw-pho-0zj3"
  28889.          data-product-id="9482970038585"
  28890.          data-product-handle="log-lifting-tongs-4-claw-pho-0zj3"
  28891.          aria-label="Add to cart"
  28892.        >
  28893.          <span class="m-spinner-icon">
  28894.            <svg
  28895.              class="animate-spin m-svg-icon--medium"
  28896.              xmlns="http://www.w3.org/2000/svg"
  28897.              viewBox="0 0 24 24"
  28898.              fill="none"
  28899.            >
  28900.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  28901.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  28902.            </svg>
  28903.          </span>
  28904.          
  28905.          <span class="m-add-to-cart--text">Add to cart</span>
  28906.        </button>
  28907.      
  28908.    -->
  28909.  
  28910. </div>
  28911. <style>
  28912.  @media screen and (max-width: 768px){
  28913.    .m-product-card__quick-add{
  28914.      /* display:none; */
  28915.      /* margin:5px auto 0 auto !important; */
  28916.      margin-top:5px !important;
  28917.    }
  28918.    .m-product-card__quick-add .m-add-to-cart{
  28919.      height:30px;
  28920.    }
  28921.    .m-product-card__quick-add .m-add-to-cart--text{
  28922.      font-size:14px !important;
  28923.    }
  28924.  }
  28925.  
  28926. </style>
  28927.  
  28928.    </div>
  28929.  </div>
  28930.  <input hidden name="id" required value="49450886365497" data-selected-variant="">
  28931. </div><script></script>
  28932. <style>
  28933.  .media_banner_collection {
  28934.    position: absolute;
  28935.    top:0;
  28936.    left:0;
  28937.    width: 20%;
  28938.    z-index:10;
  28939.  }
  28940.  .badges-wrapper {
  28941.    position: absolute;
  28942.    top:0;
  28943.    right:0;
  28944.    z-index:10;
  28945.  }
  28946.    /* .triangle_left{
  28947.      position: relative;
  28948.    }
  28949.    .triangle_left::after{
  28950.      content:'';
  28951.      width: 0;
  28952.      height: 0;
  28953.      position: absolute;
  28954.      border-top: 13px solid transparent;
  28955.      border-bottom: 13px solid transparent;
  28956.      border-right: 0px solid transparent;
  28957.      border-left: 13px solid #CD2215;
  28958.      left:100%;
  28959.    } */
  28960.  .m-product-card__wrapper{
  28961.    display:flex;
  28962.    flex-direction:column;
  28963.    height:100%;
  28964.  }
  28965.      .m-product-card__info{
  28966.      display: flex;
  28967.      flex-direction: column;
  28968.    }
  28969.      .m-product-card__price{
  28970.      order:1;
  28971.    }
  28972.    .m-product-card__title{
  28973.      order:2;
  28974.    }
  28975.    .m-product-card__reviews{
  28976.      order:3;
  28977.    }
  28978.    .m-product-shipping__content{
  28979.      order:4;
  28980.    }
  28981.    .m-product-shipping__text{
  28982.      font-size:11px !important;
  28983.    }
  28984.  .m-product-card--style-2 .m-product-card__name {
  28985.    font-size: 14px;
  28986.  }
  28987.    @media screen and (max-width: 768px) {
  28988.      /* .triangle_left::after{
  28989.      border-top: 11px solid transparent;
  28990.      border-bottom: 11px solid transparent;
  28991.      border-left: 11px solid #CD2215;
  28992.    } */
  28993.  
  28994.    .m-product-card--style-2 .m-product-card__name {
  28995.      line-height: 1.3;
  28996.      -webkit-line-clamp: 2;
  28997.      font-size: 12px;
  28998.    }
  28999.    .m-product-card--style-2 .m-price-item--last {
  29000.      font-size: 18px;
  29001.    }
  29002.    .m-product-shipping__content {
  29003.      display: none;
  29004.    }
  29005.  }
  29006. </style>
  29007.  
  29008.  
  29009.                        </div>
  29010.                      
  29011.                        <div class="m:column">
  29012.                          
  29013.  
  29014.  
  29015. <div
  29016.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  29017.  data-view="card"
  29018.  
  29019.  data-product-id="9483217633593"
  29020.  
  29021. >
  29022.  
  29023.  <div class="m-product-card__wrapper">
  29024.    <div class="m-product-card__media">
  29025.      <a
  29026.        class="m-product-card__link m:block m:w-full"
  29027.        href="/products/garvee-72-inch-pine-straw-rake-pho-0zu0uxx1-3"
  29028.        aria-label="GARVEE 72 Inch Pine Straw Rake - 30pcs 8mm Coil Spring Tines Durable Powder Coated Steel Tow Behind Landscape Rake with 3 Point Hitch Receiver Attachment Fit to Cat0 Cat 1 Tractors for Leaves Grass, Yellow"
  29029.        style="position: relative;"
  29030.      >
  29031.          
  29032.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  29033.            <img src="//www.garvee.com/cdn/shop/files/71XLvDR7fUL.jpg?v=1718932382&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/71XLvDR7fUL.jpg?v=1718932382&amp;width=165 165w, //www.garvee.com/cdn/shop/files/71XLvDR7fUL.jpg?v=1718932382&amp;width=352 352w, //www.garvee.com/cdn/shop/files/71XLvDR7fUL.jpg?v=1718932382&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  29034.          </responsive-image>
  29035.  
  29036.        <div class="badges-wrapper">
  29037.          
  29038.            
  29039.              
  29040.            
  29041.              
  29042.            
  29043.              
  29044.            
  29045.              
  29046.            
  29047.              
  29048.            
  29049.              
  29050.            
  29051.              
  29052.            
  29053.              
  29054.            
  29055.              
  29056.            
  29057.              
  29058.            
  29059.              
  29060.            
  29061.              
  29062.            
  29063.              
  29064.            
  29065.              
  29066.            
  29067.              
  29068.            
  29069.              
  29070.            
  29071.              
  29072.            
  29073.              
  29074.            
  29075.              
  29076.            
  29077.              
  29078.            
  29079.              
  29080.            
  29081.              
  29082.            
  29083.              
  29084.            
  29085.              
  29086.            
  29087.              
  29088.            
  29089.              
  29090.            
  29091.          
  29092.        </div>
  29093.      </a></div>
  29094.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  29095.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-72-inch-pine-straw-rake-pho-0zu0uxx1-3" aria-label="GARVEE 72 Inch Pine Straw Rake - 30pcs 8mm Coil Spring Tines Durable Powder Coated Steel Tow Behind Landscape Rake with 3 Point Hitch Receiver Attachment Fit to Cat0 Cat 1 Tractors for Leaves Grass, Yellow"></a>
  29096.      <div class="m-product-card__info">
  29097.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  29098.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  29099.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  29100.                
  29101.                  style="display:none;"
  29102.                
  29103.              >Sold Out</span><span
  29104.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  29105.              data-foxkit-preorder-badge="9483217633593"
  29106.            ></span>
  29107.            
  29108. <div style="display:flex;">
  29109.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-27%
  29110. </span>
  29111.              </div>
  29112.            
  29113.          </div>
  29114.          
  29115.        </div><h3 class="m-product-card__title h6">
  29116.          <a
  29117.            href="/products/garvee-72-inch-pine-straw-rake-pho-0zu0uxx1-3"
  29118.            class="m-product-card__name"
  29119.            style="font-weight:normal;"
  29120.          >
  29121.            GARVEE 72 Inch Pine Straw Rake - 30pcs 8mm Coil Spring Tines Durable Powder Coated Steel Tow Behind Landscape Rake with 3 Point Hitch Receiver Attachment Fit to Cat0 Cat 1 Tractors for Leaves Grass, Yellow
  29122.          </a>
  29123.        </h3>
  29124.  
  29125.        
  29126.          <div class="m-product-card__reviews">
  29127.            
  29128.  
  29129.    
  29130.    
  29131.      
  29132.  
  29133.  
  29134.  <div
  29135.    style=""
  29136.    class="jdgm-widget jdgm-preview-badge"
  29137.    data-id="9483217633593"
  29138.    data-template="manual-installation"
  29139.    data-auto-install="false"
  29140.  >
  29141.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.92' data-number-of-reviews='97' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.92' tabindex='0' aria-label='4.92 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 97 reviews </span> </div>
  29142.  </div>
  29143.  
  29144.  
  29145. <style>
  29146.  @media screen and (max-width: 768px){
  29147.    .jdgm-qa-badge{
  29148.      display:none;
  29149.    }
  29150.    .jdgm-histogram{
  29151.    float:none;
  29152.  }
  29153.  }
  29154.  .jdgm-widget.jdgm-preview-badge{
  29155.    display:block !important;
  29156.  }
  29157.  .jdgm-sort-dropdown-arrow:before{
  29158.    position: relative;
  29159.    left: -8px;
  29160.  }
  29161. </style>
  29162.  
  29163.    
  29164.  
  29165.  
  29166.          </div>
  29167.        
  29168.  
  29169.        <div class="m-product-card__price">
  29170.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  29171. <div
  29172.  class="
  29173.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  29174.  data-sale-badge-type="percentage"
  29175. >
  29176.  <div class="m-price__regular">
  29177.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  29178.    <span class="m-price-item m-price-item--regular ">
  29179.      $292.99
  29180.    </span>
  29181.  </div>
  29182.  <div class="m-price__sale">
  29183.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  29184.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  29185.      $292.99
  29186.    </span>
  29187.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  29188.      <s class="m-price-item m-price-item--regular">
  29189.        
  29190.          $405.99
  29191.        
  29192.      </s></div>
  29193.  <div class="m-price__unit-wrapper m:hidden">
  29194.    <span class="m:visually-hidden">Unit price</span>
  29195.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  29196.  </div>
  29197.  
  29198.  
  29199. </div>
  29200.  
  29201. <style>
  29202.  .m-product-tag.m-product-tag--discounted.isSpring {
  29203.    background: #EC7521;
  29204.    color: #E6EBB3;
  29205.  }
  29206. </style>
  29207.  
  29208.        </div>
  29209.  
  29210.        
  29211.  
  29212.        
  29213.  
  29214.        <div class="m-product-card__description">
  29215.          Experience the Ultimate in Landscaping Efficiency! Introducing the GARVEE 72-Inch Pine Straw Rake - Your...
  29216.        </div></div>
  29217.      <div class="m-product-card__quick-add ">
  29218.    <product-form class="m-product-form m:w-full m:block" data-product-id="49451912757561"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49451912757561" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49451912757561" data-selected-variant=""><button
  29219.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  29220.          name="add"
  29221.          
  29222.          aria-label="Add to cart"
  29223.        >
  29224.          <span class="m-spinner-icon">
  29225.            <svg
  29226.              class="animate-spin m-svg-icon--medium"
  29227.              viewBox="0 0 24 24"
  29228.              fill="none"
  29229.            >
  29230.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  29231.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  29232.            </svg>
  29233.          </span>
  29234.          
  29235.          <span class="m-add-to-cart--text" data-atc-text>
  29236.            
  29237.              Add to cart
  29238.            
  29239.          </span>
  29240.        </button><input type="hidden" name="product-id" value="9483217633593" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  29241.  
  29242.    <!--
  29243.      
  29244.        <input hidden name="id" required value="49451912757561" data-selected-variant="">
  29245.        <button
  29246.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  29247.          data-product-url="/products/garvee-72-inch-pine-straw-rake-pho-0zu0uxx1-3"
  29248.          data-product-id="9483217633593"
  29249.          data-product-handle="garvee-72-inch-pine-straw-rake-pho-0zu0uxx1-3"
  29250.          aria-label="Add to cart"
  29251.        >
  29252.          <span class="m-spinner-icon">
  29253.            <svg
  29254.              class="animate-spin m-svg-icon--medium"
  29255.              xmlns="http://www.w3.org/2000/svg"
  29256.              viewBox="0 0 24 24"
  29257.              fill="none"
  29258.            >
  29259.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  29260.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  29261.            </svg>
  29262.          </span>
  29263.          
  29264.          <span class="m-add-to-cart--text">Add to cart</span>
  29265.        </button>
  29266.      
  29267.    -->
  29268.  
  29269. </div>
  29270. <style>
  29271.  @media screen and (max-width: 768px){
  29272.    .m-product-card__quick-add{
  29273.      /* display:none; */
  29274.      /* margin:5px auto 0 auto !important; */
  29275.      margin-top:5px !important;
  29276.    }
  29277.    .m-product-card__quick-add .m-add-to-cart{
  29278.      height:30px;
  29279.    }
  29280.    .m-product-card__quick-add .m-add-to-cart--text{
  29281.      font-size:14px !important;
  29282.    }
  29283.  }
  29284.  
  29285. </style>
  29286.  
  29287.    </div>
  29288.  </div>
  29289.  <input hidden name="id" required value="49451912757561" data-selected-variant="">
  29290. </div><script></script>
  29291. <style>
  29292.  .media_banner_collection {
  29293.    position: absolute;
  29294.    top:0;
  29295.    left:0;
  29296.    width: 20%;
  29297.    z-index:10;
  29298.  }
  29299.  .badges-wrapper {
  29300.    position: absolute;
  29301.    top:0;
  29302.    right:0;
  29303.    z-index:10;
  29304.  }
  29305.    /* .triangle_left{
  29306.      position: relative;
  29307.    }
  29308.    .triangle_left::after{
  29309.      content:'';
  29310.      width: 0;
  29311.      height: 0;
  29312.      position: absolute;
  29313.      border-top: 13px solid transparent;
  29314.      border-bottom: 13px solid transparent;
  29315.      border-right: 0px solid transparent;
  29316.      border-left: 13px solid #CD2215;
  29317.      left:100%;
  29318.    } */
  29319.  .m-product-card__wrapper{
  29320.    display:flex;
  29321.    flex-direction:column;
  29322.    height:100%;
  29323.  }
  29324.      .m-product-card__info{
  29325.      display: flex;
  29326.      flex-direction: column;
  29327.    }
  29328.      .m-product-card__price{
  29329.      order:1;
  29330.    }
  29331.    .m-product-card__title{
  29332.      order:2;
  29333.    }
  29334.    .m-product-card__reviews{
  29335.      order:3;
  29336.    }
  29337.    .m-product-shipping__content{
  29338.      order:4;
  29339.    }
  29340.    .m-product-shipping__text{
  29341.      font-size:11px !important;
  29342.    }
  29343.  .m-product-card--style-2 .m-product-card__name {
  29344.    font-size: 14px;
  29345.  }
  29346.    @media screen and (max-width: 768px) {
  29347.      /* .triangle_left::after{
  29348.      border-top: 11px solid transparent;
  29349.      border-bottom: 11px solid transparent;
  29350.      border-left: 11px solid #CD2215;
  29351.    } */
  29352.  
  29353.    .m-product-card--style-2 .m-product-card__name {
  29354.      line-height: 1.3;
  29355.      -webkit-line-clamp: 2;
  29356.      font-size: 12px;
  29357.    }
  29358.    .m-product-card--style-2 .m-price-item--last {
  29359.      font-size: 18px;
  29360.    }
  29361.    .m-product-shipping__content {
  29362.      display: none;
  29363.    }
  29364.  }
  29365. </style>
  29366.  
  29367.  
  29368.                        </div>
  29369.                      
  29370.                        <div class="m:column">
  29371.                          
  29372.  
  29373.  
  29374. <div
  29375.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  29376.  data-view="card"
  29377.  
  29378.  data-product-id="9590618652985"
  29379.  
  29380. >
  29381.  
  29382.  <div class="m-product-card__wrapper">
  29383.    <div class="m-product-card__media">
  29384.      <a
  29385.        class="m-product-card__link m:block m:w-full"
  29386.        href="/products/garvee-gaomon-pine-straw-rake-60-pho-0ztwyy84-1-so"
  29387.        aria-label="GARVEE Pine Straw Rake 60 Inch , 6mm Rake Needle, 26 Coil Spring Tines Durable Powder Coated Steel Tow Behind Landscape Rake with 3 Point Hitch Receiver Attachment Fit to Cat0 Cat 1 Tractors for Leaves Grass, Yellow"
  29388.        style="position: relative;"
  29389.      >
  29390.          
  29391.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  29392.            <img src="//www.garvee.com/cdn/shop/files/1_0e244add-4488-4401-be99-99be82707168.jpg?v=1742261598&amp;width=1100" alt="GARVEE Pine Straw Rake 60 Inch , 6mm Rake Needle, 26 Coil Spring Tines Durable Powder Coated Steel Tow Behind Landscape Rake with 3 Point Hitch Receiver Attachment Fit to Cat0 Cat 1 Tractors for Leaves Grass, Yellow" srcset="//www.garvee.com/cdn/shop/files/1_0e244add-4488-4401-be99-99be82707168.jpg?v=1742261598&amp;width=165 165w, //www.garvee.com/cdn/shop/files/1_0e244add-4488-4401-be99-99be82707168.jpg?v=1742261598&amp;width=352 352w, //www.garvee.com/cdn/shop/files/1_0e244add-4488-4401-be99-99be82707168.jpg?v=1742261598&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  29393.          </responsive-image>
  29394.  
  29395.        <div class="badges-wrapper">
  29396.          
  29397.            
  29398.              
  29399.            
  29400.              
  29401.            
  29402.              
  29403.            
  29404.              
  29405.            
  29406.              
  29407.            
  29408.              
  29409.            
  29410.              
  29411.            
  29412.              
  29413.            
  29414.              
  29415.            
  29416.              
  29417.            
  29418.              
  29419.            
  29420.              
  29421.            
  29422.              
  29423.            
  29424.              
  29425.            
  29426.              
  29427.            
  29428.              
  29429.            
  29430.              
  29431.            
  29432.              
  29433.            
  29434.              
  29435.            
  29436.              
  29437.            
  29438.              
  29439.            
  29440.              
  29441.            
  29442.              
  29443.            
  29444.              
  29445.            
  29446.              
  29447.            
  29448.          
  29449.        </div>
  29450.      </a></div>
  29451.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  29452.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-gaomon-pine-straw-rake-60-pho-0ztwyy84-1-so" aria-label="GARVEE Pine Straw Rake 60 Inch , 6mm Rake Needle, 26 Coil Spring Tines Durable Powder Coated Steel Tow Behind Landscape Rake with 3 Point Hitch Receiver Attachment Fit to Cat0 Cat 1 Tractors for Leaves Grass, Yellow"></a>
  29453.      <div class="m-product-card__info">
  29454.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  29455.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  29456.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  29457.                
  29458.                  style="display:none;"
  29459.                
  29460.              >Sold Out</span><span
  29461.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  29462.              data-foxkit-preorder-badge="9590618652985"
  29463.            ></span>
  29464.            
  29465. <div style="display:flex;">
  29466.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-27%
  29467. </span>
  29468.              </div>
  29469.            
  29470.          </div>
  29471.          
  29472.        </div><h3 class="m-product-card__title h6">
  29473.          <a
  29474.            href="/products/garvee-gaomon-pine-straw-rake-60-pho-0ztwyy84-1-so"
  29475.            class="m-product-card__name"
  29476.            style="font-weight:normal;"
  29477.          >
  29478.            GARVEE Pine Straw Rake 60 Inch , 6mm Rake Needle, 26 Coil Spring Tines Durable Powder Coated Steel Tow Behind Landscape Rake with 3 Point Hitch Receiver Attachment Fit to Cat0 Cat 1 Tractors for Leaves Grass, Yellow
  29479.          </a>
  29480.        </h3>
  29481.  
  29482.        
  29483.          <div class="m-product-card__reviews">
  29484.            
  29485.  
  29486.    
  29487.    
  29488.      
  29489.  
  29490.  
  29491.  <div
  29492.    style=""
  29493.    class="jdgm-widget jdgm-preview-badge"
  29494.    data-id="9590618652985"
  29495.    data-template="manual-installation"
  29496.    data-auto-install="false"
  29497.  >
  29498.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.85' data-number-of-reviews='62' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.85' tabindex='0' aria-label='4.85 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 62 reviews </span> </div>
  29499.  </div>
  29500.  
  29501.  
  29502. <style>
  29503.  @media screen and (max-width: 768px){
  29504.    .jdgm-qa-badge{
  29505.      display:none;
  29506.    }
  29507.    .jdgm-histogram{
  29508.    float:none;
  29509.  }
  29510.  }
  29511.  .jdgm-widget.jdgm-preview-badge{
  29512.    display:block !important;
  29513.  }
  29514.  .jdgm-sort-dropdown-arrow:before{
  29515.    position: relative;
  29516.    left: -8px;
  29517.  }
  29518. </style>
  29519.  
  29520.    
  29521.  
  29522.  
  29523.          </div>
  29524.        
  29525.  
  29526.        <div class="m-product-card__price">
  29527.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  29528. <div
  29529.  class="
  29530.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  29531.  data-sale-badge-type="percentage"
  29532. >
  29533.  <div class="m-price__regular">
  29534.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  29535.    <span class="m-price-item m-price-item--regular ">
  29536.      $282.99
  29537.    </span>
  29538.  </div>
  29539.  <div class="m-price__sale">
  29540.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  29541.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  29542.      $282.99
  29543.    </span>
  29544.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  29545.      <s class="m-price-item m-price-item--regular">
  29546.        
  29547.          $391.99
  29548.        
  29549.      </s></div>
  29550.  <div class="m-price__unit-wrapper m:hidden">
  29551.    <span class="m:visually-hidden">Unit price</span>
  29552.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  29553.  </div>
  29554.  
  29555.  
  29556. </div>
  29557.  
  29558. <style>
  29559.  .m-product-tag.m-product-tag--discounted.isSpring {
  29560.    background: #EC7521;
  29561.    color: #E6EBB3;
  29562.  }
  29563. </style>
  29564.  
  29565.        </div>
  29566.  
  29567.        
  29568.  
  29569.        
  29570.  
  29571.        <div class="m-product-card__description">
  29572.          Effortlessly Clear Your Yard with GARVEE's 60 Inch Pine Straw Rake Transform Your Yard Maintenance...
  29573.        </div></div>
  29574.      <div class="m-product-card__quick-add ">
  29575.    <product-form class="m-product-form m:w-full m:block" data-product-id="49727862767929"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49727862767929" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49727862767929" data-selected-variant=""><button
  29576.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  29577.          name="add"
  29578.          
  29579.          aria-label="Add to cart"
  29580.        >
  29581.          <span class="m-spinner-icon">
  29582.            <svg
  29583.              class="animate-spin m-svg-icon--medium"
  29584.              viewBox="0 0 24 24"
  29585.              fill="none"
  29586.            >
  29587.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  29588.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  29589.            </svg>
  29590.          </span>
  29591.          
  29592.          <span class="m-add-to-cart--text" data-atc-text>
  29593.            
  29594.              Add to cart
  29595.            
  29596.          </span>
  29597.        </button><input type="hidden" name="product-id" value="9590618652985" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  29598.  
  29599.    <!--
  29600.      
  29601.        <input hidden name="id" required value="49727862767929" data-selected-variant="">
  29602.        <button
  29603.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  29604.          data-product-url="/products/garvee-gaomon-pine-straw-rake-60-pho-0ztwyy84-1-so"
  29605.          data-product-id="9590618652985"
  29606.          data-product-handle="garvee-gaomon-pine-straw-rake-60-pho-0ztwyy84-1-so"
  29607.          aria-label="Add to cart"
  29608.        >
  29609.          <span class="m-spinner-icon">
  29610.            <svg
  29611.              class="animate-spin m-svg-icon--medium"
  29612.              xmlns="http://www.w3.org/2000/svg"
  29613.              viewBox="0 0 24 24"
  29614.              fill="none"
  29615.            >
  29616.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  29617.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  29618.            </svg>
  29619.          </span>
  29620.          
  29621.          <span class="m-add-to-cart--text">Add to cart</span>
  29622.        </button>
  29623.      
  29624.    -->
  29625.  
  29626. </div>
  29627. <style>
  29628.  @media screen and (max-width: 768px){
  29629.    .m-product-card__quick-add{
  29630.      /* display:none; */
  29631.      /* margin:5px auto 0 auto !important; */
  29632.      margin-top:5px !important;
  29633.    }
  29634.    .m-product-card__quick-add .m-add-to-cart{
  29635.      height:30px;
  29636.    }
  29637.    .m-product-card__quick-add .m-add-to-cart--text{
  29638.      font-size:14px !important;
  29639.    }
  29640.  }
  29641.  
  29642. </style>
  29643.  
  29644.    </div>
  29645.  </div>
  29646.  <input hidden name="id" required value="49727862767929" data-selected-variant="">
  29647. </div><script></script>
  29648. <style>
  29649.  .media_banner_collection {
  29650.    position: absolute;
  29651.    top:0;
  29652.    left:0;
  29653.    width: 20%;
  29654.    z-index:10;
  29655.  }
  29656.  .badges-wrapper {
  29657.    position: absolute;
  29658.    top:0;
  29659.    right:0;
  29660.    z-index:10;
  29661.  }
  29662.    /* .triangle_left{
  29663.      position: relative;
  29664.    }
  29665.    .triangle_left::after{
  29666.      content:'';
  29667.      width: 0;
  29668.      height: 0;
  29669.      position: absolute;
  29670.      border-top: 13px solid transparent;
  29671.      border-bottom: 13px solid transparent;
  29672.      border-right: 0px solid transparent;
  29673.      border-left: 13px solid #CD2215;
  29674.      left:100%;
  29675.    } */
  29676.  .m-product-card__wrapper{
  29677.    display:flex;
  29678.    flex-direction:column;
  29679.    height:100%;
  29680.  }
  29681.      .m-product-card__info{
  29682.      display: flex;
  29683.      flex-direction: column;
  29684.    }
  29685.      .m-product-card__price{
  29686.      order:1;
  29687.    }
  29688.    .m-product-card__title{
  29689.      order:2;
  29690.    }
  29691.    .m-product-card__reviews{
  29692.      order:3;
  29693.    }
  29694.    .m-product-shipping__content{
  29695.      order:4;
  29696.    }
  29697.    .m-product-shipping__text{
  29698.      font-size:11px !important;
  29699.    }
  29700.  .m-product-card--style-2 .m-product-card__name {
  29701.    font-size: 14px;
  29702.  }
  29703.    @media screen and (max-width: 768px) {
  29704.      /* .triangle_left::after{
  29705.      border-top: 11px solid transparent;
  29706.      border-bottom: 11px solid transparent;
  29707.      border-left: 11px solid #CD2215;
  29708.    } */
  29709.  
  29710.    .m-product-card--style-2 .m-product-card__name {
  29711.      line-height: 1.3;
  29712.      -webkit-line-clamp: 2;
  29713.      font-size: 12px;
  29714.    }
  29715.    .m-product-card--style-2 .m-price-item--last {
  29716.      font-size: 18px;
  29717.    }
  29718.    .m-product-shipping__content {
  29719.      display: none;
  29720.    }
  29721.  }
  29722. </style>
  29723.  
  29724.  
  29725.                        </div>
  29726.                      
  29727.                        <div class="m:column">
  29728.                          
  29729.  
  29730.  
  29731. <div
  29732.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  29733.  data-view="card"
  29734.  
  29735.  data-product-id="9590603710777"
  29736.  
  29737. >
  29738.  
  29739.  <div class="m-product-card__wrapper">
  29740.    <div class="m-product-card__media">
  29741.      <a
  29742.        class="m-product-card__link m:block m:w-full"
  29743.        href="/products/garvee-60-inches-pine-straw-needle-rake-pho-1009dwz8"
  29744.        aria-label="GARVEE 60 Inches Pine Straw Needle Rake, 8mm 26pcs Coil Spring Tines, Durable Powder Coated 3 Point Straw Rake,Steel Spring Landscape Rake Fit for Cat1 Tractors - Orange+Black"
  29745.        style="position: relative;"
  29746.      >
  29747.          
  29748.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  29749.            <img src="//www.garvee.com/cdn/shop/files/71l_jLd1hHL_9b346bf4-55e4-4332-8c86-5d260b06251c.jpg?v=1723036597&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/71l_jLd1hHL_9b346bf4-55e4-4332-8c86-5d260b06251c.jpg?v=1723036597&amp;width=165 165w, //www.garvee.com/cdn/shop/files/71l_jLd1hHL_9b346bf4-55e4-4332-8c86-5d260b06251c.jpg?v=1723036597&amp;width=352 352w, //www.garvee.com/cdn/shop/files/71l_jLd1hHL_9b346bf4-55e4-4332-8c86-5d260b06251c.jpg?v=1723036597&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  29750.          </responsive-image>
  29751.  
  29752.        <div class="badges-wrapper">
  29753.          
  29754.            
  29755.              
  29756.            
  29757.              
  29758.            
  29759.              
  29760.            
  29761.              
  29762.            
  29763.              
  29764.            
  29765.              
  29766.            
  29767.              
  29768.            
  29769.              
  29770.            
  29771.              
  29772.            
  29773.              
  29774.            
  29775.              
  29776.            
  29777.              
  29778.            
  29779.              
  29780.            
  29781.              
  29782.            
  29783.              
  29784.            
  29785.              
  29786.            
  29787.              
  29788.            
  29789.              
  29790.            
  29791.              
  29792.            
  29793.              
  29794.            
  29795.              
  29796.            
  29797.              
  29798.            
  29799.              
  29800. <span class="m-product-card__tag-name m-product-tag m-product-tag--hot m-gradient m-color-scheme-a402d81f-d7b9-4c3a-a76b-e400e1634c1d">Father's Day</span>
  29801.              
  29802.            
  29803.              
  29804.            
  29805.              
  29806.            
  29807.          
  29808.        </div>
  29809.      </a></div>
  29810.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  29811.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-60-inches-pine-straw-needle-rake-pho-1009dwz8" aria-label="GARVEE 60 Inches Pine Straw Needle Rake, 8mm 26pcs Coil Spring Tines, Durable Powder Coated 3 Point Straw Rake,Steel Spring Landscape Rake Fit for Cat1 Tractors - Orange+Black"></a>
  29812.      <div class="m-product-card__info">
  29813.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  29814.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  29815.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  29816.                
  29817.                  style="display:none;"
  29818.                
  29819.              >Sold Out</span><span
  29820.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  29821.              data-foxkit-preorder-badge="9590603710777"
  29822.            ></span>
  29823.            
  29824. <div style="display:flex;">
  29825.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-20%
  29826. </span>
  29827.              </div>
  29828.            
  29829.          </div>
  29830.          
  29831.        </div><h3 class="m-product-card__title h6">
  29832.          <a
  29833.            href="/products/garvee-60-inches-pine-straw-needle-rake-pho-1009dwz8"
  29834.            class="m-product-card__name"
  29835.            style="font-weight:normal;"
  29836.          >
  29837.            GARVEE 60 Inches Pine Straw Needle Rake, 8mm 26pcs Coil Spring Tines, Durable Powder Coated 3 Point Straw Rake,Steel Spring Landscape Rake Fit for Cat1 Tractors - Orange+Black
  29838.          </a>
  29839.        </h3>
  29840.  
  29841.        
  29842.          <div class="m-product-card__reviews">
  29843.            
  29844.  
  29845.    
  29846.    
  29847.      
  29848.  
  29849.  
  29850.  <div
  29851.    style=""
  29852.    class="jdgm-widget jdgm-preview-badge"
  29853.    data-id="9590603710777"
  29854.    data-template="manual-installation"
  29855.    data-auto-install="false"
  29856.  >
  29857.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.84' data-number-of-reviews='37' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.84' tabindex='0' aria-label='4.84 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 37 reviews </span> </div>
  29858.  </div>
  29859.  
  29860.  
  29861. <style>
  29862.  @media screen and (max-width: 768px){
  29863.    .jdgm-qa-badge{
  29864.      display:none;
  29865.    }
  29866.    .jdgm-histogram{
  29867.    float:none;
  29868.  }
  29869.  }
  29870.  .jdgm-widget.jdgm-preview-badge{
  29871.    display:block !important;
  29872.  }
  29873.  .jdgm-sort-dropdown-arrow:before{
  29874.    position: relative;
  29875.    left: -8px;
  29876.  }
  29877. </style>
  29878.  
  29879.    
  29880.  
  29881.  
  29882.          </div>
  29883.        
  29884.  
  29885.        <div class="m-product-card__price">
  29886.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  29887. <div
  29888.  class="
  29889.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  29890.  data-sale-badge-type="percentage"
  29891. >
  29892.  <div class="m-price__regular">
  29893.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  29894.    <span class="m-price-item m-price-item--regular ">
  29895.      $249.99
  29896.    </span>
  29897.  </div>
  29898.  <div class="m-price__sale">
  29899.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  29900.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  29901.      $249.99
  29902.    </span>
  29903.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  29904.      <s class="m-price-item m-price-item--regular">
  29905.        
  29906.          $314.99
  29907.        
  29908.      </s></div>
  29909.  <div class="m-price__unit-wrapper m:hidden">
  29910.    <span class="m:visually-hidden">Unit price</span>
  29911.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  29912.  </div>
  29913.  
  29914.  
  29915. </div>
  29916.  
  29917. <style>
  29918.  .m-product-tag.m-product-tag--discounted.isSpring {
  29919.    background: #EC7521;
  29920.    color: #E6EBB3;
  29921.  }
  29922. </style>
  29923.  
  29924.        </div>
  29925.  
  29926.        
  29927.  
  29928.        
  29929.  
  29930.        <div class="m-product-card__description">
  29931.          Experience Effortless Yard Maintenance! Transform Your Yard Care with the GARVEE 60 Inches Pine Straw...
  29932.        </div></div>
  29933.      <div class="m-product-card__quick-add ">
  29934.    <product-form class="m-product-form m:w-full m:block" data-product-id="49727844122937"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49727844122937" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49727844122937" data-selected-variant=""><button
  29935.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  29936.          name="add"
  29937.          
  29938.          aria-label="Add to cart"
  29939.        >
  29940.          <span class="m-spinner-icon">
  29941.            <svg
  29942.              class="animate-spin m-svg-icon--medium"
  29943.              viewBox="0 0 24 24"
  29944.              fill="none"
  29945.            >
  29946.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  29947.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  29948.            </svg>
  29949.          </span>
  29950.          
  29951.          <span class="m-add-to-cart--text" data-atc-text>
  29952.            
  29953.              Add to cart
  29954.            
  29955.          </span>
  29956.        </button><input type="hidden" name="product-id" value="9590603710777" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  29957.  
  29958.    <!--
  29959.      
  29960.        <input hidden name="id" required value="49727844122937" data-selected-variant="">
  29961.        <button
  29962.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  29963.          data-product-url="/products/garvee-60-inches-pine-straw-needle-rake-pho-1009dwz8"
  29964.          data-product-id="9590603710777"
  29965.          data-product-handle="garvee-60-inches-pine-straw-needle-rake-pho-1009dwz8"
  29966.          aria-label="Add to cart"
  29967.        >
  29968.          <span class="m-spinner-icon">
  29969.            <svg
  29970.              class="animate-spin m-svg-icon--medium"
  29971.              xmlns="http://www.w3.org/2000/svg"
  29972.              viewBox="0 0 24 24"
  29973.              fill="none"
  29974.            >
  29975.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  29976.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  29977.            </svg>
  29978.          </span>
  29979.          
  29980.          <span class="m-add-to-cart--text">Add to cart</span>
  29981.        </button>
  29982.      
  29983.    -->
  29984.  
  29985. </div>
  29986. <style>
  29987.  @media screen and (max-width: 768px){
  29988.    .m-product-card__quick-add{
  29989.      /* display:none; */
  29990.      /* margin:5px auto 0 auto !important; */
  29991.      margin-top:5px !important;
  29992.    }
  29993.    .m-product-card__quick-add .m-add-to-cart{
  29994.      height:30px;
  29995.    }
  29996.    .m-product-card__quick-add .m-add-to-cart--text{
  29997.      font-size:14px !important;
  29998.    }
  29999.  }
  30000.  
  30001. </style>
  30002.  
  30003.    </div>
  30004.  </div>
  30005.  <input hidden name="id" required value="49727844122937" data-selected-variant="">
  30006. </div><script></script>
  30007. <style>
  30008.  .media_banner_collection {
  30009.    position: absolute;
  30010.    top:0;
  30011.    left:0;
  30012.    width: 20%;
  30013.    z-index:10;
  30014.  }
  30015.  .badges-wrapper {
  30016.    position: absolute;
  30017.    top:0;
  30018.    right:0;
  30019.    z-index:10;
  30020.  }
  30021.    /* .triangle_left{
  30022.      position: relative;
  30023.    }
  30024.    .triangle_left::after{
  30025.      content:'';
  30026.      width: 0;
  30027.      height: 0;
  30028.      position: absolute;
  30029.      border-top: 13px solid transparent;
  30030.      border-bottom: 13px solid transparent;
  30031.      border-right: 0px solid transparent;
  30032.      border-left: 13px solid #CD2215;
  30033.      left:100%;
  30034.    } */
  30035.  .m-product-card__wrapper{
  30036.    display:flex;
  30037.    flex-direction:column;
  30038.    height:100%;
  30039.  }
  30040.      .m-product-card__info{
  30041.      display: flex;
  30042.      flex-direction: column;
  30043.    }
  30044.      .m-product-card__price{
  30045.      order:1;
  30046.    }
  30047.    .m-product-card__title{
  30048.      order:2;
  30049.    }
  30050.    .m-product-card__reviews{
  30051.      order:3;
  30052.    }
  30053.    .m-product-shipping__content{
  30054.      order:4;
  30055.    }
  30056.    .m-product-shipping__text{
  30057.      font-size:11px !important;
  30058.    }
  30059.  .m-product-card--style-2 .m-product-card__name {
  30060.    font-size: 14px;
  30061.  }
  30062.    @media screen and (max-width: 768px) {
  30063.      /* .triangle_left::after{
  30064.      border-top: 11px solid transparent;
  30065.      border-bottom: 11px solid transparent;
  30066.      border-left: 11px solid #CD2215;
  30067.    } */
  30068.  
  30069.    .m-product-card--style-2 .m-product-card__name {
  30070.      line-height: 1.3;
  30071.      -webkit-line-clamp: 2;
  30072.      font-size: 12px;
  30073.    }
  30074.    .m-product-card--style-2 .m-price-item--last {
  30075.      font-size: 18px;
  30076.    }
  30077.    .m-product-shipping__content {
  30078.      display: none;
  30079.    }
  30080.  }
  30081. </style>
  30082.  
  30083.  
  30084.                        </div>
  30085.                      
  30086.                    
  30087. </div>
  30088.              </div>
  30089.              
  30090.            </div><div
  30091.              class="m-product-tabs__content m-product-tabs__inner m-mixed-layout m-mixed-layout--mobile-grid"
  30092.              data-tab-index="3"
  30093.              data-enable-slider="false"
  30094.              
  30095.            >
  30096.              <div class="m-mixed-layout__wrapper">
  30097.                <div
  30098.                  class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-4-cols xl:m:grid-4-cols"
  30099.                  
  30100.                    style="
  30101.                      --grid-columns-mobile: 2;
  30102.                      --mobile-column-width: 40vw;
  30103.                    "
  30104.                  
  30105.                >
  30106.                    
  30107.                    
  30108.                    
  30109.                      
  30110.                        <div class="m:column">
  30111.                          
  30112.  
  30113.  
  30114. <div
  30115.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  30116.  data-view="card"
  30117.  
  30118.  data-product-id="9482250879289"
  30119.  
  30120. >
  30121.  
  30122.  <div class="m-product-card__wrapper">
  30123.    <div class="m-product-card__media">
  30124.      <a
  30125.        class="m-product-card__link m:block m:w-full"
  30126.        href="/products/24v-ride-on-tractor-pto-0z2n5mpd"
  30127.        aria-label="GARVEE 3-in-1 Ride-On Tractor, 24V Electric, Excavator & Bulldozer, Remote Control, LED, Music, USB/Bluetooth max 66 lbs - Bright-yellow"
  30128.        style="position: relative;"
  30129.      >
  30130.          
  30131.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  30132.            <img src="//www.garvee.com/cdn/shop/files/71QpIf7ytVL_c86472ff-83d4-4fe7-af0c-c1976815fe82.jpg?v=1719382940&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/71QpIf7ytVL_c86472ff-83d4-4fe7-af0c-c1976815fe82.jpg?v=1719382940&amp;width=165 165w, //www.garvee.com/cdn/shop/files/71QpIf7ytVL_c86472ff-83d4-4fe7-af0c-c1976815fe82.jpg?v=1719382940&amp;width=352 352w, //www.garvee.com/cdn/shop/files/71QpIf7ytVL_c86472ff-83d4-4fe7-af0c-c1976815fe82.jpg?v=1719382940&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  30133.          </responsive-image>
  30134.  
  30135.        <div class="badges-wrapper">
  30136.          
  30137.            
  30138.              
  30139.            
  30140.              
  30141.            
  30142.              
  30143.            
  30144.              
  30145.            
  30146.              
  30147.            
  30148.              
  30149.            
  30150.              
  30151.            
  30152.              
  30153.            
  30154.              
  30155.            
  30156.              
  30157.            
  30158.              
  30159.            
  30160.              
  30161.            
  30162.              
  30163.            
  30164.              
  30165.            
  30166.              
  30167.            
  30168.              
  30169.            
  30170.              
  30171.            
  30172.              
  30173.            
  30174.              
  30175.            
  30176.              
  30177.            
  30178.              
  30179.            
  30180.              
  30181.            
  30182.              
  30183.            
  30184.              
  30185.            
  30186.              
  30187.            
  30188.              
  30189.            
  30190.              
  30191.            
  30192.              
  30193.            
  30194.              
  30195.            
  30196.              
  30197.            
  30198.              
  30199.            
  30200.              
  30201.            
  30202.              
  30203.            
  30204.              
  30205.            
  30206.              
  30207.            
  30208.              
  30209.            
  30210.              
  30211.            
  30212.              
  30213.            
  30214.              
  30215.            
  30216.              
  30217.            
  30218.              
  30219.            
  30220.              
  30221.            
  30222.          
  30223.        </div>
  30224.      </a></div>
  30225.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  30226.      <a class="m-product-card__hidden-link m:hidden" href="/products/24v-ride-on-tractor-pto-0z2n5mpd" aria-label="GARVEE 3-in-1 Ride-On Tractor, 24V Electric, Excavator & Bulldozer, Remote Control, LED, Music, USB/Bluetooth max 66 lbs - Bright-yellow"></a>
  30227.      <div class="m-product-card__info">
  30228.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  30229.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  30230.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  30231.                
  30232.                  style="display:none;"
  30233.                
  30234.              >Sold Out</span><span
  30235.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  30236.              data-foxkit-preorder-badge="9482250879289"
  30237.            ></span>
  30238.            
  30239. <div style="display:flex;">
  30240.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-27%
  30241. </span>
  30242.              </div>
  30243.            
  30244.          </div>
  30245.          
  30246.            <!-- <span style="font-size:12px;font-weight:bold;color:rgb(205,34,21,0.8);">Father's Day Deal</span> -->
  30247.          
  30248.        </div><h3 class="m-product-card__title h6">
  30249.          <a
  30250.            href="/products/24v-ride-on-tractor-pto-0z2n5mpd"
  30251.            class="m-product-card__name"
  30252.            style="font-weight:normal;"
  30253.          >
  30254.            GARVEE 3-in-1 Ride-On Tractor, 24V Electric, Excavator & Bulldozer, Remote Control, LED, Music, USB/Bluetooth max 66 lbs - Bright-yellow
  30255.          </a>
  30256.        </h3>
  30257.  
  30258.        
  30259.          <div class="m-product-card__reviews">
  30260.            
  30261.  
  30262.    
  30263.    
  30264.      
  30265.  
  30266.  
  30267.  <div
  30268.    style=""
  30269.    class="jdgm-widget jdgm-preview-badge"
  30270.    data-id="9482250879289"
  30271.    data-template="manual-installation"
  30272.    data-auto-install="false"
  30273.  >
  30274.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.83' data-number-of-reviews='109' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.83' tabindex='0' aria-label='4.83 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 109 reviews </span> </div>
  30275.  </div>
  30276.  
  30277.  
  30278. <style>
  30279.  @media screen and (max-width: 768px){
  30280.    .jdgm-qa-badge{
  30281.      display:none;
  30282.    }
  30283.    .jdgm-histogram{
  30284.    float:none;
  30285.  }
  30286.  }
  30287.  .jdgm-widget.jdgm-preview-badge{
  30288.    display:block !important;
  30289.  }
  30290.  .jdgm-sort-dropdown-arrow:before{
  30291.    position: relative;
  30292.    left: -8px;
  30293.  }
  30294. </style>
  30295.  
  30296.    
  30297.  
  30298.  
  30299.          </div>
  30300.        
  30301.  
  30302.        <div class="m-product-card__price">
  30303.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  30304. <div
  30305.  class="
  30306.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  30307.  data-sale-badge-type="percentage"
  30308. >
  30309.  <div class="m-price__regular">
  30310.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  30311.    <span class="m-price-item m-price-item--regular ">
  30312.      $399.99
  30313.    </span>
  30314.  </div>
  30315.  <div class="m-price__sale">
  30316.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  30317.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  30318.      $399.99
  30319.    </span>
  30320.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  30321.      <s class="m-price-item m-price-item--regular">
  30322.        
  30323.          $549.99
  30324.        
  30325.      </s></div>
  30326.  <div class="m-price__unit-wrapper m:hidden">
  30327.    <span class="m:visually-hidden">Unit price</span>
  30328.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  30329.  </div>
  30330.  
  30331.  
  30332. </div>
  30333.  
  30334. <style>
  30335.  .m-product-tag.m-product-tag--discounted.isSpring {
  30336.    background: #EC7521;
  30337.    color: #E6EBB3;
  30338.  }
  30339. </style>
  30340.  
  30341.        </div>
  30342.  
  30343.        
  30344.  
  30345.        
  30346.  
  30347.        <div class="m-product-card__description">
  30348.          Experience the ultimate adventure with the GARVEE Ride-On Tractor GARVEE Ride-On Tractor: Unleash Your Child's...
  30349.        </div></div>
  30350.      <div class="m-product-card__quick-add ">
  30351.    <product-form class="m-product-form m:w-full m:block" data-product-id="49447004897593"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49447004897593" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49447004897593" data-selected-variant=""><button
  30352.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  30353.          name="add"
  30354.          
  30355.          aria-label="Add to cart"
  30356.        >
  30357.          <span class="m-spinner-icon">
  30358.            <svg
  30359.              class="animate-spin m-svg-icon--medium"
  30360.              viewBox="0 0 24 24"
  30361.              fill="none"
  30362.            >
  30363.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  30364.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  30365.            </svg>
  30366.          </span>
  30367.          
  30368.          <span class="m-add-to-cart--text" data-atc-text>
  30369.            
  30370.              Add to cart
  30371.            
  30372.          </span>
  30373.        </button><input type="hidden" name="product-id" value="9482250879289" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  30374.  
  30375.    <!--
  30376.      
  30377.        <input hidden name="id" required value="49447004897593" data-selected-variant="">
  30378.        <button
  30379.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  30380.          data-product-url="/products/24v-ride-on-tractor-pto-0z2n5mpd"
  30381.          data-product-id="9482250879289"
  30382.          data-product-handle="24v-ride-on-tractor-pto-0z2n5mpd"
  30383.          aria-label="Add to cart"
  30384.        >
  30385.          <span class="m-spinner-icon">
  30386.            <svg
  30387.              class="animate-spin m-svg-icon--medium"
  30388.              xmlns="http://www.w3.org/2000/svg"
  30389.              viewBox="0 0 24 24"
  30390.              fill="none"
  30391.            >
  30392.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  30393.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  30394.            </svg>
  30395.          </span>
  30396.          
  30397.          <span class="m-add-to-cart--text">Add to cart</span>
  30398.        </button>
  30399.      
  30400.    -->
  30401.  
  30402. </div>
  30403. <style>
  30404.  @media screen and (max-width: 768px){
  30405.    .m-product-card__quick-add{
  30406.      /* display:none; */
  30407.      /* margin:5px auto 0 auto !important; */
  30408.      margin-top:5px !important;
  30409.    }
  30410.    .m-product-card__quick-add .m-add-to-cart{
  30411.      height:30px;
  30412.    }
  30413.    .m-product-card__quick-add .m-add-to-cart--text{
  30414.      font-size:14px !important;
  30415.    }
  30416.  }
  30417.  
  30418. </style>
  30419.  
  30420.    </div>
  30421.  </div>
  30422.  <input hidden name="id" required value="49447004897593" data-selected-variant="">
  30423. </div><script></script>
  30424. <style>
  30425.  .media_banner_collection {
  30426.    position: absolute;
  30427.    top:0;
  30428.    left:0;
  30429.    width: 20%;
  30430.    z-index:10;
  30431.  }
  30432.  .badges-wrapper {
  30433.    position: absolute;
  30434.    top:0;
  30435.    right:0;
  30436.    z-index:10;
  30437.  }
  30438.    /* .triangle_left{
  30439.      position: relative;
  30440.    }
  30441.    .triangle_left::after{
  30442.      content:'';
  30443.      width: 0;
  30444.      height: 0;
  30445.      position: absolute;
  30446.      border-top: 13px solid transparent;
  30447.      border-bottom: 13px solid transparent;
  30448.      border-right: 0px solid transparent;
  30449.      border-left: 13px solid #CD2215;
  30450.      left:100%;
  30451.    } */
  30452.  .m-product-card__wrapper{
  30453.    display:flex;
  30454.    flex-direction:column;
  30455.    height:100%;
  30456.  }
  30457.      .m-product-card__info{
  30458.      display: flex;
  30459.      flex-direction: column;
  30460.    }
  30461.      .m-product-card__price{
  30462.      order:1;
  30463.    }
  30464.    .m-product-card__title{
  30465.      order:2;
  30466.    }
  30467.    .m-product-card__reviews{
  30468.      order:3;
  30469.    }
  30470.    .m-product-shipping__content{
  30471.      order:4;
  30472.    }
  30473.    .m-product-shipping__text{
  30474.      font-size:11px !important;
  30475.    }
  30476.  .m-product-card--style-2 .m-product-card__name {
  30477.    font-size: 14px;
  30478.  }
  30479.    @media screen and (max-width: 768px) {
  30480.      /* .triangle_left::after{
  30481.      border-top: 11px solid transparent;
  30482.      border-bottom: 11px solid transparent;
  30483.      border-left: 11px solid #CD2215;
  30484.    } */
  30485.  
  30486.    .m-product-card--style-2 .m-product-card__name {
  30487.      line-height: 1.3;
  30488.      -webkit-line-clamp: 2;
  30489.      font-size: 12px;
  30490.    }
  30491.    .m-product-card--style-2 .m-price-item--last {
  30492.      font-size: 18px;
  30493.    }
  30494.    .m-product-shipping__content {
  30495.      display: none;
  30496.    }
  30497.  }
  30498. </style>
  30499.  
  30500.  
  30501.                        </div>
  30502.                      
  30503.                        <div class="m:column">
  30504.                          
  30505.  
  30506.  
  30507. <div
  30508.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  30509.  data-view="card"
  30510.  
  30511.  data-product-id="9491393937721"
  30512.  
  30513. >
  30514.  
  30515.  <div class="m-product-card__wrapper">
  30516.    <div class="m-product-card__media">
  30517.      <a
  30518.        class="m-product-card__link m:block m:w-full"
  30519.        href="/products/garvee-2-seater-ride-on-car-pto-0yp6j6tu"
  30520.        aria-label="GARVEE 2-Seater Ride on Car,6X6 24V Kids Ride On Dump Truck with Remote Control Electric Utility Vehicles UTV Battery Powered 6 Wheeler, for 3 years and up - Blue"
  30521.        style="position: relative;"
  30522.      >
  30523.          
  30524.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  30525.            <img src="//www.garvee.com/cdn/shop/files/71J0shgbtIL.jpg?v=1719387986&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/71J0shgbtIL.jpg?v=1719387986&amp;width=165 165w, //www.garvee.com/cdn/shop/files/71J0shgbtIL.jpg?v=1719387986&amp;width=352 352w, //www.garvee.com/cdn/shop/files/71J0shgbtIL.jpg?v=1719387986&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  30526.          </responsive-image>
  30527.  
  30528.        <div class="badges-wrapper">
  30529.          
  30530.            
  30531.              
  30532.            
  30533.              
  30534.            
  30535.              
  30536.            
  30537.              
  30538.            
  30539.              
  30540.            
  30541.              
  30542.            
  30543.              
  30544.            
  30545.              
  30546.            
  30547.              
  30548.            
  30549.              
  30550.            
  30551.              
  30552.            
  30553.              
  30554.            
  30555.              
  30556.            
  30557.              
  30558.            
  30559.              
  30560.            
  30561.              
  30562.            
  30563.              
  30564.            
  30565.              
  30566.            
  30567.              
  30568.            
  30569.              
  30570.            
  30571.              
  30572.            
  30573.              
  30574.            
  30575.              
  30576.            
  30577.              
  30578.            
  30579.              
  30580.            
  30581.              
  30582.            
  30583.              
  30584.            
  30585.              
  30586.            
  30587.              
  30588.            
  30589.              
  30590.            
  30591.              
  30592.            
  30593.              
  30594.            
  30595.              
  30596.            
  30597.              
  30598.            
  30599.          
  30600.        </div>
  30601.      </a></div>
  30602.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  30603.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-2-seater-ride-on-car-pto-0yp6j6tu" aria-label="GARVEE 2-Seater Ride on Car,6X6 24V Kids Ride On Dump Truck with Remote Control Electric Utility Vehicles UTV Battery Powered 6 Wheeler, for 3 years and up - Blue"></a>
  30604.      <div class="m-product-card__info">
  30605.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  30606.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  30607.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  30608.                
  30609.                  style="display:none;"
  30610.                
  30611.              >Sold Out</span><span
  30612.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  30613.              data-foxkit-preorder-badge="9491393937721"
  30614.            ></span>
  30615.            
  30616. <div style="display:flex;">
  30617.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-30%
  30618. </span>
  30619.              </div>
  30620.            
  30621.          </div>
  30622.          
  30623.        </div><h3 class="m-product-card__title h6">
  30624.          <a
  30625.            href="/products/garvee-2-seater-ride-on-car-pto-0yp6j6tu"
  30626.            class="m-product-card__name"
  30627.            style="font-weight:normal;"
  30628.          >
  30629.            GARVEE 2-Seater Ride on Car,6X6 24V Kids Ride On Dump Truck with Remote Control Electric Utility Vehicles UTV Battery Powered 6 Wheeler, for 3 years and up - Blue
  30630.          </a>
  30631.        </h3>
  30632.  
  30633.        
  30634.          <div class="m-product-card__reviews">
  30635.            
  30636.  
  30637.    
  30638.    
  30639.      
  30640.  
  30641.  
  30642.  <div
  30643.    style=""
  30644.    class="jdgm-widget jdgm-preview-badge"
  30645.    data-id="9491393937721"
  30646.    data-template="manual-installation"
  30647.    data-auto-install="false"
  30648.  >
  30649.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.85' data-number-of-reviews='55' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.85' tabindex='0' aria-label='4.85 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 55 reviews </span> </div>
  30650.  </div>
  30651.  
  30652.  
  30653. <style>
  30654.  @media screen and (max-width: 768px){
  30655.    .jdgm-qa-badge{
  30656.      display:none;
  30657.    }
  30658.    .jdgm-histogram{
  30659.    float:none;
  30660.  }
  30661.  }
  30662.  .jdgm-widget.jdgm-preview-badge{
  30663.    display:block !important;
  30664.  }
  30665.  .jdgm-sort-dropdown-arrow:before{
  30666.    position: relative;
  30667.    left: -8px;
  30668.  }
  30669. </style>
  30670.  
  30671.    
  30672.  
  30673.  
  30674.          </div>
  30675.        
  30676.  
  30677.        <div class="m-product-card__price">
  30678.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  30679. <div
  30680.  class="
  30681.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  30682.  data-sale-badge-type="percentage"
  30683. >
  30684.  <div class="m-price__regular">
  30685.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  30686.    <span class="m-price-item m-price-item--regular ">
  30687.      $369.99
  30688.    </span>
  30689.  </div>
  30690.  <div class="m-price__sale">
  30691.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  30692.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  30693.      $369.99
  30694.    </span>
  30695.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  30696.      <s class="m-price-item m-price-item--regular">
  30697.        
  30698.          $534.99
  30699.        
  30700.      </s></div>
  30701.  <div class="m-price__unit-wrapper m:hidden">
  30702.    <span class="m:visually-hidden">Unit price</span>
  30703.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  30704.  </div>
  30705.  
  30706.  
  30707. </div>
  30708.  
  30709. <style>
  30710.  .m-product-tag.m-product-tag--discounted.isSpring {
  30711.    background: #EC7521;
  30712.    color: #E6EBB3;
  30713.  }
  30714. </style>
  30715.  
  30716.        </div>
  30717.  
  30718.        
  30719.  
  30720.        
  30721.  
  30722.        <div class="m-product-card__description">
  30723.          NOTE: The item will be sent by two parcels individually, and may not arrive at...
  30724.        </div></div>
  30725.      <div class="m-product-card__quick-add ">
  30726.    <product-form class="m-product-form m:w-full m:block" data-product-id="49490917884217"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49490917884217" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49490917884217" data-selected-variant=""><button
  30727.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  30728.          name="add"
  30729.          
  30730.          aria-label="Add to cart"
  30731.        >
  30732.          <span class="m-spinner-icon">
  30733.            <svg
  30734.              class="animate-spin m-svg-icon--medium"
  30735.              viewBox="0 0 24 24"
  30736.              fill="none"
  30737.            >
  30738.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  30739.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  30740.            </svg>
  30741.          </span>
  30742.          
  30743.          <span class="m-add-to-cart--text" data-atc-text>
  30744.            
  30745.              Add to cart
  30746.            
  30747.          </span>
  30748.        </button><input type="hidden" name="product-id" value="9491393937721" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  30749.  
  30750.    <!--
  30751.      
  30752.        <input hidden name="id" required value="49490917884217" data-selected-variant="">
  30753.        <button
  30754.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  30755.          data-product-url="/products/garvee-2-seater-ride-on-car-pto-0yp6j6tu"
  30756.          data-product-id="9491393937721"
  30757.          data-product-handle="garvee-2-seater-ride-on-car-pto-0yp6j6tu"
  30758.          aria-label="Add to cart"
  30759.        >
  30760.          <span class="m-spinner-icon">
  30761.            <svg
  30762.              class="animate-spin m-svg-icon--medium"
  30763.              xmlns="http://www.w3.org/2000/svg"
  30764.              viewBox="0 0 24 24"
  30765.              fill="none"
  30766.            >
  30767.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  30768.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  30769.            </svg>
  30770.          </span>
  30771.          
  30772.          <span class="m-add-to-cart--text">Add to cart</span>
  30773.        </button>
  30774.      
  30775.    -->
  30776.  
  30777. </div>
  30778. <style>
  30779.  @media screen and (max-width: 768px){
  30780.    .m-product-card__quick-add{
  30781.      /* display:none; */
  30782.      /* margin:5px auto 0 auto !important; */
  30783.      margin-top:5px !important;
  30784.    }
  30785.    .m-product-card__quick-add .m-add-to-cart{
  30786.      height:30px;
  30787.    }
  30788.    .m-product-card__quick-add .m-add-to-cart--text{
  30789.      font-size:14px !important;
  30790.    }
  30791.  }
  30792.  
  30793. </style>
  30794.  
  30795.    </div>
  30796.  </div>
  30797.  <input hidden name="id" required value="49490917884217" data-selected-variant="">
  30798. </div><script></script>
  30799. <style>
  30800.  .media_banner_collection {
  30801.    position: absolute;
  30802.    top:0;
  30803.    left:0;
  30804.    width: 20%;
  30805.    z-index:10;
  30806.  }
  30807.  .badges-wrapper {
  30808.    position: absolute;
  30809.    top:0;
  30810.    right:0;
  30811.    z-index:10;
  30812.  }
  30813.    /* .triangle_left{
  30814.      position: relative;
  30815.    }
  30816.    .triangle_left::after{
  30817.      content:'';
  30818.      width: 0;
  30819.      height: 0;
  30820.      position: absolute;
  30821.      border-top: 13px solid transparent;
  30822.      border-bottom: 13px solid transparent;
  30823.      border-right: 0px solid transparent;
  30824.      border-left: 13px solid #CD2215;
  30825.      left:100%;
  30826.    } */
  30827.  .m-product-card__wrapper{
  30828.    display:flex;
  30829.    flex-direction:column;
  30830.    height:100%;
  30831.  }
  30832.      .m-product-card__info{
  30833.      display: flex;
  30834.      flex-direction: column;
  30835.    }
  30836.      .m-product-card__price{
  30837.      order:1;
  30838.    }
  30839.    .m-product-card__title{
  30840.      order:2;
  30841.    }
  30842.    .m-product-card__reviews{
  30843.      order:3;
  30844.    }
  30845.    .m-product-shipping__content{
  30846.      order:4;
  30847.    }
  30848.    .m-product-shipping__text{
  30849.      font-size:11px !important;
  30850.    }
  30851.  .m-product-card--style-2 .m-product-card__name {
  30852.    font-size: 14px;
  30853.  }
  30854.    @media screen and (max-width: 768px) {
  30855.      /* .triangle_left::after{
  30856.      border-top: 11px solid transparent;
  30857.      border-bottom: 11px solid transparent;
  30858.      border-left: 11px solid #CD2215;
  30859.    } */
  30860.  
  30861.    .m-product-card--style-2 .m-product-card__name {
  30862.      line-height: 1.3;
  30863.      -webkit-line-clamp: 2;
  30864.      font-size: 12px;
  30865.    }
  30866.    .m-product-card--style-2 .m-price-item--last {
  30867.      font-size: 18px;
  30868.    }
  30869.    .m-product-shipping__content {
  30870.      display: none;
  30871.    }
  30872.  }
  30873. </style>
  30874.  
  30875.  
  30876.                        </div>
  30877.                      
  30878.                        <div class="m:column">
  30879.                          
  30880.  
  30881.  
  30882. <div
  30883.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  30884.  data-view="card"
  30885.  
  30886.  data-product-id="9491397443897"
  30887.  
  30888. >
  30889.  
  30890.  <div class="m-product-card__wrapper">
  30891.    <div class="m-product-card__media">
  30892.      <a
  30893.        class="m-product-card__link m:block m:w-full"
  30894.        href="/products/garvee-24v-kids-2-seater-ride-pto-0z36ioro"
  30895.        aria-label="GARVEE 24V 2 Seater Ride On Truck Car For Kid age 3 - 8 years, w/Remote Control, 4-Wheeler Suspension, 4x55W Powerful Engine, 4WD Battery Powered, LED Lights, Soft Braking - White"
  30896.        style="position: relative;"
  30897.      >
  30898.          
  30899.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  30900.            <img src="//www.garvee.com/cdn/shop/files/575311701418297_144b0cde-038e-4652-aa88-5a1d400df620.jpg?v=1723362783&amp;width=1100" alt="GARVEE 24V 2 Seater Ride On Truck Car For Kid age 3 - 8 years, w/Remote Control, 4-Wheeler Suspension, 4x55W Powerful Engine, 4WD Battery Powered, LED Lights, Soft Braking - White" srcset="//www.garvee.com/cdn/shop/files/575311701418297_144b0cde-038e-4652-aa88-5a1d400df620.jpg?v=1723362783&amp;width=165 165w, //www.garvee.com/cdn/shop/files/575311701418297_144b0cde-038e-4652-aa88-5a1d400df620.jpg?v=1723362783&amp;width=352 352w, //www.garvee.com/cdn/shop/files/575311701418297_144b0cde-038e-4652-aa88-5a1d400df620.jpg?v=1723362783&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  30901.          </responsive-image>
  30902.  
  30903.        <div class="badges-wrapper">
  30904.          
  30905.            
  30906.              
  30907.            
  30908.              
  30909.            
  30910.              
  30911.            
  30912.              
  30913.            
  30914.              
  30915.            
  30916.              
  30917.            
  30918.              
  30919.            
  30920.              
  30921.            
  30922.              
  30923.            
  30924.              
  30925.            
  30926.              
  30927.            
  30928.              
  30929.            
  30930.              
  30931.            
  30932.              
  30933.            
  30934.              
  30935.            
  30936.              
  30937.            
  30938.              
  30939.            
  30940.              
  30941.            
  30942.              
  30943.            
  30944.              
  30945.            
  30946.              
  30947.            
  30948.              
  30949.            
  30950.              
  30951.            
  30952.              
  30953.            
  30954.              
  30955.            
  30956.              
  30957.            
  30958.              
  30959.            
  30960.              
  30961.            
  30962.              
  30963.            
  30964.              
  30965.            
  30966.              
  30967.            
  30968.              
  30969.            
  30970.              
  30971.            
  30972.              
  30973.            
  30974.              
  30975.            
  30976.              
  30977.            
  30978.          
  30979.        </div>
  30980.      </a></div>
  30981.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  30982.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-24v-kids-2-seater-ride-pto-0z36ioro" aria-label="GARVEE 24V 2 Seater Ride On Truck Car For Kid age 3 - 8 years, w/Remote Control, 4-Wheeler Suspension, 4x55W Powerful Engine, 4WD Battery Powered, LED Lights, Soft Braking - White"></a>
  30983.      <div class="m-product-card__info">
  30984.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  30985.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  30986.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  30987.                
  30988.                  style="display:none;"
  30989.                
  30990.              >Sold Out</span><span
  30991.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  30992.              data-foxkit-preorder-badge="9491397443897"
  30993.            ></span>
  30994.            
  30995. <div style="display:flex;">
  30996.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-17%
  30997. </span>
  30998.              </div>
  30999.            
  31000.          </div>
  31001.          
  31002.        </div><h3 class="m-product-card__title h6">
  31003.          <a
  31004.            href="/products/garvee-24v-kids-2-seater-ride-pto-0z36ioro"
  31005.            class="m-product-card__name"
  31006.            style="font-weight:normal;"
  31007.          >
  31008.            GARVEE 24V 2 Seater Ride On Truck Car For Kid age 3 - 8 years, w/Remote Control, 4-Wheeler Suspension, 4x55W Powerful Engine, 4WD Battery Powered, LED Lights, Soft Braking - White
  31009.          </a>
  31010.        </h3>
  31011.  
  31012.        
  31013.          <div class="m-product-card__reviews">
  31014.            
  31015.  
  31016.    
  31017.    
  31018.      
  31019.  
  31020.  
  31021.  <div
  31022.    style=""
  31023.    class="jdgm-widget jdgm-preview-badge"
  31024.    data-id="9491397443897"
  31025.    data-template="manual-installation"
  31026.    data-auto-install="false"
  31027.  >
  31028.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.85' data-number-of-reviews='66' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.85' tabindex='0' aria-label='4.85 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 66 reviews </span> </div>
  31029.  </div>
  31030.  
  31031.  
  31032. <style>
  31033.  @media screen and (max-width: 768px){
  31034.    .jdgm-qa-badge{
  31035.      display:none;
  31036.    }
  31037.    .jdgm-histogram{
  31038.    float:none;
  31039.  }
  31040.  }
  31041.  .jdgm-widget.jdgm-preview-badge{
  31042.    display:block !important;
  31043.  }
  31044.  .jdgm-sort-dropdown-arrow:before{
  31045.    position: relative;
  31046.    left: -8px;
  31047.  }
  31048. </style>
  31049.  
  31050.    
  31051.  
  31052.  
  31053.          </div>
  31054.        
  31055.  
  31056.        <div class="m-product-card__price">
  31057.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  31058. <div
  31059.  class="
  31060.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  31061.  data-sale-badge-type="percentage"
  31062. >
  31063.  <div class="m-price__regular">
  31064.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  31065.    <span class="m-price-item m-price-item--regular ">
  31066.      $272.99
  31067.    </span>
  31068.  </div>
  31069.  <div class="m-price__sale">
  31070.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  31071.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  31072.      $272.99
  31073.    </span>
  31074.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  31075.      <s class="m-price-item m-price-item--regular">
  31076.        
  31077.          $329.99
  31078.        
  31079.      </s></div>
  31080.  <div class="m-price__unit-wrapper m:hidden">
  31081.    <span class="m:visually-hidden">Unit price</span>
  31082.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  31083.  </div>
  31084.  
  31085.  
  31086. </div>
  31087.  
  31088. <style>
  31089.  .m-product-tag.m-product-tag--discounted.isSpring {
  31090.    background: #EC7521;
  31091.    color: #E6EBB3;
  31092.  }
  31093. </style>
  31094.  
  31095.        </div>
  31096.  
  31097.        
  31098.  
  31099.        
  31100.  
  31101.        <div class="m-product-card__description">
  31102.          Kids Electric Truck: Where Adventure Meets Safety Experience the perfect blend of fun and safety...
  31103.        </div></div>
  31104.      <div class="m-product-card__quick-add ">
  31105.    <product-form class="m-product-form m:w-full m:block" data-product-id="49490924831033"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49490924831033" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49490924831033" data-selected-variant=""><button
  31106.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  31107.          name="add"
  31108.          
  31109.          aria-label="Add to cart"
  31110.        >
  31111.          <span class="m-spinner-icon">
  31112.            <svg
  31113.              class="animate-spin m-svg-icon--medium"
  31114.              viewBox="0 0 24 24"
  31115.              fill="none"
  31116.            >
  31117.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  31118.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  31119.            </svg>
  31120.          </span>
  31121.          
  31122.          <span class="m-add-to-cart--text" data-atc-text>
  31123.            
  31124.              Add to cart
  31125.            
  31126.          </span>
  31127.        </button><input type="hidden" name="product-id" value="9491397443897" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  31128.  
  31129.    <!--
  31130.      
  31131.        <input hidden name="id" required value="49490924831033" data-selected-variant="">
  31132.        <button
  31133.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  31134.          data-product-url="/products/garvee-24v-kids-2-seater-ride-pto-0z36ioro"
  31135.          data-product-id="9491397443897"
  31136.          data-product-handle="garvee-24v-kids-2-seater-ride-pto-0z36ioro"
  31137.          aria-label="Add to cart"
  31138.        >
  31139.          <span class="m-spinner-icon">
  31140.            <svg
  31141.              class="animate-spin m-svg-icon--medium"
  31142.              xmlns="http://www.w3.org/2000/svg"
  31143.              viewBox="0 0 24 24"
  31144.              fill="none"
  31145.            >
  31146.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  31147.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  31148.            </svg>
  31149.          </span>
  31150.          
  31151.          <span class="m-add-to-cart--text">Add to cart</span>
  31152.        </button>
  31153.      
  31154.    -->
  31155.  
  31156. </div>
  31157. <style>
  31158.  @media screen and (max-width: 768px){
  31159.    .m-product-card__quick-add{
  31160.      /* display:none; */
  31161.      /* margin:5px auto 0 auto !important; */
  31162.      margin-top:5px !important;
  31163.    }
  31164.    .m-product-card__quick-add .m-add-to-cart{
  31165.      height:30px;
  31166.    }
  31167.    .m-product-card__quick-add .m-add-to-cart--text{
  31168.      font-size:14px !important;
  31169.    }
  31170.  }
  31171.  
  31172. </style>
  31173.  
  31174.    </div>
  31175.  </div>
  31176.  <input hidden name="id" required value="49490924831033" data-selected-variant="">
  31177. </div><script></script>
  31178. <style>
  31179.  .media_banner_collection {
  31180.    position: absolute;
  31181.    top:0;
  31182.    left:0;
  31183.    width: 20%;
  31184.    z-index:10;
  31185.  }
  31186.  .badges-wrapper {
  31187.    position: absolute;
  31188.    top:0;
  31189.    right:0;
  31190.    z-index:10;
  31191.  }
  31192.    /* .triangle_left{
  31193.      position: relative;
  31194.    }
  31195.    .triangle_left::after{
  31196.      content:'';
  31197.      width: 0;
  31198.      height: 0;
  31199.      position: absolute;
  31200.      border-top: 13px solid transparent;
  31201.      border-bottom: 13px solid transparent;
  31202.      border-right: 0px solid transparent;
  31203.      border-left: 13px solid #CD2215;
  31204.      left:100%;
  31205.    } */
  31206.  .m-product-card__wrapper{
  31207.    display:flex;
  31208.    flex-direction:column;
  31209.    height:100%;
  31210.  }
  31211.      .m-product-card__info{
  31212.      display: flex;
  31213.      flex-direction: column;
  31214.    }
  31215.      .m-product-card__price{
  31216.      order:1;
  31217.    }
  31218.    .m-product-card__title{
  31219.      order:2;
  31220.    }
  31221.    .m-product-card__reviews{
  31222.      order:3;
  31223.    }
  31224.    .m-product-shipping__content{
  31225.      order:4;
  31226.    }
  31227.    .m-product-shipping__text{
  31228.      font-size:11px !important;
  31229.    }
  31230.  .m-product-card--style-2 .m-product-card__name {
  31231.    font-size: 14px;
  31232.  }
  31233.    @media screen and (max-width: 768px) {
  31234.      /* .triangle_left::after{
  31235.      border-top: 11px solid transparent;
  31236.      border-bottom: 11px solid transparent;
  31237.      border-left: 11px solid #CD2215;
  31238.    } */
  31239.  
  31240.    .m-product-card--style-2 .m-product-card__name {
  31241.      line-height: 1.3;
  31242.      -webkit-line-clamp: 2;
  31243.      font-size: 12px;
  31244.    }
  31245.    .m-product-card--style-2 .m-price-item--last {
  31246.      font-size: 18px;
  31247.    }
  31248.    .m-product-shipping__content {
  31249.      display: none;
  31250.    }
  31251.  }
  31252. </style>
  31253.  
  31254.  
  31255.                        </div>
  31256.                      
  31257.                        <div class="m:column">
  31258.                          
  31259.  
  31260.  
  31261. <div
  31262.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  31263.  data-view="card"
  31264.  
  31265.  data-product-id="9491287605561"
  31266.  
  31267. >
  31268.  
  31269.  <div class="m-product-card__wrapper">
  31270.    <div class="m-product-card__media">
  31271.      <a
  31272.        class="m-product-card__link m:block m:w-full"
  31273.        href="/products/garvee-3-in-1-ride-on-tractor-24v-electric-excavator-bulldozer-remote-control-led-music-usb-bluetooth-bright-green"
  31274.        aria-label="GARVEE 3-in-1 Ride-On Tractor, 24V Electric, Excavator & Bulldozer, Remote Control, LED, Music, USB/Bluetooth max 66 lbs - Bright-green"
  31275.        style="position: relative;"
  31276.      >
  31277.          
  31278.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  31279.            <img src="//www.garvee.com/cdn/shop/files/61t5lkcAwuL.jpg?v=1719382873&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/61t5lkcAwuL.jpg?v=1719382873&amp;width=165 165w, //www.garvee.com/cdn/shop/files/61t5lkcAwuL.jpg?v=1719382873&amp;width=352 352w, //www.garvee.com/cdn/shop/files/61t5lkcAwuL.jpg?v=1719382873&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  31280.          </responsive-image>
  31281.  
  31282.        <div class="badges-wrapper">
  31283.          
  31284.            
  31285.              
  31286.            
  31287.              
  31288.            
  31289.              
  31290.            
  31291.              
  31292.            
  31293.              
  31294.            
  31295.              
  31296.            
  31297.              
  31298.            
  31299.              
  31300.            
  31301.              
  31302.            
  31303.              
  31304.            
  31305.              
  31306.            
  31307.              
  31308.            
  31309.              
  31310.            
  31311.              
  31312.            
  31313.              
  31314.            
  31315.              
  31316.            
  31317.              
  31318.            
  31319.              
  31320.            
  31321.              
  31322.            
  31323.              
  31324.            
  31325.              
  31326.            
  31327.              
  31328.            
  31329.              
  31330.            
  31331.              
  31332.            
  31333.              
  31334.            
  31335.              
  31336.            
  31337.              
  31338.            
  31339.              
  31340.            
  31341.              
  31342.            
  31343.              
  31344.            
  31345.              
  31346.            
  31347.              
  31348.            
  31349.              
  31350.            
  31351.              
  31352.            
  31353.              
  31354.            
  31355.              
  31356.            
  31357.              
  31358.            
  31359.              
  31360.            
  31361.              
  31362.            
  31363.          
  31364.        </div>
  31365.      </a></div>
  31366.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  31367.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-3-in-1-ride-on-tractor-24v-electric-excavator-bulldozer-remote-control-led-music-usb-bluetooth-bright-green" aria-label="GARVEE 3-in-1 Ride-On Tractor, 24V Electric, Excavator & Bulldozer, Remote Control, LED, Music, USB/Bluetooth max 66 lbs - Bright-green"></a>
  31368.      <div class="m-product-card__info">
  31369.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  31370.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  31371.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  31372.                
  31373.                  style="display:none;"
  31374.                
  31375.              >Sold Out</span><span
  31376.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  31377.              data-foxkit-preorder-badge="9491287605561"
  31378.            ></span>
  31379.            
  31380. <div style="display:flex;">
  31381.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-27%
  31382. </span>
  31383.              </div>
  31384.            
  31385.          </div>
  31386.          
  31387.            <!-- <span style="font-size:12px;font-weight:bold;color:rgb(205,34,21,0.8);">Father's Day Deal</span> -->
  31388.          
  31389.        </div><h3 class="m-product-card__title h6">
  31390.          <a
  31391.            href="/products/garvee-3-in-1-ride-on-tractor-24v-electric-excavator-bulldozer-remote-control-led-music-usb-bluetooth-bright-green"
  31392.            class="m-product-card__name"
  31393.            style="font-weight:normal;"
  31394.          >
  31395.            GARVEE 3-in-1 Ride-On Tractor, 24V Electric, Excavator & Bulldozer, Remote Control, LED, Music, USB/Bluetooth max 66 lbs - Bright-green
  31396.          </a>
  31397.        </h3>
  31398.  
  31399.        
  31400.          <div class="m-product-card__reviews">
  31401.            
  31402.  
  31403.    
  31404.    
  31405.      
  31406.  
  31407.  
  31408.  <div
  31409.    style=""
  31410.    class="jdgm-widget jdgm-preview-badge"
  31411.    data-id="9491287605561"
  31412.    data-template="manual-installation"
  31413.    data-auto-install="false"
  31414.  >
  31415.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.83' data-number-of-reviews='109' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.83' tabindex='0' aria-label='4.83 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 109 reviews </span> </div>
  31416.  </div>
  31417.  
  31418.  
  31419. <style>
  31420.  @media screen and (max-width: 768px){
  31421.    .jdgm-qa-badge{
  31422.      display:none;
  31423.    }
  31424.    .jdgm-histogram{
  31425.    float:none;
  31426.  }
  31427.  }
  31428.  .jdgm-widget.jdgm-preview-badge{
  31429.    display:block !important;
  31430.  }
  31431.  .jdgm-sort-dropdown-arrow:before{
  31432.    position: relative;
  31433.    left: -8px;
  31434.  }
  31435. </style>
  31436.  
  31437.    
  31438.  
  31439.  
  31440.          </div>
  31441.        
  31442.  
  31443.        <div class="m-product-card__price">
  31444.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  31445. <div
  31446.  class="
  31447.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  31448.  data-sale-badge-type="percentage"
  31449. >
  31450.  <div class="m-price__regular">
  31451.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  31452.    <span class="m-price-item m-price-item--regular ">
  31453.      $399.99
  31454.    </span>
  31455.  </div>
  31456.  <div class="m-price__sale">
  31457.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  31458.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  31459.      $399.99
  31460.    </span>
  31461.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  31462.      <s class="m-price-item m-price-item--regular">
  31463.        
  31464.          $549.99
  31465.        
  31466.      </s></div>
  31467.  <div class="m-price__unit-wrapper m:hidden">
  31468.    <span class="m:visually-hidden">Unit price</span>
  31469.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  31470.  </div>
  31471.  
  31472.  
  31473. </div>
  31474.  
  31475. <style>
  31476.  .m-product-tag.m-product-tag--discounted.isSpring {
  31477.    background: #EC7521;
  31478.    color: #E6EBB3;
  31479.  }
  31480. </style>
  31481.  
  31482.        </div>
  31483.  
  31484.        
  31485.  
  31486.        
  31487.  
  31488.        <div class="m-product-card__description">
  31489.          Experience the ultimate adventure with the GARVEE Ride-On Tractor GARVEE Ride-On Tractor: Unleash Your Child's...
  31490.        </div></div>
  31491.      <div class="m-product-card__quick-add ">
  31492.    <product-form class="m-product-form m:w-full m:block" data-product-id="49490570084665"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49490570084665" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49490570084665" data-selected-variant=""><button
  31493.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  31494.          name="add"
  31495.          
  31496.          aria-label="Add to cart"
  31497.        >
  31498.          <span class="m-spinner-icon">
  31499.            <svg
  31500.              class="animate-spin m-svg-icon--medium"
  31501.              viewBox="0 0 24 24"
  31502.              fill="none"
  31503.            >
  31504.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  31505.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  31506.            </svg>
  31507.          </span>
  31508.          
  31509.          <span class="m-add-to-cart--text" data-atc-text>
  31510.            
  31511.              Add to cart
  31512.            
  31513.          </span>
  31514.        </button><input type="hidden" name="product-id" value="9491287605561" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  31515.  
  31516.    <!--
  31517.      
  31518.        <input hidden name="id" required value="49490570084665" data-selected-variant="">
  31519.        <button
  31520.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  31521.          data-product-url="/products/garvee-3-in-1-ride-on-tractor-24v-electric-excavator-bulldozer-remote-control-led-music-usb-bluetooth-bright-green"
  31522.          data-product-id="9491287605561"
  31523.          data-product-handle="garvee-3-in-1-ride-on-tractor-24v-electric-excavator-bulldozer-remote-control-led-music-usb-bluetooth-bright-green"
  31524.          aria-label="Add to cart"
  31525.        >
  31526.          <span class="m-spinner-icon">
  31527.            <svg
  31528.              class="animate-spin m-svg-icon--medium"
  31529.              xmlns="http://www.w3.org/2000/svg"
  31530.              viewBox="0 0 24 24"
  31531.              fill="none"
  31532.            >
  31533.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  31534.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  31535.            </svg>
  31536.          </span>
  31537.          
  31538.          <span class="m-add-to-cart--text">Add to cart</span>
  31539.        </button>
  31540.      
  31541.    -->
  31542.  
  31543. </div>
  31544. <style>
  31545.  @media screen and (max-width: 768px){
  31546.    .m-product-card__quick-add{
  31547.      /* display:none; */
  31548.      /* margin:5px auto 0 auto !important; */
  31549.      margin-top:5px !important;
  31550.    }
  31551.    .m-product-card__quick-add .m-add-to-cart{
  31552.      height:30px;
  31553.    }
  31554.    .m-product-card__quick-add .m-add-to-cart--text{
  31555.      font-size:14px !important;
  31556.    }
  31557.  }
  31558.  
  31559. </style>
  31560.  
  31561.    </div>
  31562.  </div>
  31563.  <input hidden name="id" required value="49490570084665" data-selected-variant="">
  31564. </div><script></script>
  31565. <style>
  31566.  .media_banner_collection {
  31567.    position: absolute;
  31568.    top:0;
  31569.    left:0;
  31570.    width: 20%;
  31571.    z-index:10;
  31572.  }
  31573.  .badges-wrapper {
  31574.    position: absolute;
  31575.    top:0;
  31576.    right:0;
  31577.    z-index:10;
  31578.  }
  31579.    /* .triangle_left{
  31580.      position: relative;
  31581.    }
  31582.    .triangle_left::after{
  31583.      content:'';
  31584.      width: 0;
  31585.      height: 0;
  31586.      position: absolute;
  31587.      border-top: 13px solid transparent;
  31588.      border-bottom: 13px solid transparent;
  31589.      border-right: 0px solid transparent;
  31590.      border-left: 13px solid #CD2215;
  31591.      left:100%;
  31592.    } */
  31593.  .m-product-card__wrapper{
  31594.    display:flex;
  31595.    flex-direction:column;
  31596.    height:100%;
  31597.  }
  31598.      .m-product-card__info{
  31599.      display: flex;
  31600.      flex-direction: column;
  31601.    }
  31602.      .m-product-card__price{
  31603.      order:1;
  31604.    }
  31605.    .m-product-card__title{
  31606.      order:2;
  31607.    }
  31608.    .m-product-card__reviews{
  31609.      order:3;
  31610.    }
  31611.    .m-product-shipping__content{
  31612.      order:4;
  31613.    }
  31614.    .m-product-shipping__text{
  31615.      font-size:11px !important;
  31616.    }
  31617.  .m-product-card--style-2 .m-product-card__name {
  31618.    font-size: 14px;
  31619.  }
  31620.    @media screen and (max-width: 768px) {
  31621.      /* .triangle_left::after{
  31622.      border-top: 11px solid transparent;
  31623.      border-bottom: 11px solid transparent;
  31624.      border-left: 11px solid #CD2215;
  31625.    } */
  31626.  
  31627.    .m-product-card--style-2 .m-product-card__name {
  31628.      line-height: 1.3;
  31629.      -webkit-line-clamp: 2;
  31630.      font-size: 12px;
  31631.    }
  31632.    .m-product-card--style-2 .m-price-item--last {
  31633.      font-size: 18px;
  31634.    }
  31635.    .m-product-shipping__content {
  31636.      display: none;
  31637.    }
  31638.  }
  31639. </style>
  31640.  
  31641.  
  31642.                        </div>
  31643.                      
  31644.                        <div class="m:column">
  31645.                          
  31646.  
  31647.  
  31648. <div
  31649.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  31650.  data-view="card"
  31651.  
  31652.  data-product-id="9482970104121"
  31653.  
  31654. >
  31655.  
  31656.  <div class="m-product-card__wrapper">
  31657.    <div class="m-product-card__media">
  31658.      <a
  31659.        class="m-product-card__link m:block m:w-full"
  31660.        href="/products/ride-on-tractor-pto-0ytkg9jh"
  31661.        aria-label="GARVEE 4-in-1 Ride-On Tractor for Kids: Excavator, Bulldozer, Removable Tent, 12V Battery, Remote Control, Front Loader, Horn, EVA Tires - Yellow"
  31662.        style="position: relative;"
  31663.      >
  31664.          
  31665.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  31666.            <img src="//www.garvee.com/cdn/shop/files/65454.jpg?v=1734439431&amp;width=1100" alt="GARVEE 4-in-1 Ride-On Tractor for Kids: Excavator, Bulldozer, Removable Tent, 12V Battery, Remote Control, Front Loader, Horn, EVA Tires - Yellow" srcset="//www.garvee.com/cdn/shop/files/65454.jpg?v=1734439431&amp;width=165 165w, //www.garvee.com/cdn/shop/files/65454.jpg?v=1734439431&amp;width=352 352w, //www.garvee.com/cdn/shop/files/65454.jpg?v=1734439431&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  31667.          </responsive-image>
  31668.  
  31669.        <div class="badges-wrapper">
  31670.          
  31671.            
  31672.              
  31673.            
  31674.              
  31675.            
  31676.              
  31677.            
  31678.              
  31679.            
  31680.              
  31681.            
  31682.              
  31683.            
  31684.              
  31685.            
  31686.              
  31687.            
  31688.              
  31689.            
  31690.              
  31691.            
  31692.              
  31693.            
  31694.              
  31695.            
  31696.              
  31697.            
  31698.              
  31699.            
  31700.              
  31701.            
  31702.              
  31703.            
  31704.              
  31705.            
  31706.              
  31707.            
  31708.              
  31709.            
  31710.              
  31711.            
  31712.              
  31713.            
  31714.              
  31715.            
  31716.              
  31717.            
  31718.              
  31719.            
  31720.              
  31721.            
  31722.              
  31723.            
  31724.              
  31725.            
  31726.              
  31727.            
  31728.              
  31729.            
  31730.              
  31731.            
  31732.              
  31733.            
  31734.              
  31735.            
  31736.          
  31737.        </div>
  31738.      </a></div>
  31739.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  31740.      <a class="m-product-card__hidden-link m:hidden" href="/products/ride-on-tractor-pto-0ytkg9jh" aria-label="GARVEE 4-in-1 Ride-On Tractor for Kids: Excavator, Bulldozer, Removable Tent, 12V Battery, Remote Control, Front Loader, Horn, EVA Tires - Yellow"></a>
  31741.      <div class="m-product-card__info">
  31742.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  31743.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  31744.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  31745.                
  31746.                  style="display:none;"
  31747.                
  31748.              >Sold Out</span><span
  31749.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  31750.              data-foxkit-preorder-badge="9482970104121"
  31751.            ></span>
  31752.            
  31753. <div style="display:flex;">
  31754.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-17%
  31755. </span>
  31756.              </div>
  31757.            
  31758.          </div>
  31759.          
  31760.        </div><h3 class="m-product-card__title h6">
  31761.          <a
  31762.            href="/products/ride-on-tractor-pto-0ytkg9jh"
  31763.            class="m-product-card__name"
  31764.            style="font-weight:normal;"
  31765.          >
  31766.            GARVEE 4-in-1 Ride-On Tractor for Kids: Excavator, Bulldozer, Removable Tent, 12V Battery, Remote Control, Front Loader, Horn, EVA Tires - Yellow
  31767.          </a>
  31768.        </h3>
  31769.  
  31770.        
  31771.          <div class="m-product-card__reviews">
  31772.            
  31773.  
  31774.    
  31775.    
  31776.      
  31777.  
  31778.  
  31779.  <div
  31780.    style=""
  31781.    class="jdgm-widget jdgm-preview-badge"
  31782.    data-id="9482970104121"
  31783.    data-template="manual-installation"
  31784.    data-auto-install="false"
  31785.  >
  31786.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.94' data-number-of-reviews='51' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.94' tabindex='0' aria-label='4.94 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 51 reviews </span> </div>
  31787.  </div>
  31788.  
  31789.  
  31790. <style>
  31791.  @media screen and (max-width: 768px){
  31792.    .jdgm-qa-badge{
  31793.      display:none;
  31794.    }
  31795.    .jdgm-histogram{
  31796.    float:none;
  31797.  }
  31798.  }
  31799.  .jdgm-widget.jdgm-preview-badge{
  31800.    display:block !important;
  31801.  }
  31802.  .jdgm-sort-dropdown-arrow:before{
  31803.    position: relative;
  31804.    left: -8px;
  31805.  }
  31806. </style>
  31807.  
  31808.    
  31809.  
  31810.  
  31811.          </div>
  31812.        
  31813.  
  31814.        <div class="m-product-card__price">
  31815.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  31816. <div
  31817.  class="
  31818.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  31819.  data-sale-badge-type="percentage"
  31820. >
  31821.  <div class="m-price__regular">
  31822.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  31823.    <span class="m-price-item m-price-item--regular ">
  31824.      $272.99
  31825.    </span>
  31826.  </div>
  31827.  <div class="m-price__sale">
  31828.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  31829.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  31830.      $272.99
  31831.    </span>
  31832.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  31833.      <s class="m-price-item m-price-item--regular">
  31834.        
  31835.          $329.99
  31836.        
  31837.      </s></div>
  31838.  <div class="m-price__unit-wrapper m:hidden">
  31839.    <span class="m:visually-hidden">Unit price</span>
  31840.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  31841.  </div>
  31842.  
  31843.  
  31844. </div>
  31845.  
  31846. <style>
  31847.  .m-product-tag.m-product-tag--discounted.isSpring {
  31848.    background: #EC7521;
  31849.    color: #E6EBB3;
  31850.  }
  31851. </style>
  31852.  
  31853.        </div>
  31854.  
  31855.        
  31856.  
  31857.        
  31858.  
  31859.        <div class="m-product-card__description">
  31860.          Experience the Ultimate Kids' Construction Adventure! Unleash Your Child's Creativity with the GARVEE 4-in-1 Electric...
  31861.        </div></div>
  31862.      <div class="m-product-card__quick-add ">
  31863.    <product-form class="m-product-form m:w-full m:block" data-product-id="49450886725945"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49450886725945" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49450886725945" data-selected-variant=""><button
  31864.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  31865.          name="add"
  31866.          
  31867.          aria-label="Add to cart"
  31868.        >
  31869.          <span class="m-spinner-icon">
  31870.            <svg
  31871.              class="animate-spin m-svg-icon--medium"
  31872.              viewBox="0 0 24 24"
  31873.              fill="none"
  31874.            >
  31875.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  31876.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  31877.            </svg>
  31878.          </span>
  31879.          
  31880.          <span class="m-add-to-cart--text" data-atc-text>
  31881.            
  31882.              Add to cart
  31883.            
  31884.          </span>
  31885.        </button><input type="hidden" name="product-id" value="9482970104121" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  31886.  
  31887.    <!--
  31888.      
  31889.        <input hidden name="id" required value="49450886725945" data-selected-variant="">
  31890.        <button
  31891.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  31892.          data-product-url="/products/ride-on-tractor-pto-0ytkg9jh"
  31893.          data-product-id="9482970104121"
  31894.          data-product-handle="ride-on-tractor-pto-0ytkg9jh"
  31895.          aria-label="Add to cart"
  31896.        >
  31897.          <span class="m-spinner-icon">
  31898.            <svg
  31899.              class="animate-spin m-svg-icon--medium"
  31900.              xmlns="http://www.w3.org/2000/svg"
  31901.              viewBox="0 0 24 24"
  31902.              fill="none"
  31903.            >
  31904.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  31905.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  31906.            </svg>
  31907.          </span>
  31908.          
  31909.          <span class="m-add-to-cart--text">Add to cart</span>
  31910.        </button>
  31911.      
  31912.    -->
  31913.  
  31914. </div>
  31915. <style>
  31916.  @media screen and (max-width: 768px){
  31917.    .m-product-card__quick-add{
  31918.      /* display:none; */
  31919.      /* margin:5px auto 0 auto !important; */
  31920.      margin-top:5px !important;
  31921.    }
  31922.    .m-product-card__quick-add .m-add-to-cart{
  31923.      height:30px;
  31924.    }
  31925.    .m-product-card__quick-add .m-add-to-cart--text{
  31926.      font-size:14px !important;
  31927.    }
  31928.  }
  31929.  
  31930. </style>
  31931.  
  31932.    </div>
  31933.  </div>
  31934.  <input hidden name="id" required value="49450886725945" data-selected-variant="">
  31935. </div><script></script>
  31936. <style>
  31937.  .media_banner_collection {
  31938.    position: absolute;
  31939.    top:0;
  31940.    left:0;
  31941.    width: 20%;
  31942.    z-index:10;
  31943.  }
  31944.  .badges-wrapper {
  31945.    position: absolute;
  31946.    top:0;
  31947.    right:0;
  31948.    z-index:10;
  31949.  }
  31950.    /* .triangle_left{
  31951.      position: relative;
  31952.    }
  31953.    .triangle_left::after{
  31954.      content:'';
  31955.      width: 0;
  31956.      height: 0;
  31957.      position: absolute;
  31958.      border-top: 13px solid transparent;
  31959.      border-bottom: 13px solid transparent;
  31960.      border-right: 0px solid transparent;
  31961.      border-left: 13px solid #CD2215;
  31962.      left:100%;
  31963.    } */
  31964.  .m-product-card__wrapper{
  31965.    display:flex;
  31966.    flex-direction:column;
  31967.    height:100%;
  31968.  }
  31969.      .m-product-card__info{
  31970.      display: flex;
  31971.      flex-direction: column;
  31972.    }
  31973.      .m-product-card__price{
  31974.      order:1;
  31975.    }
  31976.    .m-product-card__title{
  31977.      order:2;
  31978.    }
  31979.    .m-product-card__reviews{
  31980.      order:3;
  31981.    }
  31982.    .m-product-shipping__content{
  31983.      order:4;
  31984.    }
  31985.    .m-product-shipping__text{
  31986.      font-size:11px !important;
  31987.    }
  31988.  .m-product-card--style-2 .m-product-card__name {
  31989.    font-size: 14px;
  31990.  }
  31991.    @media screen and (max-width: 768px) {
  31992.      /* .triangle_left::after{
  31993.      border-top: 11px solid transparent;
  31994.      border-bottom: 11px solid transparent;
  31995.      border-left: 11px solid #CD2215;
  31996.    } */
  31997.  
  31998.    .m-product-card--style-2 .m-product-card__name {
  31999.      line-height: 1.3;
  32000.      -webkit-line-clamp: 2;
  32001.      font-size: 12px;
  32002.    }
  32003.    .m-product-card--style-2 .m-price-item--last {
  32004.      font-size: 18px;
  32005.    }
  32006.    .m-product-shipping__content {
  32007.      display: none;
  32008.    }
  32009.  }
  32010. </style>
  32011.  
  32012.  
  32013.                        </div>
  32014.                      
  32015.                        <div class="m:column">
  32016.                          
  32017.  
  32018.  
  32019. <div
  32020.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  32021.  data-view="card"
  32022.  
  32023.  data-product-id="9491322208569"
  32024.  
  32025. >
  32026.  
  32027.  <div class="m-product-card__wrapper">
  32028.    <div class="m-product-card__media">
  32029.      <a
  32030.        class="m-product-card__link m:block m:w-full"
  32031.        href="/products/garvee-4-in-1-ride-on-pto-0ytkpgy8"
  32032.        aria-label="GARVEE 4-in-1 Ride-On Tractor for Kids: Excavator, Bulldozer, Removable Tent, 12V Battery, Remote Control, Front Loader, Horn, EVA Tires - White"
  32033.        style="position: relative;"
  32034.      >
  32035.          
  32036.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  32037.            <img src="//www.garvee.com/cdn/shop/files/423434433.jpg?v=1734439419&amp;width=1100" alt="GARVEE 4-in-1 Ride-On Tractor for Kids: Excavator, Bulldozer, Removable Tent, 12V Battery, Remote Control, Front Loader, Horn, EVA Tires - White" srcset="//www.garvee.com/cdn/shop/files/423434433.jpg?v=1734439419&amp;width=165 165w, //www.garvee.com/cdn/shop/files/423434433.jpg?v=1734439419&amp;width=352 352w, //www.garvee.com/cdn/shop/files/423434433.jpg?v=1734439419&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  32038.          </responsive-image>
  32039.  
  32040.        <div class="badges-wrapper">
  32041.          
  32042.            
  32043.              
  32044.            
  32045.              
  32046.            
  32047.              
  32048.            
  32049.              
  32050.            
  32051.              
  32052.            
  32053.              
  32054.            
  32055.              
  32056.            
  32057.              
  32058.            
  32059.              
  32060.            
  32061.              
  32062.            
  32063.              
  32064.            
  32065.              
  32066.            
  32067.              
  32068.            
  32069.              
  32070.            
  32071.              
  32072.            
  32073.              
  32074.            
  32075.              
  32076.            
  32077.              
  32078.            
  32079.              
  32080.            
  32081.              
  32082.            
  32083.              
  32084.            
  32085.              
  32086.            
  32087.              
  32088.            
  32089.              
  32090.            
  32091.              
  32092.            
  32093.              
  32094.            
  32095.              
  32096.            
  32097.              
  32098.            
  32099.              
  32100.            
  32101.              
  32102.            
  32103.              
  32104.            
  32105.          
  32106.        </div>
  32107.      </a></div>
  32108.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  32109.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-4-in-1-ride-on-pto-0ytkpgy8" aria-label="GARVEE 4-in-1 Ride-On Tractor for Kids: Excavator, Bulldozer, Removable Tent, 12V Battery, Remote Control, Front Loader, Horn, EVA Tires - White"></a>
  32110.      <div class="m-product-card__info">
  32111.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  32112.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  32113.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  32114.                
  32115.                  style="display:none;"
  32116.                
  32117.              >Sold Out</span><span
  32118.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  32119.              data-foxkit-preorder-badge="9491322208569"
  32120.            ></span>
  32121.            
  32122. <div style="display:flex;">
  32123.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-17%
  32124. </span>
  32125.              </div>
  32126.            
  32127.          </div>
  32128.          
  32129.        </div><h3 class="m-product-card__title h6">
  32130.          <a
  32131.            href="/products/garvee-4-in-1-ride-on-pto-0ytkpgy8"
  32132.            class="m-product-card__name"
  32133.            style="font-weight:normal;"
  32134.          >
  32135.            GARVEE 4-in-1 Ride-On Tractor for Kids: Excavator, Bulldozer, Removable Tent, 12V Battery, Remote Control, Front Loader, Horn, EVA Tires - White
  32136.          </a>
  32137.        </h3>
  32138.  
  32139.        
  32140.          <div class="m-product-card__reviews">
  32141.            
  32142.  
  32143.    
  32144.    
  32145.      
  32146.  
  32147.  
  32148.  <div
  32149.    style=""
  32150.    class="jdgm-widget jdgm-preview-badge"
  32151.    data-id="9491322208569"
  32152.    data-template="manual-installation"
  32153.    data-auto-install="false"
  32154.  >
  32155.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.94' data-number-of-reviews='51' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.94' tabindex='0' aria-label='4.94 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 51 reviews </span> </div>
  32156.  </div>
  32157.  
  32158.  
  32159. <style>
  32160.  @media screen and (max-width: 768px){
  32161.    .jdgm-qa-badge{
  32162.      display:none;
  32163.    }
  32164.    .jdgm-histogram{
  32165.    float:none;
  32166.  }
  32167.  }
  32168.  .jdgm-widget.jdgm-preview-badge{
  32169.    display:block !important;
  32170.  }
  32171.  .jdgm-sort-dropdown-arrow:before{
  32172.    position: relative;
  32173.    left: -8px;
  32174.  }
  32175. </style>
  32176.  
  32177.    
  32178.  
  32179.  
  32180.          </div>
  32181.        
  32182.  
  32183.        <div class="m-product-card__price">
  32184.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  32185. <div
  32186.  class="
  32187.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  32188.  data-sale-badge-type="percentage"
  32189. >
  32190.  <div class="m-price__regular">
  32191.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  32192.    <span class="m-price-item m-price-item--regular ">
  32193.      $272.99
  32194.    </span>
  32195.  </div>
  32196.  <div class="m-price__sale">
  32197.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  32198.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  32199.      $272.99
  32200.    </span>
  32201.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  32202.      <s class="m-price-item m-price-item--regular">
  32203.        
  32204.          $329.99
  32205.        
  32206.      </s></div>
  32207.  <div class="m-price__unit-wrapper m:hidden">
  32208.    <span class="m:visually-hidden">Unit price</span>
  32209.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  32210.  </div>
  32211.  
  32212.  
  32213. </div>
  32214.  
  32215. <style>
  32216.  .m-product-tag.m-product-tag--discounted.isSpring {
  32217.    background: #EC7521;
  32218.    color: #E6EBB3;
  32219.  }
  32220. </style>
  32221.  
  32222.        </div>
  32223.  
  32224.        
  32225.  
  32226.        
  32227.  
  32228.        <div class="m-product-card__description">
  32229.          GARVEE 4-in-1 Ride-On Tractor for Kids Product Highlights Multiple Configurations Safe and Durable Design Premium...
  32230.        </div></div>
  32231.      <div class="m-product-card__quick-add ">
  32232.    <product-form class="m-product-form m:w-full m:block" data-product-id="49490711019833"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49490711019833" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49490711019833" data-selected-variant=""><button
  32233.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  32234.          name="add"
  32235.          
  32236.          aria-label="Add to cart"
  32237.        >
  32238.          <span class="m-spinner-icon">
  32239.            <svg
  32240.              class="animate-spin m-svg-icon--medium"
  32241.              viewBox="0 0 24 24"
  32242.              fill="none"
  32243.            >
  32244.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  32245.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  32246.            </svg>
  32247.          </span>
  32248.          
  32249.          <span class="m-add-to-cart--text" data-atc-text>
  32250.            
  32251.              Add to cart
  32252.            
  32253.          </span>
  32254.        </button><input type="hidden" name="product-id" value="9491322208569" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  32255.  
  32256.    <!--
  32257.      
  32258.        <input hidden name="id" required value="49490711019833" data-selected-variant="">
  32259.        <button
  32260.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  32261.          data-product-url="/products/garvee-4-in-1-ride-on-pto-0ytkpgy8"
  32262.          data-product-id="9491322208569"
  32263.          data-product-handle="garvee-4-in-1-ride-on-pto-0ytkpgy8"
  32264.          aria-label="Add to cart"
  32265.        >
  32266.          <span class="m-spinner-icon">
  32267.            <svg
  32268.              class="animate-spin m-svg-icon--medium"
  32269.              xmlns="http://www.w3.org/2000/svg"
  32270.              viewBox="0 0 24 24"
  32271.              fill="none"
  32272.            >
  32273.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  32274.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  32275.            </svg>
  32276.          </span>
  32277.          
  32278.          <span class="m-add-to-cart--text">Add to cart</span>
  32279.        </button>
  32280.      
  32281.    -->
  32282.  
  32283. </div>
  32284. <style>
  32285.  @media screen and (max-width: 768px){
  32286.    .m-product-card__quick-add{
  32287.      /* display:none; */
  32288.      /* margin:5px auto 0 auto !important; */
  32289.      margin-top:5px !important;
  32290.    }
  32291.    .m-product-card__quick-add .m-add-to-cart{
  32292.      height:30px;
  32293.    }
  32294.    .m-product-card__quick-add .m-add-to-cart--text{
  32295.      font-size:14px !important;
  32296.    }
  32297.  }
  32298.  
  32299. </style>
  32300.  
  32301.    </div>
  32302.  </div>
  32303.  <input hidden name="id" required value="49490711019833" data-selected-variant="">
  32304. </div><script></script>
  32305. <style>
  32306.  .media_banner_collection {
  32307.    position: absolute;
  32308.    top:0;
  32309.    left:0;
  32310.    width: 20%;
  32311.    z-index:10;
  32312.  }
  32313.  .badges-wrapper {
  32314.    position: absolute;
  32315.    top:0;
  32316.    right:0;
  32317.    z-index:10;
  32318.  }
  32319.    /* .triangle_left{
  32320.      position: relative;
  32321.    }
  32322.    .triangle_left::after{
  32323.      content:'';
  32324.      width: 0;
  32325.      height: 0;
  32326.      position: absolute;
  32327.      border-top: 13px solid transparent;
  32328.      border-bottom: 13px solid transparent;
  32329.      border-right: 0px solid transparent;
  32330.      border-left: 13px solid #CD2215;
  32331.      left:100%;
  32332.    } */
  32333.  .m-product-card__wrapper{
  32334.    display:flex;
  32335.    flex-direction:column;
  32336.    height:100%;
  32337.  }
  32338.      .m-product-card__info{
  32339.      display: flex;
  32340.      flex-direction: column;
  32341.    }
  32342.      .m-product-card__price{
  32343.      order:1;
  32344.    }
  32345.    .m-product-card__title{
  32346.      order:2;
  32347.    }
  32348.    .m-product-card__reviews{
  32349.      order:3;
  32350.    }
  32351.    .m-product-shipping__content{
  32352.      order:4;
  32353.    }
  32354.    .m-product-shipping__text{
  32355.      font-size:11px !important;
  32356.    }
  32357.  .m-product-card--style-2 .m-product-card__name {
  32358.    font-size: 14px;
  32359.  }
  32360.    @media screen and (max-width: 768px) {
  32361.      /* .triangle_left::after{
  32362.      border-top: 11px solid transparent;
  32363.      border-bottom: 11px solid transparent;
  32364.      border-left: 11px solid #CD2215;
  32365.    } */
  32366.  
  32367.    .m-product-card--style-2 .m-product-card__name {
  32368.      line-height: 1.3;
  32369.      -webkit-line-clamp: 2;
  32370.      font-size: 12px;
  32371.    }
  32372.    .m-product-card--style-2 .m-price-item--last {
  32373.      font-size: 18px;
  32374.    }
  32375.    .m-product-shipping__content {
  32376.      display: none;
  32377.    }
  32378.  }
  32379. </style>
  32380.  
  32381.  
  32382.                        </div>
  32383.                      
  32384.                        <div class="m:column">
  32385.                          
  32386.  
  32387.  
  32388. <div
  32389.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  32390.  data-view="card"
  32391.  
  32392.  data-product-id="9491277381945"
  32393.  
  32394. >
  32395.  
  32396.  <div class="m-product-card__wrapper">
  32397.    <div class="m-product-card__media">
  32398.      <a
  32399.        class="m-product-card__link m:block m:w-full"
  32400.        href="/products/kids-electric-motorcycle-for-kids-red-pto-0ypcpqke"
  32401.        aria-label="GARVEE Kids Electric Motorcycle with Bubble Function, 3 Wheels Car for Kids - Red"
  32402.        style="position: relative;"
  32403.      >
  32404.          
  32405.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  32406.            <img src="//www.garvee.com/cdn/shop/files/712plCJQkAL.jpg?v=1719382928&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/712plCJQkAL.jpg?v=1719382928&amp;width=165 165w, //www.garvee.com/cdn/shop/files/712plCJQkAL.jpg?v=1719382928&amp;width=352 352w, //www.garvee.com/cdn/shop/files/712plCJQkAL.jpg?v=1719382928&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  32407.          </responsive-image>
  32408.  
  32409.        <div class="badges-wrapper">
  32410.          
  32411.            
  32412.              
  32413.            
  32414.              
  32415.            
  32416.              
  32417.            
  32418.              
  32419.            
  32420.              
  32421.            
  32422.              
  32423.            
  32424.              
  32425.            
  32426.              
  32427.            
  32428.              
  32429.            
  32430.              
  32431.            
  32432.              
  32433.            
  32434.              
  32435.            
  32436.              
  32437.            
  32438.              
  32439.            
  32440.              
  32441.            
  32442.              
  32443.            
  32444.              
  32445.            
  32446.              
  32447.            
  32448.              
  32449.            
  32450.              
  32451.            
  32452.              
  32453.            
  32454.              
  32455.            
  32456.              
  32457.            
  32458.              
  32459.            
  32460.              
  32461.            
  32462.              
  32463.            
  32464.              
  32465.            
  32466.              
  32467.            
  32468.              
  32469.            
  32470.              
  32471.            
  32472.              
  32473.            
  32474.              
  32475.            
  32476.              
  32477.            
  32478.              
  32479.            
  32480.              
  32481.            
  32482.          
  32483.        </div>
  32484.      </a></div>
  32485.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  32486.      <a class="m-product-card__hidden-link m:hidden" href="/products/kids-electric-motorcycle-for-kids-red-pto-0ypcpqke" aria-label="GARVEE Kids Electric Motorcycle with Bubble Function, 3 Wheels Car for Kids - Red"></a>
  32487.      <div class="m-product-card__info">
  32488.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  32489.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  32490.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  32491.                
  32492.                  style="display:none;"
  32493.                
  32494.              >Sold Out</span><span
  32495.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  32496.              data-foxkit-preorder-badge="9491277381945"
  32497.            ></span>
  32498.            
  32499. <div style="display:flex;">
  32500.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-39%
  32501. </span>
  32502.              </div>
  32503.            
  32504.          </div>
  32505.          
  32506.            <!-- <span style="font-size:12px;font-weight:bold;color:rgb(205,34,21,0.8);">Father's Day Deal</span> -->
  32507.          
  32508.        </div><h3 class="m-product-card__title h6">
  32509.          <a
  32510.            href="/products/kids-electric-motorcycle-for-kids-red-pto-0ypcpqke"
  32511.            class="m-product-card__name"
  32512.            style="font-weight:normal;"
  32513.          >
  32514.            GARVEE Kids Electric Motorcycle with Bubble Function, 3 Wheels Car for Kids - Red
  32515.          </a>
  32516.        </h3>
  32517.  
  32518.        
  32519.          <div class="m-product-card__reviews">
  32520.            
  32521.  
  32522.    
  32523.    
  32524.      
  32525.  
  32526.  
  32527.  <div
  32528.    style=""
  32529.    class="jdgm-widget jdgm-preview-badge"
  32530.    data-id="9491277381945"
  32531.    data-template="manual-installation"
  32532.    data-auto-install="false"
  32533.  >
  32534.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.82' data-number-of-reviews='67' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.82' tabindex='0' aria-label='4.82 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 67 reviews </span> </div>
  32535.  </div>
  32536.  
  32537.  
  32538. <style>
  32539.  @media screen and (max-width: 768px){
  32540.    .jdgm-qa-badge{
  32541.      display:none;
  32542.    }
  32543.    .jdgm-histogram{
  32544.    float:none;
  32545.  }
  32546.  }
  32547.  .jdgm-widget.jdgm-preview-badge{
  32548.    display:block !important;
  32549.  }
  32550.  .jdgm-sort-dropdown-arrow:before{
  32551.    position: relative;
  32552.    left: -8px;
  32553.  }
  32554. </style>
  32555.  
  32556.    
  32557.  
  32558.  
  32559.          </div>
  32560.        
  32561.  
  32562.        <div class="m-product-card__price">
  32563.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  32564. <div
  32565.  class="
  32566.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  32567.  data-sale-badge-type="percentage"
  32568. >
  32569.  <div class="m-price__regular">
  32570.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  32571.    <span class="m-price-item m-price-item--regular ">
  32572.      $85.99
  32573.    </span>
  32574.  </div>
  32575.  <div class="m-price__sale">
  32576.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  32577.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  32578.      $85.99
  32579.    </span>
  32580.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  32581.      <s class="m-price-item m-price-item--regular">
  32582.        
  32583.          $140.99
  32584.        
  32585.      </s></div>
  32586.  <div class="m-price__unit-wrapper m:hidden">
  32587.    <span class="m:visually-hidden">Unit price</span>
  32588.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  32589.  </div>
  32590.  
  32591.  
  32592. </div>
  32593.  
  32594. <style>
  32595.  .m-product-tag.m-product-tag--discounted.isSpring {
  32596.    background: #EC7521;
  32597.    color: #E6EBB3;
  32598.  }
  32599. </style>
  32600.  
  32601.        </div>
  32602.  
  32603.        
  32604.  
  32605.        
  32606.  
  32607.        <div class="m-product-card__description">
  32608.          GARVEE Kids Electric Motorcycle with Bubble Function Unleash Powerful Fun for Young Riders Key Features...
  32609.        </div></div>
  32610.      <div class="m-product-card__quick-add ">
  32611.    <product-form class="m-product-form m:w-full m:block" data-product-id="49490543771961"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49490543771961" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49490543771961" data-selected-variant=""><button
  32612.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  32613.          name="add"
  32614.          
  32615.          aria-label="Add to cart"
  32616.        >
  32617.          <span class="m-spinner-icon">
  32618.            <svg
  32619.              class="animate-spin m-svg-icon--medium"
  32620.              viewBox="0 0 24 24"
  32621.              fill="none"
  32622.            >
  32623.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  32624.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  32625.            </svg>
  32626.          </span>
  32627.          
  32628.          <span class="m-add-to-cart--text" data-atc-text>
  32629.            
  32630.              Add to cart
  32631.            
  32632.          </span>
  32633.        </button><input type="hidden" name="product-id" value="9491277381945" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  32634.  
  32635.    <!--
  32636.      
  32637.        <input hidden name="id" required value="49490543771961" data-selected-variant="">
  32638.        <button
  32639.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  32640.          data-product-url="/products/kids-electric-motorcycle-for-kids-red-pto-0ypcpqke"
  32641.          data-product-id="9491277381945"
  32642.          data-product-handle="kids-electric-motorcycle-for-kids-red-pto-0ypcpqke"
  32643.          aria-label="Add to cart"
  32644.        >
  32645.          <span class="m-spinner-icon">
  32646.            <svg
  32647.              class="animate-spin m-svg-icon--medium"
  32648.              xmlns="http://www.w3.org/2000/svg"
  32649.              viewBox="0 0 24 24"
  32650.              fill="none"
  32651.            >
  32652.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  32653.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  32654.            </svg>
  32655.          </span>
  32656.          
  32657.          <span class="m-add-to-cart--text">Add to cart</span>
  32658.        </button>
  32659.      
  32660.    -->
  32661.  
  32662. </div>
  32663. <style>
  32664.  @media screen and (max-width: 768px){
  32665.    .m-product-card__quick-add{
  32666.      /* display:none; */
  32667.      /* margin:5px auto 0 auto !important; */
  32668.      margin-top:5px !important;
  32669.    }
  32670.    .m-product-card__quick-add .m-add-to-cart{
  32671.      height:30px;
  32672.    }
  32673.    .m-product-card__quick-add .m-add-to-cart--text{
  32674.      font-size:14px !important;
  32675.    }
  32676.  }
  32677.  
  32678. </style>
  32679.  
  32680.    </div>
  32681.  </div>
  32682.  <input hidden name="id" required value="49490543771961" data-selected-variant="">
  32683. </div><script></script>
  32684. <style>
  32685.  .media_banner_collection {
  32686.    position: absolute;
  32687.    top:0;
  32688.    left:0;
  32689.    width: 20%;
  32690.    z-index:10;
  32691.  }
  32692.  .badges-wrapper {
  32693.    position: absolute;
  32694.    top:0;
  32695.    right:0;
  32696.    z-index:10;
  32697.  }
  32698.    /* .triangle_left{
  32699.      position: relative;
  32700.    }
  32701.    .triangle_left::after{
  32702.      content:'';
  32703.      width: 0;
  32704.      height: 0;
  32705.      position: absolute;
  32706.      border-top: 13px solid transparent;
  32707.      border-bottom: 13px solid transparent;
  32708.      border-right: 0px solid transparent;
  32709.      border-left: 13px solid #CD2215;
  32710.      left:100%;
  32711.    } */
  32712.  .m-product-card__wrapper{
  32713.    display:flex;
  32714.    flex-direction:column;
  32715.    height:100%;
  32716.  }
  32717.      .m-product-card__info{
  32718.      display: flex;
  32719.      flex-direction: column;
  32720.    }
  32721.      .m-product-card__price{
  32722.      order:1;
  32723.    }
  32724.    .m-product-card__title{
  32725.      order:2;
  32726.    }
  32727.    .m-product-card__reviews{
  32728.      order:3;
  32729.    }
  32730.    .m-product-shipping__content{
  32731.      order:4;
  32732.    }
  32733.    .m-product-shipping__text{
  32734.      font-size:11px !important;
  32735.    }
  32736.  .m-product-card--style-2 .m-product-card__name {
  32737.    font-size: 14px;
  32738.  }
  32739.    @media screen and (max-width: 768px) {
  32740.      /* .triangle_left::after{
  32741.      border-top: 11px solid transparent;
  32742.      border-bottom: 11px solid transparent;
  32743.      border-left: 11px solid #CD2215;
  32744.    } */
  32745.  
  32746.    .m-product-card--style-2 .m-product-card__name {
  32747.      line-height: 1.3;
  32748.      -webkit-line-clamp: 2;
  32749.      font-size: 12px;
  32750.    }
  32751.    .m-product-card--style-2 .m-price-item--last {
  32752.      font-size: 18px;
  32753.    }
  32754.    .m-product-shipping__content {
  32755.      display: none;
  32756.    }
  32757.  }
  32758. </style>
  32759.  
  32760.  
  32761.                        </div>
  32762.                      
  32763.                        <div class="m:column">
  32764.                          
  32765.  
  32766.  
  32767. <div
  32768.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  32769.  data-view="card"
  32770.  
  32771.  data-product-id="9482978361657"
  32772.  
  32773. >
  32774.  
  32775.  <div class="m-product-card__wrapper">
  32776.    <div class="m-product-card__media">
  32777.      <a
  32778.        class="m-product-card__link m:block m:w-full"
  32779.        href="/products/kids-electric-bike-pto-0ykg"
  32780.        aria-label="GARVEE 36V Kids Electric Dirt Bike, 350W, 15.5MPH, LED, 175lbs Max - Black"
  32781.        style="position: relative;"
  32782.      >
  32783.          
  32784.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  32785.            <img src="//www.garvee.com/cdn/shop/files/61lvHjz-T2L_648deb33-00d2-4a31-80b3-ebc42def08e3.jpg?v=1734494719&amp;width=1100" alt="GARVEE 36V Kids Electric Dirt Bike, 350W, 15.5MPH, LED, 175lbs Max - Black" srcset="//www.garvee.com/cdn/shop/files/61lvHjz-T2L_648deb33-00d2-4a31-80b3-ebc42def08e3.jpg?v=1734494719&amp;width=165 165w, //www.garvee.com/cdn/shop/files/61lvHjz-T2L_648deb33-00d2-4a31-80b3-ebc42def08e3.jpg?v=1734494719&amp;width=352 352w, //www.garvee.com/cdn/shop/files/61lvHjz-T2L_648deb33-00d2-4a31-80b3-ebc42def08e3.jpg?v=1734494719&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  32786.          </responsive-image>
  32787.  
  32788.        <div class="badges-wrapper">
  32789.          
  32790.            
  32791.              
  32792.            
  32793.              
  32794.            
  32795.              
  32796.            
  32797.              
  32798.            
  32799.              
  32800.            
  32801.              
  32802.            
  32803.              
  32804.            
  32805.              
  32806.            
  32807.              
  32808.            
  32809.              
  32810.            
  32811.              
  32812.            
  32813.              
  32814.            
  32815.              
  32816.            
  32817.              
  32818.            
  32819.              
  32820.            
  32821.              
  32822.            
  32823.              
  32824.            
  32825.              
  32826.            
  32827.              
  32828.            
  32829.              
  32830.            
  32831.              
  32832.            
  32833.              
  32834.            
  32835.              
  32836.            
  32837.              
  32838.            
  32839.              
  32840.            
  32841.              
  32842.            
  32843.              
  32844.            
  32845.              
  32846.            
  32847.              
  32848.            
  32849.              
  32850.            
  32851.              
  32852.            
  32853.              
  32854.            
  32855.          
  32856.        </div>
  32857.      </a></div>
  32858.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  32859.      <a class="m-product-card__hidden-link m:hidden" href="/products/kids-electric-bike-pto-0ykg" aria-label="GARVEE 36V Kids Electric Dirt Bike, 350W, 15.5MPH, LED, 175lbs Max - Black"></a>
  32860.      <div class="m-product-card__info">
  32861.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  32862.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  32863.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  32864.                
  32865.                  style="display:none;"
  32866.                
  32867.              >Sold Out</span><span
  32868.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  32869.              data-foxkit-preorder-badge="9482978361657"
  32870.            ></span>
  32871.            
  32872. <div style="display:flex;">
  32873.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-34%
  32874. </span>
  32875.              </div>
  32876.            
  32877.          </div>
  32878.          
  32879.        </div><h3 class="m-product-card__title h6">
  32880.          <a
  32881.            href="/products/kids-electric-bike-pto-0ykg"
  32882.            class="m-product-card__name"
  32883.            style="font-weight:normal;"
  32884.          >
  32885.            GARVEE 36V Kids Electric Dirt Bike, 350W, 15.5MPH, LED, 175lbs Max - Black
  32886.          </a>
  32887.        </h3>
  32888.  
  32889.        
  32890.          <div class="m-product-card__reviews">
  32891.            
  32892.  
  32893.    
  32894.    
  32895.      
  32896.  
  32897.  
  32898.  <div
  32899.    style=""
  32900.    class="jdgm-widget jdgm-preview-badge"
  32901.    data-id="9482978361657"
  32902.    data-template="manual-installation"
  32903.    data-auto-install="false"
  32904.  >
  32905.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.78' data-number-of-reviews='32' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.78' tabindex='0' aria-label='4.78 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 32 reviews </span> </div>
  32906.  </div>
  32907.  
  32908.  
  32909. <style>
  32910.  @media screen and (max-width: 768px){
  32911.    .jdgm-qa-badge{
  32912.      display:none;
  32913.    }
  32914.    .jdgm-histogram{
  32915.    float:none;
  32916.  }
  32917.  }
  32918.  .jdgm-widget.jdgm-preview-badge{
  32919.    display:block !important;
  32920.  }
  32921.  .jdgm-sort-dropdown-arrow:before{
  32922.    position: relative;
  32923.    left: -8px;
  32924.  }
  32925. </style>
  32926.  
  32927.    
  32928.  
  32929.  
  32930.          </div>
  32931.        
  32932.  
  32933.        <div class="m-product-card__price">
  32934.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  32935. <div
  32936.  class="
  32937.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  32938.  data-sale-badge-type="percentage"
  32939. >
  32940.  <div class="m-price__regular">
  32941.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  32942.    <span class="m-price-item m-price-item--regular ">
  32943.      $472.99
  32944.    </span>
  32945.  </div>
  32946.  <div class="m-price__sale">
  32947.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  32948.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  32949.      $472.99
  32950.    </span>
  32951.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  32952.      <s class="m-price-item m-price-item--regular">
  32953.        
  32954.          $722.99
  32955.        
  32956.      </s></div>
  32957.  <div class="m-price__unit-wrapper m:hidden">
  32958.    <span class="m:visually-hidden">Unit price</span>
  32959.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  32960.  </div>
  32961.  
  32962.  
  32963. </div>
  32964.  
  32965. <style>
  32966.  .m-product-tag.m-product-tag--discounted.isSpring {
  32967.    background: #EC7521;
  32968.    color: #E6EBB3;
  32969.  }
  32970. </style>
  32971.  
  32972.        </div>
  32973.  
  32974.        
  32975.  
  32976.        
  32977.  
  32978.        <div class="m-product-card__description">
  32979.          Features: A comfortable riding experience. The dirt bike is equipped with a great shock absorption...
  32980.        </div></div>
  32981.      <div class="m-product-card__quick-add ">
  32982.    <product-form class="m-product-form m:w-full m:block" data-product-id="49450954850617"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49450954850617" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49450954850617" data-selected-variant=""><button
  32983.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  32984.          name="add"
  32985.          
  32986.          aria-label="Add to cart"
  32987.        >
  32988.          <span class="m-spinner-icon">
  32989.            <svg
  32990.              class="animate-spin m-svg-icon--medium"
  32991.              viewBox="0 0 24 24"
  32992.              fill="none"
  32993.            >
  32994.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  32995.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  32996.            </svg>
  32997.          </span>
  32998.          
  32999.          <span class="m-add-to-cart--text" data-atc-text>
  33000.            
  33001.              Add to cart
  33002.            
  33003.          </span>
  33004.        </button><input type="hidden" name="product-id" value="9482978361657" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  33005.  
  33006.    <!--
  33007.      
  33008.        <input hidden name="id" required value="49450954850617" data-selected-variant="">
  33009.        <button
  33010.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  33011.          data-product-url="/products/kids-electric-bike-pto-0ykg"
  33012.          data-product-id="9482978361657"
  33013.          data-product-handle="kids-electric-bike-pto-0ykg"
  33014.          aria-label="Add to cart"
  33015.        >
  33016.          <span class="m-spinner-icon">
  33017.            <svg
  33018.              class="animate-spin m-svg-icon--medium"
  33019.              xmlns="http://www.w3.org/2000/svg"
  33020.              viewBox="0 0 24 24"
  33021.              fill="none"
  33022.            >
  33023.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  33024.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  33025.            </svg>
  33026.          </span>
  33027.          
  33028.          <span class="m-add-to-cart--text">Add to cart</span>
  33029.        </button>
  33030.      
  33031.    -->
  33032.  
  33033. </div>
  33034. <style>
  33035.  @media screen and (max-width: 768px){
  33036.    .m-product-card__quick-add{
  33037.      /* display:none; */
  33038.      /* margin:5px auto 0 auto !important; */
  33039.      margin-top:5px !important;
  33040.    }
  33041.    .m-product-card__quick-add .m-add-to-cart{
  33042.      height:30px;
  33043.    }
  33044.    .m-product-card__quick-add .m-add-to-cart--text{
  33045.      font-size:14px !important;
  33046.    }
  33047.  }
  33048.  
  33049. </style>
  33050.  
  33051.    </div>
  33052.  </div>
  33053.  <input hidden name="id" required value="49450954850617" data-selected-variant="">
  33054. </div><script></script>
  33055. <style>
  33056.  .media_banner_collection {
  33057.    position: absolute;
  33058.    top:0;
  33059.    left:0;
  33060.    width: 20%;
  33061.    z-index:10;
  33062.  }
  33063.  .badges-wrapper {
  33064.    position: absolute;
  33065.    top:0;
  33066.    right:0;
  33067.    z-index:10;
  33068.  }
  33069.    /* .triangle_left{
  33070.      position: relative;
  33071.    }
  33072.    .triangle_left::after{
  33073.      content:'';
  33074.      width: 0;
  33075.      height: 0;
  33076.      position: absolute;
  33077.      border-top: 13px solid transparent;
  33078.      border-bottom: 13px solid transparent;
  33079.      border-right: 0px solid transparent;
  33080.      border-left: 13px solid #CD2215;
  33081.      left:100%;
  33082.    } */
  33083.  .m-product-card__wrapper{
  33084.    display:flex;
  33085.    flex-direction:column;
  33086.    height:100%;
  33087.  }
  33088.      .m-product-card__info{
  33089.      display: flex;
  33090.      flex-direction: column;
  33091.    }
  33092.      .m-product-card__price{
  33093.      order:1;
  33094.    }
  33095.    .m-product-card__title{
  33096.      order:2;
  33097.    }
  33098.    .m-product-card__reviews{
  33099.      order:3;
  33100.    }
  33101.    .m-product-shipping__content{
  33102.      order:4;
  33103.    }
  33104.    .m-product-shipping__text{
  33105.      font-size:11px !important;
  33106.    }
  33107.  .m-product-card--style-2 .m-product-card__name {
  33108.    font-size: 14px;
  33109.  }
  33110.    @media screen and (max-width: 768px) {
  33111.      /* .triangle_left::after{
  33112.      border-top: 11px solid transparent;
  33113.      border-bottom: 11px solid transparent;
  33114.      border-left: 11px solid #CD2215;
  33115.    } */
  33116.  
  33117.    .m-product-card--style-2 .m-product-card__name {
  33118.      line-height: 1.3;
  33119.      -webkit-line-clamp: 2;
  33120.      font-size: 12px;
  33121.    }
  33122.    .m-product-card--style-2 .m-price-item--last {
  33123.      font-size: 18px;
  33124.    }
  33125.    .m-product-shipping__content {
  33126.      display: none;
  33127.    }
  33128.  }
  33129. </style>
  33130.  
  33131.  
  33132.                        </div>
  33133.                      
  33134.                    
  33135. </div>
  33136.              </div>
  33137.              
  33138.            </div><div
  33139.              class="m-product-tabs__content m-product-tabs__inner m-mixed-layout m-mixed-layout--mobile-grid"
  33140.              data-tab-index="4"
  33141.              data-enable-slider="false"
  33142.              
  33143.            >
  33144.              <div class="m-mixed-layout__wrapper">
  33145.                <div
  33146.                  class="m-mixed-layout__inner m:grid md:m:grid-3-cols lg:m:grid-4-cols xl:m:grid-4-cols"
  33147.                  
  33148.                    style="
  33149.                      --grid-columns-mobile: 2;
  33150.                      --mobile-column-width: 40vw;
  33151.                    "
  33152.                  
  33153.                >
  33154.                    
  33155.                    
  33156.                    
  33157.                      
  33158.                        <div class="m:column">
  33159.                          
  33160.  
  33161.  
  33162. <div
  33163.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  33164.  data-view="card"
  33165.  
  33166.  data-product-id="9482808164665"
  33167.  
  33168. >
  33169.  
  33170.  <div class="m-product-card__wrapper">
  33171.    <div class="m-product-card__media">
  33172.      <a
  33173.        class="m-product-card__link m:block m:w-full"
  33174.        href="/products/5-in-1-pet-grooming-kit-pho-0y50"
  33175.        aria-label="GARVEE Pet Grooming Vacuum Suction Dog Grooming kit with 2 L Large Dust Cup Low Noise Dog Hair Remover - White+Blue"
  33176.        style="position: relative;"
  33177.      >
  33178.          
  33179.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  33180.            <img src="//www.garvee.com/cdn/shop/files/71XmXqJVNXL.jpg?v=1720165511&amp;width=1100" alt="GARVEE Pet Grooming Vacuum Suction Dog Grooming kit with 2 L Large Dust Cup Low Noise Dog Hair Remover - White+Blue" srcset="//www.garvee.com/cdn/shop/files/71XmXqJVNXL.jpg?v=1720165511&amp;width=165 165w, //www.garvee.com/cdn/shop/files/71XmXqJVNXL.jpg?v=1720165511&amp;width=352 352w, //www.garvee.com/cdn/shop/files/71XmXqJVNXL.jpg?v=1720165511&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  33181.          </responsive-image>
  33182.  
  33183.        <div class="badges-wrapper">
  33184.          
  33185.            
  33186.              
  33187.            
  33188.              
  33189.            
  33190.              
  33191.            
  33192.              
  33193.            
  33194.              
  33195.            
  33196.              
  33197.            
  33198.              
  33199.            
  33200.              
  33201.            
  33202.              
  33203.            
  33204.              
  33205.            
  33206.              
  33207.            
  33208.              
  33209.            
  33210.              
  33211.            
  33212.              
  33213.            
  33214.              
  33215.            
  33216.              
  33217.            
  33218.              
  33219.            
  33220.              
  33221.            
  33222.              
  33223.            
  33224.              
  33225.            
  33226.              
  33227.            
  33228.              
  33229.            
  33230.              
  33231.            
  33232.              
  33233.            
  33234.              
  33235.            
  33236.              
  33237.            
  33238.              
  33239.            
  33240.          
  33241.        </div>
  33242.      </a></div>
  33243.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  33244.      <a class="m-product-card__hidden-link m:hidden" href="/products/5-in-1-pet-grooming-kit-pho-0y50" aria-label="GARVEE Pet Grooming Vacuum Suction Dog Grooming kit with 2 L Large Dust Cup Low Noise Dog Hair Remover - White+Blue"></a>
  33245.      <div class="m-product-card__info">
  33246.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  33247.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  33248.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  33249.                
  33250.                  style="display:none;"
  33251.                
  33252.              >Sold Out</span><span
  33253.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  33254.              data-foxkit-preorder-badge="9482808164665"
  33255.            ></span>
  33256.            
  33257. <div style="display:flex;">
  33258.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-44%
  33259. </span>
  33260.              </div>
  33261.            
  33262.          </div>
  33263.          
  33264.        </div><h3 class="m-product-card__title h6">
  33265.          <a
  33266.            href="/products/5-in-1-pet-grooming-kit-pho-0y50"
  33267.            class="m-product-card__name"
  33268.            style="font-weight:normal;"
  33269.          >
  33270.            GARVEE Pet Grooming Vacuum Suction Dog Grooming kit with 2 L Large Dust Cup Low Noise Dog Hair Remover - White+Blue
  33271.          </a>
  33272.        </h3>
  33273.  
  33274.        
  33275.          <div class="m-product-card__reviews">
  33276.            
  33277.  
  33278.    
  33279.    
  33280.      
  33281.  
  33282.  
  33283.  <div
  33284.    style=""
  33285.    class="jdgm-widget jdgm-preview-badge"
  33286.    data-id="9482808164665"
  33287.    data-template="manual-installation"
  33288.    data-auto-install="false"
  33289.  >
  33290.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.93' data-number-of-reviews='150' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.93' tabindex='0' aria-label='4.93 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 150 reviews </span> </div>
  33291.  </div>
  33292.  
  33293.  
  33294. <style>
  33295.  @media screen and (max-width: 768px){
  33296.    .jdgm-qa-badge{
  33297.      display:none;
  33298.    }
  33299.    .jdgm-histogram{
  33300.    float:none;
  33301.  }
  33302.  }
  33303.  .jdgm-widget.jdgm-preview-badge{
  33304.    display:block !important;
  33305.  }
  33306.  .jdgm-sort-dropdown-arrow:before{
  33307.    position: relative;
  33308.    left: -8px;
  33309.  }
  33310. </style>
  33311.  
  33312.    
  33313.  
  33314.  
  33315.          </div>
  33316.        
  33317.  
  33318.        <div class="m-product-card__price">
  33319.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  33320. <div
  33321.  class="
  33322.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  33323.  data-sale-badge-type="percentage"
  33324. >
  33325.  <div class="m-price__regular">
  33326.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  33327.    <span class="m-price-item m-price-item--regular ">
  33328.      $85.99
  33329.    </span>
  33330.  </div>
  33331.  <div class="m-price__sale">
  33332.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  33333.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  33334.      $85.99
  33335.    </span>
  33336.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  33337.      <s class="m-price-item m-price-item--regular">
  33338.        
  33339.          $153.99
  33340.        
  33341.      </s></div>
  33342.  <div class="m-price__unit-wrapper m:hidden">
  33343.    <span class="m:visually-hidden">Unit price</span>
  33344.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  33345.  </div>
  33346.  
  33347.  
  33348. </div>
  33349.  
  33350. <style>
  33351.  .m-product-tag.m-product-tag--discounted.isSpring {
  33352.    background: #EC7521;
  33353.    color: #E6EBB3;
  33354.  }
  33355. </style>
  33356.  
  33357.        </div>
  33358.  
  33359.        
  33360.  
  33361.        
  33362.  
  33363.        <div class="m-product-card__description">
  33364.          Experience effortless pet grooming with the GARVEE Pet Grooming Vacuum Suction Dog Grooming kit GARVEE...
  33365.        </div></div>
  33366.      <div class="m-product-card__quick-add ">
  33367.    <product-form class="m-product-form m:w-full m:block" data-product-id="49450137944377"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49450137944377" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49450137944377" data-selected-variant=""><button
  33368.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  33369.          name="add"
  33370.          
  33371.          aria-label="Add to cart"
  33372.        >
  33373.          <span class="m-spinner-icon">
  33374.            <svg
  33375.              class="animate-spin m-svg-icon--medium"
  33376.              viewBox="0 0 24 24"
  33377.              fill="none"
  33378.            >
  33379.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  33380.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  33381.            </svg>
  33382.          </span>
  33383.          
  33384.          <span class="m-add-to-cart--text" data-atc-text>
  33385.            
  33386.              Add to cart
  33387.            
  33388.          </span>
  33389.        </button><input type="hidden" name="product-id" value="9482808164665" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  33390.  
  33391.    <!--
  33392.      
  33393.        <input hidden name="id" required value="49450137944377" data-selected-variant="">
  33394.        <button
  33395.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  33396.          data-product-url="/products/5-in-1-pet-grooming-kit-pho-0y50"
  33397.          data-product-id="9482808164665"
  33398.          data-product-handle="5-in-1-pet-grooming-kit-pho-0y50"
  33399.          aria-label="Add to cart"
  33400.        >
  33401.          <span class="m-spinner-icon">
  33402.            <svg
  33403.              class="animate-spin m-svg-icon--medium"
  33404.              xmlns="http://www.w3.org/2000/svg"
  33405.              viewBox="0 0 24 24"
  33406.              fill="none"
  33407.            >
  33408.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  33409.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  33410.            </svg>
  33411.          </span>
  33412.          
  33413.          <span class="m-add-to-cart--text">Add to cart</span>
  33414.        </button>
  33415.      
  33416.    -->
  33417.  
  33418. </div>
  33419. <style>
  33420.  @media screen and (max-width: 768px){
  33421.    .m-product-card__quick-add{
  33422.      /* display:none; */
  33423.      /* margin:5px auto 0 auto !important; */
  33424.      margin-top:5px !important;
  33425.    }
  33426.    .m-product-card__quick-add .m-add-to-cart{
  33427.      height:30px;
  33428.    }
  33429.    .m-product-card__quick-add .m-add-to-cart--text{
  33430.      font-size:14px !important;
  33431.    }
  33432.  }
  33433.  
  33434. </style>
  33435.  
  33436.    </div>
  33437.  </div>
  33438.  <input hidden name="id" required value="49450137944377" data-selected-variant="">
  33439. </div><script></script>
  33440. <style>
  33441.  .media_banner_collection {
  33442.    position: absolute;
  33443.    top:0;
  33444.    left:0;
  33445.    width: 20%;
  33446.    z-index:10;
  33447.  }
  33448.  .badges-wrapper {
  33449.    position: absolute;
  33450.    top:0;
  33451.    right:0;
  33452.    z-index:10;
  33453.  }
  33454.    /* .triangle_left{
  33455.      position: relative;
  33456.    }
  33457.    .triangle_left::after{
  33458.      content:'';
  33459.      width: 0;
  33460.      height: 0;
  33461.      position: absolute;
  33462.      border-top: 13px solid transparent;
  33463.      border-bottom: 13px solid transparent;
  33464.      border-right: 0px solid transparent;
  33465.      border-left: 13px solid #CD2215;
  33466.      left:100%;
  33467.    } */
  33468.  .m-product-card__wrapper{
  33469.    display:flex;
  33470.    flex-direction:column;
  33471.    height:100%;
  33472.  }
  33473.      .m-product-card__info{
  33474.      display: flex;
  33475.      flex-direction: column;
  33476.    }
  33477.      .m-product-card__price{
  33478.      order:1;
  33479.    }
  33480.    .m-product-card__title{
  33481.      order:2;
  33482.    }
  33483.    .m-product-card__reviews{
  33484.      order:3;
  33485.    }
  33486.    .m-product-shipping__content{
  33487.      order:4;
  33488.    }
  33489.    .m-product-shipping__text{
  33490.      font-size:11px !important;
  33491.    }
  33492.  .m-product-card--style-2 .m-product-card__name {
  33493.    font-size: 14px;
  33494.  }
  33495.    @media screen and (max-width: 768px) {
  33496.      /* .triangle_left::after{
  33497.      border-top: 11px solid transparent;
  33498.      border-bottom: 11px solid transparent;
  33499.      border-left: 11px solid #CD2215;
  33500.    } */
  33501.  
  33502.    .m-product-card--style-2 .m-product-card__name {
  33503.      line-height: 1.3;
  33504.      -webkit-line-clamp: 2;
  33505.      font-size: 12px;
  33506.    }
  33507.    .m-product-card--style-2 .m-price-item--last {
  33508.      font-size: 18px;
  33509.    }
  33510.    .m-product-shipping__content {
  33511.      display: none;
  33512.    }
  33513.  }
  33514. </style>
  33515.  
  33516.  
  33517.                        </div>
  33518.                      
  33519.                        <div class="m:column">
  33520.                          
  33521.  
  33522.  
  33523. <div
  33524.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  33525.  data-view="card"
  33526.  
  33527.  data-product-id="9482991567161"
  33528.  
  33529. >
  33530.  
  33531.  <div class="m-product-card__wrapper">
  33532.    <div class="m-product-card__media">
  33533.      <a
  33534.        class="m-product-card__link m:block m:w-full"
  33535.        href="/products/electric-dog-grooming-table-pho-130o"
  33536.        aria-label="GARVEE 50 Inch Electric Dog Grooming Table, Heavy Duty, Height Adjustable Pet Grooming Table with Socket w/Leveling Wheels, Grooming Arm, Anti Slip Tabletop & Tool Organizer, for All Pets"
  33537.        style="position: relative;"
  33538.      >
  33539.          
  33540.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  33541.            <img src="//www.garvee.com/cdn/shop/files/1718955634654.jpg?v=1747880940&amp;width=1100" alt="GARVEE 50 Inch Electric Dog Grooming Table, Heavy Duty, Height Adjustable Pet Grooming Table with Socket w/Leveling Wheels, Grooming Arm, Anti Slip Tabletop &amp; Tool Organizer, for All Pets" srcset="//www.garvee.com/cdn/shop/files/1718955634654.jpg?v=1747880940&amp;width=165 165w, //www.garvee.com/cdn/shop/files/1718955634654.jpg?v=1747880940&amp;width=352 352w, //www.garvee.com/cdn/shop/files/1718955634654.jpg?v=1747880940&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  33542.          </responsive-image>
  33543.  
  33544.        <div class="badges-wrapper">
  33545.          
  33546.            
  33547.              
  33548.            
  33549.              
  33550.            
  33551.              
  33552.            
  33553.              
  33554.            
  33555.              
  33556.            
  33557.              
  33558.            
  33559.              
  33560.            
  33561.              
  33562.            
  33563.              
  33564.            
  33565.              
  33566.            
  33567.              
  33568.            
  33569.              
  33570.            
  33571.              
  33572.            
  33573.              
  33574.            
  33575.              
  33576.            
  33577.              
  33578.            
  33579.              
  33580.            
  33581.              
  33582.            
  33583.              
  33584.            
  33585.              
  33586.            
  33587.              
  33588.            
  33589.              
  33590.            
  33591.              
  33592.            
  33593.              
  33594.            
  33595.          
  33596.        </div>
  33597.      </a></div>
  33598.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  33599.      <a class="m-product-card__hidden-link m:hidden" href="/products/electric-dog-grooming-table-pho-130o" aria-label="GARVEE 50 Inch Electric Dog Grooming Table, Heavy Duty, Height Adjustable Pet Grooming Table with Socket w/Leveling Wheels, Grooming Arm, Anti Slip Tabletop & Tool Organizer, for All Pets"></a>
  33600.      <div class="m-product-card__info">
  33601.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  33602.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  33603.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  33604.                
  33605.                  style="display:none;"
  33606.                
  33607.              >Sold Out</span><span
  33608.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  33609.              data-foxkit-preorder-badge="9482991567161"
  33610.            ></span>
  33611.            
  33612. <div style="display:flex;">
  33613.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-39%
  33614. </span>
  33615.              </div>
  33616.            
  33617.          </div>
  33618.          
  33619.        </div><h3 class="m-product-card__title h6">
  33620.          <a
  33621.            href="/products/electric-dog-grooming-table-pho-130o"
  33622.            class="m-product-card__name"
  33623.            style="font-weight:normal;"
  33624.          >
  33625.            GARVEE 50 Inch Electric Dog Grooming Table, Heavy Duty, Height Adjustable Pet Grooming Table with Socket w/Leveling Wheels, Grooming Arm, Anti Slip Tabletop & Tool Organizer, for All Pets
  33626.          </a>
  33627.        </h3>
  33628.  
  33629.        
  33630.          <div class="m-product-card__reviews">
  33631.            
  33632.  
  33633.    
  33634.    
  33635.      
  33636.  
  33637.  
  33638.  <div
  33639.    style=""
  33640.    class="jdgm-widget jdgm-preview-badge"
  33641.    data-id="9482991567161"
  33642.    data-template="manual-installation"
  33643.    data-auto-install="false"
  33644.  >
  33645.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.92' data-number-of-reviews='39' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.92' tabindex='0' aria-label='4.92 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 39 reviews </span> </div>
  33646.  </div>
  33647.  
  33648.  
  33649. <style>
  33650.  @media screen and (max-width: 768px){
  33651.    .jdgm-qa-badge{
  33652.      display:none;
  33653.    }
  33654.    .jdgm-histogram{
  33655.    float:none;
  33656.  }
  33657.  }
  33658.  .jdgm-widget.jdgm-preview-badge{
  33659.    display:block !important;
  33660.  }
  33661.  .jdgm-sort-dropdown-arrow:before{
  33662.    position: relative;
  33663.    left: -8px;
  33664.  }
  33665. </style>
  33666.  
  33667.    
  33668.  
  33669.  
  33670.          </div>
  33671.        
  33672.  
  33673.        <div class="m-product-card__price">
  33674.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  33675. <div
  33676.  class="
  33677.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  33678.  data-sale-badge-type="percentage"
  33679. >
  33680.  <div class="m-price__regular">
  33681.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  33682.    <span class="m-price-item m-price-item--regular ">
  33683.      $453.99
  33684.    </span>
  33685.  </div>
  33686.  <div class="m-price__sale">
  33687.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  33688.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  33689.      $453.99
  33690.    </span>
  33691.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  33692.      <s class="m-price-item m-price-item--regular">
  33693.        
  33694.          $749.99
  33695.        
  33696.      </s></div>
  33697.  <div class="m-price__unit-wrapper m:hidden">
  33698.    <span class="m:visually-hidden">Unit price</span>
  33699.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  33700.  </div>
  33701.  
  33702.  
  33703. </div>
  33704.  
  33705. <style>
  33706.  .m-product-tag.m-product-tag--discounted.isSpring {
  33707.    background: #EC7521;
  33708.    color: #E6EBB3;
  33709.  }
  33710. </style>
  33711.  
  33712.        </div>
  33713.  
  33714.        
  33715.  
  33716.        
  33717.  
  33718.        <div class="m-product-card__description">
  33719.          Elevate your pet grooming experience with the GARVEE 50 Inch Electric Dog Grooming Table GARVEE...
  33720.        </div></div>
  33721.      <div class="m-product-card__quick-add ">
  33722.    <product-form class="m-product-form m:w-full m:block" data-product-id="49451015078201"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49451015078201" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49451015078201" data-selected-variant=""><button
  33723.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  33724.          name="add"
  33725.          
  33726.          aria-label="Add to cart"
  33727.        >
  33728.          <span class="m-spinner-icon">
  33729.            <svg
  33730.              class="animate-spin m-svg-icon--medium"
  33731.              viewBox="0 0 24 24"
  33732.              fill="none"
  33733.            >
  33734.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  33735.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  33736.            </svg>
  33737.          </span>
  33738.          
  33739.          <span class="m-add-to-cart--text" data-atc-text>
  33740.            
  33741.              Add to cart
  33742.            
  33743.          </span>
  33744.        </button><input type="hidden" name="product-id" value="9482991567161" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  33745.  
  33746.    <!--
  33747.      
  33748.        <input hidden name="id" required value="49451015078201" data-selected-variant="">
  33749.        <button
  33750.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  33751.          data-product-url="/products/electric-dog-grooming-table-pho-130o"
  33752.          data-product-id="9482991567161"
  33753.          data-product-handle="electric-dog-grooming-table-pho-130o"
  33754.          aria-label="Add to cart"
  33755.        >
  33756.          <span class="m-spinner-icon">
  33757.            <svg
  33758.              class="animate-spin m-svg-icon--medium"
  33759.              xmlns="http://www.w3.org/2000/svg"
  33760.              viewBox="0 0 24 24"
  33761.              fill="none"
  33762.            >
  33763.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  33764.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  33765.            </svg>
  33766.          </span>
  33767.          
  33768.          <span class="m-add-to-cart--text">Add to cart</span>
  33769.        </button>
  33770.      
  33771.    -->
  33772.  
  33773. </div>
  33774. <style>
  33775.  @media screen and (max-width: 768px){
  33776.    .m-product-card__quick-add{
  33777.      /* display:none; */
  33778.      /* margin:5px auto 0 auto !important; */
  33779.      margin-top:5px !important;
  33780.    }
  33781.    .m-product-card__quick-add .m-add-to-cart{
  33782.      height:30px;
  33783.    }
  33784.    .m-product-card__quick-add .m-add-to-cart--text{
  33785.      font-size:14px !important;
  33786.    }
  33787.  }
  33788.  
  33789. </style>
  33790.  
  33791.    </div>
  33792.  </div>
  33793.  <input hidden name="id" required value="49451015078201" data-selected-variant="">
  33794. </div><script></script>
  33795. <style>
  33796.  .media_banner_collection {
  33797.    position: absolute;
  33798.    top:0;
  33799.    left:0;
  33800.    width: 20%;
  33801.    z-index:10;
  33802.  }
  33803.  .badges-wrapper {
  33804.    position: absolute;
  33805.    top:0;
  33806.    right:0;
  33807.    z-index:10;
  33808.  }
  33809.    /* .triangle_left{
  33810.      position: relative;
  33811.    }
  33812.    .triangle_left::after{
  33813.      content:'';
  33814.      width: 0;
  33815.      height: 0;
  33816.      position: absolute;
  33817.      border-top: 13px solid transparent;
  33818.      border-bottom: 13px solid transparent;
  33819.      border-right: 0px solid transparent;
  33820.      border-left: 13px solid #CD2215;
  33821.      left:100%;
  33822.    } */
  33823.  .m-product-card__wrapper{
  33824.    display:flex;
  33825.    flex-direction:column;
  33826.    height:100%;
  33827.  }
  33828.      .m-product-card__info{
  33829.      display: flex;
  33830.      flex-direction: column;
  33831.    }
  33832.      .m-product-card__price{
  33833.      order:1;
  33834.    }
  33835.    .m-product-card__title{
  33836.      order:2;
  33837.    }
  33838.    .m-product-card__reviews{
  33839.      order:3;
  33840.    }
  33841.    .m-product-shipping__content{
  33842.      order:4;
  33843.    }
  33844.    .m-product-shipping__text{
  33845.      font-size:11px !important;
  33846.    }
  33847.  .m-product-card--style-2 .m-product-card__name {
  33848.    font-size: 14px;
  33849.  }
  33850.    @media screen and (max-width: 768px) {
  33851.      /* .triangle_left::after{
  33852.      border-top: 11px solid transparent;
  33853.      border-bottom: 11px solid transparent;
  33854.      border-left: 11px solid #CD2215;
  33855.    } */
  33856.  
  33857.    .m-product-card--style-2 .m-product-card__name {
  33858.      line-height: 1.3;
  33859.      -webkit-line-clamp: 2;
  33860.      font-size: 12px;
  33861.    }
  33862.    .m-product-card--style-2 .m-price-item--last {
  33863.      font-size: 18px;
  33864.    }
  33865.    .m-product-shipping__content {
  33866.      display: none;
  33867.    }
  33868.  }
  33869. </style>
  33870.  
  33871.  
  33872.                        </div>
  33873.                      
  33874.                        <div class="m:column">
  33875.                          
  33876.  
  33877.  
  33878. <div
  33879.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  33880.  data-view="card"
  33881.  
  33882.  data-product-id="9482988421433"
  33883.  
  33884. >
  33885.  
  33886.  <div class="m-product-card__wrapper">
  33887.    <div class="m-product-card__media">
  33888.      <a
  33889.        class="m-product-card__link m:block m:w-full"
  33890.        href="/products/hydraulic-dog-grooming-table-pho_11x5pvxs"
  33891.        aria-label="GARVEE 43.3" Hydraulic Dog Grooming Table for Pet, Heavy Duty Structural Hydraulic Max Load 350Lbs Professional Pet Grooming Table with Adjustable Overhead Arm & Noose Height Range 22''-39'' (BLACK)"
  33892.        style="position: relative;"
  33893.      >
  33894.          
  33895.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  33896.            <img src="//www.garvee.com/cdn/shop/files/31j19jaNz7L.jpg?v=1718889246&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/31j19jaNz7L.jpg?v=1718889246&amp;width=165 165w, //www.garvee.com/cdn/shop/files/31j19jaNz7L.jpg?v=1718889246&amp;width=352 352w, //www.garvee.com/cdn/shop/files/31j19jaNz7L.jpg?v=1718889246&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  33897.          </responsive-image>
  33898.  
  33899.        <div class="badges-wrapper">
  33900.          
  33901.            
  33902.              
  33903.            
  33904.              
  33905.            
  33906.              
  33907.            
  33908.              
  33909.            
  33910.              
  33911.            
  33912.              
  33913.            
  33914.              
  33915.            
  33916.              
  33917.            
  33918.              
  33919.            
  33920.              
  33921.            
  33922.              
  33923.            
  33924.              
  33925.            
  33926.              
  33927.            
  33928.              
  33929.            
  33930.              
  33931.            
  33932.              
  33933.            
  33934.              
  33935.            
  33936.              
  33937.            
  33938.              
  33939.            
  33940.              
  33941.            
  33942.              
  33943.            
  33944.              
  33945.            
  33946.              
  33947.            
  33948.              
  33949.            
  33950.              
  33951.            
  33952.              
  33953.            
  33954.              
  33955.            
  33956.              
  33957.            
  33958.          
  33959.        </div>
  33960.      </a></div>
  33961.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  33962.      <a class="m-product-card__hidden-link m:hidden" href="/products/hydraulic-dog-grooming-table-pho_11x5pvxs" aria-label="GARVEE 43.3" Hydraulic Dog Grooming Table for Pet, Heavy Duty Structural Hydraulic Max Load 350Lbs Professional Pet Grooming Table with Adjustable Overhead Arm & Noose Height Range 22''-39'' (BLACK)"></a>
  33963.      <div class="m-product-card__info">
  33964.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  33965.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  33966.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  33967.                
  33968.                  style="display:none;"
  33969.                
  33970.              >Sold Out</span><span
  33971.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  33972.              data-foxkit-preorder-badge="9482988421433"
  33973.            ></span>
  33974.            
  33975. <div style="display:flex;">
  33976.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-48%
  33977. </span>
  33978.              </div>
  33979.            
  33980.          </div>
  33981.          
  33982.        </div><h3 class="m-product-card__title h6">
  33983.          <a
  33984.            href="/products/hydraulic-dog-grooming-table-pho_11x5pvxs"
  33985.            class="m-product-card__name"
  33986.            style="font-weight:normal;"
  33987.          >
  33988.            GARVEE 43.3" Hydraulic Dog Grooming Table for Pet, Heavy Duty Structural Hydraulic Max Load 350Lbs Professional Pet Grooming Table with Adjustable Overhead Arm & Noose Height Range 22''-39'' (BLACK)
  33989.          </a>
  33990.        </h3>
  33991.  
  33992.        
  33993.          <div class="m-product-card__reviews">
  33994.            
  33995.  
  33996.    
  33997.    
  33998.      
  33999.  
  34000.  
  34001.  <div
  34002.    style=""
  34003.    class="jdgm-widget jdgm-preview-badge"
  34004.    data-id="9482988421433"
  34005.    data-template="manual-installation"
  34006.    data-auto-install="false"
  34007.  >
  34008.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.75' data-number-of-reviews='12' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.75' tabindex='0' aria-label='4.75 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 12 reviews </span> </div>
  34009.  </div>
  34010.  
  34011.  
  34012. <style>
  34013.  @media screen and (max-width: 768px){
  34014.    .jdgm-qa-badge{
  34015.      display:none;
  34016.    }
  34017.    .jdgm-histogram{
  34018.    float:none;
  34019.  }
  34020.  }
  34021.  .jdgm-widget.jdgm-preview-badge{
  34022.    display:block !important;
  34023.  }
  34024.  .jdgm-sort-dropdown-arrow:before{
  34025.    position: relative;
  34026.    left: -8px;
  34027.  }
  34028. </style>
  34029.  
  34030.    
  34031.  
  34032.  
  34033.          </div>
  34034.        
  34035.  
  34036.        <div class="m-product-card__price">
  34037.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  34038. <div
  34039.  class="
  34040.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  34041.  data-sale-badge-type="percentage"
  34042. >
  34043.  <div class="m-price__regular">
  34044.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  34045.    <span class="m-price-item m-price-item--regular ">
  34046.      $286.99
  34047.    </span>
  34048.  </div>
  34049.  <div class="m-price__sale">
  34050.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  34051.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  34052.      $286.99
  34053.    </span>
  34054.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  34055.      <s class="m-price-item m-price-item--regular">
  34056.        
  34057.          $559.99
  34058.        
  34059.      </s></div>
  34060.  <div class="m-price__unit-wrapper m:hidden">
  34061.    <span class="m:visually-hidden">Unit price</span>
  34062.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  34063.  </div>
  34064.  
  34065.  
  34066. </div>
  34067.  
  34068. <style>
  34069.  .m-product-tag.m-product-tag--discounted.isSpring {
  34070.    background: #EC7521;
  34071.    color: #E6EBB3;
  34072.  }
  34073. </style>
  34074.  
  34075.        </div>
  34076.  
  34077.        
  34078.  
  34079.        
  34080.  
  34081.        <div class="m-product-card__description">
  34082.          Elevate your pet grooming experience with the GARVEE Professional Hydraulic Dog Grooming Table GARVEE Professional...
  34083.        </div></div>
  34084.      <div class="m-product-card__quick-add ">
  34085.    <product-form class="m-product-form m:w-full m:block" data-product-id="49451003969849"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49451003969849" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49451003969849" data-selected-variant=""><button
  34086.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  34087.          name="add"
  34088.          
  34089.          aria-label="Add to cart"
  34090.        >
  34091.          <span class="m-spinner-icon">
  34092.            <svg
  34093.              class="animate-spin m-svg-icon--medium"
  34094.              viewBox="0 0 24 24"
  34095.              fill="none"
  34096.            >
  34097.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  34098.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  34099.            </svg>
  34100.          </span>
  34101.          
  34102.          <span class="m-add-to-cart--text" data-atc-text>
  34103.            
  34104.              Add to cart
  34105.            
  34106.          </span>
  34107.        </button><input type="hidden" name="product-id" value="9482988421433" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  34108.  
  34109.    <!--
  34110.      
  34111.        <input hidden name="id" required value="49451003969849" data-selected-variant="">
  34112.        <button
  34113.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  34114.          data-product-url="/products/hydraulic-dog-grooming-table-pho_11x5pvxs"
  34115.          data-product-id="9482988421433"
  34116.          data-product-handle="hydraulic-dog-grooming-table-pho_11x5pvxs"
  34117.          aria-label="Add to cart"
  34118.        >
  34119.          <span class="m-spinner-icon">
  34120.            <svg
  34121.              class="animate-spin m-svg-icon--medium"
  34122.              xmlns="http://www.w3.org/2000/svg"
  34123.              viewBox="0 0 24 24"
  34124.              fill="none"
  34125.            >
  34126.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  34127.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  34128.            </svg>
  34129.          </span>
  34130.          
  34131.          <span class="m-add-to-cart--text">Add to cart</span>
  34132.        </button>
  34133.      
  34134.    -->
  34135.  
  34136. </div>
  34137. <style>
  34138.  @media screen and (max-width: 768px){
  34139.    .m-product-card__quick-add{
  34140.      /* display:none; */
  34141.      /* margin:5px auto 0 auto !important; */
  34142.      margin-top:5px !important;
  34143.    }
  34144.    .m-product-card__quick-add .m-add-to-cart{
  34145.      height:30px;
  34146.    }
  34147.    .m-product-card__quick-add .m-add-to-cart--text{
  34148.      font-size:14px !important;
  34149.    }
  34150.  }
  34151.  
  34152. </style>
  34153.  
  34154.    </div>
  34155.  </div>
  34156.  <input hidden name="id" required value="49451003969849" data-selected-variant="">
  34157. </div><script></script>
  34158. <style>
  34159.  .media_banner_collection {
  34160.    position: absolute;
  34161.    top:0;
  34162.    left:0;
  34163.    width: 20%;
  34164.    z-index:10;
  34165.  }
  34166.  .badges-wrapper {
  34167.    position: absolute;
  34168.    top:0;
  34169.    right:0;
  34170.    z-index:10;
  34171.  }
  34172.    /* .triangle_left{
  34173.      position: relative;
  34174.    }
  34175.    .triangle_left::after{
  34176.      content:'';
  34177.      width: 0;
  34178.      height: 0;
  34179.      position: absolute;
  34180.      border-top: 13px solid transparent;
  34181.      border-bottom: 13px solid transparent;
  34182.      border-right: 0px solid transparent;
  34183.      border-left: 13px solid #CD2215;
  34184.      left:100%;
  34185.    } */
  34186.  .m-product-card__wrapper{
  34187.    display:flex;
  34188.    flex-direction:column;
  34189.    height:100%;
  34190.  }
  34191.      .m-product-card__info{
  34192.      display: flex;
  34193.      flex-direction: column;
  34194.    }
  34195.      .m-product-card__price{
  34196.      order:1;
  34197.    }
  34198.    .m-product-card__title{
  34199.      order:2;
  34200.    }
  34201.    .m-product-card__reviews{
  34202.      order:3;
  34203.    }
  34204.    .m-product-shipping__content{
  34205.      order:4;
  34206.    }
  34207.    .m-product-shipping__text{
  34208.      font-size:11px !important;
  34209.    }
  34210.  .m-product-card--style-2 .m-product-card__name {
  34211.    font-size: 14px;
  34212.  }
  34213.    @media screen and (max-width: 768px) {
  34214.      /* .triangle_left::after{
  34215.      border-top: 11px solid transparent;
  34216.      border-bottom: 11px solid transparent;
  34217.      border-left: 11px solid #CD2215;
  34218.    } */
  34219.  
  34220.    .m-product-card--style-2 .m-product-card__name {
  34221.      line-height: 1.3;
  34222.      -webkit-line-clamp: 2;
  34223.      font-size: 12px;
  34224.    }
  34225.    .m-product-card--style-2 .m-price-item--last {
  34226.      font-size: 18px;
  34227.    }
  34228.    .m-product-shipping__content {
  34229.      display: none;
  34230.    }
  34231.  }
  34232. </style>
  34233.  
  34234.  
  34235.                        </div>
  34236.                      
  34237.                        <div class="m:column">
  34238.                          
  34239.  
  34240.  
  34241. <div
  34242.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  34243.  data-view="card"
  34244.  
  34245.  data-product-id="9590699491641"
  34246.  
  34247. >
  34248.  
  34249.  <div class="m-product-card__wrapper">
  34250.    <div class="m-product-card__media">
  34251.      <a
  34252.        class="m-product-card__link m:block m:w-full"
  34253.        href="/products/garvee-garveelife-60-hydraulic-dog-grooming-pho-1327k6xc"
  34254.        aria-label="GARVEE 60" Hydraulic Dog Grooming Table for Pet, Heavy Duty Structural Hydraulic Max Load 350Lbs Professional Pet Grooming Table with Adjustable Overhead Arm & Noose Height Range 9.4''-39.4''"
  34255.        style="position: relative;"
  34256.      >
  34257.          
  34258.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  34259.            <img src="//www.garvee.com/cdn/shop/files/71KKu3exrrL.jpg?v=1723039012&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/71KKu3exrrL.jpg?v=1723039012&amp;width=165 165w, //www.garvee.com/cdn/shop/files/71KKu3exrrL.jpg?v=1723039012&amp;width=352 352w, //www.garvee.com/cdn/shop/files/71KKu3exrrL.jpg?v=1723039012&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  34260.          </responsive-image>
  34261.  
  34262.        <div class="badges-wrapper">
  34263.          
  34264.            
  34265.              
  34266.            
  34267.              
  34268.            
  34269.              
  34270.            
  34271.              
  34272.            
  34273.              
  34274.            
  34275.              
  34276.            
  34277.              
  34278.            
  34279.              
  34280.            
  34281.              
  34282.            
  34283.              
  34284.            
  34285.              
  34286.            
  34287.              
  34288.            
  34289.              
  34290.            
  34291.              
  34292.            
  34293.              
  34294.            
  34295.              
  34296.            
  34297.              
  34298.            
  34299.              
  34300.            
  34301.          
  34302.        </div>
  34303.      </a></div>
  34304.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  34305.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-garveelife-60-hydraulic-dog-grooming-pho-1327k6xc" aria-label="GARVEE 60" Hydraulic Dog Grooming Table for Pet, Heavy Duty Structural Hydraulic Max Load 350Lbs Professional Pet Grooming Table with Adjustable Overhead Arm & Noose Height Range 9.4''-39.4''"></a>
  34306.      <div class="m-product-card__info">
  34307.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  34308.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  34309.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  34310.                
  34311.                  style="display:none;"
  34312.                
  34313.              >Sold Out</span><span
  34314.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  34315.              data-foxkit-preorder-badge="9590699491641"
  34316.            ></span>
  34317.            
  34318. <div style="display:flex;">
  34319.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-46%
  34320. </span>
  34321.              </div>
  34322.            
  34323.          </div>
  34324.          
  34325.        </div><h3 class="m-product-card__title h6">
  34326.          <a
  34327.            href="/products/garvee-garveelife-60-hydraulic-dog-grooming-pho-1327k6xc"
  34328.            class="m-product-card__name"
  34329.            style="font-weight:normal;"
  34330.          >
  34331.            GARVEE 60" Hydraulic Dog Grooming Table for Pet, Heavy Duty Structural Hydraulic Max Load 350Lbs Professional Pet Grooming Table with Adjustable Overhead Arm & Noose Height Range 9.4''-39.4''
  34332.          </a>
  34333.        </h3>
  34334.  
  34335.        
  34336.          <div class="m-product-card__reviews">
  34337.            
  34338.  
  34339.    
  34340.    
  34341.      
  34342.  
  34343.  
  34344.  <div
  34345.    style=""
  34346.    class="jdgm-widget jdgm-preview-badge"
  34347.    data-id="9590699491641"
  34348.    data-template="manual-installation"
  34349.    data-auto-install="false"
  34350.  >
  34351.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='5.00' data-number-of-reviews='1' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='5.00' tabindex='0' aria-label='5.00 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 1 review </span> </div>
  34352.  </div>
  34353.  
  34354.  
  34355. <style>
  34356.  @media screen and (max-width: 768px){
  34357.    .jdgm-qa-badge{
  34358.      display:none;
  34359.    }
  34360.    .jdgm-histogram{
  34361.    float:none;
  34362.  }
  34363.  }
  34364.  .jdgm-widget.jdgm-preview-badge{
  34365.    display:block !important;
  34366.  }
  34367.  .jdgm-sort-dropdown-arrow:before{
  34368.    position: relative;
  34369.    left: -8px;
  34370.  }
  34371. </style>
  34372.  
  34373.    
  34374.  
  34375.  
  34376.          </div>
  34377.        
  34378.  
  34379.        <div class="m-product-card__price">
  34380.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  34381. <div
  34382.  class="
  34383.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  34384.  data-sale-badge-type="percentage"
  34385. >
  34386.  <div class="m-price__regular">
  34387.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  34388.    <span class="m-price-item m-price-item--regular ">
  34389.      $586.99
  34390.    </span>
  34391.  </div>
  34392.  <div class="m-price__sale">
  34393.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  34394.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  34395.      $586.99
  34396.    </span>
  34397.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  34398.      <s class="m-price-item m-price-item--regular">
  34399.        
  34400.          $1,088.99
  34401.        
  34402.      </s></div>
  34403.  <div class="m-price__unit-wrapper m:hidden">
  34404.    <span class="m:visually-hidden">Unit price</span>
  34405.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  34406.  </div>
  34407.  
  34408.  
  34409. </div>
  34410.  
  34411. <style>
  34412.  .m-product-tag.m-product-tag--discounted.isSpring {
  34413.    background: #EC7521;
  34414.    color: #E6EBB3;
  34415.  }
  34416. </style>
  34417.  
  34418.        </div>
  34419.  
  34420.        
  34421.  
  34422.        
  34423.  
  34424.        <div class="m-product-card__description">
  34425.          Elevate your pet grooming experience with the GARVEE 60" Hydraulic Dog Grooming Table GARVEE 60"...
  34426.        </div></div>
  34427.      <div class="m-product-card__quick-add ">
  34428.    <product-form class="m-product-form m:w-full m:block" data-product-id="49727976374585"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49727976374585" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49727976374585" data-selected-variant=""><button
  34429.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  34430.          name="add"
  34431.          
  34432.          aria-label="Add to cart"
  34433.        >
  34434.          <span class="m-spinner-icon">
  34435.            <svg
  34436.              class="animate-spin m-svg-icon--medium"
  34437.              viewBox="0 0 24 24"
  34438.              fill="none"
  34439.            >
  34440.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  34441.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  34442.            </svg>
  34443.          </span>
  34444.          
  34445.          <span class="m-add-to-cart--text" data-atc-text>
  34446.            
  34447.              Add to cart
  34448.            
  34449.          </span>
  34450.        </button><input type="hidden" name="product-id" value="9590699491641" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  34451.  
  34452.    <!--
  34453.      
  34454.        <input hidden name="id" required value="49727976374585" data-selected-variant="">
  34455.        <button
  34456.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  34457.          data-product-url="/products/garvee-garveelife-60-hydraulic-dog-grooming-pho-1327k6xc"
  34458.          data-product-id="9590699491641"
  34459.          data-product-handle="garvee-garveelife-60-hydraulic-dog-grooming-pho-1327k6xc"
  34460.          aria-label="Add to cart"
  34461.        >
  34462.          <span class="m-spinner-icon">
  34463.            <svg
  34464.              class="animate-spin m-svg-icon--medium"
  34465.              xmlns="http://www.w3.org/2000/svg"
  34466.              viewBox="0 0 24 24"
  34467.              fill="none"
  34468.            >
  34469.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  34470.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  34471.            </svg>
  34472.          </span>
  34473.          
  34474.          <span class="m-add-to-cart--text">Add to cart</span>
  34475.        </button>
  34476.      
  34477.    -->
  34478.  
  34479. </div>
  34480. <style>
  34481.  @media screen and (max-width: 768px){
  34482.    .m-product-card__quick-add{
  34483.      /* display:none; */
  34484.      /* margin:5px auto 0 auto !important; */
  34485.      margin-top:5px !important;
  34486.    }
  34487.    .m-product-card__quick-add .m-add-to-cart{
  34488.      height:30px;
  34489.    }
  34490.    .m-product-card__quick-add .m-add-to-cart--text{
  34491.      font-size:14px !important;
  34492.    }
  34493.  }
  34494.  
  34495. </style>
  34496.  
  34497.    </div>
  34498.  </div>
  34499.  <input hidden name="id" required value="49727976374585" data-selected-variant="">
  34500. </div><script></script>
  34501. <style>
  34502.  .media_banner_collection {
  34503.    position: absolute;
  34504.    top:0;
  34505.    left:0;
  34506.    width: 20%;
  34507.    z-index:10;
  34508.  }
  34509.  .badges-wrapper {
  34510.    position: absolute;
  34511.    top:0;
  34512.    right:0;
  34513.    z-index:10;
  34514.  }
  34515.    /* .triangle_left{
  34516.      position: relative;
  34517.    }
  34518.    .triangle_left::after{
  34519.      content:'';
  34520.      width: 0;
  34521.      height: 0;
  34522.      position: absolute;
  34523.      border-top: 13px solid transparent;
  34524.      border-bottom: 13px solid transparent;
  34525.      border-right: 0px solid transparent;
  34526.      border-left: 13px solid #CD2215;
  34527.      left:100%;
  34528.    } */
  34529.  .m-product-card__wrapper{
  34530.    display:flex;
  34531.    flex-direction:column;
  34532.    height:100%;
  34533.  }
  34534.      .m-product-card__info{
  34535.      display: flex;
  34536.      flex-direction: column;
  34537.    }
  34538.      .m-product-card__price{
  34539.      order:1;
  34540.    }
  34541.    .m-product-card__title{
  34542.      order:2;
  34543.    }
  34544.    .m-product-card__reviews{
  34545.      order:3;
  34546.    }
  34547.    .m-product-shipping__content{
  34548.      order:4;
  34549.    }
  34550.    .m-product-shipping__text{
  34551.      font-size:11px !important;
  34552.    }
  34553.  .m-product-card--style-2 .m-product-card__name {
  34554.    font-size: 14px;
  34555.  }
  34556.    @media screen and (max-width: 768px) {
  34557.      /* .triangle_left::after{
  34558.      border-top: 11px solid transparent;
  34559.      border-bottom: 11px solid transparent;
  34560.      border-left: 11px solid #CD2215;
  34561.    } */
  34562.  
  34563.    .m-product-card--style-2 .m-product-card__name {
  34564.      line-height: 1.3;
  34565.      -webkit-line-clamp: 2;
  34566.      font-size: 12px;
  34567.    }
  34568.    .m-product-card--style-2 .m-price-item--last {
  34569.      font-size: 18px;
  34570.    }
  34571.    .m-product-shipping__content {
  34572.      display: none;
  34573.    }
  34574.  }
  34575. </style>
  34576.  
  34577.  
  34578.                        </div>
  34579.                      
  34580.                        <div class="m:column">
  34581.                          
  34582.  
  34583.  
  34584. <div
  34585.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  34586.  data-view="card"
  34587.  
  34588.  data-product-id="9491367756089"
  34589.  
  34590. >
  34591.  
  34592.  <div class="m-product-card__wrapper">
  34593.    <div class="m-product-card__media">
  34594.      <a
  34595.        class="m-product-card__link m:block m:w-full"
  34596.        href="/products/garvee-50-inch-electric-dog-grooming-pho-130op8x3"
  34597.        aria-label="GARVEE 50 Inch Electric Dog Grooming Table, Adjustable Heavy Duty X Lift Grooming Table for Large Dogs with Anti-Skid Tabletop,Wireless Remote,Tool Organizer and Arms, Black"
  34598.        style="position: relative;"
  34599.      >
  34600.          
  34601.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  34602.            <img src="//www.garvee.com/cdn/shop/files/61zxfctjQvL.jpg?v=1727662511&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/61zxfctjQvL.jpg?v=1727662511&amp;width=165 165w, //www.garvee.com/cdn/shop/files/61zxfctjQvL.jpg?v=1727662511&amp;width=352 352w, //www.garvee.com/cdn/shop/files/61zxfctjQvL.jpg?v=1727662511&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  34603.          </responsive-image>
  34604.  
  34605.        <div class="badges-wrapper">
  34606.          
  34607.            
  34608.              
  34609.            
  34610.              
  34611.            
  34612.              
  34613.            
  34614.              
  34615.            
  34616.              
  34617.            
  34618.              
  34619.            
  34620.              
  34621.            
  34622.              
  34623.            
  34624.              
  34625.            
  34626.              
  34627.            
  34628.              
  34629.            
  34630.              
  34631.            
  34632.              
  34633.            
  34634.              
  34635.            
  34636.              
  34637.            
  34638.              
  34639.            
  34640.              
  34641.            
  34642.              
  34643.            
  34644.              
  34645.            
  34646.              
  34647.            
  34648.              
  34649.            
  34650.              
  34651.            
  34652.              
  34653.            
  34654.              
  34655.            
  34656.              
  34657.            
  34658.          
  34659.        </div>
  34660.      </a></div>
  34661.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  34662.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-50-inch-electric-dog-grooming-pho-130op8x3" aria-label="GARVEE 50 Inch Electric Dog Grooming Table, Adjustable Heavy Duty X Lift Grooming Table for Large Dogs with Anti-Skid Tabletop,Wireless Remote,Tool Organizer and Arms, Black"></a>
  34663.      <div class="m-product-card__info">
  34664.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  34665.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  34666.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  34667.                
  34668.                  style="display:none;"
  34669.                
  34670.              >Sold Out</span><span
  34671.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  34672.              data-foxkit-preorder-badge="9491367756089"
  34673.            ></span>
  34674.            
  34675. <div style="display:flex;">
  34676.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-40%
  34677. </span>
  34678.              </div>
  34679.            
  34680.          </div>
  34681.          
  34682.        </div><h3 class="m-product-card__title h6">
  34683.          <a
  34684.            href="/products/garvee-50-inch-electric-dog-grooming-pho-130op8x3"
  34685.            class="m-product-card__name"
  34686.            style="font-weight:normal;"
  34687.          >
  34688.            GARVEE 50 Inch Electric Dog Grooming Table, Adjustable Heavy Duty X Lift Grooming Table for Large Dogs with Anti-Skid Tabletop,Wireless Remote,Tool Organizer and Arms, Black
  34689.          </a>
  34690.        </h3>
  34691.  
  34692.        
  34693.          <div class="m-product-card__reviews">
  34694.            
  34695.  
  34696.    
  34697.    
  34698.      
  34699.  
  34700.  
  34701.  <div
  34702.    style=""
  34703.    class="jdgm-widget jdgm-preview-badge"
  34704.    data-id="9491367756089"
  34705.    data-template="manual-installation"
  34706.    data-auto-install="false"
  34707.  >
  34708.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.92' data-number-of-reviews='39' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.92' tabindex='0' aria-label='4.92 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 39 reviews </span> </div>
  34709.  </div>
  34710.  
  34711.  
  34712. <style>
  34713.  @media screen and (max-width: 768px){
  34714.    .jdgm-qa-badge{
  34715.      display:none;
  34716.    }
  34717.    .jdgm-histogram{
  34718.    float:none;
  34719.  }
  34720.  }
  34721.  .jdgm-widget.jdgm-preview-badge{
  34722.    display:block !important;
  34723.  }
  34724.  .jdgm-sort-dropdown-arrow:before{
  34725.    position: relative;
  34726.    left: -8px;
  34727.  }
  34728. </style>
  34729.  
  34730.    
  34731.  
  34732.  
  34733.          </div>
  34734.        
  34735.  
  34736.        <div class="m-product-card__price">
  34737.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  34738. <div
  34739.  class="
  34740.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  34741.  data-sale-badge-type="percentage"
  34742. >
  34743.  <div class="m-price__regular">
  34744.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  34745.    <span class="m-price-item m-price-item--regular ">
  34746.      $443.99
  34747.    </span>
  34748.  </div>
  34749.  <div class="m-price__sale">
  34750.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  34751.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  34752.      $443.99
  34753.    </span>
  34754.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  34755.      <s class="m-price-item m-price-item--regular">
  34756.        
  34757.          $749.99
  34758.        
  34759.      </s></div>
  34760.  <div class="m-price__unit-wrapper m:hidden">
  34761.    <span class="m:visually-hidden">Unit price</span>
  34762.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  34763.  </div>
  34764.  
  34765.  
  34766. </div>
  34767.  
  34768. <style>
  34769.  .m-product-tag.m-product-tag--discounted.isSpring {
  34770.    background: #EC7521;
  34771.    color: #E6EBB3;
  34772.  }
  34773. </style>
  34774.  
  34775.        </div>
  34776.  
  34777.        
  34778.  
  34779.        
  34780.  
  34781.        <div class="m-product-card__description">
  34782.          Elevate your pet grooming experience with the GARVEE 50 Inch Electric Dog Grooming Table GARVEE...
  34783.        </div></div>
  34784.      <div class="m-product-card__quick-add ">
  34785.    <product-form class="m-product-form m:w-full m:block" data-product-id="49490869256505"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49490869256505" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49490869256505" data-selected-variant=""><button
  34786.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  34787.          name="add"
  34788.          
  34789.          aria-label="Add to cart"
  34790.        >
  34791.          <span class="m-spinner-icon">
  34792.            <svg
  34793.              class="animate-spin m-svg-icon--medium"
  34794.              viewBox="0 0 24 24"
  34795.              fill="none"
  34796.            >
  34797.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  34798.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  34799.            </svg>
  34800.          </span>
  34801.          
  34802.          <span class="m-add-to-cart--text" data-atc-text>
  34803.            
  34804.              Add to cart
  34805.            
  34806.          </span>
  34807.        </button><input type="hidden" name="product-id" value="9491367756089" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  34808.  
  34809.    <!--
  34810.      
  34811.        <input hidden name="id" required value="49490869256505" data-selected-variant="">
  34812.        <button
  34813.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  34814.          data-product-url="/products/garvee-50-inch-electric-dog-grooming-pho-130op8x3"
  34815.          data-product-id="9491367756089"
  34816.          data-product-handle="garvee-50-inch-electric-dog-grooming-pho-130op8x3"
  34817.          aria-label="Add to cart"
  34818.        >
  34819.          <span class="m-spinner-icon">
  34820.            <svg
  34821.              class="animate-spin m-svg-icon--medium"
  34822.              xmlns="http://www.w3.org/2000/svg"
  34823.              viewBox="0 0 24 24"
  34824.              fill="none"
  34825.            >
  34826.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  34827.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  34828.            </svg>
  34829.          </span>
  34830.          
  34831.          <span class="m-add-to-cart--text">Add to cart</span>
  34832.        </button>
  34833.      
  34834.    -->
  34835.  
  34836. </div>
  34837. <style>
  34838.  @media screen and (max-width: 768px){
  34839.    .m-product-card__quick-add{
  34840.      /* display:none; */
  34841.      /* margin:5px auto 0 auto !important; */
  34842.      margin-top:5px !important;
  34843.    }
  34844.    .m-product-card__quick-add .m-add-to-cart{
  34845.      height:30px;
  34846.    }
  34847.    .m-product-card__quick-add .m-add-to-cart--text{
  34848.      font-size:14px !important;
  34849.    }
  34850.  }
  34851.  
  34852. </style>
  34853.  
  34854.    </div>
  34855.  </div>
  34856.  <input hidden name="id" required value="49490869256505" data-selected-variant="">
  34857. </div><script></script>
  34858. <style>
  34859.  .media_banner_collection {
  34860.    position: absolute;
  34861.    top:0;
  34862.    left:0;
  34863.    width: 20%;
  34864.    z-index:10;
  34865.  }
  34866.  .badges-wrapper {
  34867.    position: absolute;
  34868.    top:0;
  34869.    right:0;
  34870.    z-index:10;
  34871.  }
  34872.    /* .triangle_left{
  34873.      position: relative;
  34874.    }
  34875.    .triangle_left::after{
  34876.      content:'';
  34877.      width: 0;
  34878.      height: 0;
  34879.      position: absolute;
  34880.      border-top: 13px solid transparent;
  34881.      border-bottom: 13px solid transparent;
  34882.      border-right: 0px solid transparent;
  34883.      border-left: 13px solid #CD2215;
  34884.      left:100%;
  34885.    } */
  34886.  .m-product-card__wrapper{
  34887.    display:flex;
  34888.    flex-direction:column;
  34889.    height:100%;
  34890.  }
  34891.      .m-product-card__info{
  34892.      display: flex;
  34893.      flex-direction: column;
  34894.    }
  34895.      .m-product-card__price{
  34896.      order:1;
  34897.    }
  34898.    .m-product-card__title{
  34899.      order:2;
  34900.    }
  34901.    .m-product-card__reviews{
  34902.      order:3;
  34903.    }
  34904.    .m-product-shipping__content{
  34905.      order:4;
  34906.    }
  34907.    .m-product-shipping__text{
  34908.      font-size:11px !important;
  34909.    }
  34910.  .m-product-card--style-2 .m-product-card__name {
  34911.    font-size: 14px;
  34912.  }
  34913.    @media screen and (max-width: 768px) {
  34914.      /* .triangle_left::after{
  34915.      border-top: 11px solid transparent;
  34916.      border-bottom: 11px solid transparent;
  34917.      border-left: 11px solid #CD2215;
  34918.    } */
  34919.  
  34920.    .m-product-card--style-2 .m-product-card__name {
  34921.      line-height: 1.3;
  34922.      -webkit-line-clamp: 2;
  34923.      font-size: 12px;
  34924.    }
  34925.    .m-product-card--style-2 .m-price-item--last {
  34926.      font-size: 18px;
  34927.    }
  34928.    .m-product-shipping__content {
  34929.      display: none;
  34930.    }
  34931.  }
  34932. </style>
  34933.  
  34934.  
  34935.                        </div>
  34936.                      
  34937.                        <div class="m:column">
  34938.                          
  34939.  
  34940.  
  34941. <div
  34942.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  34943.  data-view="card"
  34944.  
  34945.  data-product-id="9491400950073"
  34946.  
  34947. >
  34948.  
  34949.  <div class="m-product-card__wrapper">
  34950.    <div class="m-product-card__media">
  34951.      <a
  34952.        class="m-product-card__link m:block m:w-full"
  34953.        href="/products/garvee-5-in-1-pet-grooming-pho-0y50yfwz"
  34954.        aria-label="GARVEE Pet Grooming Vacuum Kit, 16-Level Suction, 2L Dustbin, Low Noise Dog Hair Remover with 4 Combs, Gray"
  34955.        style="position: relative;"
  34956.      >
  34957.          
  34958.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  34959.            <img src="//www.garvee.com/cdn/shop/files/71zm8gcFljL.jpg?v=1719388120&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/71zm8gcFljL.jpg?v=1719388120&amp;width=165 165w, //www.garvee.com/cdn/shop/files/71zm8gcFljL.jpg?v=1719388120&amp;width=352 352w, //www.garvee.com/cdn/shop/files/71zm8gcFljL.jpg?v=1719388120&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  34960.          </responsive-image>
  34961.  
  34962.        <div class="badges-wrapper">
  34963.          
  34964.            
  34965.              
  34966.            
  34967.              
  34968.            
  34969.              
  34970.            
  34971.              
  34972.            
  34973.              
  34974.            
  34975.              
  34976.            
  34977.              
  34978.            
  34979.              
  34980.            
  34981.              
  34982.            
  34983.              
  34984.            
  34985.              
  34986.            
  34987.              
  34988.            
  34989.              
  34990.            
  34991.              
  34992.            
  34993.              
  34994.            
  34995.              
  34996.            
  34997.              
  34998.            
  34999.              
  35000.            
  35001.              
  35002.            
  35003.              
  35004.            
  35005.              
  35006.            
  35007.              
  35008.            
  35009.              
  35010.            
  35011.              
  35012.            
  35013.              
  35014.            
  35015.              
  35016.            
  35017.              
  35018.            
  35019.              
  35020.            
  35021.              
  35022.            
  35023.              
  35024.            
  35025.              
  35026.            
  35027.              
  35028.            
  35029.              
  35030.            
  35031.              
  35032.            
  35033.              
  35034.            
  35035.              
  35036.            
  35037.              
  35038.            
  35039.              
  35040.            
  35041.              
  35042.            
  35043.              
  35044.            
  35045.          
  35046.        </div>
  35047.      </a></div>
  35048.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  35049.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-5-in-1-pet-grooming-pho-0y50yfwz" aria-label="GARVEE Pet Grooming Vacuum Kit, 16-Level Suction, 2L Dustbin, Low Noise Dog Hair Remover with 4 Combs, Gray"></a>
  35050.      <div class="m-product-card__info">
  35051.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  35052.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  35053.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  35054.                
  35055.                  style="display:none;"
  35056.                
  35057.              >Sold Out</span><span
  35058.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  35059.              data-foxkit-preorder-badge="9491400950073"
  35060.            ></span>
  35061.            
  35062. <div style="display:flex;">
  35063.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-46%
  35064. </span>
  35065.              </div>
  35066.            
  35067.          </div>
  35068.          
  35069.        </div><h3 class="m-product-card__title h6">
  35070.          <a
  35071.            href="/products/garvee-5-in-1-pet-grooming-pho-0y50yfwz"
  35072.            class="m-product-card__name"
  35073.            style="font-weight:normal;"
  35074.          >
  35075.            GARVEE Pet Grooming Vacuum Kit, 16-Level Suction, 2L Dustbin, Low Noise Dog Hair Remover with 4 Combs, Gray
  35076.          </a>
  35077.        </h3>
  35078.  
  35079.        
  35080.          <div class="m-product-card__reviews">
  35081.            
  35082.  
  35083.    
  35084.    
  35085.      
  35086.  
  35087.  
  35088.  <div
  35089.    style=""
  35090.    class="jdgm-widget jdgm-preview-badge"
  35091.    data-id="9491400950073"
  35092.    data-template="manual-installation"
  35093.    data-auto-install="false"
  35094.  >
  35095.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.93' data-number-of-reviews='150' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.93' tabindex='0' aria-label='4.93 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 150 reviews </span> </div>
  35096.  </div>
  35097.  
  35098.  
  35099. <style>
  35100.  @media screen and (max-width: 768px){
  35101.    .jdgm-qa-badge{
  35102.      display:none;
  35103.    }
  35104.    .jdgm-histogram{
  35105.    float:none;
  35106.  }
  35107.  }
  35108.  .jdgm-widget.jdgm-preview-badge{
  35109.    display:block !important;
  35110.  }
  35111.  .jdgm-sort-dropdown-arrow:before{
  35112.    position: relative;
  35113.    left: -8px;
  35114.  }
  35115. </style>
  35116.  
  35117.    
  35118.  
  35119.  
  35120.          </div>
  35121.        
  35122.  
  35123.        <div class="m-product-card__price">
  35124.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  35125. <div
  35126.  class="
  35127.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  35128.  data-sale-badge-type="percentage"
  35129. >
  35130.  <div class="m-price__regular">
  35131.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  35132.    <span class="m-price-item m-price-item--regular ">
  35133.      $81.99
  35134.    </span>
  35135.  </div>
  35136.  <div class="m-price__sale">
  35137.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  35138.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  35139.      $81.99
  35140.    </span>
  35141.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  35142.      <s class="m-price-item m-price-item--regular">
  35143.        
  35144.          $153.99
  35145.        
  35146.      </s></div>
  35147.  <div class="m-price__unit-wrapper m:hidden">
  35148.    <span class="m:visually-hidden">Unit price</span>
  35149.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  35150.  </div>
  35151.  
  35152.  
  35153. </div>
  35154.  
  35155. <style>
  35156.  .m-product-tag.m-product-tag--discounted.isSpring {
  35157.    background: #EC7521;
  35158.    color: #E6EBB3;
  35159.  }
  35160. </style>
  35161.  
  35162.        </div>
  35163.  
  35164.        
  35165.  
  35166.        
  35167.  
  35168.        <div class="m-product-card__description">
  35169.            Key Features 16 Levels Adjustable Suction: 13.4Kpa suction with 16 adjustable levels, captures 99%...
  35170.        </div></div>
  35171.      <div class="m-product-card__quick-add ">
  35172.    <product-form class="m-product-form m:w-full m:block" data-product-id="49490932793657"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49490932793657" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49490932793657" data-selected-variant=""><button
  35173.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  35174.          name="add"
  35175.          
  35176.          aria-label="Add to cart"
  35177.        >
  35178.          <span class="m-spinner-icon">
  35179.            <svg
  35180.              class="animate-spin m-svg-icon--medium"
  35181.              viewBox="0 0 24 24"
  35182.              fill="none"
  35183.            >
  35184.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  35185.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  35186.            </svg>
  35187.          </span>
  35188.          
  35189.          <span class="m-add-to-cart--text" data-atc-text>
  35190.            
  35191.              Add to cart
  35192.            
  35193.          </span>
  35194.        </button><input type="hidden" name="product-id" value="9491400950073" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  35195.  
  35196.    <!--
  35197.      
  35198.        <input hidden name="id" required value="49490932793657" data-selected-variant="">
  35199.        <button
  35200.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  35201.          data-product-url="/products/garvee-5-in-1-pet-grooming-pho-0y50yfwz"
  35202.          data-product-id="9491400950073"
  35203.          data-product-handle="garvee-5-in-1-pet-grooming-pho-0y50yfwz"
  35204.          aria-label="Add to cart"
  35205.        >
  35206.          <span class="m-spinner-icon">
  35207.            <svg
  35208.              class="animate-spin m-svg-icon--medium"
  35209.              xmlns="http://www.w3.org/2000/svg"
  35210.              viewBox="0 0 24 24"
  35211.              fill="none"
  35212.            >
  35213.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  35214.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  35215.            </svg>
  35216.          </span>
  35217.          
  35218.          <span class="m-add-to-cart--text">Add to cart</span>
  35219.        </button>
  35220.      
  35221.    -->
  35222.  
  35223. </div>
  35224. <style>
  35225.  @media screen and (max-width: 768px){
  35226.    .m-product-card__quick-add{
  35227.      /* display:none; */
  35228.      /* margin:5px auto 0 auto !important; */
  35229.      margin-top:5px !important;
  35230.    }
  35231.    .m-product-card__quick-add .m-add-to-cart{
  35232.      height:30px;
  35233.    }
  35234.    .m-product-card__quick-add .m-add-to-cart--text{
  35235.      font-size:14px !important;
  35236.    }
  35237.  }
  35238.  
  35239. </style>
  35240.  
  35241.    </div>
  35242.  </div>
  35243.  <input hidden name="id" required value="49490932793657" data-selected-variant="">
  35244. </div><script></script>
  35245. <style>
  35246.  .media_banner_collection {
  35247.    position: absolute;
  35248.    top:0;
  35249.    left:0;
  35250.    width: 20%;
  35251.    z-index:10;
  35252.  }
  35253.  .badges-wrapper {
  35254.    position: absolute;
  35255.    top:0;
  35256.    right:0;
  35257.    z-index:10;
  35258.  }
  35259.    /* .triangle_left{
  35260.      position: relative;
  35261.    }
  35262.    .triangle_left::after{
  35263.      content:'';
  35264.      width: 0;
  35265.      height: 0;
  35266.      position: absolute;
  35267.      border-top: 13px solid transparent;
  35268.      border-bottom: 13px solid transparent;
  35269.      border-right: 0px solid transparent;
  35270.      border-left: 13px solid #CD2215;
  35271.      left:100%;
  35272.    } */
  35273.  .m-product-card__wrapper{
  35274.    display:flex;
  35275.    flex-direction:column;
  35276.    height:100%;
  35277.  }
  35278.      .m-product-card__info{
  35279.      display: flex;
  35280.      flex-direction: column;
  35281.    }
  35282.      .m-product-card__price{
  35283.      order:1;
  35284.    }
  35285.    .m-product-card__title{
  35286.      order:2;
  35287.    }
  35288.    .m-product-card__reviews{
  35289.      order:3;
  35290.    }
  35291.    .m-product-shipping__content{
  35292.      order:4;
  35293.    }
  35294.    .m-product-shipping__text{
  35295.      font-size:11px !important;
  35296.    }
  35297.  .m-product-card--style-2 .m-product-card__name {
  35298.    font-size: 14px;
  35299.  }
  35300.    @media screen and (max-width: 768px) {
  35301.      /* .triangle_left::after{
  35302.      border-top: 11px solid transparent;
  35303.      border-bottom: 11px solid transparent;
  35304.      border-left: 11px solid #CD2215;
  35305.    } */
  35306.  
  35307.    .m-product-card--style-2 .m-product-card__name {
  35308.      line-height: 1.3;
  35309.      -webkit-line-clamp: 2;
  35310.      font-size: 12px;
  35311.    }
  35312.    .m-product-card--style-2 .m-price-item--last {
  35313.      font-size: 18px;
  35314.    }
  35315.    .m-product-shipping__content {
  35316.      display: none;
  35317.    }
  35318.  }
  35319. </style>
  35320.  
  35321.  
  35322.                        </div>
  35323.                      
  35324.                        <div class="m:column">
  35325.                          
  35326.  
  35327.  
  35328. <div
  35329.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  35330.  data-view="card"
  35331.  
  35332.  data-product-id="9491357794617"
  35333.  
  35334. >
  35335.  
  35336.  <div class="m-product-card__wrapper">
  35337.    <div class="m-product-card__media">
  35338.      <a
  35339.        class="m-product-card__link m:block m:w-full"
  35340.        href="/products/garvee-professional-50-dog-wash-station-pho-114gv1lu"
  35341.        aria-label="GARVEE Professional Dog Grooming Bathing Station, Stainless Steel Dog Bathtub with Foldable Ramp, Storage Drawer, Floor Grate & Faucet/Dog Bathtub for Large, Medium & Small Pets - Right Door (50")"
  35342.        style="position: relative;"
  35343.      >
  35344.          
  35345.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  35346.            <img src="//www.garvee.com/cdn/shop/files/61ZDfjSORhL.jpg?v=1719387448&amp;width=1100" alt="0" srcset="//www.garvee.com/cdn/shop/files/61ZDfjSORhL.jpg?v=1719387448&amp;width=165 165w, //www.garvee.com/cdn/shop/files/61ZDfjSORhL.jpg?v=1719387448&amp;width=352 352w, //www.garvee.com/cdn/shop/files/61ZDfjSORhL.jpg?v=1719387448&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  35347.          </responsive-image>
  35348.  
  35349.        <div class="badges-wrapper">
  35350.          
  35351.            
  35352.              
  35353.            
  35354.              
  35355.            
  35356.              
  35357.            
  35358.              
  35359.            
  35360.              
  35361.            
  35362.              
  35363.            
  35364.              
  35365.            
  35366.              
  35367.            
  35368.              
  35369.            
  35370.              
  35371.            
  35372.              
  35373.            
  35374.              
  35375.            
  35376.              
  35377.            
  35378.              
  35379.            
  35380.              
  35381.            
  35382.              
  35383.            
  35384.              
  35385.            
  35386.              
  35387.            
  35388.              
  35389.            
  35390.              
  35391.            
  35392.              
  35393.            
  35394.              
  35395.            
  35396.              
  35397.            
  35398.              
  35399.            
  35400.          
  35401.        </div>
  35402.      </a></div>
  35403.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  35404.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-professional-50-dog-wash-station-pho-114gv1lu" aria-label="GARVEE Professional Dog Grooming Bathing Station, Stainless Steel Dog Bathtub with Foldable Ramp, Storage Drawer, Floor Grate & Faucet/Dog Bathtub for Large, Medium & Small Pets - Right Door (50")"></a>
  35405.      <div class="m-product-card__info">
  35406.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  35407.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  35408.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  35409.                
  35410.                  style="display:none;"
  35411.                
  35412.              >Sold Out</span><span
  35413.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  35414.              data-foxkit-preorder-badge="9491357794617"
  35415.            ></span>
  35416.            
  35417. <div style="display:flex;">
  35418.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-24%
  35419. </span>
  35420.              </div>
  35421.            
  35422.          </div>
  35423.          
  35424.        </div><h3 class="m-product-card__title h6">
  35425.          <a
  35426.            href="/products/garvee-professional-50-dog-wash-station-pho-114gv1lu"
  35427.            class="m-product-card__name"
  35428.            style="font-weight:normal;"
  35429.          >
  35430.            GARVEE Professional Dog Grooming Bathing Station, Stainless Steel Dog Bathtub with Foldable Ramp, Storage Drawer, Floor Grate & Faucet/Dog Bathtub for Large, Medium & Small Pets - Right Door (50")
  35431.          </a>
  35432.        </h3>
  35433.  
  35434.        
  35435.          <div class="m-product-card__reviews">
  35436.            
  35437.  
  35438.    
  35439.    
  35440.      
  35441.  
  35442.  
  35443.  <div
  35444.    style=""
  35445.    class="jdgm-widget jdgm-preview-badge"
  35446.    data-id="9491357794617"
  35447.    data-template="manual-installation"
  35448.    data-auto-install="false"
  35449.  >
  35450.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='5.00' data-number-of-reviews='3' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='5.00' tabindex='0' aria-label='5.00 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 3 reviews </span> </div>
  35451.  </div>
  35452.  
  35453.  
  35454. <style>
  35455.  @media screen and (max-width: 768px){
  35456.    .jdgm-qa-badge{
  35457.      display:none;
  35458.    }
  35459.    .jdgm-histogram{
  35460.    float:none;
  35461.  }
  35462.  }
  35463.  .jdgm-widget.jdgm-preview-badge{
  35464.    display:block !important;
  35465.  }
  35466.  .jdgm-sort-dropdown-arrow:before{
  35467.    position: relative;
  35468.    left: -8px;
  35469.  }
  35470. </style>
  35471.  
  35472.    
  35473.  
  35474.  
  35475.          </div>
  35476.        
  35477.  
  35478.        <div class="m-product-card__price">
  35479.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  35480. <div
  35481.  class="
  35482.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  35483.  data-sale-badge-type="percentage"
  35484. >
  35485.  <div class="m-price__regular">
  35486.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  35487.    <span class="m-price-item m-price-item--regular ">
  35488.      $1,394.99
  35489.    </span>
  35490.  </div>
  35491.  <div class="m-price__sale">
  35492.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  35493.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  35494.      $1,394.99
  35495.    </span>
  35496.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  35497.      <s class="m-price-item m-price-item--regular">
  35498.        
  35499.          $1,852.99
  35500.        
  35501.      </s></div>
  35502.  <div class="m-price__unit-wrapper m:hidden">
  35503.    <span class="m:visually-hidden">Unit price</span>
  35504.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  35505.  </div>
  35506.  
  35507.  
  35508. </div>
  35509.  
  35510. <style>
  35511.  .m-product-tag.m-product-tag--discounted.isSpring {
  35512.    background: #EC7521;
  35513.    color: #E6EBB3;
  35514.  }
  35515. </style>
  35516.  
  35517.        </div>
  35518.  
  35519.        
  35520.  
  35521.        
  35522.  
  35523.        <div class="m-product-card__description">
  35524.          Multi-Functional Utility: The dog grooming tub is suitable for general home cleaning and pet washing,...
  35525.        </div></div>
  35526.      <div class="m-product-card__quick-add ">
  35527.    <product-form class="m-product-form m:w-full m:block" data-product-id="49490847039801"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49490847039801" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49490847039801" data-selected-variant=""><button
  35528.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  35529.          name="add"
  35530.          
  35531.          aria-label="Add to cart"
  35532.        >
  35533.          <span class="m-spinner-icon">
  35534.            <svg
  35535.              class="animate-spin m-svg-icon--medium"
  35536.              viewBox="0 0 24 24"
  35537.              fill="none"
  35538.            >
  35539.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  35540.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  35541.            </svg>
  35542.          </span>
  35543.          
  35544.          <span class="m-add-to-cart--text" data-atc-text>
  35545.            
  35546.              Add to cart
  35547.            
  35548.          </span>
  35549.        </button><input type="hidden" name="product-id" value="9491357794617" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  35550.  
  35551.    <!--
  35552.      
  35553.        <input hidden name="id" required value="49490847039801" data-selected-variant="">
  35554.        <button
  35555.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  35556.          data-product-url="/products/garvee-professional-50-dog-wash-station-pho-114gv1lu"
  35557.          data-product-id="9491357794617"
  35558.          data-product-handle="garvee-professional-50-dog-wash-station-pho-114gv1lu"
  35559.          aria-label="Add to cart"
  35560.        >
  35561.          <span class="m-spinner-icon">
  35562.            <svg
  35563.              class="animate-spin m-svg-icon--medium"
  35564.              xmlns="http://www.w3.org/2000/svg"
  35565.              viewBox="0 0 24 24"
  35566.              fill="none"
  35567.            >
  35568.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  35569.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  35570.            </svg>
  35571.          </span>
  35572.          
  35573.          <span class="m-add-to-cart--text">Add to cart</span>
  35574.        </button>
  35575.      
  35576.    -->
  35577.  
  35578. </div>
  35579. <style>
  35580.  @media screen and (max-width: 768px){
  35581.    .m-product-card__quick-add{
  35582.      /* display:none; */
  35583.      /* margin:5px auto 0 auto !important; */
  35584.      margin-top:5px !important;
  35585.    }
  35586.    .m-product-card__quick-add .m-add-to-cart{
  35587.      height:30px;
  35588.    }
  35589.    .m-product-card__quick-add .m-add-to-cart--text{
  35590.      font-size:14px !important;
  35591.    }
  35592.  }
  35593.  
  35594. </style>
  35595.  
  35596.    </div>
  35597.  </div>
  35598.  <input hidden name="id" required value="49490847039801" data-selected-variant="">
  35599. </div><script></script>
  35600. <style>
  35601.  .media_banner_collection {
  35602.    position: absolute;
  35603.    top:0;
  35604.    left:0;
  35605.    width: 20%;
  35606.    z-index:10;
  35607.  }
  35608.  .badges-wrapper {
  35609.    position: absolute;
  35610.    top:0;
  35611.    right:0;
  35612.    z-index:10;
  35613.  }
  35614.    /* .triangle_left{
  35615.      position: relative;
  35616.    }
  35617.    .triangle_left::after{
  35618.      content:'';
  35619.      width: 0;
  35620.      height: 0;
  35621.      position: absolute;
  35622.      border-top: 13px solid transparent;
  35623.      border-bottom: 13px solid transparent;
  35624.      border-right: 0px solid transparent;
  35625.      border-left: 13px solid #CD2215;
  35626.      left:100%;
  35627.    } */
  35628.  .m-product-card__wrapper{
  35629.    display:flex;
  35630.    flex-direction:column;
  35631.    height:100%;
  35632.  }
  35633.      .m-product-card__info{
  35634.      display: flex;
  35635.      flex-direction: column;
  35636.    }
  35637.      .m-product-card__price{
  35638.      order:1;
  35639.    }
  35640.    .m-product-card__title{
  35641.      order:2;
  35642.    }
  35643.    .m-product-card__reviews{
  35644.      order:3;
  35645.    }
  35646.    .m-product-shipping__content{
  35647.      order:4;
  35648.    }
  35649.    .m-product-shipping__text{
  35650.      font-size:11px !important;
  35651.    }
  35652.  .m-product-card--style-2 .m-product-card__name {
  35653.    font-size: 14px;
  35654.  }
  35655.    @media screen and (max-width: 768px) {
  35656.      /* .triangle_left::after{
  35657.      border-top: 11px solid transparent;
  35658.      border-bottom: 11px solid transparent;
  35659.      border-left: 11px solid #CD2215;
  35660.    } */
  35661.  
  35662.    .m-product-card--style-2 .m-product-card__name {
  35663.      line-height: 1.3;
  35664.      -webkit-line-clamp: 2;
  35665.      font-size: 12px;
  35666.    }
  35667.    .m-product-card--style-2 .m-price-item--last {
  35668.      font-size: 18px;
  35669.    }
  35670.    .m-product-shipping__content {
  35671.      display: none;
  35672.    }
  35673.  }
  35674. </style>
  35675.  
  35676.  
  35677.                        </div>
  35678.                      
  35679.                        <div class="m:column">
  35680.                          
  35681.  
  35682.  
  35683. <div
  35684.  class="m-product-card m-product-card--style-2 m-product-card--view-grid m-product-card--onsale m-product-card--bordered m-gradient m-color-background-2"
  35685.  data-view="card"
  35686.  
  35687.  data-product-id="9483023122745"
  35688.  
  35689. >
  35690.  
  35691.  <div class="m-product-card__wrapper">
  35692.    <div class="m-product-card__media">
  35693.      <a
  35694.        class="m-product-card__link m:block m:w-full"
  35695.        href="/products/garvee-pets-dog-grooming-tub-pho-0xq8flgu"
  35696.        aria-label="GARVEE 50 Inch Stainless Steel Large Dog Grooming Tub Wash Station"
  35697.        style="position: relative;"
  35698.      >
  35699.          
  35700.          <responsive-image class="m-image" style="--aspect-ratio: 1/1;">
  35701.            <img src="//www.garvee.com/cdn/shop/files/1722331243463.jpg?v=1747881863&amp;width=1100" alt="GARVEE 50 Inch Stainless Steel Large Dog Grooming Tub Wash Station" srcset="//www.garvee.com/cdn/shop/files/1722331243463.jpg?v=1747881863&amp;width=165 165w, //www.garvee.com/cdn/shop/files/1722331243463.jpg?v=1747881863&amp;width=352 352w, //www.garvee.com/cdn/shop/files/1722331243463.jpg?v=1747881863&amp;width=832 832w" width="165, 360, 535, 750, 940, 1100" loading="lazy" class="m:w-full m:h-full" sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)">
  35702.          </responsive-image>
  35703.  
  35704.        <div class="badges-wrapper">
  35705.          
  35706.            
  35707.              
  35708.            
  35709.              
  35710.            
  35711.              
  35712.            
  35713.              
  35714.            
  35715.              
  35716.            
  35717.              
  35718.            
  35719.              
  35720.            
  35721.              
  35722.            
  35723.              
  35724.            
  35725.              
  35726.            
  35727.              
  35728.            
  35729.              
  35730.            
  35731.              
  35732.            
  35733.              
  35734.            
  35735.              
  35736.            
  35737.              
  35738.            
  35739.              
  35740.            
  35741.              
  35742.            
  35743.              
  35744.            
  35745.              
  35746.            
  35747.              
  35748.            
  35749.              
  35750.            
  35751.              
  35752.            
  35753.              
  35754.            
  35755.          
  35756.        </div>
  35757.      </a></div>
  35758.    <div class="m-product-card__content m:text-left" style="flex-grow: 1;">
  35759.      <a class="m-product-card__hidden-link m:hidden" href="/products/garvee-pets-dog-grooming-tub-pho-0xq8flgu" aria-label="GARVEE 50 Inch Stainless Steel Large Dog Grooming Tub Wash Station"></a>
  35760.      <div class="m-product-card__info">
  35761.        <div class="m-product-card__tags" style="display:flex;flex-direction:row;flex-wrap:nowrap;min-height:24px;">
  35762.          <div style="display:flex;flex-direction:column;justify-content:center;height:100%;"><span
  35763.                class="m-product-card__tag-name m-product-tag m-product-tag--soldout m-gradient m-color-background-3"
  35764.                
  35765.                  style="display:none;"
  35766.                
  35767.              >Sold Out</span><span
  35768.              class="m-product-card__tag-name m-product-tag m-product-tag--preorder"
  35769.              data-foxkit-preorder-badge="9483023122745"
  35770.            ></span>
  35771.            
  35772. <div style="display:flex;">
  35773.                <span class="m-product-card__tag-name m-product-tag m-gradient m-color-background-3 m-product-tag--discounted triangle_left">-32%
  35774. </span>
  35775.              </div>
  35776.            
  35777.          </div>
  35778.          
  35779.        </div><h3 class="m-product-card__title h6">
  35780.          <a
  35781.            href="/products/garvee-pets-dog-grooming-tub-pho-0xq8flgu"
  35782.            class="m-product-card__name"
  35783.            style="font-weight:normal;"
  35784.          >
  35785.            GARVEE 50 Inch Stainless Steel Large Dog Grooming Tub Wash Station
  35786.          </a>
  35787.        </h3>
  35788.  
  35789.        
  35790.          <div class="m-product-card__reviews">
  35791.            
  35792.  
  35793.    
  35794.    
  35795.      
  35796.  
  35797.  
  35798.  <div
  35799.    style=""
  35800.    class="jdgm-widget jdgm-preview-badge"
  35801.    data-id="9483023122745"
  35802.    data-template="manual-installation"
  35803.    data-auto-install="false"
  35804.  >
  35805.    <div style='display:none' class='jdgm-prev-badge' data-average-rating='4.80' data-number-of-reviews='15' data-number-of-questions='0'> <span class='jdgm-prev-badge__stars' data-score='4.80' tabindex='0' aria-label='4.80 stars' role='button'> <span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span><span class='jdgm-star jdgm--on'></span> </span> <span class='jdgm-prev-badge__text'> 15 reviews </span> </div>
  35806.  </div>
  35807.  
  35808.  
  35809. <style>
  35810.  @media screen and (max-width: 768px){
  35811.    .jdgm-qa-badge{
  35812.      display:none;
  35813.    }
  35814.    .jdgm-histogram{
  35815.    float:none;
  35816.  }
  35817.  }
  35818.  .jdgm-widget.jdgm-preview-badge{
  35819.    display:block !important;
  35820.  }
  35821.  .jdgm-sort-dropdown-arrow:before{
  35822.    position: relative;
  35823.    left: -8px;
  35824.  }
  35825. </style>
  35826.  
  35827.    
  35828.  
  35829.  
  35830.          </div>
  35831.        
  35832.  
  35833.        <div class="m-product-card__price">
  35834.          <link href="//www.garvee.com/cdn/shop/t/132/assets/component-price.css?v=19322649281533427721745490294" rel="stylesheet" type="text/css" media="all" />
  35835. <div
  35836.  class="
  35837.    m-price m:inline-flex m:items-center m:flex-wrap m-price--on-sale "
  35838.  data-sale-badge-type="percentage"
  35839. >
  35840.  <div class="m-price__regular">
  35841.    <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  35842.    <span class="m-price-item m-price-item--regular ">
  35843.      $1,213.99
  35844.    </span>
  35845.  </div>
  35846.  <div class="m-price__sale">
  35847.    <span class="m:visually-hidden m:visually-hidden--inline">Sale price</span>
  35848.    <span class="m-price-item m-price-item--sale m-price-item--last ">
  35849.      $1,213.99
  35850.    </span>
  35851.      <span class="m:visually-hidden m:visually-hidden--inline">Regular price</span>
  35852.      <s class="m-price-item m-price-item--regular">
  35853.        
  35854.          $1,789.99
  35855.        
  35856.      </s></div>
  35857.  <div class="m-price__unit-wrapper m:hidden">
  35858.    <span class="m:visually-hidden">Unit price</span>
  35859.    <div class="m-price__unit"><span data-unit-price></span><span aria-hidden="true">/</span><span data-unit-price-base-unit></span></div>
  35860.  </div>
  35861.  
  35862.  
  35863. </div>
  35864.  
  35865. <style>
  35866.  .m-product-tag.m-product-tag--discounted.isSpring {
  35867.    background: #EC7521;
  35868.    color: #E6EBB3;
  35869.  }
  35870. </style>
  35871.  
  35872.        </div>
  35873.  
  35874.        
  35875.  
  35876.        
  35877.  
  35878.        <div class="m-product-card__description">
  35879.          Professional-grade grooming solution for your furry friends GARVEE 50 Inch Stainless Steel Large Dog Grooming...
  35880.        </div></div>
  35881.      <div class="m-product-card__quick-add ">
  35882.    <product-form class="m-product-form m:w-full m:block" data-product-id="49451082514745"><form method="post" action="/cart/add" accept-charset="UTF-8" class="product-card-form" enctype="multipart/form-data" data-product-id="49451082514745" novalidate="novalidate"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input hidden name="id" required value="49451082514745" data-selected-variant=""><button
  35883.          class="m-add-to-cart m-spinner-button m:w-full m-button m-button--secondary"
  35884.          name="add"
  35885.          
  35886.          aria-label="Add to cart"
  35887.        >
  35888.          <span class="m-spinner-icon">
  35889.            <svg
  35890.              class="animate-spin m-svg-icon--medium"
  35891.              viewBox="0 0 24 24"
  35892.              fill="none"
  35893.            >
  35894.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  35895.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  35896.            </svg>
  35897.          </span>
  35898.          
  35899.          <span class="m-add-to-cart--text" data-atc-text>
  35900.            
  35901.              Add to cart
  35902.            
  35903.          </span>
  35904.        </button><input type="hidden" name="product-id" value="9483023122745" /><input type="hidden" name="section-id" value="template--24257712095545__product_tabs_n8Xacw" /></form></product-form>
  35905.  
  35906.    <!--
  35907.      
  35908.        <input hidden name="id" required value="49451082514745" data-selected-variant="">
  35909.        <button
  35910.          class="m-product-form m:w-full m-product-quickview-button m-spinner-button m-button m-button--secondary"
  35911.          data-product-url="/products/garvee-pets-dog-grooming-tub-pho-0xq8flgu"
  35912.          data-product-id="9483023122745"
  35913.          data-product-handle="garvee-pets-dog-grooming-tub-pho-0xq8flgu"
  35914.          aria-label="Add to cart"
  35915.        >
  35916.          <span class="m-spinner-icon">
  35917.            <svg
  35918.              class="animate-spin m-svg-icon--medium"
  35919.              xmlns="http://www.w3.org/2000/svg"
  35920.              viewBox="0 0 24 24"
  35921.              fill="none"
  35922.            >
  35923.              <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
  35924.              <path fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
  35925.            </svg>
  35926.          </span>
  35927.          
  35928.          <span class="m-add-to-cart--text">Add to cart</span>
  35929.        </button>
  35930.      
  35931.    -->
  35932.  
  35933. </div>
  35934. <style>
  35935.  @media screen and (max-width: 768px){
  35936.    .m-product-card__quick-add{
  35937.      /* display:none; */
  35938.      /* margin:5px auto 0 auto !important; */
  35939.      margin-top:5px !important;
  35940.    }
  35941.    .m-product-card__quick-add .m-add-to-cart{
  35942.      height:30px;
  35943.    }
  35944.    .m-product-card__quick-add .m-add-to-cart--text{
  35945.      font-size:14px !important;
  35946.    }
  35947.  }
  35948.  
  35949. </style>
  35950.  
  35951.    </div>
  35952.  </div>
  35953.  <input hidden name="id" required value="49451082514745" data-selected-variant="">
  35954. </div><script></script>
  35955. <style>
  35956.  .media_banner_collection {
  35957.    position: absolute;
  35958.    top:0;
  35959.    left:0;
  35960.    width: 20%;
  35961.    z-index:10;
  35962.  }
  35963.  .badges-wrapper {
  35964.    position: absolute;
  35965.    top:0;
  35966.    right:0;
  35967.    z-index:10;
  35968.  }
  35969.    /* .triangle_left{
  35970.      position: relative;
  35971.    }
  35972.    .triangle_left::after{
  35973.      content:'';
  35974.      width: 0;
  35975.      height: 0;
  35976.      position: absolute;
  35977.      border-top: 13px solid transparent;
  35978.      border-bottom: 13px solid transparent;
  35979.      border-right: 0px solid transparent;
  35980.      border-left: 13px solid #CD2215;
  35981.      left:100%;
  35982.    } */
  35983.  .m-product-card__wrapper{
  35984.    display:flex;
  35985.    flex-direction:column;
  35986.    height:100%;
  35987.  }
  35988.      .m-product-card__info{
  35989.      display: flex;
  35990.      flex-direction: column;
  35991.    }
  35992.      .m-product-card__price{
  35993.      order:1;
  35994.    }
  35995.    .m-product-card__title{
  35996.      order:2;
  35997.    }
  35998.    .m-product-card__reviews{
  35999.      order:3;
  36000.    }
  36001.    .m-product-shipping__content{
  36002.      order:4;
  36003.    }
  36004.    .m-product-shipping__text{
  36005.      font-size:11px !important;
  36006.    }
  36007.  .m-product-card--style-2 .m-product-card__name {
  36008.    font-size: 14px;
  36009.  }
  36010.    @media screen and (max-width: 768px) {
  36011.      /* .triangle_left::after{
  36012.      border-top: 11px solid transparent;
  36013.      border-bottom: 11px solid transparent;
  36014.      border-left: 11px solid #CD2215;
  36015.    } */
  36016.  
  36017.    .m-product-card--style-2 .m-product-card__name {
  36018.      line-height: 1.3;
  36019.      -webkit-line-clamp: 2;
  36020.      font-size: 12px;
  36021.    }
  36022.    .m-product-card--style-2 .m-price-item--last {
  36023.      font-size: 18px;
  36024.    }
  36025.    .m-product-shipping__content {
  36026.      display: none;
  36027.    }
  36028.  }
  36029. </style>
  36030.  
  36031.  
  36032.                        </div>
  36033.                      
  36034.                    
  36035. </div>
  36036.              </div>
  36037.              
  36038.            </div></template>
  36039.    </product-tabs>
  36040.  </div>
  36041. </section>
  36042.  
  36043. <style>
  36044.  .m-product-tabs__button-more {
  36045.    opacity: 0;
  36046.    visibility: hidden;
  36047.    display: none;
  36048.  }
  36049.  .m-product-tabs__button-more.m-tab-active {
  36050.    opacity: 1;
  36051.    visibility: visible;
  36052.    display: block;
  36053.  }
  36054.  .m-product-tabs__buttons-inner.m-product-tabs__buttons--style-3 {
  36055.    background: white;
  36056.  }
  36057.  .m-product-tabs__buttons--style-3 .m-product-tabs__button {
  36058.    border: none !important;
  36059.  }
  36060.  .m-product-tabs__buttons--style-3 > .m-product-tabs__button {
  36061.    position: relative;
  36062.  }
  36063.  .m-product-tabs__buttons--style-3 > .m-product-tabs__button:not(:first-child)::before {
  36064.    content: '';
  36065.    position: absolute;
  36066.    top: 50%;
  36067.    left: 0;
  36068.    height: 50%;
  36069.    border-right: 1px solid #b7b7b7;
  36070.    transform: translateY(-50%);
  36071.  }
  36072.  
  36073.  .m-product-tabs__buttons-inner.m-product-tabs__buttons--style-2 > {
  36074.    flex-wrap: nowrap;
  36075.    overflow-x: hidden;
  36076.  }
  36077.  .m-product-tabs__buttons--style-2 > .m-product-tabs__button {
  36078.    flex: 1;
  36079.    min-width: 0;
  36080.    box-sizing: border-box;
  36081.    border-radius: 8px;
  36082.  }
  36083.  .m-product-tabs__buttons--style-2 span {
  36084.    width: 100%;
  36085.    white-space: nowrap;
  36086.    overflow: hidden;
  36087.    text-overflow: ellipsis;
  36088.  }
  36089.  .mobile_slider {
  36090.    display: none;
  36091.  }
  36092.  .swiper-slide.mobile_slider_2 > * {
  36093.    height: 50%;
  36094.  }
  36095.  @media screen and (max-width: 768px) {
  36096.    .m-product-tabs__buttons--style-2 span {
  36097.      font-size: 14px;
  36098.    }
  36099.    .mobile_slider {
  36100.      display: block;
  36101.    }
  36102.    .desktop_slider {
  36103.      display: none;
  36104.    }
  36105.    .mobile-none {
  36106.      display: none;
  36107.    }
  36108.  }
  36109. </style>
  36110.  
  36111.  
  36112. </div><div id="shopify-section-template--24257712095545__custom_content_REt8rE" class="shopify-section"><link href="//www.garvee.com/cdn/shop/t/132/assets/section-custom-content.css?v=122805073732079906441740986011" rel="stylesheet" type="text/css" media="all" />
  36113.  
  36114.  
  36115.  
  36116. <div
  36117.  id="m-custom-template--24257712095545__custom_content_REt8rE"
  36118.  class="m-section m-custom-content  m-section--padding m-color-background-1 m-gradient"
  36119.  data-section-type="custom-content"
  36120.  data-section-id="template--24257712095545__custom_content_REt8rE"
  36121.  style="--column-gap: 30px; --column-gap-mobile: 16px; --row-gap: 40px; --row-gap-mobile: 24px;--section-padding-top: 30px; --section-padding-bottom: 30px;"
  36122. >
  36123.  <div class="m-page-width">
  36124.    <div class="m-section__wrapper">
  36125.  
  36126.  
  36127.  
  36128.  
  36129.  <div class="m-section__header m:text-left sm:m:text-left">
  36130.    
  36131.    
  36132.      <h2 class="m-section__heading h3">GARVEE: Elevating Home Improvement with Quality Tools</h2>
  36133.    
  36134.    
  36135.      <div class="m-section__description m:text-color-body "><p>GARVEE is a premier brand specializing in home improvement solutions, offering an extensive range of products tailored to meet your diverse needs. From power tools and home decor to automotive parts and commercial kitchen equipment, Garvee offers a comprehensive selection to meet your unique needs. Whether you're a DIY enthusiast or a professional contractor, our commitment to quality and innovation ensures that you'll find the perfect products to bring your vision to life. Explore our extensive range of automotive, restaurant & food service, and power tools, designed to simplify your tasks and elevate your results.</p></div>
  36136.    
  36137.  </div>
  36138.  
  36139.  
  36140.  
  36141.      
  36142.    </div>
  36143.  </div>
  36144. </div>
  36145.  
  36146.  
  36147. </div><div id="shopify-section-template--24257712095545__newsletter_VJcFpB" class="shopify-section"><link href="//www.garvee.com/cdn/shop/t/132/assets/section-newsletter.css?v=105997007003712207781740986010" rel="stylesheet" type="text/css" media="all" />
  36148.  
  36149.  
  36150. <section
  36151.  id="m-newsletter-template--24257712095545__newsletter_VJcFpB"
  36152.  class="m-section m-section--padding  m-newsletter-section m-gradient m-color-background-2 "
  36153.  style="
  36154.    --section-padding-top: 30px;
  36155.    --section-padding-bottom: 30px;
  36156.  "
  36157. >
  36158.  <div class="m-page-width">
  36159.    <div class="m-section__wrapper newsletter_horizontal_layout">
  36160.      
  36161.        <div class="m-section__header m:text-center">
  36162.          <h2 class="m-section__heading h3">
  36163.            Join the Garvee VIP Club
  36164.          </h2>
  36165.          
  36166.            <div class="sub_heading_wrapper">Get 15% OFF instantly & early access to exclusive deals & special discounts!</div>
  36167.          
  36168.        </div>
  36169.      
  36170.      <div
  36171.        class="m-section__content m:display-flex m:justify-center m:text-center"
  36172.        style="--form-width: 530px"
  36173.      >
  36174.        <link href="//www.garvee.com/cdn/shop/t/132/assets/component-newsletter.css?v=12058163243564030861740986011" rel="stylesheet" type="text/css" media="all" />
  36175.  
  36176.  
  36177.  
  36178.  
  36179.  
  36180. <div class="m-newsletter-form m-newsletter-form--standard ">
  36181.  <m-form-subscribe class="m-subscribe-form">
  36182.    <form method="post" action="/contact#ContactSubscribe-template--24257712095545__newsletter_VJcFpB" id="ContactSubscribe-template--24257712095545__newsletter_VJcFpB" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer" /><input type="hidden" name="utf8" value="✓" />
  36183.  
  36184.  
  36185.      
  36186.  
  36187.      <input type="hidden" name="contact[tags]" value="newsletter">
  36188.      <div class="m-newsletter-form__wrapper m:text-color-body">
  36189.        <input
  36190.          type="email"
  36191.          name="contact[email]"
  36192.          id="ContactSubscribe-template--24257712095545__newsletter_VJcFpB-email"
  36193.          value=""
  36194.          placeholder="Your Email Address"
  36195.          autocorrect="off"
  36196.          autocapitalize="off"
  36197.          autocomplete="email"
  36198.          
  36199.          class="form-field m-newsletter-form__input"
  36200.          required
  36201.        >
  36202.        <button
  36203.          type="submit"
  36204.          name="commit"
  36205.          class="m-newsletter-form__button m-newsletter-form__button--text m-button"
  36206.          aria-label="Sign  Up Now"
  36207.        >
  36208.          
  36209.            <span>Sign  Up Now</span>
  36210.          
  36211.        </button>
  36212.      </div>
  36213.      
  36214.      <div class="m-product-form-message"></div>
  36215.    </form>
  36216.  </m-form-subscribe>
  36217. </div>
  36218.  
  36219.      </div>
  36220.    </div>
  36221.  </div>
  36222. </section>
  36223.  
  36224. <style>
  36225.  .newsletter_horizontal_layout {
  36226.    display: flex;
  36227.    align-items: center;
  36228.    justify-content: center;
  36229.    gap: 70px;
  36230.  }
  36231.  .sub_heading_wrapper {
  36232.    font-size: 14px;
  36233.    color: #a4a4a4;
  36234.  }
  36235.   @media screen and (max-width: 1024px) {
  36236.     .newsletter_horizontal_layout {
  36237.      display: block;
  36238.      }
  36239.     .sub_heading_wrapper {
  36240.      font-size: 12px;
  36241.    }
  36242.   }
  36243. </style>
  36244.  
  36245.  
  36246. <style> #shopify-section-template--24257712095545__newsletter_VJcFpB .m-newsletter-form__button {color: white; background-color: #074174;} #shopify-section-template--24257712095545__newsletter_VJcFpB .form-field {border-radius: 6px;} #shopify-section-template--24257712095545__newsletter_VJcFpB .m-newsletter-form__button {border-radius: 0 6px 6px 0;} #shopify-section-template--24257712095545__newsletter_VJcFpB .m-section {background-color: #f9f9f9;} </style></div><section id="shopify-section-template--24257712095545__174842259399ffec42" class="shopify-section section"><link href="//www.garvee.com/cdn/shop/t/132/assets/Category_Breadcrumbs_custom.css?v=60798596313641002301740986011" rel="stylesheet" type="text/css" media="all" />
  36247. <style>
  36248.  .m-section-apps {
  36249.    display: none;
  36250.  }
  36251.  .m-section-apps:has(.shopify-app-block) {
  36252.    display: block;
  36253.  }
  36254. </style>
  36255.  
  36256.  
  36257.  
  36258. </section></div>
  36259.      
  36260.    </main><!-- BEGIN sections: footer-group -->
  36261. <div id="shopify-section-sections--24257709474105__footer" class="shopify-section shopify-section-group-footer-group"><link href="//www.garvee.com/cdn/shop/t/132/assets/section-footer.css?v=150951560767937775391740986011" rel="stylesheet" type="text/css" media="all" />
  36262. <m-footer class="m-footer m:block m-gradient m-color-scheme-8fa2889a-9953-44be-96d5-2cb5bf5970f2 m-footer--show-divider" data-section-type="footer" data-section-id="sections--24257709474105__footer">
  36263.  
  36264. <div class="m-footer-top">
  36265.    <div class="m-page-width">
  36266.      <div class="m-footer--accordion m:display-flex m:flex-wrap">
  36267.        
  36268.          
  36269.  
  36270.          <div class="m-footer__block m-footer__block--menu m-accordion--item open order-first m:w-full md:m:w-1/2" style="--block-width: 20%;--form-width: 310px;">
  36271.            <div
  36272.              class="m-footer-widget"
  36273.              
  36274.            >
  36275.              
  36276.                <h3 class="m-accordion--item-button m-footer-widget__title h6">
  36277.                  Garvee Info
  36278.                  <span class="m-accordion--item-icon md:m:hidden">
  36279.                    <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
  36280.                      <path d="M13.5306 6.53073L8.5306 11.5307C8.46092 11.6007 8.37813 11.6561 8.28696 11.694C8.1958 11.7318 8.09806 11.7513 7.99935 11.7513C7.90064 11.7513 7.8029 11.7318 7.71173 11.694C7.62057 11.6561 7.53778 11.6007 7.4681 11.5307L2.4681 6.53073C2.3272 6.38984 2.24805 6.19874 2.24805 5.99948C2.24805 5.80023 2.3272 5.60913 2.4681 5.46823C2.60899 5.32734 2.80009 5.24818 2.99935 5.24818C3.19861 5.24818 3.3897 5.32734 3.5306 5.46823L7.99997 9.93761L12.4693 5.46761C12.6102 5.32671 12.8013 5.24756 13.0006 5.24756C13.1999 5.24756 13.391 5.32671 13.5318 5.46761C13.6727 5.60851 13.7519 5.7996 13.7519 5.99886C13.7519 6.19812 13.6727 6.38921 13.5318 6.53011L13.5306 6.53073Z" fill="currentColor"/>
  36281.                    </svg>
  36282.                  </span>
  36283.                </h3>
  36284.              
  36285.              <div class="m-footer-widget__wrapper m-accordion--item-content">
  36286.                
  36287.  
  36288.                      <ul class="m-footer-widget__menu m-link-lists list-unstyled">
  36289.                        
  36290.                          <li class="m-link-lists__item m:block">
  36291.                            <a href="/pages/about-garvee" class="m-link">About Garvee</a>
  36292.                          </li>
  36293.                        
  36294.                          <li class="m-link-lists__item m:block">
  36295.                            <a href="/pages/outlets" class="m-link">Special Outlets</a>
  36296.                          </li>
  36297.                        
  36298.                          <li class="m-link-lists__item m:block">
  36299.                            <a href="https://www.garvee.com/pages/diy-ideas" class="m-link">DIY Projects & Ideas</a>
  36300.                          </li>
  36301.                        
  36302.                          <li class="m-link-lists__item m:block">
  36303.                            <a href="/pages/terms-of-service" class="m-link">Terms Of Service</a>
  36304.                          </li>
  36305.                        
  36306.                          <li class="m-link-lists__item m:block">
  36307.                            <a href="/policies/privacy-policy" class="m-link">Privacy Policy</a>
  36308.                          </li>
  36309.                        
  36310.                          <li class="m-link-lists__item m:block">
  36311.                            <a href="/pages/accessibility-statement" class="m-link">Accessibility</a>
  36312.                          </li>
  36313.                        
  36314.                      </ul>
  36315.                    
  36316.                  
  36317.              </div>
  36318.            </div>
  36319.          </div>
  36320.        
  36321.          
  36322.  
  36323.          <div class="m-footer__block m-footer__block--menu m-accordion--item m:w-full md:m:w-1/2" style="--block-width: 20%;--form-width: 310px;">
  36324.            <div
  36325.              class="m-footer-widget"
  36326.              
  36327.            >
  36328.              
  36329.                <h3 class="m-accordion--item-button m-footer-widget__title h6">
  36330.                  Customer Service
  36331.                  <span class="m-accordion--item-icon md:m:hidden">
  36332.                    <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
  36333.                      <path d="M13.5306 6.53073L8.5306 11.5307C8.46092 11.6007 8.37813 11.6561 8.28696 11.694C8.1958 11.7318 8.09806 11.7513 7.99935 11.7513C7.90064 11.7513 7.8029 11.7318 7.71173 11.694C7.62057 11.6561 7.53778 11.6007 7.4681 11.5307L2.4681 6.53073C2.3272 6.38984 2.24805 6.19874 2.24805 5.99948C2.24805 5.80023 2.3272 5.60913 2.4681 5.46823C2.60899 5.32734 2.80009 5.24818 2.99935 5.24818C3.19861 5.24818 3.3897 5.32734 3.5306 5.46823L7.99997 9.93761L12.4693 5.46761C12.6102 5.32671 12.8013 5.24756 13.0006 5.24756C13.1999 5.24756 13.391 5.32671 13.5318 5.46761C13.6727 5.60851 13.7519 5.7996 13.7519 5.99886C13.7519 6.19812 13.6727 6.38921 13.5318 6.53011L13.5306 6.53073Z" fill="currentColor"/>
  36334.                    </svg>
  36335.                  </span>
  36336.                </h3>
  36337.              
  36338.              <div class="m-footer-widget__wrapper m-accordion--item-content">
  36339.                
  36340.  
  36341.                      <ul class="m-footer-widget__menu m-link-lists list-unstyled">
  36342.                        
  36343.                          <li class="m-link-lists__item m:block">
  36344.                            <a href="https://www.garvee.com/pages/track-your-order" class="m-link">Track My Order</a>
  36345.                          </li>
  36346.                        
  36347.                          <li class="m-link-lists__item m:block">
  36348.                            <a href="/pages/payments-policy" class="m-link">Payments Policy</a>
  36349.                          </li>
  36350.                        
  36351.                          <li class="m-link-lists__item m:block">
  36352.                            <a href="https://www.garvee.com/pages/shipping-policy" class="m-link">Shipping Policy</a>
  36353.                          </li>
  36354.                        
  36355.                          <li class="m-link-lists__item m:block">
  36356.                            <a href="/pages/warranty-policy" class="m-link">Warranty Policy</a>
  36357.                          </li>
  36358.                        
  36359.                          <li class="m-link-lists__item m:block">
  36360.                            <a href="/policies/refund-policy" class="m-link">Refund & Return Policy</a>
  36361.                          </li>
  36362.                        
  36363.                          <li class="m-link-lists__item m:block">
  36364.                            <a href="/pages/carebox-package-protection" class="m-link">Worry-Free Purchase</a>
  36365.                          </li>
  36366.                        
  36367.                          <li class="m-link-lists__item m:block">
  36368.                            <a href="/pages/contact" class="m-link">Contact Us</a>
  36369.                          </li>
  36370.                        
  36371.                      </ul>
  36372.                    
  36373.                  
  36374.              </div>
  36375.            </div>
  36376.          </div>
  36377.        
  36378.          
  36379.  
  36380.          <div class="m-footer__block m-footer__block--menu m-accordion--item m:w-full md:m:w-1/2" style="--block-width: 20%;--form-width: 310px;">
  36381.            <div
  36382.              class="m-footer-widget"
  36383.              
  36384.            >
  36385.              
  36386.                <h3 class="m-accordion--item-button m-footer-widget__title h6">
  36387.                  Partner & Program
  36388.                  <span class="m-accordion--item-icon md:m:hidden">
  36389.                    <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
  36390.                      <path d="M13.5306 6.53073L8.5306 11.5307C8.46092 11.6007 8.37813 11.6561 8.28696 11.694C8.1958 11.7318 8.09806 11.7513 7.99935 11.7513C7.90064 11.7513 7.8029 11.7318 7.71173 11.694C7.62057 11.6561 7.53778 11.6007 7.4681 11.5307L2.4681 6.53073C2.3272 6.38984 2.24805 6.19874 2.24805 5.99948C2.24805 5.80023 2.3272 5.60913 2.4681 5.46823C2.60899 5.32734 2.80009 5.24818 2.99935 5.24818C3.19861 5.24818 3.3897 5.32734 3.5306 5.46823L7.99997 9.93761L12.4693 5.46761C12.6102 5.32671 12.8013 5.24756 13.0006 5.24756C13.1999 5.24756 13.391 5.32671 13.5318 5.46761C13.6727 5.60851 13.7519 5.7996 13.7519 5.99886C13.7519 6.19812 13.6727 6.38921 13.5318 6.53011L13.5306 6.53073Z" fill="currentColor"/>
  36391.                    </svg>
  36392.                  </span>
  36393.                </h3>
  36394.              
  36395.              <div class="m-footer-widget__wrapper m-accordion--item-content">
  36396.                
  36397.  
  36398.                      <ul class="m-footer-widget__menu m-link-lists list-unstyled">
  36399.                        
  36400.                          <li class="m-link-lists__item m:block">
  36401.                            <a href="/pages/affiliate" class="m-link">Affiliate Program</a>
  36402.                          </li>
  36403.                        
  36404.                          <li class="m-link-lists__item m:block">
  36405.                            <a href="/pages/influencer-program" class="m-link">Influencer Program</a>
  36406.                          </li>
  36407.                        
  36408.                          <li class="m-link-lists__item m:block">
  36409.                            <a href="/pages/share-and-win" class="m-link">Share and Win</a>
  36410.                          </li>
  36411.                        
  36412.                          <li class="m-link-lists__item m:block">
  36413.                            <a href="https://www.garvee.com/pages/mygarvees-rewards" class="m-link">Garvee Rewards</a>
  36414.                          </li>
  36415.                        
  36416.                          <li class="m-link-lists__item m:block">
  36417.                            <a href="/pages/extended-service-protection" class="m-link">Protection Plans</a>
  36418.                          </li>
  36419.                        
  36420.                          <li class="m-link-lists__item m:block">
  36421.                            <a href="https://www.garvee.com/pages/helpcenter" class="m-link">Help Center</a>
  36422.                          </li>
  36423.                        
  36424.                      </ul>
  36425.                    
  36426.                  
  36427.              </div>
  36428.            </div>
  36429.          </div>
  36430.        
  36431.          
  36432.  
  36433.          <div class="m-footer__block m-footer__block--newsletter m-accordion--item open m:w-full md:m:w-1/2" style="--block-width: 40%;--form-width: 100%;">
  36434.            <div
  36435.              class="m-footer-widget"
  36436.              
  36437.            >
  36438.              
  36439.                <h3 class="m-accordion--item-button m-footer-widget__title h6">
  36440.                  Newsletters
  36441.                  <span class="m-accordion--item-icon md:m:hidden">
  36442.                    <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
  36443.                      <path d="M13.5306 6.53073L8.5306 11.5307C8.46092 11.6007 8.37813 11.6561 8.28696 11.694C8.1958 11.7318 8.09806 11.7513 7.99935 11.7513C7.90064 11.7513 7.8029 11.7318 7.71173 11.694C7.62057 11.6561 7.53778 11.6007 7.4681 11.5307L2.4681 6.53073C2.3272 6.38984 2.24805 6.19874 2.24805 5.99948C2.24805 5.80023 2.3272 5.60913 2.4681 5.46823C2.60899 5.32734 2.80009 5.24818 2.99935 5.24818C3.19861 5.24818 3.3897 5.32734 3.5306 5.46823L7.99997 9.93761L12.4693 5.46761C12.6102 5.32671 12.8013 5.24756 13.0006 5.24756C13.1999 5.24756 13.391 5.32671 13.5318 5.46761C13.6727 5.60851 13.7519 5.7996 13.7519 5.99886C13.7519 6.19812 13.6727 6.38921 13.5318 6.53011L13.5306 6.53073Z" fill="currentColor"/>
  36444.                    </svg>
  36445.                  </span>
  36446.                </h3>
  36447.              
  36448.              <div class="m-footer-widget__wrapper m-accordion--item-content">
  36449.                
  36450.                    <link href="//www.garvee.com/cdn/shop/t/132/assets/component-newsletter.css?v=12058163243564030861740986011" rel="stylesheet" type="text/css" media="all" />
  36451.  
  36452.  
  36453.  
  36454.  
  36455.  
  36456. <div class="m-newsletter-form m-newsletter-form--standard ">
  36457.  <m-form-subscribe class="m-subscribe-form">
  36458.    <form method="post" action="/contact#ContactSubscribe-5199de82-03c0-4616-ae1d-2bc95b11bf53" id="ContactSubscribe-5199de82-03c0-4616-ae1d-2bc95b11bf53" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer" /><input type="hidden" name="utf8" value="✓" />
  36459.  
  36460.  
  36461.      
  36462.  
  36463.      <input type="hidden" name="contact[tags]" value="newsletter">
  36464.      <div class="m-newsletter-form__wrapper m:text-color-body">
  36465.        <input
  36466.          type="email"
  36467.          name="contact[email]"
  36468.          id="ContactSubscribe-5199de82-03c0-4616-ae1d-2bc95b11bf53-email"
  36469.          value=""
  36470.          placeholder="Enter your email here"
  36471.          autocorrect="off"
  36472.          autocapitalize="off"
  36473.          autocomplete="email"
  36474.          
  36475.          class="form-field m-newsletter-form__input"
  36476.          required
  36477.        >
  36478.        <button
  36479.          type="submit"
  36480.          name="commit"
  36481.          class="m-newsletter-form__button m-newsletter-form__button--icon m-button"
  36482.          aria-label="Subscribe"
  36483.        >
  36484.          
  36485.            <svg class="m-svg-icon" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
  36486.              <path d="M218.101 38.101L198.302 57.9c-4.686 4.686-4.686 12.284 0 16.971L353.432 230H12c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h341.432l-155.13 155.13c-4.686 4.686-4.686 12.284 0 16.971l19.799 19.799c4.686 4.686 12.284 4.686 16.971 0l209.414-209.414c4.686-4.686 4.686-12.284 0-16.971L235.071 38.101c-4.686-4.687-12.284-4.687-16.97 0z"/>
  36487.            </svg>
  36488.          
  36489.        </button>
  36490.      </div>
  36491.      
  36492.      <div class="m-product-form-message"></div>
  36493.    </form>
  36494.  </m-form-subscribe>
  36495. </div>
  36496.  
  36497.                    <p class="m-footer__newsletter-description">Sign up to receive discounts and deals</p>
  36498.                    
  36499.                      <div class="social-media-links ">
  36500.  
  36501.    <a
  36502.      target="_blank"
  36503.      class="social-media-links--item"
  36504.      href="https://www.pinterest.com/garvee_official/"
  36505.      rel="noreferrer"
  36506.      aria-label="Pinterest"
  36507.    >
  36508.      <svg class="m-svg-icon--medium" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
  36509.        <path fill="currentColor" d="M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"></path>
  36510.      </svg>
  36511.    </a>
  36512.  
  36513.  
  36514.    <a
  36515.      target="_blank"
  36516.      class="social-media-links--item"
  36517.      href="https://www.facebook.com/garveeglobal"
  36518.      rel="noreferrer"
  36519.      aria-label="Facebook"
  36520.    >
  36521.      <svg class="m-svg-icon--medium" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
  36522.        <path d="M14.6875 0.375C15.1562 0.375 15.5547 0.539062 15.8828 0.867188C16.2109 1.19531 16.375 1.59375 16.375 2.0625V14.4375C16.375 14.9062 16.2109 15.3047 15.8828 15.6328C15.5547 15.9609 15.1562 16.125 14.6875 16.125H9.87109V10.7812H11.9102L12.2969 8.25H9.87109V6.59766C9.87109 5.70703 10.3398 5.26172 11.2773 5.26172H12.3672V3.11719C11.7109 3 11.0664 2.94141 10.4336 2.94141C9.75391 2.94141 9.16797 3.07031 8.67578 3.32812C8.20703 3.58594 7.83203 3.97266 7.55078 4.48828C7.26953 5.00391 7.12891 5.61328 7.12891 6.31641V8.25H4.91406V10.7812H7.12891V16.125H2.3125C1.84375 16.125 1.44531 15.9609 1.11719 15.6328C0.789062 15.3047 0.625 14.9062 0.625 14.4375V2.0625C0.625 1.59375 0.789062 1.19531 1.11719 0.867188C1.44531 0.539062 1.84375 0.375 2.3125 0.375H14.6875Z" fill="currentColor"/>
  36523.      </svg>
  36524.    </a>
  36525.  
  36526.  
  36527.    <a
  36528.      target="_blank"
  36529.      class="social-media-links--item"
  36530.      href="https://www.instagram.com/garvee_official/"
  36531.      rel="noreferrer"
  36532.      aria-label="Instagram"
  36533.    >
  36534.      <svg class="m-svg-icon--medium" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
  36535.        <path d="M5.65234 5.40234C6.44922 4.60547 7.41016 4.20703 8.53516 4.20703C9.66016 4.20703 10.6094 4.60547 11.3828 5.40234C12.1797 6.17578 12.5781 7.125 12.5781 8.25C12.5781 9.375 12.1797 10.3359 11.3828 11.1328C10.6094 11.9062 9.66016 12.293 8.53516 12.293C7.41016 12.293 6.44922 11.9062 5.65234 11.1328C4.87891 10.3359 4.49219 9.375 4.49219 8.25C4.49219 7.125 4.87891 6.17578 5.65234 5.40234ZM6.67188 10.1133C7.1875 10.6289 7.80859 10.8867 8.53516 10.8867C9.26172 10.8867 9.88281 10.6289 10.3984 10.1133C10.9141 9.59766 11.1719 8.97656 11.1719 8.25C11.1719 7.52344 10.9141 6.90234 10.3984 6.38672C9.88281 5.87109 9.26172 5.61328 8.53516 5.61328C7.80859 5.61328 7.1875 5.87109 6.67188 6.38672C6.15625 6.90234 5.89844 7.52344 5.89844 8.25C5.89844 8.97656 6.15625 9.59766 6.67188 10.1133ZM13.3867 3.39844C13.5742 3.5625 13.668 3.77344 13.668 4.03125C13.668 4.28906 13.5742 4.51172 13.3867 4.69922C13.2227 4.88672 13.0117 4.98047 12.7539 4.98047C12.4961 4.98047 12.2734 4.88672 12.0859 4.69922C11.8984 4.51172 11.8047 4.28906 11.8047 4.03125C11.8047 3.77344 11.8984 3.5625 12.0859 3.39844C12.2734 3.21094 12.4961 3.11719 12.7539 3.11719C13.0117 3.11719 13.2227 3.21094 13.3867 3.39844ZM16.375 5.01562C16.3984 5.64844 16.4102 6.72656 16.4102 8.25C16.4102 9.77344 16.3984 10.8516 16.375 11.4844C16.3047 12.9141 15.8711 14.0273 15.0742 14.8242C14.3008 15.5977 13.1992 16.0078 11.7695 16.0547C11.1367 16.1016 10.0586 16.125 8.53516 16.125C7.01172 16.125 5.93359 16.1016 5.30078 16.0547C3.87109 15.9844 2.76953 15.5625 1.99609 14.7891C1.69141 14.5078 1.44531 14.1797 1.25781 13.8047C1.07031 13.4297 0.929688 13.0664 0.835938 12.7148C0.765625 12.3633 0.730469 11.9531 0.730469 11.4844C0.683594 10.8516 0.660156 9.77344 0.660156 8.25C0.660156 6.72656 0.683594 5.63672 0.730469 4.98047C0.800781 3.57422 1.22266 2.48438 1.99609 1.71094C2.76953 0.914062 3.87109 0.480469 5.30078 0.410156C5.93359 0.386719 7.01172 0.375 8.53516 0.375C10.0586 0.375 11.1367 0.386719 11.7695 0.410156C13.1992 0.480469 14.3008 0.914062 15.0742 1.71094C15.8711 2.48438 16.3047 3.58594 16.375 5.01562ZM14.6875 12.8906C14.7578 12.7031 14.8164 12.4688 14.8633 12.1875C14.9102 11.8828 14.9453 11.5312 14.9688 11.1328C14.9922 10.7109 15.0039 10.3711 15.0039 10.1133C15.0039 9.85547 15.0039 9.49219 15.0039 9.02344C15.0039 8.55469 15.0039 8.29688 15.0039 8.25C15.0039 8.17969 15.0039 7.92188 15.0039 7.47656C15.0039 7.00781 15.0039 6.64453 15.0039 6.38672C15.0039 6.12891 14.9922 5.80078 14.9688 5.40234C14.9453 4.98047 14.9102 4.62891 14.8633 4.34766C14.8164 4.04297 14.7578 3.79688 14.6875 3.60938C14.4062 2.88281 13.9023 2.37891 13.1758 2.09766C12.9883 2.02734 12.7422 1.96875 12.4375 1.92188C12.1562 1.875 11.8047 1.83984 11.3828 1.81641C10.9844 1.79297 10.6562 1.78125 10.3984 1.78125C10.1641 1.78125 9.80078 1.78125 9.30859 1.78125C8.83984 1.78125 8.58203 1.78125 8.53516 1.78125C8.48828 1.78125 8.23047 1.78125 7.76172 1.78125C7.29297 1.78125 6.92969 1.78125 6.67188 1.78125C6.41406 1.78125 6.07422 1.79297 5.65234 1.81641C5.25391 1.83984 4.90234 1.875 4.59766 1.92188C4.31641 1.96875 4.08203 2.02734 3.89453 2.09766C3.16797 2.37891 2.66406 2.88281 2.38281 3.60938C2.3125 3.79688 2.25391 4.04297 2.20703 4.34766C2.16016 4.62891 2.125 4.98047 2.10156 5.40234C2.07812 5.80078 2.06641 6.12891 2.06641 6.38672C2.06641 6.62109 2.06641 6.98438 2.06641 7.47656C2.06641 7.94531 2.06641 8.20312 2.06641 8.25C2.06641 8.34375 2.06641 8.56641 2.06641 8.91797C2.06641 9.24609 2.06641 9.52734 2.06641 9.76172C2.06641 9.97266 2.06641 10.2539 2.06641 10.6055C2.08984 10.957 2.11328 11.2617 2.13672 11.5195C2.16016 11.7539 2.19531 12 2.24219 12.2578C2.28906 12.5156 2.33594 12.7266 2.38281 12.8906C2.6875 13.6172 3.19141 14.1211 3.89453 14.4023C4.08203 14.4727 4.31641 14.5312 4.59766 14.5781C4.90234 14.625 5.25391 14.6602 5.65234 14.6836C6.07422 14.707 6.40234 14.7188 6.63672 14.7188C6.89453 14.7188 7.25781 14.7188 7.72656 14.7188C8.21875 14.7188 8.48828 14.7188 8.53516 14.7188C8.60547 14.7188 8.86328 14.7188 9.30859 14.7188C9.77734 14.7188 10.1406 14.7188 10.3984 14.7188C10.6562 14.7188 10.9844 14.707 11.3828 14.6836C11.8047 14.6602 12.1562 14.625 12.4375 14.5781C12.7422 14.5312 12.9883 14.4727 13.1758 14.4023C13.9023 14.0977 14.4062 13.5938 14.6875 12.8906Z" fill="currentColor"/>
  36536.      </svg>
  36537.    </a>
  36538.  
  36539.  
  36540.  
  36541.  
  36542.  
  36543.  
  36544.    <a
  36545.      target="_blank"
  36546.      class="social-media-links--item"
  36547.      href="https://www.youtube.com/channel/UCvt0kZI7qgY2leAZrwI9DKA"
  36548.      rel="noreferrer"
  36549.      aria-label="Youtube"
  36550.    >
  36551.      <svg class="m-svg-icon--medium" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512">
  36552.        <path fill="currentColor" d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/>
  36553.      </svg>
  36554.    </a>
  36555.  
  36556.  
  36557.  
  36558.    <a
  36559.      target="_blank"
  36560.      class="social-media-links--item"
  36561.      href="https://www.tiktok.com/@garvee_official"
  36562.      rel="noreferrer"
  36563.      aria-label="Tiktok"
  36564.    >
  36565.      <svg class="m-svg-icon--medium" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
  36566.        <path fill="currentColor" d="M448 209.91a210.06 210.06 0 01-122.77-39.25v178.72A162.55 162.55 0 11185 188.31v89.89a74.62 74.62 0 1052.23 71.18V0h88a121.18 121.18 0 001.86 22.17A122.18 122.18 0 00381 102.39a121.43 121.43 0 0067 20.14z"/>
  36567.      </svg>
  36568.    </a>
  36569.  
  36570.  
  36571.  
  36572.  
  36573.  
  36574. </div>
  36575.  
  36576.                    
  36577.                  
  36578.              </div>
  36579.            </div>
  36580.          </div>
  36581.        
  36582.      </div>
  36583.    </div>
  36584.  </div>
  36585.  
  36586.  
  36587.  
  36588. <div class="m-footer-bottom">
  36589.  <div class="m-page-width">
  36590.    <div class="m-footer-bottom__inner m:flex m:flex-col lg:m:flex-row m:justify-between m:items-center">
  36591.      
  36592.        <div class="m-footer-bottom__left m:w-full m:text-left">
  36593.          <span class="m-footer__copyright m:text-color-subtext">© 2025 GARVEE All rights reserved.</span></div>
  36594.      
  36595.      <div class="m-footer-bottom__right m:w-full m:flex-col lg:m:flex-row m:flex m:flex-wrap lg:m:items-center m:items-start lg:m:w-auto">
  36596.        
  36597.        
  36598.        
  36599.          
  36600.  <div style="width: 330px;">
  36601.    
  36602. <responsive-image class="m-image "   style="--aspect-ratio: 12.366666666666667;">
  36603.  
  36604.  <img
  36605.      srcset="//www.garvee.com/cdn/shop/files/payment6.png?v=1704879053&width=165 165w,//www.garvee.com/cdn/shop/files/payment6.png?v=1704879053&width=360 360w,//www.garvee.com/cdn/shop/files/payment6.png?v=1704879053&width=533 533w,//www.garvee.com/cdn/shop/files/payment6.png?v=1704879053&width=720 720w,//www.garvee.com/cdn/shop/files/payment6.png?v=1704879053&width=940 940w,//www.garvee.com/cdn/shop/files/payment6.png?v=1704879053&width=1066 1066w,//www.garvee.com/cdn/shop/files/payment6.png?v=1704879053&width=1500 1500w,//www.garvee.com/cdn/shop/files/payment6.png?v=1704879053&width=1780 1780w,//www.garvee.com/cdn/shop/files/payment6.png?v=1704879053&width=2000 2000w,//www.garvee.com/cdn/shop/files/payment6.png?v=1704879053 2226w"
  36606.      src="//www.garvee.com/cdn/shop/files/payment6.png?v=1704879053&width=360"
  36607.      sizes="(min-width: 1370px) 310px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
  36608.      alt=""
  36609.      loading="lazy"
  36610.      class=""
  36611.      width="2226"
  36612.      height="180"
  36613.      
  36614.  >
  36615.  
  36616.  <noscript>
  36617.    <img class="" loading="lazy" width="" height="" src="//www.garvee.com/cdn/shop/files/payment6.png?crop=center&height=2048&v=1704879053&width=2048" alt="">
  36618.  </noscript>
  36619. </responsive-image>
  36620.  
  36621.  </div>
  36622.  
  36623.  
  36624.        
  36625.      </div>
  36626.    </div>
  36627.  </div>
  36628. </div>
  36629.  
  36630. </m-footer>
  36631. <script defer src="//www.garvee.com/cdn/shop/t/132/assets/footer.js?v=30886428206868439611740986011"></script>
  36632.  
  36633. <style> #shopify-section-sections--24257709474105__footer .form-field {--color-foreground: var(--color-primary); --inputs-shadow-width: 0.1px;} #shopify-section-sections--24257709474105__footer .m-newsletter-form__button {width: 44px;} #shopify-section-sections--24257709474105__footer .m-accordion--item-button {font-weight: 600;} @media (min-width: 1024px) {#shopify-section-sections--24257709474105__footer .m-footer__block--newsletter {display: flex; justify-content: flex-end; } #shopify-section-sections--24257709474105__footer .m-footer__block--newsletter .m-footer-widget {width: 100%; max-width: 372px; }} </style></div><div id="shopify-section-sections--24257709474105__mobile-sticky-bar" class="shopify-section shopify-section-group-footer-group"><link href="//www.garvee.com/cdn/shop/t/132/assets/section-mobile-sticky-bar.css?v=170728753151732255541740986013" rel="stylesheet" type="text/css" media="all" />
  36634.  
  36635.  
  36636.  
  36637.  
  36638.  
  36639. </div><div id="shopify-section-sections--24257709474105__age-verifier-popup" class="shopify-section shopify-section-group-footer-group"><link rel="stylesheet" href="//www.garvee.com/cdn/shop/t/132/assets/section-age-verifier.css?v=36633627244035885431740986011" media="print" onload="this.media='all'">
  36640. <noscript><link href="//www.garvee.com/cdn/shop/t/132/assets/section-age-verifier.css?v=36633627244035885431740986011" rel="stylesheet" type="text/css" media="all" /></noscript><m-age-verifier-popup
  36641.  id="sections--24257709474105__age-verifier-popup"
  36642.  class="m-age-verifier"
  36643.  data-section-id="sections--24257709474105__age-verifier-popup"
  36644.  data-design-mode="false"
  36645.  data-enable="false"
  36646. >
  36647.  <div class="m-modal m-modal--wrapper">
  36648.    <div class="m-modal--content">
  36649.      <div class="m-modal--content-inner">
  36650.        
  36651.        <div class="m-age-verifier__wrapper m:text-center m-gradient m-color-background-1">
  36652.          <div class="m-age-verifier__content m-age-verifier__content-active" data-age-verifier-content><h2 class="m-age-verifier__title h4">Confirm your age</h2><div class="rte m-age-verifier__text"><p>Are you 18 years old or older?</p></div><div class="m-age-verifier__button-wrapper" >
  36653.                    
  36654.                      <button class="m-button m-button--secondary" data-age-verifier-decline-button>
  36655.                        No, I'm not
  36656.                      </button>
  36657.                    
  36658.                    
  36659.                      <button class="m-button m-button--primary" data-age-verifier-agree-button>
  36660.                        Yes, I am
  36661.                      </button>
  36662.                    
  36663.                  </div></div>
  36664.          <div class="m-age-verifier__decline-content m:hidden" data-age-verifier-decline-content>
  36665.            
  36666.              <h2 class="m-age-verifier__title h4">Come back when you're older</h2>
  36667.            
  36668.            
  36669.              <div class="rte m-age-verifier__text"><p>Sorry, the content of this store can't be seen by a younger audience. Come back when you're older.</p></div>
  36670.            
  36671.            
  36672.              <button class="m-button m-button--secondary h5" data-age-verifier-return-button>
  36673.                Oops, I entered incorrectly
  36674.              </button>
  36675.            
  36676.          </div>
  36677.        </div>
  36678.      </div>
  36679.    </div>
  36680.  </div>
  36681.  
  36682. </m-age-verifier-popup>
  36683. <script defer src="//www.garvee.com/cdn/shop/t/132/assets/age-verifier.js?v=39431601832593264181740986012"></script>
  36684.  
  36685.  
  36686. </div>
  36687. <!-- END sections: footer-group --><script>
  36688.  function __scrollToTop(element, callback) {
  36689.    if (!element) element = document.querySelector('#scroll-to-top-target')
  36690.    element.scrollIntoView({ behavior: 'smooth' })
  36691.    if (callback) callback();
  36692.  }
  36693.  
  36694.  function __initScrollTop() {
  36695.    const scrollTopButton = document.querySelector('#scroll-to-top-button')
  36696.    if (scrollTopButton) {
  36697.      scrollTopButton.addEventListener('click', () => __scrollToTop())
  36698.      window.addEventListener('scroll', function () {
  36699.        const method = window.scrollY > 100 ? 'add' : 'remove'
  36700.        scrollTopButton.classList[method]('is-show')
  36701.      })
  36702.    }
  36703.  }
  36704.  
  36705.  function __initTermsCheckbox() {
  36706.    addEventDelegate({
  36707.      selector: '.m-terms-conditons [name="agree_terms"]',
  36708.      event: 'change',
  36709.      handler: (e, target) => {
  36710.        const button = target.closest('.m-terms-conditons').nextElementSibling
  36711.        if (button && button.hasAttributes('data-terms-action')) {
  36712.          if (target.checked) {
  36713.            button.removeAttribute('disabled')
  36714.          } else {
  36715.            button.setAttribute('disabled', true)
  36716.          }
  36717.        }
  36718.      }
  36719.    })
  36720.  }
  36721.  window.addEventListener('load', function () {
  36722.    window.__sfWindowLoaded = true;
  36723.    // Init tooltip
  36724.    MinimogLibs.ToolTips = MinimogLibs.Tooltip('[data-tippy-content]', {
  36725.      animation: 'shift-toward',
  36726.      touch: false,
  36727.      onCreate(instance) {
  36728.        const theme = instance.reference.dataset.tippyTheme || 'm-color-background-1';
  36729.        if (
  36730.          instance.reference.classList.contains('m-wishlist-button') ||
  36731.          instance.reference.classList.contains('m-compare-button')
  36732.        ) {
  36733.          instance.setProps({
  36734.            hideOnClick: false,
  36735.          });
  36736.        }
  36737.        instance.setProps({
  36738.          theme: theme,
  36739.        });
  36740.      }
  36741.    });
  36742.  
  36743.    // Init scroll top
  36744.    __initScrollTop();
  36745.  
  36746.    // Init terms and conditions
  36747.    __initTermsCheckbox();
  36748.  });
  36749.  
  36750.  // Calc screen height ratio
  36751.  defineVH = function () {
  36752.    document.documentElement.style.setProperty('--vh', window.innerHeight * 0.01 + 'px');
  36753.  };
  36754.  window.addEventListener('resize', defineVH);
  36755.  window.addEventListener('orientationchange', defineVH);
  36756.  defineVH();
  36757.  
  36758.  // Page transition
  36759.  var fader = document.querySelector('.m-page-transition')
  36760.  function __fadeInPage() {
  36761.    if (!window.AnimationEvent || !fader) return;
  36762.  
  36763.    let ignore_beforeunload = false;
  36764.  
  36765.    document.querySelectorAll('a[href^=mailto], a[href^=tel]').forEach(link => {
  36766.      link.addEventListener( 'click', () => {
  36767.        ignore_beforeunload = true;
  36768.      });
  36769.    });
  36770.  
  36771.    // Page transition
  36772.    window.addEventListener('beforeunload', () => {
  36773.      if(!ignore_beforeunload) fader.classList.add('fade-in');
  36774.    });
  36775.    window.addEventListener('DOMContentLoaded', () => {
  36776.      document.documentElement.classList.remove('m\:overflow-hidden')
  36777.      document.body.classList.remove('m\:overflow-hidden')
  36778.  
  36779.      fader.classList.remove('fade-in')
  36780.      fader.classList.add('fade-out')
  36781.  
  36782.      document.dispatchEvent(new CustomEvent('page:loaded'));
  36783.    });
  36784.    window.addEventListener('pageshow', (event) => {
  36785.      // Removes unload class when returning to page via history
  36786.      if (event.persisted) {
  36787.        fader.classList.remove('fade-in')
  36788.        fader.classList.add('fade-out')
  36789.      }
  36790.    });
  36791.  }
  36792.  __fadeInPage()
  36793.  
  36794.  // Check if mega menu add class to body
  36795.  const header = document.querySelector(".m-header");
  36796.  const hasMega = header && header.hasAttribute("data-mega-menu");
  36797.  hasMega ? document.body.classList.add('m-has-mega-menu') : document.body.classList.remove('m-has-mega-menu');
  36798.  
  36799. </script>
  36800.  
  36801.    
  36802.  
  36803.  
  36804.    
  36805.  
  36806.    <script defer src="//www.garvee.com/cdn/shop/t/132/assets/product-quick-view.js?v=98241588406566495431740986012"></script>
  36807.    <script defer src="//www.garvee.com/cdn/shop/t/132/assets/wishlist.js?v=71640996752255031101740986012"></script>
  36808.    <script defer src="//www.garvee.com/cdn/shop/t/132/assets/compare-product.js?v=156446207804234663811740986012"></script><script defer src="//www.garvee.com/cdn/shop/t/132/assets/predictive-search.js?v=41449606108590713741747730333"></script>
  36809.  <style> .m-collection-toolbar__column-switcher > button {--border-radius: 0;} .m-menu-drawer__menu-item.m-list-menu__item > a,.m-menu-drawer__utility-links > a {font-weight: 600;} @media (max-width: 1360px) {.f-menu-mobile .f-menu__link--level-1 .f-menu__label, .m-menu-dropdown__menu-item > a {font-weight: 600; }} .m-product-card__tag-name {min-width: 66px; height: 22px; margin-bottom: 2px;} .jdgm-prev-badge {font-size: 14px;} .jdgm-star {font-size: 12px;} @media (max-width: 800px) {.m-main-product .m-product-trust-badge > div {max-width: 269px; } .jdgm-prev-badge {font-size: 12px; } .jdgm-star {font-size: 10px; } .m-product-card__tag-name {min-width: 70px; height: 22px; } #launcher {width: 40px !important; height: 40px !important; } #launcher + iframe {bottom: 99px !important; left: 44px !important; }} .jdgm-prev-badge .jdgm-qa-badge {display: none;} span.kl-private-reset-css-Xuajs1 {max-height: 40px !important; min-height: 0px !important;} .jdgm-prev-badge__text {border-bottom: 1px solid;} </style>
  36810. <div id="shopify-block-ARzdWTngvMFlVWUtIS__8776485610325655785" class="shopify-block shopify-app-block">
  36811.  <link href="//cdn.shopify.com/extensions/9ea74b7a-4ef4-43a6-bc1f-9072f8744119/hiko-social-login-151/assets/fonts.css" rel="stylesheet" type="text/css" media="all" />
  36812.  
  36813.  
  36814. <link href="//cdn.shopify.com/extensions/9ea74b7a-4ef4-43a6-bc1f-9072f8744119/hiko-social-login-151/assets/styles.css" rel="stylesheet" type="text/css" media="all" />
  36815. <script src="https://cdn.shopify.com/extensions/9ea74b7a-4ef4-43a6-bc1f-9072f8744119/hiko-social-login-151/assets/app.js?" async defer></script>
  36816.  
  36817. </div><div id="shopify-block-AcThYNTRkUW1SdzMyZ__6610233760104865948" class="shopify-block shopify-app-block"><script>
  36818.  window.pushowlSubdomain = "mygarvee.myshopify.com".split(".")[0]
  36819.  window.isPushowlThemeAppExtentionEnabled = true
  36820.  window.pushowlGUID = "d2fdac27-e004-4bf2-a060-b772378f25b8"
  36821.  window.pushowlEnvironment = "production"
  36822. </script>
  36823.  
  36824.  
  36825.  
  36826.  
  36827. </div><div id="shopify-block-AR2FMSW9nNERWcU9kV__6174324309569838175" class="shopify-block shopify-app-block">
  36828.  
  36829.  
  36830. <div class="smile-shopify-init"
  36831.  data-channel-key="channel_l9390klDQXo0fFTWgZ8V6de7"
  36832.  
  36833. ></div>
  36834.  
  36835.  
  36836. </div><div id="shopify-block-AQTlTWDBDUEVwNWNoZ__10641372206048101839" class="shopify-block shopify-app-block">
  36837. <script>
  36838.  window.rebuyAppEmbedEnabled = true;
  36839. </script>
  36840.  
  36841.  
  36842. <script async src="https://cdn.rebuyengine.com/onsite/js/rebuy.js?shop=mygarvee.myshopify.com"></script>
  36843.  
  36844.  
  36845. </div><div id="shopify-block-AdFEvYlk1MUxES3MrM__15623156175785154009" class="shopify-block shopify-app-block">
  36846. <!-- QIKIFY NAVIGATOR START --> <script id="qikify-navigator"> 'use strict'; var shopifyCurrencyFormat = "${{amount}}"; var shopifyLinkLists = [{ id: "main-menu", title: "Main menu", items: ["/collections/automotive","/collections/business-industrial","/collections/appliances","/blogs/news",], },{ id: "footer", title: "Footer menu", items: ["/search",], },{ id: "515619520825-child-a14c379c3b2ca592f775b11c6f8eff74-legacy-automotive", title: "Automotive", items: ["/collections/car-parts-accessories","/collections/motorcycle-bicycle-accessories",], },{ id: "518875283769-child-6640870958206fa701d56ef594bf7ca3-legacy-car-parts-accessories", title: "Car Parts & Accessories", items: ["/collections/replacement-parts","/collections/tools-equipment","/collections/lifts-hoists-jacks","/collections/interior-accessories","/collections/tires-wheels",], },{ id: "515619488057-child-3ed282282b9792fd9e9b17b31f608a4b-legacy-business-industrial", title: "Business & Industrial", items: ["/collections/power-tools","/collections/hand-tools","/collections/material-handling","/collections/test-measure-inspect",], },{ id: "518876463417-child-8775665c88b5a0a516ee2ba126637616-legacy-power-tools", title: "Power Tools", items: ["/collections/cutting-tools","/collections/drills-drivers","/collections/rotary-tools","/collections/professional-power-tools","/collections/heat-press-machines","/collections/welding-soldering","/collections/power-tool-parts-accessories",], },{ id: "518876561721-child-110f1539cd5e6a55dd6ebadfb11828ce-legacy-hand-tools", title: "Hand Tools", items: ["/collections/wrenches","/collections/riveters","/collections/professional-tools","/collections/clamps-vises",], },{ id: "518876660025-child-00dfc6a51c04c38c969acbb6ebeaf9e7-legacy-material-handling", title: "Material Handling", items: ["/collections/pallet-moving-equipment","/collections/heavy-equipment-accessories",], },{ id: "garvee-info", title: "GARVEE INFO", items: ["/pages/about-garvee","/pages/outlets","https://www.garvee.com/pages/diy-ideas","/pages/terms-of-service","/policies/privacy-policy","/pages/accessibility-statement",], },{ id: "customer-service", title: "CUSTOMER SERVICE", items: ["https://www.garvee.com/pages/track-your-order","/pages/payments-policy","https://www.garvee.com/pages/shipping-policy","/pages/warranty-policy","/policies/refund-policy","/pages/carebox-package-protection","/pages/contact",], },{ id: "garvee-community", title: "GARVEE COMMUNITY", items: ["https://www.facebook.com/garveestore","https://www.instagram.com/garvee_official/","https://twitter.com/garveestore","https://www.pinterest.com/garvee_official/","https://www.youtube.com/channel/UCvt0kZI7qgY2leAZrwI9DKA","https://www.tiktok.com/@garvee.com","https://vimeo.com/garvee","https://garveestore.blogspot.com/","https://www.reddit.com/user/garveestore","https://www.tumblr.com/garvee",], },{ id: "520804303161-child-a6d432a54adccb2119d9530c5375cafe-legacy-motorcycle-bicycle-accessories", title: "Motorcycle & Bicycle Accessories", items: ["/collections/bike-pumps-tire",], },{ id: "520804729145-child-a506c11ae9ade23661ed3266affdfbb7-legacy-test-measure-inspect", title: "Test, Measure & Inspect", items: ["/collections/laser-rangefinders","/collections/nature-element-measurements",], },{ id: "525651935545-child-26ff7f5175a6b4b70b621e74f05d4c59-legacy-appliances", title: "Appliances", items: ["/collections/kitchen-appliances","/collections/home-appliances","/collections/beauty-health-care",], },{ id: "525652001081-child-97bdd06cd1617a04a1196ef43d948242-legacy-kitchen-appliances", title: "Kitchen Appliances", items: ["/collections/stand-mixer","/collections/popcorn-maker","/collections/air-fryers",], },{ id: "525659898169-child-8eea3bab14606f5631b7dfac29b72a07-legacy-home-appliances", title: "Home Appliances", items: ["/collections/air-purifiers","/collections/robotic-vacuums","/collections/household-fans","/collections/hydroponics-growing-system",], },{ id: "525700333881-child-a84125de8f5ad82f7891720c4238cd61-legacy-beauty-health-care", title: "Beauty & Health Care", items: ["/collections/hair-dryers","/collections/nail-tools","/collections/ear-care-products","/collections/oral-care-products","/collections/wearable-technology",], },{ id: "new-main-munu", title: "New main munu", items: ["/collections/all-products","/collections/restaurant-food-service","/collections/automotive","/collections/power-hand-tools","/collections/material-handling","/collections/agriculture-forestry-equipment","/collections/sports-recreation","/collections/air-conditioners-accessories","/collections/appliances","/collections/lawn-garden","/collections/building-construction","/collections/electrical","/collections/rugs","/collections/lab","/collections/plumbing","/collections/pumps","/collections/security","/collections/arts-crafts-sewing","/collections/ride-ons","/collections/toys-games","/collections/hydraulics","/collections/machining","/collections/hardware","/pages/contact","/collections/home-furniture",], },{ id: "526938112313-child-3e7c9799824823b1f304b981319f96e1-legacy-automotive", title: "Automotive", items: ["/collections/automotive-accessories","/collections/tire-wheel-tools","/collections/exterior-accessories","/collections/replacement-parts","/collections/steering-suspension-tool","/collections/fuel-transfer-lubrication","/collections/cargo-management","/collections/rv-parts-accessories","/collections/lifts-hoists-jacks","/collections/boat-parts-accessories","/collections/hydraulic-rams-tools","/collections/transmission-drive-train","/collections/repair-tools","/collections/interior-accessories",], },{ id: "526941847865-child-1f973c2cc95b8eb395a5132d630117db-legacy-appliances", title: "Appliances", items: ["/collections/air-treatment","/collections/fireplaces-stoves","/collections/small-appliances","/collections/heater-accessories",], },{ id: "526935785785-child-94fe573fc1f7e4ebb452af82e52545a7-legacy-home", title: "Home", items: ["/collections","/pages/about-us","/pages/share-earn-program",], },{ id: "531989692729-child-6d056d03de2cb7a3820f12d0cd5cc729-legacy-featured-promotion", title: "Featured Promotion", items: ["/collections/new","/collections/flash-deals","/collections/best-sellers","/collections/products-full-in-stock",], },{ id: "561269113145-child-e57e1edede1d72831af70765225251b9-legacy-power-hand-tools", title: "Power & Hand Tools", items: ["/collections/drills-drivers","/collections/grinding-sanding-finishing-tools","/collections/power-tool-parts-accessories","/collections/demolition-tools-equipment","/collections/hand-tools","/collections/demolition-tools-equipment","/collections/wrenches","/collections/power-tools","/collections/saws","/collections/grinding-sanding-finishing-tools","/collections/inspection-retrieving-tools","/collections/punching-tools","/collections/chain-wire-rope","/collections/filling-sealing-machine","/collections/workbenches-accessories",], },{ id: "561269145913-child-ad89d945b1d0cb19cc7f5ecd7622ada8-legacy-grinding-sanding-finishing-tools", title: "Grinding & Sanding & Finishing Tools", items: ["/collections/random-orbital-sander",], },{ id: "561269244217-child-41a66be9d22f5937ffd10879d4a9f65d-legacy-drills-drivers", title: "Drills & Drivers", items: ["/collections/drill-press","/collections/magnetic-drill",], },{ id: "561269309753-child-20213cbb0df2abd667e139e635766f6b-legacy-demolition-tools-equipment", title: "Demolition Tools & Equipment", items: ["/collections/jack-hammer",], },{ id: "561269375289-child-e450ee9d6ec58e0c5150bc988f8ccecb-legacy-power-tool-parts-accessories", title: "Power Tool Parts & Accessories", items: ["/collections/rotary-tool-kit","/collections/mobile-base","/collections/power-tool-accessories",], },{ id: "561269506361-child-a96c35988c628b91288463de01c08916-legacy-material-handling", title: "Material Handling", items: ["/collections/pallet-moving-equipment-accessories","/collections/heavy-equipment-accessories","/collections/hoists-winches-rigging","/collections/chain-wire-rope","/collections/ramps-ladders","/collections/carts-trucks","/collections/dollies-movers","/collections/filling-sealing-machine","/collections/shelving-storage",], },{ id: "561269539129-child-11319fe39704e7c67f54ffc7d5522f6f-legacy-pallet-moving-equipment-accessories", title: "Pallet Moving Equipment & Accessories", items: ["/collections/forklift-hook","/collections/forklift-safety-cage","/collections/pallet-forks-extensions","/collections/forklift-mobile-crane",], },{ id: "561269637433-child-969cd56afa6460a51d5c5e236834168f-legacy-heavy-equipment-accessories", title: "Heavy Equipment Accessories", items: ["/collections/quick-tach-mount-plate",], },{ id: "561269702969-child-16c10d8d2031f8ed522195b873dd8622-legacy-hoists-winches-rigging", title: "Hoists & Winches & Rigging", items: ["/collections/electric-wire-rope-hoist","/collections/manual-chain-hoist","/collections/davit-crane","/collections/load-binders","/collections/push-beam-trolley","/collections/drywall-lift","/collections/magnetic-lifter",], },{ id: "561269768505-child-e779c9f69300ace2426bfa9bb4193550-legacy-chain-wire-rope", title: "Chain & Wire & Rope", items: ["/collections/stainless-steel-cable",], },{ id: "561339629881-child-93dd4075089a032e0cc9085f6ab8d4e8-legacy-restaurant-food-service", title: "Restaurant & Food Service", items: ["/collections/restaurant-furniture","/collections/cooking-equipment","/collections/beverage-equipment","/collections/food-holding-warming-equipment","/collections/food-preparation-equipment-1","/collections/storage-organization-1","/collections/food-display-merchandising-equipment","/collections/restaurant-faucets-plumbing-sinks",], },{ id: "561650958649-child-b5f697745619ed57514b66a00e687746-legacy-share-earn", title: "Share & Earn", items: ["/pages/share-earn-program","/pages/share-earn-program","https://www.garvee.com/pages/garvee-community",], },{ id: "561652793657-child-a48814e02fb4270af33c11639de1b078-legacy-garvee-guides", title: "GARVEE Guides", items: ["/pages/how-to-make-an-order-on-garvee","/pages/garvee-brand-story","/pages/shipping-payment","/pages/warranty-policy",], },{ id: "569740067129-child-676d63e4b9089cf5f2c38b73adfc9590-legacy-ramps-ladders", title: "Ramps & Ladders", items: ["/collections/rv-stairs","/collections/curb-ramp","/collections/wheelchair-ramps","/collections/loading-ramps","/collections/aluminum-dock-ladder","/collections/folding-loft-ladder",], },{ id: "gmc", title: "gmc", items: ["/collections/diesel-heater","/collections/fuel-caddy","/collections/floor-jacks","/collections/new-arrivals-2024","/pages/contact",], },{ id: "home", title: "Home", items: ["https://www.garvee.com/","/collections/sales","/blogs/news",], },{ id: "garvee-menu", title: "garvee menu", items: ["/collections/flash-deals","/collections/best-sellers","/collections/automotive","/collections/appliances","/collections/power-hand-tools","/collections/sports-recreation","/collections/material-handling","/collections/lawn-garden","/collections/agriculture-forestry-equipment","/collections/restaurant-food-service","/collections/building-construction","/collections/arts-crafts-sewing","/collections/electrical","/collections/pumps","/collections/security","/collections/plumbing","/collections/lab","https://www.garvee.com/blogs/news/guides-ideas",], },{ id: "585299624249-child-d17c389600ea0ffedeeff3e222a8f8bf-legacy-restaurant-food-service", title: "Restaurant & Food Service", items: ["/collections/refrigeration-ice-equipment","/collections/beverage-equipment","/collections/cooking-equipment","/collections/food-holding-warming-equipment","/collections/food-preparation-equipment","/collections/restaurant-furniture","/collections/storage-organization",], },{ id: "585299657017-child-238ee1152a8eced9e5ef3a2ec7deedf4-legacy-beverage-equipment", title: "Beverage Equipment", items: ["/collections/coffee-urn","/collections/refrigerated-beverage-dispensers","https://www.garvee.com/collections/alcohol-distiller",], },{ id: "585299755321-child-72a6a6cd1da32e6bf28abc486a863e91-legacy-cooking-equipment", title: "Cooking Equipment", items: ["/collections/air-fryers","/collections/commercial-outdoor-grills","/collections/commercial-pizza-oven",], },{ id: "585299886393-child-c04663b70daab7b51978b01342b2a54e-legacy-food-holding-warming-equipment", title: "Food Holding & Warming Equipment", items: ["/collections/chafing-dishes","/collections/cotton-candy-machines","/collections/popcorn-poppers","/collections/stock-pots",], },{ id: "585300050233-child-82eb3f6d10078a5e0085a3fdc90224bc-legacy-food-preparation-equipment", title: "Food Preparation Equipment", items: ["/collections/commercial-mixers","/collections/faucets-replacement-parts","/collections/kitchen-fixtures",], },{ id: "585300181305-child-0c619a7df14608991b8a5cf5c9b4950e-legacy-refrigeration-ice-equipment", title: "Refrigeration & Ice Equipment", items: ["/collections/ice-machines","/collections/refrigerators","/collections/beverage-refrigerator","/collections/soft-serve-ice-cream-machines","https://www.garvee.com/collections/bar-cabinet",], },{ id: "585300345145-child-29b47a099ac35a088d476d0f901a9d28-legacy-restaurant-furniture", title: "Restaurant Furniture", items: ["/collections/stainless-steel-work-table","/collections/utility-cart","/collections/activity-tables","/collections/bar-cabinet","/collections/bar-table-set","/collections/outdoor-kitchen-door","/collections/outdoor-kitchen-drawer",], },{ id: "585300607289-child-3a7554b017db0614e873af2253a65760-legacy-storage-organization", title: "Storage & Organization", items: ["/collections/drawers-cabinet-organizers","/collections/pull-out-trash-cans","https://www.garvee.com/collections/wall-shelf",], },{ id: "585304047929-child-33d2bf0695d6e8c19b88812bb402dc4b-legacy-automotive", title: "Automotive", items: ["/collections/fuel-transfer-lubrication","/collections/tire-wheel-tools","/collections/cargo-management","/collections/automotive-accessories","/collections/jacks-jack-stands","/collections/steering-suspension-tool",], },{ id: "585304146233-child-b9281efb1f9d629ee0dce14882d860b5-legacy-jacks-jack-stands", title: "Jacks & Jack Stands", items: ["/collections/pneumatic-car-jack",], },{ id: "585304211769-child-359b83c829651bec5ea58909e91a629a-legacy-steering-suspension-tool", title: "Steering & Suspension Tool", items: ["/collections/body-suspension-lift-kits","/collections/replacement-parts","/collections/shock-absorber",], },{ id: "585304342841-child-908acbd8fbbe7724ddb360adbac50687-legacy-fuel-transfer-lubrication", title: "Fuel Transfer & Lubrication", items: ["/collections/fuel-caddy","/collections/hydraulic-oil-tank","/collections/oil-drain-pan","/collections/portable-fuel-tank",], },{ id: "585304506681-child-5dd1fb4d37a8f2e172e6e3a22c2e9a2c-legacy-automotive-accessories", title: "Automotive Accessories", items: ["/collections/air-tools-accessories","/collections/brake-tools","/collections/car-side-awning","/collections/engines-tools-components","/collections/headlight-assembly","/collections/ignition-coils","/collections/interior-accessories","/collections/truck-bed-cargo-unloader","/collections/truck-tool-boxes",], },{ id: "585304834361-child-adee53c9e9f2d6fb17356d95359072bd-legacy-cargo-management", title: "Cargo Management", items: ["/collections/ladder-racks","/collections/roof-rack-cross-bars","/collections/trailer-hitch",], },{ id: "585304965433-child-43ea0a3c9d17f7671e904da181a1e59f-legacy-tire-wheel-tools", title: "Tire & Wheel Tools", items: ["/collections/tires-wheels","/collections/boat-steering-kit","/collections/tire-repair-tools",], },{ id: "585305784633-child-bc3fc794c1b1165c29431a66601fd326-legacy-power-hand-tools", title: "Power & Hand Tools", items: ["#","#",], },{ id: "585308635449-child-1596ff71ac3087bf008648d3df2ef6ea-legacy-material-handling", title: "Material Handling", items: ["#","#",], },{ id: "garvee-memu-sm", title: "garvee-memu-sm", items: ["/","/collections/new","/collections/flash-deals","https://www.garvee.com/blogs/news/guides-ideas",], },{ id: "585678815545-child-397b0f1d48f726eb92be1d8333c577ca-legacy-categories", title: "Categories", items: ["/collections/restaurant-food-service","/collections/automotive","/collections/power-hand-tools","/collections/agriculture-garden","/collections/material-handling","/collections/office-products",], },{ id: "585678848313-child-61c3e930b74b77de70534803dece2477-legacy-restaurant-food-service", title: "Restaurant & Food Service", items: ["/collections/refrigeration-ice-equipment","/collections/beverage-equipment","/collections/food-preparation-equipment","/collections/cooking-equipment","/collections/food-holding-warming-equipment","/collections/food-display-merchandising-equipment","/collections/restaurant-furniture","/collections/storage-organization","/collections/restaurant-faucets-plumbing-sinks",], },{ id: "585679110457-child-a61b242ae1263aede1a93609941efe76-legacy-automotive", title: "Automotive", items: ["/collections/jacks-jack-stands","/collections/tire-wheel-tools","/collections/fuel-transfer-lubrication","/collections/automotive-accessories","/collections/cargo-management","/collections/steering-suspension-tool",], },{ id: "585679733049-child-eaa38ad1df992574294fd8dbda93877e-legacy-power-hand-tools", title: "Power & Hand Tools", items: ["/collections/power-tools","/collections/hand-tools","/collections/plumbing","/collections/electrical",], },{ id: "585679896889-child-17a21f2ea5806b391f5707adcb3a36f7-legacy-agriculture-garden", title: "Agriculture & Garden", items: ["/collections/lawn-garden","/collections/agriculture-forestry-equipment",], },{ id: "585679995193-child-3d40f0a6723dacdcd21d6e795aae749c-legacy-material-handling", title: "Material Handling", items: ["/collections/lifting-equipment","/collections/moving-equipment",], },{ id: "585680093497-child-f410bbb5c0ff66432657e5dccab6ab91-legacy-office-products", title: "Office Products", items: ["/collections/arts-crafts-sewing","/collections/heating-cooling","/collections/sports-recreation",], },{ id: "deal-meau", title: "Buy More", items: ["/collections/buy-more/Price-higher-than-$500",], },{ id: "new-price-drop", title: "New Price Drop", items: [], },{ id: "work-with-garvee", title: "Partner & Program", items: ["/pages/affiliate","/pages/influencer-program","/pages/share-and-win","https://www.garvee.com/pages/mygarvees-rewards","/pages/extended-service-protection","https://www.garvee.com/pages/helpcenter",], },{ id: "diy-projects-ideas", title: "DIY Projects & Ideas", items: ["/blogs/buying-guides","/blogs/how-tos","/blogs/trending-now",], },{ id: "mobile-menu-1", title: "Mobile Menu 1", items: ["https://www.17track.net/en","https://www.garvee.com/pages/shipping-policy","https://support.garvee.com/","/pages/share-and-win","/pages/contact","/pages/extended-service-protection",], },{ id: "604139356473-child-f97f028cb89492ca4d0d3e7ae9063d39-legacy-agriculture-forestry-equipment", title: "Agriculture & Forestry Equipment", items: ["/collections/equipment-parts-accessories","/collections/livestock-poultry-supplies",], },{ id: "604139389241-child-519a2e577d574215cb0e9d7bb8dd85df-legacy-equipment-parts-accessories", title: "Equipment Parts & Accessories", items: ["/collections/log-tongs","/collections/pallet-forks","/collections/driveway-drag","/collections/trailer-hitch","/collections/hay-spear","/collections/cant-hook","/collections/rakes","/collections/scarifier-shank","/collections/plow-scarifier","/collections/tractor-bucket-protector","/collections/disc-harrows","/collections/chainsaw-mill","/collections/drag-chain-harrow","/collections/lawn-mower-lifts","/collections/beekeeping-supplies",], },{ id: "604139520313-child-b5de78962271f2cd8f30a232bfecb835-legacy-livestock-poultry-supplies", title: "Livestock & Poultry Supplies", items: ["/collections/automatic-poultry-feeder","/collections/chicken-coop","/collections/egg-laying-box","/collections/electric-milking-machine","/collections/chicken-plucker","/collections/beekeeping-supplies",], },{ id: "604141683001-child-7affdd9f4b61ba553d2f508a14c657bb-legacy-sports-outdoors", title: "Sports & Outdoors", items: ["/collections/outdoor-recreation","/collections/sports","/collections/exercise-fitness","/collections/action-aids",], },{ id: "604142076217-child-d3b1982af7a49a432cb41bae32d8ce5b-legacy-exercise-fitness", title: "Exercise & Fitness", items: ["/collections/treadmill","/collections/fitness-technology","/collections/cardio-training","/collections/strength-training-equipment","/collections/yoga-equipment",], },{ id: "604142371129-child-5c17ebda8d76c99ff863f3c23e57ada9-legacy-lawn-garden", title: "Lawn & Garden", items: ["/collections/outdoorshade","/collections/garden-supplies","/collections/outdoor-patio-furniture","/collections/outdoor-decoration","/collections/fire-pits","/collections/pools-spas","/collections/outdoor-cleaning",], },{ id: "604147646777-child-50fd3632ff4ee02b536121e7260f1562-legacy-appliances", title: "Appliances", items: ["#","#",], },{ id: "604147679545-child-e115cafa88581d76f84eb92aadfc7e85-legacy-shop-by-categories", title: "Shop by Categories", items: ["/collections/heating-cooling","/collections/small-appliances",], },{ id: "604147777849-child-f4beaede55e6121eb44737debaecaef7-legacy-more-way-to-shop", title: "More Way to Shop", items: ["/collections/air-conditioners","/collections/air-purifiers","/collections/commercial-dehumidifiers","/collections/cordless-fan","/collections/electric-fireplace","/collections/electric-space-heaters","/collections/evaporative-cooler","/collections/portable-air-conditioners","/collections/clothes-dryer","/collections/hairdryer",], },{ id: "604148138297-child-5331bd55bcef91d4c27e071c66b09100-legacy-sports-outdoors", title: "Sports & Outdoors", items: ["#","#",], },{ id: "604148171065-child-ee6e8177ad087479097d9355c1676d0c-legacy-shop-by-categories", title: "Shop by Categories", items: ["/collections/ride-ons","/collections/exercise-fitness","/collections/outdoor-recreation","/collections/sports",], },{ id: "604148334905-child-7697e34a244af19dfeb6e50baf88d1ea-legacy-more-way-to-shop", title: "More Way to Shop", items: ["/collections/push-pedal","/collections/ride-on-atvs","/collections/ride-on-bumper-cars","/collections/ride-on-cars","/collections/ride-on-jeeps","/collections/ride-on-motorcycles","/collections/ride-on-tractors","/collections/ride-on-trucks","/collections/kids-bikes",], },{ id: "604149547321-child-4cea0b91458215a3215a13aa5acdba9a-legacy-lawn-garden", title: "Lawn & Garden", items: ["#","#",], },{ id: "604149580089-child-1a8bb84c0ef09dbc9c51a5e5f33283f1-legacy-shop-by-categories", title: "Shop by Categories", items: ["/collections/hydroponics","/collections/landscaping-shade","/collections/lawn-care","/collections/outdoor-decoration","/collections/outdoor-hand-tools","/collections/outdoor-power-equipment","/collections/patio-furniture-accessories","/collections/pools-spas","/collections/water-gardens-ponds","/collections/watering-irrigation",], },{ id: "604149940537-child-b786ecd1cf5a8f3cd48ca7619dbcf212-legacy-more-way-to-shop", title: "More Way to Shop", items: ["/collections/growing-kits-systems","/collections/gazebo","/collections/landscape-fabric","/collections/decking-fencing","/collections/compost-spreader","/collections/pressure-washers","/collections/rattan-furniture-sets","/collections/pool-safety-cover","/collections/raised-garden-bed","/collections/pond-liner","/collections/hose-reel",], },{ id: "604150464825-child-74a7757a53b1064a791fab80b1c2b259-legacy-agriculture-forestry-equipment", title: "Agriculture & Forestry Equipment", items: ["#","#",], },{ id: "604150497593-child-b804bec9b7c609b795ddf5b0aa5b0b20-legacy-shop-by-categories", title: "Shop by Categories", items: ["/collections/equipment-parts-accessories","/collections/livestock-poultry-supplies","/collections/outdoor-storage-housing",], },{ id: "604150628665-child-34568fbb64a383e8f47909c46ff74962-legacy-more-way-to-shop", title: "More Way to Shop", items: ["/collections/driveway-drag","/collections/trailer-hitch","/collections/rakes","/collections/automatic-poultry-feeder","/collections/chicken-coop","/collections/storage-sheds",], },{ id: "604480536889-child-b35a30b92be5e95311c4fb1c09e74d34-legacy-shop-by-categories", title: "Shop by Categories", items: ["/collections/hoists-winches-rigging","/collections/pallet-moving-equipment-accessories","/collections/ramps-ladders","/collections/carts-trucks","/collections/dollies-movers","/collections/workbenches-accessories","/collections/filling-sealing-machine","/collections/heavy-equipment-accessories",], },{ id: "604480831801-child-2b965832a19ca939f5421e10f3654fa6-legacy-more-way-to-shop", title: "More Way to Shop", items: ["/collections/hydraulic-scissor-cart","/collections/utility-cart","/collections/drum-dolly","/collections/quick-tach-mount-plate","/collections/manual-chain-hoist","/collections/pallet-forks-extensions","/collections/pallet-forks","/collections/forklift-safety-cage","/collections/aluminum-dock-ladder","/collections/adjustable-workbench",], },{ id: "official-menu", title: "Official Mobile Menu", items: ["/collections/ride-ons","#","/collections/lawn-garden","/collections/air-conditioners-accessories","/collections/restaurant-food-service","/collections/agriculture-forestry-equipment","/collections/automotive","/collections/power-hand-tools","/collections/appliances","/collections/sports-recreation","/collections/material-handling","/collections/building-construction","/collections/arts-crafts-sewing","/collections/electrical","/collections/lab","/collections/plumbing","/collections/pumps","/collections/security","/collections/hydraulics","/collections/toys-games",], },{ id: "604702376249-child-085051ada2d54deba92be8d7da3cad27-legacy-agriculture-forestry-equipment", title: "Agriculture & Forestry Equipment", items: ["/collections/equipment-parts-accessories","/collections/livestock-poultry-supplies",], },{ id: "604702409017-child-304fd6d98cba351904c3cc62a03fba49-legacy-equipment-parts-accessories", title: "Equipment Parts & Accessories", items: ["/collections/driveway-drag","/collections/drag-chain-harrow","/collections/trailer-hitch","/collections/hay-spear","/collections/cant-hook","/collections/rakes","/collections/scarifier-shank","/collections/pallet-forks","/collections/bucket-cutting-edge","/collections/tractor-bucket-protector","/collections/disc-harrows","/collections/chainsaw-mill","/collections/log-tongs",], },{ id: "604703555897-child-81aff7941043b4b75bf1f4a245d71704-legacy-livestock-poultry-supplies", title: "Livestock & Poultry Supplies", items: ["/collections/automatic-poultry-feeder","/collections/chicken-coop","/collections/egg-laying-box","/collections/chicken-plucker","/collections/electric-milking-machine",], },{ id: "605155754297-child-e656bb7b5ecd0d34c3631cdaef81db21-legacy-shop-by-categories", title: "Shop by Categories", items: ["/collections/demolition-tools-equipment","/collections/drills-drivers","/collections/grinding-sanding-finishing-tools","/collections/inspection-retrieving-tools","/collections/saws-accessories","/collections/wrenches",], },{ id: "605155983673-child-217cf3c12c0037de4e500b22c21a84c2-legacy-more-way-to-shop", title: "More Way to Shop", items: ["/collections/drill-press","/collections/jack-hammer","/collections/saw-blade-sharpener","/collections/pipe-inspection-camera","/collections/magnetic-drill","/collections/wrench-sets","/collections/pipe-wrench",], },{ id: "605158834489-child-9fb4f6f3a5b271d659902b56e4d139c7-legacy-electrical", title: "Electrical", items: ["#","#",], },{ id: "605158867257-child-24fafd1530e5cd9a73251a97b0758d9b-legacy-shop-by-categories", title: "Shop by Categories", items: ["/collections/electrical-boxes-panels-fittings","/collections/electrical-tools","/collections/wire-cable-conduit",], },{ id: "605159031097-child-2f216a907469b756139ad37aa0cac837-legacy-more-way-to-shop", title: "More Way to Shop", items: ["/collections/electrical-enclosure","/collections/electric-wire-stripping-machine","/collections/manual-wire-stripping-machine","/collections/cable-ramp",], },{ id: "605159227705-child-9532bb4a93c85a81766c2ff875a1dde7-legacy-building-construction", title: "Building & Construction", items: ["#","#",], },{ id: "605159260473-child-58347d415da4d5696dcf3ed75142cf9e-legacy-shop-by-categories", title: "Shop by Categories", items: ["/collections/building-supplies","/collections/scaffolds-mobile-bases",], },{ id: "605159358777-child-7c55de873bafb941ace3ab8a04ba6c7a-legacy-more-way-to-shop", title: "More Way to Shop", items: ["/collections/stainless-steel-backsplash","/collections/stair-handrail","/collections/electric-rebar-bender","/collections/electric-rebar-cutter","/collections/aluminum-work-plank","/collections/chimney-cap","/collections/vessel-sinks",], },{ id: "605159620921-child-193c0b0cc12d4b46c5d5c5799bbd02ba-legacy-pumps", title: "Pumps", items: ["#","#",], },{ id: "605159653689-child-89ce17dd3fb76e6e9970fda69679b4ae-legacy-shop-by-categories", title: "Shop by Categories", items: ["/collections/vacuum-pumps","/collections/water-pumps",], },{ id: "605159751993-child-e4efbc9657df02e15e6e265ede8f41d9-legacy-more-way-to-shop", title: "More Way to Shop", items: ["/collections/vacuum-pumps","/collections/swimming-pool-pump-1","/collections/water-transfer-pump",], },{ id: "605159883065-child-c129639a136f5bf81914777786d70502-legacy-security", title: "Security", items: ["#","#",], },{ id: "605159915833-child-c23ae5901317fe3fbdc6029daccadc1f-legacy-shop-by-categories", title: "Shop by Categories", items: ["/collections/access-barriers-crowd-control","/collections/safes",], },{ id: "605160014137-child-c54dd7f598903e35c9cde5d9511f861c-legacy-more-way-to-shop", title: "More Way to Shop", items: ["/collections/folding-security-gate","/collections/safety-bollard","/collections/biometric-safes","/collections/electronic-safes",], },{ id: "605160177977-child-62ecbba0d0697071c9ca06cbd006db8c-legacy-plumbing", title: "Plumbing", items: ["#","#",], },{ id: "605160210745-child-3dd86595d32dd44f2b11dbe9a9524114-legacy-shop-by-categories", title: "Shop by Categories", items: ["/collections/drains-drainage","/collections/pipe-stands-vises",], },{ id: "605160309049-child-6a877f853ebd35d1a7a95a63c309911f-legacy-more-way-to-shop", title: "More Way to Shop", items: ["/collections/drain-cleaner-machine","/collections/roller-head-pipe-stand",], },{ id: "605160407353-child-eb58ea47863f4d10bdcaa70ac4523269-legacy-lab", title: "Lab", items: ["#","#",], },{ id: "605160440121-child-6b7da8b5b522a3952376f8ce9a3efdfa-legacy-shop-by-categories", title: "Shop by Categories", items: ["/collections/cleaning-equipment","/collections/mixing-blending-equipment",], },{ id: "605160538425-child-2e9017bec4226d6e9aff0db715ac863d-legacy-more-way-to-shop", title: "More Way to Shop", items: ["/collections/ultrasonic-cleaner","/collections/magnetic-stirrer",], },{ id: "605160866105-child-1b55dd75d59a1db2bb448a1b890152f0-legacy-arts-crafts-sewing", title: "Arts & Crafts & Sewing", items: ["#","#",], },{ id: "605160898873-child-fdce83820dbd917443f0e869bbf5455e-legacy-shop-by-categories", title: "Shop by Categories", items: ["/collections/jewelry-making-repair","/collections/printmaking",], },{ id: "605160997177-child-d8d39c17a89f90accb8cbbbb6ca7dd1d-legacy-more-way-to-shop", title: "More Way to Shop", items: ["/collections/heat-press-machines","/collections/melting-furnace","/collections/silk-screen-frame",], },{ id: "605185769785-child-8ff15c7f088735ef3fb20fb001258738-legacy-arts-crafts-sewing", title: "Arts & Crafts & Sewing", items: ["/collections/jewelry-making-repair","/collections/engraving","/collections/printmaking","/collections/painting-equipment-supplies",], },{ id: "605185802553-child-065c578c09e331d7321c291740d36452-legacy-jewelry-making-repair", title: "Jewelry Making & Repair", items: ["/collections/melting-furnace",], },{ id: "605185868089-child-2d6d4fa5bc39ef5bd605f48ab94698d2-legacy-engraving", title: "Engraving", items: ["/collections/water-chiller",], },{ id: "605185933625-child-84f69eccefa710ca2c297370846f3acc-legacy-printmaking", title: "Printmaking", items: ["/collections/heat-press-machines","/collections/silk-screen-frame",], },{ id: "605186031929-child-0b57e3bd695939febc32269d9716de45-legacy-painting-equipment-supplies", title: "Painting Equipment & Supplies", items: ["/collections/powder-coating-machine",], },{ id: "605188981049-child-95571723b361c412da788d3cda9d4b1a-legacy-building-construction", title: "Building & Construction", items: ["/collections/building-supplies","/collections/masonry-concrete-tile-tools","/collections/scaffolds-mobile-bases","/collections/scaffolds-mobile-bases",], },{ id: "605189013817-child-14ce9c9387f2a4243670055c1c6ca830-legacy-building-supplies", title: "Building Supplies", items: ["/collections/chimney-cap","/collections/stainless-steel-backsplash","/collections/stair-handrail",], },{ id: "605189177657-child-10cf9bd87e476e36a9b5ba42bf94f093-legacy-masonry-concrete-tile-tools", title: "Masonry & Concrete & Tile Tools", items: ["/collections/bull-float","/collections/electric-rebar-bender","/collections/electric-rebar-cutter","/collections/electric-concrete-vibrator",], },{ id: "605189341497-child-e7fd763ca47326bd72e3bd820d027a79-legacy-scaffolds-mobile-bases", title: "Scaffolds & Mobile Bases", items: ["/collections/aluminum-work-plank",], },{ id: "605189472569-child-4b7b0a831901c30da9a2b45b270875fa-legacy-electrical", title: "Electrical", items: ["/collections/electrical-boxes-panels-fittings","/collections/electrical-tools","/collections/wire-cable-conduit","/collections/generators",], },{ id: "605189505337-child-e7da0ae249675d35b58b7bf6fa5e6292-legacy-electrical-boxes-panels-fittings", title: "Electrical Boxes & Panels & Fittings", items: ["/collections/electrical-enclosure",], },{ id: "605189570873-child-70c9fb2ac8f5b96fcc0cabeb364b9613-legacy-electrical-tools", title: "Electrical Tools", items: ["/collections/electric-wire-stripping-machine","/collections/manual-wire-stripping-machine","/collections/fusion-fiber-splicer",], },{ id: "605189767481-child-63210c252244aff0a2adef5ccf3e6f04-legacy-wire-cable-conduit", title: "Wire & Cable & Conduit", items: ["/collections/cable-ramp",], },{ id: "605192388921-child-dca9673b71862cb315a5f37ff63a0965-legacy-lab", title: "Lab", items: ["/collections/cleaning-equipment","/collections/heating-cooling-equipment",], },{ id: "605192421689-child-b443f261b9b5fc9e33bf4710e4989541-legacy-cleaning-equipment", title: "Cleaning Equipment", items: ["/collections/ultrasonic-cleaner",], },{ id: "605192487225-child-f08e7bdead04ada58c7718ef2256faf6-legacy-heating-cooling-equipment", title: "Heating & Cooling Equipment", items: ["/collections/reptile-incubator",], },{ id: "605193797945-child-5406ca1067a25cb8194608ac72f93e62-legacy-pools-spas", title: "Pools & Spas", items: ["/collections/hot-tubs","/collections/pool-fences","/collections/pool-safety-cover","/collections/poolside-storage","/collections/swimming-pool-rail","/collections/pool-waterfall",], },{ id: "605193994553-child-47ff45b9409eb34cde1a0b45786ebdf0-legacy-outdoor-decoration", title: "Outdoor Decoration", items: ["/collections/artificial-grass-1","/collections/fences","/collections/pond-liner","/collections/retractable-yard-flagpole","/collections/screen",], },{ id: "605195206969-child-39aae6b9687fbfa119b14a313d9d0287-legacy-plumbing", title: "Plumbing", items: ["/collections/drains-drainage","/collections/pipe-stands-vises","/collections/plumbing-tools","/collections/pipe-fittings",], },{ id: "605195239737-child-90da8616b10b97abe783a1e4d97ce49b-legacy-drains-drainage", title: "Drains & Drainage", items: ["/collections/drain-cleaner-machine",], },{ id: "605195305273-child-05eece34b09b0f632fbf094037879057-legacy-pipe-stands-vises", title: "Pipe Stands & Vises", items: ["/collections/roller-head-pipe-stand",], },{ id: "605195370809-child-7d9b6ac6fff13df2f38c818ab051935c-legacy-plumbing-tools", title: "Plumbing Tools", items: ["/collections/pipe-tube-bender",], },{ id: "605195436345-child-e7d963ee186ebe39c78a08a2566d9f2e-legacy-pipe-fittings", title: "Pipe & Fittings", items: ["/collections/pex-tubing",], },{ id: "605195960633-child-f93d6d14add3ef5b28d9ee9eff069b3b-legacy-hand-tools", title: "Hand Tools", items: ["/collections/test-measure-inspect","/collections/measuring-tools","/collections/sockets-bits",], },{ id: "605196157241-child-be971211b4a00fb6cc38dd8a78adae61-legacy-demolition-tools-equipment", title: "Demolition Tools & Equipment", items: ["/collections/jack-hammer",], },{ id: "605196222777-child-02510f96cd5ae1a0561d24c3f0cec023-legacy-wrenches", title: "Wrenches", items: ["/collections/pipe-wrench","/collections/combination-wrenches","/collections/wrench-sets","/collections/mill-vise",], },{ id: "605196386617-child-ab6c226e1209e31650432d834f29cfd5-legacy-power-tools", title: "Power Tools", items: ["/collections/power-tool-parts-accessories","/collections/saws-accessories","/collections/grinding-sanding-finishing-tools",], },{ id: "605196550457-child-d6a4ee7759e7713e11378c886fba0e7e-legacy-saws", title: "Saws", items: [], },{ id: "605196615993-child-83d21785d6ff0dae597fb2dde803c890-legacy-grinding-sanding-finishing-tools", title: "Grinding & Sanding & Finishing Tools", items: ["/collections/saw-blade-sharpener",], },{ id: "605196681529-child-ce0f3b741cc42e8c354ab74e33a8e79a-legacy-inspection-retrieving-tools", title: "Inspection & Retrieving Tools", items: ["/collections/magnetic-sweepers","/collections/pipe-inspection-camera","/collections/metal-detectors",], },{ id: "605196779833-child-5d5697d83fa0a41fe98b6c96796c53c3-legacy-punching-tools", title: "Punching Tools", items: ["/collections/hydraulic-knockout-punch",], },{ id: "605196910905-child-9ae5d0c2b01ea7aff4ac0b7d60cb81bd-legacy-pumps", title: "Pumps", items: ["/collections/water-pumps","/collections/oil-pumps","/collections/vacuum-pumps",], },{ id: "605196943673-child-7d09581dfb6eb856c359e19c764bcb04-legacy-water-pumps", title: "Water Pumps", items: ["/collections/water-transfer-pump","/collections/swimming-pool-pump-1",], },{ id: "605197041977-child-0ab907af8625d4f2cffeaf94229a0d6c-legacy-oil-pumps", title: "Oil Pumps", items: ["/collections/electric-fuel-pumps",], },{ id: "605197107513-child-8b06cc5bdf47b8cb5aa003f26b927ff3-legacy-vacuum-pumps", title: "Vacuum Pumps", items: ["/collections/vacuum-pumps",], },{ id: "605197435193-child-68a3b4fa924aa20f1000c17a0380682c-legacy-outdoor-recreation", title: "Outdoor Recreation", items: ["/collections/water-sports",], },{ id: "605197500729-child-d81b0e27256ed0bdbec4efb210f4aed8-legacy-sports", title: "Sports", items: ["/collections/leisure-sports-game-room","/collections/ping-pong","/collections/basketball-hoops-goals","/collections/other-sports",], },{ id: "605197730105-child-c4751fcb3139332f3999bf7f118205fc-legacy-security", title: "Security", items: ["/collections/access-barriers-crowd-control","/collections/safes","/collections/confined-space-entry-systems","/collections/safety-storage","/collections/traffic-safety",], },{ id: "605197762873-child-94ec8b4da4a0df86a17473305aaa49d7-legacy-access-barriers-crowd-control", title: "Access Barriers & Crowd Control", items: ["/collections/safety-bollard","/collections/folding-security-gate",], },{ id: "605197861177-child-90324537346ff4809dd8ed623419a0a9-legacy-safes", title: "Safes", items: ["/collections/electronic-safes","/collections/biometric-safes",], },{ id: "605197959481-child-f75b6c630a6c0f19c6a1fbe06ac92c91-legacy-arts-crafts-sewing", title: "Arts & Crafts & Sewing", items: ["/collections/jewelry-making-repair","/collections/engraving","/collections/printmaking","/collections/painting-equipment-supplies",], },{ id: "605198451001-child-cfed9a53fae7c42156d58158338a2f8c-legacy-jewelry-making-repair", title: "Jewelry Making & Repair", items: ["/collections/melting-furnace",], },{ id: "605198516537-child-fa6021bad85bff41b40b23923d431c2a-legacy-engraving", title: "Engraving", items: ["/collections/water-chiller",], },{ id: "605198582073-child-f6c2855ae47192e84fc945644e0bb797-legacy-printmaking", title: "Printmaking", items: ["/collections/heat-press-machines","/collections/silk-screen-frame",], },{ id: "605198680377-child-772ecb348eb6b65f3ce6c5384a8ce439-legacy-painting-equipment-supplies", title: "Painting Equipment & Supplies", items: ["/collections/powder-coating-machine",], },{ id: "605335388473-child-19090788c86beecf51cd95b16963dfc9-legacy-automotive", title: "Automotive", items: ["/collections/exterior-accessories","/collections/automotive-accessories","/collections/tire-wheel-tools","/collections/steering-suspension-tool","/collections/replacement-parts","/collections/fuel-transfer-lubrication","/collections/cargo-management","/collections/rv-parts-accessories","/collections/lifts-hoists-jacks","/collections/boat-parts-accessories","/collections/interior-accessories","/collections/hydraulic-rams-tools","/collections/repair-tools",], },{ id: "605335421241-child-3853b4d1a9d05e93da14440e269d4775-legacy-exterior-accessories", title: "Exterior Accessories", items: ["/collections/running-boards","/collections/brake-system","/collections/jeep-door","/collections/truck-running-boards","/collections/grille-brush-guards","/collections/front-bumper","/collections/fender-flares","/collections/bumper-guards","/collections/fenders","/collections/suspension-bracket","/collections/reflectors",], },{ id: "605335879993-child-f227a32a1978bb484a47244cebce90b6-legacy-automotive-accessories", title: "Automotive Accessories", items: ["/collections/truck-tool-boxes","/collections/replacement-parts","/collections/tonneau-cover","/collections/brake-tools","/collections/headlight-assembly","/collections/windshield-wiper-tools","/collections/car-lights-lighting-accessories","/collections/interior-accessories","/collections/tractor-seat","/collections/z-creeper-seat","/collections/engines-tools-components","/collections/air-tools-accessories","/collections/truck-bed-mats","/collections/wheel-dolly",], },{ id: "605336338745-child-2e2ca2d45d3d8d893e08ad16837fc526-legacy-tire-wheel-tools", title: "Tire & Wheel Tools", items: ["/collections/go-kart-wheels","/collections/lawn-mower-tires","/collections/trailer-tires","/collections/tires-wheels","/collections/tire-repair-tools","/collections/tire-changing-machines","/collections/wheel-adapters-spacers","/collections/atv-trail-tires",], },{ id: "605336633657-child-320317778221c1f435a97412c8785a8e-legacy-steering-suspension-tool", title: "Steering & Suspension Tool", items: ["/collections/shock-absorber","/collections/body-suspension-lift-kits","/collections/towing-winches",], },{ id: "605336764729-child-386afe50dcc7b2d2306e4e689f57d530-legacy-replacement-parts", title: "Replacement Parts", items: ["/collections/brake-pads","/collections/control-arms","/collections/engine-parts",], },{ id: "605336895801-child-bad82346a9ac7668e5acbc9f0d7b52da-legacy-fuel-transfer-lubrication", title: "Fuel Transfer & Lubrication", items: ["/collections/oil-drain-pan","/collections/fuel-caddy","/collections/portable-fuel-tank","/collections/hydraulic-oil-tank","/collections/fuel-injectors","/collections/oil-transfer-pump","/collections/hydraulic-rams-tools","/collections/fuel-hose-reel",], },{ id: "605337256249-child-b3c10ac0195bc93acbfb5e4f87e0ea0d-legacy-cargo-management", title: "Cargo Management", items: ["/collections/roof-rack-cross-bars","/collections/ladder-racks","/collections/cargo-carrier","/collections/towing-system",], },{ id: "605337452857-child-3b4b548a9716ccef450bcca979489df9-legacy-rv-parts-accessories", title: "Rv Parts & Accessories", items: ["/collections/rv-cover","/collections/trailer-jack","/collections/trailer-dolly",], },{ id: "605337715001-child-91914886f1f802e5b22064db9ddfcae5-legacy-lifts-hoists-jacks", title: "Lifts & Hoists & Jacks", items: ["/collections/jack-stands","/collections/pneumatic-car-jack","/collections/motorcycle-lift-stand","/collections/hydraulic-motorcycle-hoist","/collections/engine-hoists-stands","/collections/hydraulic-scissor-cart","/collections/floor-jacks","/collections/transmission-jacks","/collections/engine-stand","/collections/hitch-receivers","/collections/toe-jacks",], },{ id: "605338272057-child-7154051acd16c13ea6aee1541db174ae-legacy-boat-parts-accessories", title: "Boat Parts & Accessories", items: ["/collections/bimini-tops","/collections/boat-trailer-guides","/collections/boat-cover","/collections/boat-anchor","/collections/boat-fenders",], },{ id: "605338468665-child-47f96b889c4af9e4c129486ee9d35d54-legacy-interior-accessories", title: "Interior Accessories", items: ["/collections/floor-mats","/collections/igniter",], },{ id: "605338566969-child-c2bd031a71b49485e193658377b56c80-legacy-hydraulic-rams-tools", title: "Hydraulic Rams & Tools", items: ["/collections/rotary-tool-kit",], },{ id: "605338632505-child-91816d95e6afb44846a2124a77285675-legacy-repair-tools", title: "Repair Tools", items: ["/collections/magnetic-induction-heater",], },{ id: "605338698041-child-ae03ed9d9e36da7d314018924f02b150-legacy-electrical", title: "Electrical", items: ["/collections/electrical-boxes-panels-fittings","/collections/electrical-tools","/collections/wire-cable-conduit","/collections/generators",], },{ id: "605338730809-child-6547dd1dde5d53dc22da957a823ccf11-legacy-electrical-boxes-panels-fittings", title: "Electrical Boxes & Panels & Fittings", items: ["/collections/electrical-enclosure",], },{ id: "605338796345-child-1f54630aaaffc8ed5b66e0e69c9784c9-legacy-electrical-tools", title: "Electrical Tools", items: ["/collections/electric-wire-stripping-machine","/collections/manual-wire-stripping-machine","/collections/fusion-fiber-splicer",], },{ id: "605338992953-child-70949a4046fdde5e15770d647123e229-legacy-wire-cable-conduit", title: "Wire & Cable & Conduit", items: ["/collections/cable-ramp",], },{ id: "605339058489-child-2060351361326d40cc6409d2ff71e680-legacy-lab", title: "Lab", items: ["/collections/cleaning-equipment","/collections/heating-cooling-equipment",], },{ id: "605339091257-child-d17d31201cbd5906e5cc57ad5ee9b778-legacy-cleaning-equipment", title: "Cleaning Equipment", items: ["/collections/ultrasonic-cleaner",], },{ id: "605339156793-child-a34095e5571a12665c756223715eeef8-legacy-heating-cooling-equipment", title: "Heating & Cooling Equipment", items: ["/collections/reptile-incubator",], },{ id: "605339484473-child-bc71cc8a556645bd809c04db1f84835c-legacy-plumbing", title: "Plumbing", items: ["/collections/drains-drainage","/collections/pipe-stands-vises","/collections/plumbing-tools","/collections/pipe-fittings",], },{ id: "605339517241-child-a80d4d5079d53cca5a3bd1338c6a3040-legacy-drains-drainage", title: "Drains & Drainage", items: ["/collections/drain-cleaner-machine",], },{ id: "605339582777-child-b589106d6b8775585c86566dcfa68a9f-legacy-pipe-stands-vises", title: "Pipe Stands & Vises", items: ["/collections/roller-head-pipe-stand",], },{ id: "605339648313-child-5a00f6d3d12c2a0b2bee03444168811b-legacy-plumbing-tools", title: "Plumbing Tools", items: ["/collections/pipe-tube-bender",], },{ id: "605339713849-child-489eb73357cc7f0f77cfee52b08c7074-legacy-pipe-fittings", title: "Pipe & Fittings", items: ["/collections/pex-tubing",], },{ id: "605339779385-child-5b4cc64194e1aad9ac290d160e21a176-legacy-pumps", title: "Pumps", items: ["/collections/water-pumps","/collections/oil-pumps","/collections/vacuum-pumps",], },{ id: "605339812153-child-607b263785cf77c30370df7e775c23a0-legacy-water-pumps", title: "Water Pumps", items: ["/collections/water-transfer-pump","/collections/swimming-pool-pump-1",], },{ id: "605339910457-child-d8ea471db06265102a2fa151d1d2f04e-legacy-oil-pumps", title: "Oil Pumps", items: ["/collections/electric-fuel-pumps",], },{ id: "605339975993-child-7ff95512df0a8d9dec0a352c8e745f7c-legacy-vacuum-pumps", title: "Vacuum Pumps", items: ["/collections/vacuum-pumps",], },{ id: "605340041529-child-49e477687b2462ff271ce46ec7831c3b-legacy-security", title: "Security", items: ["/collections/access-barriers-crowd-control","/collections/safes","/collections/traffic-safety",], },{ id: "605340074297-child-fef1974925d8c9cc0a560e3409257f9a-legacy-access-barriers-crowd-control", title: "Access Barriers & Crowd Control", items: ["/collections/safety-bollard","/collections/folding-security-gate",], },{ id: "605340172601-child-ae0443fa325487bf18966b102a726398-legacy-safes", title: "Safes", items: ["/collections/electronic-safes","/collections/biometric-safes",], },{ id: "605343351097-child-860d81fe8c3f653fbb46fc5ee2eebee6-legacy-building-construction", title: "Building & Construction", items: ["/collections/building-supplies","/collections/masonry-concrete-tile-tools","/collections/scaffolds-mobile-bases",], },{ id: "605343383865-child-932a4c2bcb997e74f0ecd47f90953606-legacy-building-supplies", title: "Building Supplies", items: ["/collections/stainless-steel-backsplash","/collections/stair-handrail","/collections/chimney-cap",], },{ id: "605393977657-child-f641f560292d4dd7b7e0f7925f48a660-legacy-masonry-concrete-tile-tools", title: "Masonry & Concrete & Tile Tools", items: ["/collections/electric-rebar-bender","/collections/electric-rebar-cutter","/collections/bull-float","/collections/electric-concrete-vibrator",], },{ id: "605394141497-child-68d5b1d1f9ceda817fda99472b20988b-legacy-scaffolds-mobile-bases", title: "Scaffolds & Mobile Bases", items: ["/collections/aluminum-work-plank",], },{ id: "605414392121-child-50fa022fe5ffbdcd631714645833bbf0-legacy-restaurant-food-service", title: "Restaurant & Food Service", items: ["/collections/refrigeration-ice-equipment","/collections/restaurant-furniture","/collections/restaurant-faucets-plumbing-sinks","/collections/cooking-equipment","/collections/beverage-equipment","/collections/food-holding-warming-equipment","/collections/food-preparation-equipment-1","/collections/storage-organization-1","/collections/food-display-merchandising-equipment",], },{ id: "605414424889-child-41427d179c9d1ede91e4fa81e9c00ade-legacy-refrigeration-ice-equipment", title: "Refrigeration & Ice Equipment", items: ["/collections/ice-machines","/collections/beverage-refrigerator","/collections/merchandising-refrigerators","/collections/car-refrigerator","/collections/reach-in-refrigerators-and-freezers","/collections/soft-serve-ice-cream-machines","/collections/refrigerators","/collections/refrigerated-condiment-holder",], },{ id: "605414752569-child-7dd0ff349fe38ce6946787155b713fde-legacy-restaurant-furniture", title: "Restaurant Furniture", items: ["/collections/stainless-steel-work-table-1","/collections/bar-cabinet","/collections/bar-cart","/collections/bar-table-set","/collections/outdoor-kitchen-drawer","/collections/wine-rack-table","/collections/outdoor-kitchen-door","/collections/cutting-boards","/collections/activity-tables",], },{ id: "605415113017-child-ef3fdefd9aac5eff92a77a593f811b6f-legacy-restaurant-faucets-plumbing-sinks", title: "Restaurant Faucets & Plumbing & Sinks", items: ["/collections/commercial-sinks","/collections/kitchen-fixtures","/collections/water-filters","/collections/stainless-steel-backsplash",], },{ id: "605415276857-child-367c5938eb906150a1b717fc1057ac70-legacy-cooking-equipment", title: "Cooking Equipment", items: ["/collections/range-hood","/collections/commercial-pizza-oven","/collections/commercial-convection-oven","/collections/fryer-oil-filtration-equipment","/collections/flat-top-griddle","/collections/commercial-deep-fryers","/collections/commercial-waffle-makers","/collections/grill-carts","/collections/commercial-outdoor-grills","/collections/air-fryers","/collections/kitchen-fixtures","/collections/electric-hot-pot-grill",], },{ id: "605416816953-child-85da8082c26377e2a82c49bca750df98-legacy-beverage-equipment", title: "Beverage Equipment", items: ["/collections/refrigerated-beverage-dispensers","/collections/coffee-urn","/collections/fruit-wine-press","/collections/coffee-makers","/collections/commercial-juicers","/collections/beer-kegerator","/collections/electric-milkshake-maker",], },{ id: "605417144633-child-8f4b399b09cc3129530f045d7f6e9e98-legacy-food-holding-warming-equipment", title: "Food Holding & Warming Equipment", items: ["/collections/chafing-dishes-accessories","/collections/steam-table-food-warmer","/collections/holding-proofing-cabinets","/collections/stock-pots","/collections/french-fry-warmer",], },{ id: "605417341241-child-25a4374ba6bd5289731c342af43e5eb9-legacy-food-preparation-equipment", title: "Food Preparation Equipment", items: ["/collections/cutters-slicers","/collections/commercial-mixers","/collections/bone-saw-machine","/collections/dough-sheeters-rounders-dividers","/collections/commercial-can-openers","/collections/meat-choppers-meat-grinders","/collections/commercial-sausage-stuffers-jerky-shooters","/collections/bar-cart",], },{ id: "605417636153-child-1bee969974383518d136262b5bd3faf0-legacy-storage-organization", title: "Storage & Organization", items: ["/collections/food-pan-carrier","/collections/drawers-cabinet-organizers","/collections/wine-racks","/collections/countertop-dishwashers","/collections/wall-shelf",], },{ id: "605417832761-child-f7603cc1b522a3d142907f78f6fe9192-legacy-food-display-merchandising-equipment", title: "Food Display & Merchandising Equipment", items: ["/collections/popcorn-poppers","/collections/cotton-candy-machines","/collections/commercial-hot-dog-roller","/collections/liquor-bottle-display",], },{ id: "605419602233-child-b3dfd97d44ffb432d290cb5c9de249d0-legacy-sports-outdoors", title: "Sports & Outdoors", items: ["/collections/outdoor-recreation","/collections/sports","/collections/exercise-fitness","/collections/action-aids",], },{ id: "605420028217-child-93cc8e99c01dbdfe4eb6a0791ac0c1b9-legacy-outdoor-recreation", title: "Outdoor Recreation", items: ["/collections/water-sports",], },{ id: "605420093753-child-d30ea812d71889df74ce8424e173f02b-legacy-sports", title: "Sports", items: ["/collections/leisure-sports-game-room","/collections/ping-pong","/collections/basketball-hoops-goals","/collections/other-sports",], },{ id: "605420257593-child-cf90f087ccbd1e58c7d36c4daa6bcab5-legacy-exercise-fitness", title: "Exercise & Fitness", items: ["/collections/fitness-technology","/collections/treadmill",], },{ id: "605420355897-child-a790b9644d39a89314be20b7681e1e43-legacy-power-hand-tools", title: "Power & Hand Tools", items: ["/collections/drills-drivers","/collections/hand-tools-1","/collections/demolition-tools-equipment","/collections/wrenches","/collections/power-tools","/collections/saws","/collections/grinding-sanding-finishing-tools","/collections/inspection-retrieving-tools","/collections/punching-tools","/collections/power-tool-parts-accessories","/collections/electrical","/collections/workbenches-accessories",], },{ id: "605420388665-child-3d1891629c08d633db334027b9a3e920-legacy-drills-drivers", title: "Drills & Drivers", items: ["/collections/drill-press","/collections/magnetic-drill",], },{ id: "605420486969-child-5a7f182bc3a19cbb378441fdab38e9b1-legacy-hand-tools", title: "Hand Tools", items: ["/collections/magnetic-sweepers","/collections/test-measure-inspect-1","/collections/measuring-tools","/collections/sockets-bits",], },{ id: "605425697081-child-797250b1305608e73658819bd51b7554-legacy-demolition-tools-equipment", title: "Demolition Tools & Equipment", items: ["/collections/jack-hammer",], },{ id: "605425762617-child-64d65fa40f5ab761f04475bbe2f70da3-legacy-wrenches", title: "Wrenches", items: ["/collections/pipe-wrench","/collections/combination-wrenches","/collections/wrench-sets","/collections/mill-vise",], },{ id: "605428973881-child-e800d6617419965ca77ea7c797d6aa93-legacy-power-tools", title: "Power Tools", items: ["/collections/power-tool-parts-accessories","/collections/saws-accessories","/collections/grinding-sanding-finishing-tools",], },{ id: "605429465401-child-b9086e2671c3f4543a64a8953ed366c0-legacy-saws", title: "Saws", items: [], },{ id: "605429530937-child-ac82f9559deec738ae4df823c6adc9a2-legacy-grinding-sanding-finishing-tools", title: "Grinding & Sanding & Finishing Tools", items: ["/collections/saw-blade-sharpener",], },{ id: "605429596473-child-531072041a3b0d33bcc931664e570868-legacy-inspection-retrieving-tools", title: "Inspection & Retrieving Tools", items: ["/collections/pipe-inspection-camera","/collections/metal-detectors",], },{ id: "605429694777-child-d75cd4c188d90c0f9260925a0289b265-legacy-punching-tools", title: "Punching Tools", items: ["/collections/hydraulic-knockout-punch",], },{ id: "605429760313-child-1395fb05c12653e08aeede52e630633c-legacy-power-tool-parts-accessories", title: "Power Tool Parts & Accessories", items: ["/collections/air-hose-reel",], },{ id: "605429825849-child-b843b3892f1d876ac05629763a2732cf-legacy-electrical", title: "Electrical", items: ["/collections/electrical-tools",], },{ id: "604703752505-child-b26943cc7d01779c5428e630abf602a7-legacy-appliances", title: "Appliances", items: ["/collections/air-treatment","/collections/fireplaces-stoves","/collections/small-appliances","/collections/heater-accessories",], },{ id: "605776544057-child-c3b4c44c9bd46237b2a8e71d231f645a-legacy-lawn-garden", title: "Lawn & Garden", items: ["/collections/outdoorshade","/collections/garden-supplies","/collections/hydroponics","/collections/landscaping-shade","/collections/lawn-care","/collections/patio-furniture-accessories","/collections/pools-spas","/collections/outdoor-decoration","/collections/water-gardens-ponds","/collections/pots-planters-container-accessories","/collections/watering-irrigation","/collections/outdoor-power-equipment","/collections/outdoor-hand-tools",], },{ id: "605776576825-child-504f6fb789e8718018bda75f7dd4cbc4-legacy-landscaping-shade", title: "Landscaping & Shade", items: ["/collections/artificial-grass-1","/collections/greenhouses-plant-germination-equipment",], },{ id: "605776806201-child-62ca1142b7c0a1e3e7b94fa156550736-legacy-patio-furniture-accessories", title: "Patio Furniture & Accessories", items: ["/collections/camp-kitchen","/collections/garden-cart","/collections/firewood-cart","/collections/outdoor-garden-storage-workbench",], },{ id: "605777101113-child-cb8b63e8f47d2cc939defd1148fffbcd-legacy-pools-spas", title: "Pools & Spas", items: ["/collections/swimming-pool-rail","/collections/pool-safety-cover","/collections/poolside-storage","/collections/screen","/collections/robotic-pool-cleaners","/collections/pool-liner","/collections/hot-tubs",], },{ id: "605777297721-child-eca917ad5401e132f6a9957dc69d922a-legacy-outdoor-decoration", title: "Outdoor Decoration", items: ["/collections/decking-fencing","/collections/retractable-yard-flagpole",], },{ id: "605777363257-child-87bffc64bb646a95ad378e21a0592a88-legacy-lawn-care", title: "Lawn Care", items: ["/collections/landscape-fabric","/collections/commercial-grade-driveway-fabric",], },{ id: "605777461561-child-e2519969e7e299d742195b67dcd17d80-legacy-water-gardens-ponds", title: "Water Gardens & Ponds", items: ["/collections/pond-liner",], },{ id: "605777527097-child-88c4360285a138f7b1052b99b2957f11-legacy-planters-container-accessories", title: "Planters & Container Accessories", items: ["/collections/raised-garden-bed","/collections/stands","/collections/plant-pots","/collections/trellises",], },{ id: "605777658169-child-f8522bbde1dccc77ba6009952897ccc8-legacy-watering-irrigation", title: "Watering & Irrigation", items: ["/collections/hose-reel",], },{ id: "605777723705-child-a1d875e3981b9cf85a1825565f215706-legacy-hydroponics", title: "Hydroponics", items: ["/collections/growing-kits-systems",], },{ id: "605777789241-child-b89af29a64887648621abe15f2402c25-legacy-outdoor-power-equipment", title: "Outdoor Power Equipment", items: ["/collections/pressure-washers","/collections/lawn-mowers-tractors",], },{ id: "605777854777-child-ba147a7156236c793a34526defa3065d-legacy-outdoor-hand-tools", title: "Outdoor Hand Tools", items: ["/collections/compost-spreader",], },{ id: "605777920313-child-07a25e78afecf5e3d7053cb07445e7cb-legacy-material-handling", title: "Material Handling", items: ["/collections/pallet-moving-equipment-accessories","/collections/carts-trucks","/collections/ramps-ladders","/collections/hoists-winches-rigging","/collections/heavy-equipment-accessories-1","/collections/dollies-movers","/collections/filling-sealing-machine","/collections/shelving-storage",], },{ id: "605777953081-child-a834ecbe0877b31753d5e3c8456fef29-legacy-pallet-moving-equipment-accessories", title: "Pallet Moving Equipment & Accessories", items: ["/collections/pallet-forks-extensions","/collections/pallet-forks","/collections/forklift-safety-cage","/collections/forklift-hook",], },{ id: "605778116921-child-24d8e735f3cb4d8a1fc3f4e173fbdf90-legacy-carts-trucks", title: "Carts & Trucks", items: ["/collections/utility-cart","/collections/hydraulic-scissor-cart","/collections/book-cart","/collections/stair-climbing-cart","/collections/panel-trucks","/collections/folding-cart","/collections/welding-cart",], },{ id: "605778346297-child-f7b65aa61d4319d49e93f2ce76dbd14b-legacy-ramps-ladders", title: "Ramps & Ladders", items: ["/collections/aluminum-dock-ladder","/collections/loading-ramps","/collections/curb-ramp","/collections/wheelchair-ramps","/collections/rv-stairs",], },{ id: "605778510137-child-56b88d67d4e9f0e6861ab66ff503a6d7-legacy-hoists-winches-rigging", title: "Hoists & Winches & Rigging", items: ["/collections/manual-chain-hoist","/collections/load-binders","/collections/electric-wire-rope-hoist","/collections/drywall-lift","/collections/davit-crane","/collections/push-beam-trolley","/collections/magnetic-lifter","/collections/mounted-deer-hoist",], },{ id: "605778936121-child-e7a50f24cd7107740c0418f5cdcfd7f4-legacy-heavy-equipment-accessories", title: "Heavy Equipment Accessories", items: ["/collections/quick-tach-mount-plate",], },{ id: "605779132729-child-1b2952ab4aed7540d5ea56835242013b-legacy-dollies-movers", title: "Dollies & Movers", items: ["/collections/drum-dolly","/collections/prylever-bar","/collections/machinery-mover",], },{ id: "605779263801-child-ee2c9934b146d13a8964cdbba99bad4b-legacy-filling-sealing-machine", title: "Filling & Sealing Machine", items: ["/collections/liquid-filling-machine","/collections/sealing-machine",], },{ id: "605972005177-child-2123ea9db37709a5f68ef0050e07378d-legacy-scaffolds-mobile-bases", title: "Scaffolds & Mobile Bases", items: ["/collections/aluminum-work-plank",], },{ id: "605972070713-child-e912f511fca1754378c4017bb83bb51a-legacy-generators", title: "Generators", items: ["/collections/portable-power-station",], },{ id: "606157832505-child-650e7aae788f728679fe1635918d08f8-legacy-generators", title: "Generators", items: ["/collections/portable-power-station",], },{ id: "609762410809-child-e2c8bdb067878804db4cc044e8216be0-legacy-air-treatment", title: "Air Treatment", items: ["/collections/cordless-fan","/collections/commercial-dehumidifiers","/collections/dehumidifiers","/collections/air-purifiers",], },{ id: "609762574649-child-9d7ecf3695c7da4cdcfaab753208a985-legacy-fireplaces-stoves", title: "Fireplaces & Stoves", items: ["/collections/electric-fireplace",], },{ id: "609762640185-child-30ad9b68496259c8617685b8a3f0177e-legacy-small-appliances", title: "Small Appliances", items: ["/collections/clothes-dryer","/collections/hairdryer",], },{ id: "609762738489-child-89de77ab9e1f4217d3a56b4395d3a20b-legacy-heater-accessories", title: "Heater & Accessories", items: ["/collections/electric-space-heaters",], },{ id: "609763066169-child-85ef5caddc8d14935e6832d8d6a63a7f-legacy-air-treatment", title: "Air Treatment", items: ["/collections/cordless-fan","/collections/commercial-dehumidifiers","/collections/dehumidifiers","/collections/air-purifiers",], },{ id: "609763230009-child-5c105e0da9157009aa2a9dd4e580bbe0-legacy-fireplaces-stoves", title: "Fireplaces & Stoves", items: ["/collections/electric-fireplace",], },{ id: "609763295545-child-f6023d62943bf839642a4f660afa3ae0-legacy-small-appliances", title: "Small Appliances", items: ["/collections/clothes-dryer","/collections/hairdryer",], },{ id: "609763393849-child-3e45368d7fa4e156da86c4a91479a358-legacy-heater-accessories", title: "Heater & Accessories", items: ["/collections/electric-space-heaters",], },{ id: "611500720441-child-f027496f128f0b02d4482efcee7c9407-legacy-restaurant-furniture", title: "Restaurant Furniture", items: ["/collections/stainless-steel-work-table-1","/collections/bar-cart","/collections/outdoor-kitchen-drawer","/collections/outdoor-kitchen-door","/collections/wine-rack-table","/collections/cutting-boards","/collections/activity-tables",], },{ id: "611501637945-child-46ef631f0e1f6d9d0b09d20b500c4d6a-legacy-cooking-equipment", title: "Cooking Equipment", items: ["/collections/range-hood","/collections/commercial-pizza-oven","/collections/commercial-convection-oven","/collections/commercial-waffle-makers","/collections/fryer-oil-filtration-equipment","/collections/flat-top-griddle","/collections/commercial-deep-fryers","/collections/grill-carts","/collections/electric-hot-pot-grill","/collections/commercial-outdoor-grills","/collections/air-fryers",], },{ id: "611502031161-child-68584ab7f2cfc9467b10380f8e5b8c0a-legacy-beverage-equipment", title: "Beverage Equipment", items: ["/collections/refrigerated-beverage-dispensers-1","/collections/fruit-wine-press","/collections/coffee-urn","/collections/coffee-makers","/collections/commercial-juicers","/collections/beer-kegerator","/collections/electric-milkshake-maker",], },{ id: "611502358841-child-cc30f9c0947960cc9308071464bcdd5e-legacy-food-holding-warming-equipment", title: "Food Holding & Warming Equipment", items: ["/collections/chafing-dishes-accessories","/collections/steam-table-food-warmer","/collections/holding-proofing-cabinets","/collections/stock-pots","/collections/french-fry-warmer",], },{ id: "611502719289-child-7894de14ed197d31ab9d56c182e7c972-legacy-food-preparation-equipment", title: "Food Preparation Equipment", items: ["/collections/cutters-slicers","/collections/commercial-mixers","/collections/commercial-can-openers","/collections/bone-saw-machine","/collections/dough-sheeters-rounders-dividers","/collections/meat-choppers-meat-grinders","/collections/commercial-sausage-stuffers-jerky-shooters",], },{ id: "611502981433-child-afd96fd653724312fc7edbbe554e4dc4-legacy-storage-organization", title: "Storage & Organization", items: ["/collections/food-pan-carrier","/collections/wine-racks","/collections/countertop-dishwashers","/collections/wall-shelf","/collections/drawers-cabinet-organizers",], },{ id: "611503472953-child-1f81a4c9256dd6918789d2bbb376f524-legacy-food-display-merchandising-equipment", title: "Food Display & Merchandising Equipment", items: ["/collections/liquor-bottle-display","/collections/popcorn-poppers","/collections/cotton-candy-machines","/collections/commercial-hot-dog-roller",], },{ id: "611503636793-child-9596dae010dae37d06e03579835ee43c-legacy-restaurant-faucets-plumbing-sinks", title: "Restaurant Faucets & Plumbing & Sinks", items: ["/collections/commercial-sinks","/collections/water-filters",], },{ id: "611504062777-child-42c703660c807367c0fade6406cf1542-legacy-automotive-accessories", title: "Automotive Accessories", items: ["/collections/air-tools-accessories","/collections/brake-tools","/collections/car-lights-lighting-accessories","/collections/engines-tools-components","/collections/floor-mats","/collections/headlight-assembly","/collections/tonneau-cover","/collections/tractor-seat","/collections/truck-bed-mats","/collections/truck-tool-boxes","/collections/z-creeper-seat","/collections/concession-window","/collections/windshield-wiper-tools","/collections/interior-accessories","/collections/igniter","/collections/vacuums","/collections/wheel-dolly",], },{ id: "611505209657-child-0d19ecf622329454877ed44d61b2eead-legacy-tire-wheel-tools", title: "Tire & Wheel Tools", items: ["/collections/go-kart-wheels-1","/collections/lawn-mower-tires","/collections/wheel-adapters-spacers","/collections/trailer-tires","/collections/atv-trail-tires","/collections/tires-wheels","/collections/tire-changing-machines","/collections/tire-repair-tools",], },{ id: "611505504569-child-a2f98aa4217c552850cf7ddaf72f7c2e-legacy-exterior-accessories", title: "Exterior Accessories", items: ["/collections/running-boards","/collections/brake-system","/collections/truck-running-boards","/collections/grille-brush-guards","/collections/jeep-door","/collections/bumper-guards","/collections/fender-flares","/collections/fenders","/collections/suspension-bracket","/collections/reflectors",], },{ id: "611505897785-child-5ec490d825304dedb217514438ea482b-legacy-replacement-parts", title: "Replacement Parts", items: ["/collections/brake-pads","/collections/control-arms","/collections/jump-starters-battery-chargers","/collections/windshield-wiper-tools","/collections/ignition-coils","/collections/engine-parts",], },{ id: "611506127161-child-1aed4cdcaa7e313b469f4817c83d5c15-legacy-steering-suspension-tool", title: "Steering & Suspension Tool", items: ["/collections/shock-absorber","/collections/body-suspension-lift-kits","/collections/towing-winches",], },{ id: "611506258233-child-33541db6bbf1bc277d436b60663d6a21-legacy-fuel-transfer-lubrication", title: "Fuel Transfer & Lubrication", items: ["/collections/fuel-caddy","/collections/oil-drain-pan","/collections/portable-fuel-tank","/collections/hydraulic-oil-tank","/collections/oil-transfer-pump","/collections/fuel-injectors","/collections/fuel-hose-reel",], },{ id: "611506520377-child-d36ed5c7839f2598319eb00373bb2d9c-legacy-cargo-management", title: "Cargo Management", items: ["/collections/cargo-carrier","/collections/roof-rack-cross-bars","/collections/ladder-racks","/collections/towing-system",], },{ id: "611506684217-child-9814f469a69714f0fbdcc4206b3fdcb7-legacy-rv-parts-accessories", title: "Rv Parts & Accessories", items: ["/collections/rv-cover","/collections/trailer-jack","/collections/trailer-dolly",], },{ id: "611506880825-child-1ce00d9ecf96d2b000b42a9cbbfc4fd0-legacy-lifts-hoists-jacks", title: "Lifts & Hoists & Jacks", items: ["/collections/pneumatic-car-jack","/collections/jack-stands","/collections/engine-hoists-stands","/collections/motorcycle-lift-stand","/collections/floor-jacks","/collections/hydraulic-motorcycle-hoist","/collections/transmission-jacks","/collections/engine-stand","/collections/toe-jacks","/collections/hitch-receivers",], },{ id: "611507241273-child-2999ce0c745a8f97dcaa1a54c2fff6f3-legacy-boat-parts-accessories", title: "Boat Parts & Accessories", items: ["/collections/marine-carpet","/collections/boat-trailer-guides","/collections/bimini-tops","/collections/boat-cover","/collections/boat-fenders","/collections/boat-anchor",], },{ id: "611508093241-child-825859c254bf419bdc347a2a5412334a-legacy-repair-tools", title: "Repair Tools", items: ["/collections/magnetic-induction-heater",], },{ id: "611508158777-child-e376963662d1590ae559e66f56653f93-legacy-interior-accessories", title: "Interior Accessories", items: ["/collections/igniter",], },{ id: "customer-account-main-menu", title: "Customer account main menu", items: ["/","https://shopify.com/72466989369/account/orders?locale=en&region_country=US",], },{ id: "637196828985-child-d8ce46bbe9a16e333cb08e2fd17b76d0-legacy-carts-trucks", title: "Carts & Trucks", items: ["/collections/hydraulic-scissor-cart","/collections/utility-cart","/collections/folding-cart","/collections/book-cart","/collections/welding-cart","/collections/stair-climbing-cart","/collections/panel-trucks",], },{ id: "637197091129-child-6aab0b94ace7553abc99621684f6f34e-legacy-dollies-movers", title: "Dollies & Movers", items: ["/collections/drum-dolly","/collections/machinery-mover","/collections/prylever-bar",], },{ id: "637197222201-child-5b70b7f7abd602e1bc12b55837b368a0-legacy-filling-sealing-machine", title: "Filling & Sealing Machine", items: ["/collections/liquid-filling-machine","/collections/sealing-machine",], },{ id: "637197386041-child-c3b7df92650c38db380b17ff82492497-legacy-shelving-storage", title: "Shelving & Storage", items: ["/collections/cylinder-storage-cabinet","/collections/garage-storage-rack",], },{ id: "637200269625-child-89847eefd78cd7717746a4fbba2fc537-legacy-toys-games", title: "Toys & Games", items: ["/collections/musical-instruments","/collections/kids-dress-up-pretend-play","/collections/games-accessories","/collections/learning-education-toys",], },{ id: "637200302393-child-3e8eb19eeb9acca35194deaa02297015-legacy-musical-instrument", title: "Musical Instrument", items: ["/collections/musical-instrument-keyboards","/collections/guitars","/collections/drums-percussion",], },{ id: "668283339065-child-09d6ad2223b20721fe7ee7d1f3f2095a-legacy-kids-dress-up-pretend-play", title: "Kids' Dress Up & Pretend Play", items: ["/collections/toy-kitchen-products","/collections/toy-medical-kits",], },{ id: "668283437369-child-15be70d7e7b22259ff74837b370565a0-legacy-games-accessories", title: "Games & Accessories", items: ["/collections/game-accessories",], },{ id: "668283535673-child-81619b67ec915e0f9b7d7be635feac6b-legacy-learning-education-toys", title: "Learning & Education Toys", items: ["/collections/early-development-activity-toys","/collections/education-toys",], },{ id: "668572483897-child-3bc5fc91f5d348025fe058af273102e9-legacy-hydraulics", title: "Hydraulics", items: ["/collections/hydraulic-equipment","/collections/hydraulic-pumps",], },{ id: "668572516665-child-1cca918dac3681b49d76e4a2e433abbd-legacy-hydraulic-equipment", title: "Hydraulic Equipment", items: ["/collections/hydraulic-power-unit","/collections/hydraulic-shop-press",], },{ id: "668572614969-child-5a27286372afc65e8bd7b8e8e2345856-legacy-hydraulic-pumps", title: "Hydraulic Pumps", items: ["/collections/manual-hydraulic-pump","/collections/air-hydraulic-pump",], },{ id: "669112992057-child-af89f029784d7983d62d8a928aee26b7-legacy-confined-space-entry-systems", title: "Confined Space Entry Systems", items: ["/collections/rescue-tripod",], },{ id: "669113057593-child-80bf7c5da8957291f7bf557ccbe855cb-legacy-safety-storage", title: "Safety Storage", items: ["/collections/flammable-cabinet",], },{ id: "669113123129-child-7f1e67aa8cda8626890781b22832e616-legacy-traffic-safety", title: "Traffic Safety", items: ["/collections/traffic-cone","/collections/sign-post",], },{ id: "685698515257-child-708c950414bdcdd8e7093c2a065580c3-legacy-hydraulics", title: "Hydraulics", items: ["/collections/hydraulic-equipment","/collections/hydraulic-pumps",], },{ id: "685698548025-child-5fb882a1c4188b8604b9cd904873b217-legacy-hydraulic-equipment", title: "Hydraulic Equipment", items: ["/collections/hydraulic-power-unit","/collections/hydraulic-shop-press",], },{ id: "685698646329-child-c4269b01a24b4363f3b1c51660f383fb-legacy-hydraulic-pumps", title: "Hydraulic Pumps", items: ["/collections/manual-hydraulic-pump","/collections/air-hydraulic-pump",], },{ id: "685698744633-child-3e4c3bf031d61e45f9f9da0c72d15433-legacy-toys-games", title: "Toys & Games", items: ["/collections/ride-ons","/collections/musical-instruments","/collections/kids-dress-up-pretend-play","/collections/learning-education-toys","/collections/games-accessories",], },{ id: "685698777401-child-ede3692225fe7e93bf73c09561245f6a-legacy-musical-instruments", title: "Musical Instruments", items: ["/collections/musical-instrument-keyboards","/collections/guitars","/collections/drums-percussion",], },{ id: "685698908473-child-2fd536c5189f844dd6da43d17265a411-legacy-kids-dress-up-pretend-play", title: "Kids' Dress Up & Pretend Play", items: ["/collections/toy-kitchen-products",], },{ id: "685698974009-child-28df5db13faaeb7c954140f6fb03898e-legacy-learning-education-toys", title: "Learning & Education Toys", items: ["/collections/early-development-activity-toys","/collections/education-toys",], },{ id: "685699072313-child-b77567a9570dd3629ada63727acd2d64-legacy-games-accessories", title: "Games & Accessories", items: ["/collections/game-accessories",], },{ id: "track-your-order", title: "Track Your Order", items: ["/apps/parcelpanel",], },{ id: "720589160761-child-71d15ff2cd77b58e40f8ea7c94b3c44c-legacy-outdoor-shade", title: "Outdoor Shade", items: ["/collections/canopy-tent","/collections/carports","/collections/gazebo","/collections/pergola","/collections/umbrella","/collections/camping-tent","/collections/awning","/collections/outdoor-storage-tent","/collections/ice-fishing-tent","/collections/carport-accessories",], },{ id: "720601645369-child-ea8224cadd29fe07baf04b5b532ee4ea-legacy-outdoor-shade", title: "Outdoor Shade", items: ["/collections/carports","/collections/carport-replacement-cover","/collections/gazebo","/collections/canopy-tent","/collections/pergola","/collections/awning","/collections/umbrella","/collections/camping-tent","/collections/outdoor-storage-tent","/collections/ice-fishing-tent",], },{ id: "721384243513-child-71d6cdae40199be542ec915a4645d21d-legacy-outdoor-living", title: "Outdoor Living", items: ["#","#","#",], },{ id: "721537007929-child-f3279270335d0e29816398736d017162-legacy-grills-outdoor-cooking", title: "Grills& Outdoor cooking", items: ["/collections/fire-pits-outdoor-fireplaces","/collections/outdoor-patio-furniture","/collections/canopy-tent",], },{ id: "721537139001-child-786378d31fa46b01427f060eb65505c4-legacy-outdoor-cooking-grilling-fuel", title: "Outdoor Cooking & Grilling Fuel", items: ["/collections/gazebo","/collections/pool-safety-cover","/collections/swimming-pool-rail","/collections/fire-pit-tables","/collections/patio-heaters","/collections/fire-kit-cover","/collections/outdoor-rugs",], },{ id: "721543627065-child-eeb9d4d31ba34a8f72d895e7398888eb-legacy-propane-refill", title: "Propane Refill", items: ["/collections/carports","/collections/greenhouses-plant-germination-equipment",], },{ id: "609762967865-child-5bd165da5c3461729492f6e686a7cb13-legacy-air-conditioners", title: "Air Conditioners ", items: ["/collections/mini-split-air-conditioners","/collections/window-air-conditioner","/collections/portable-air-conditioners",], },{ id: "609763000633-child-48b55cfc51864f3e6e98f00734ded462-legacy-mini-split-air-conditioners", title: "Mini Split Air Conditioners", items: ["/collections/inverter",], },{ id: "609763033401-child-fb7f87c13b63dcdf03382f4108bfb2dc-legacy-windows-air-conditioners", title: "Windows Air Conditioners", items: ["/collections/fixed-frequency","/collections/inverter",], },{ id: "723947487545-child-3bd7565d0822f2551efce7c03ed64777-legacy-portable-air-conditioner", title: "Portable Air Conditioner", items: ["/collections/fixed-frequency","/collections/inverter",], },{ id: "609762312505-child-5070b09c6293a4517db5dc14e981f9e5-legacy-air-conditioners-accessories", title: "Air Conditioners & Accessories", items: ["/collections/mini-split-air-conditioners","/collections/window-air-conditioner","/collections/portable-air-conditioners",], },{ id: "723947815225-child-9b131b2b4d42e17a904730e79ba9f4bd-legacy-mini-split-air-conditioners", title: "Mini Split Air Conditioners", items: ["/collections/inverter",], },{ id: "723947880761-child-7ae1ad2fdc3a659044736188d871af07-legacy-window-air-conditioners", title: "Window Air Conditioners", items: ["/collections/inverter","/collections/fixed-frequency",], },{ id: "609762345273-child-00223d38c6302dbc2b4845bc56e1ca4b-legacy-portable-air-conditioners", title: "Portable Air Conditioners", items: ["/collections/inverter","/collections/fixed-frequency",], },{ id: "724253933881-child-11d9570eef7c8f52da2c2a315aeddbd0-legacy-fire-pits", title: "Fire Pits", items: ["/collections/patio-fire-pit-sets","/collections/outdoor-fire-tables","/collections/firewood-racks",], },{ id: "724254916921-child-8c90943eba37edc8c823e23e24fe5a91-legacy-garden-supplies", title: "Garden Supplies", items: ["/collections/greenhouses","/collections/storage-sheds","/collections/raised-garden-bed","/collections/plant-pots","/collections/plant-stands","/collections/trellises","/collections/garden-arbors","/collections/growing-kits-systems","/collections/led-grow-lights","/collections/landscape-fabric","/collections/garden-cart","/collections/compost-spreader","/collections/outdoor-garden-storage-workbench","/collections/hose-reel",], },{ id: "724257866041-child-31b54998c8e23bb841734d6d4d06e7ca-legacy-outdoor-patio-furniture", title: "Outdoor & Patio Furniture", items: ["/collections/hammocks-swings","/collections/outdoor-sofas","/collections/outdoor-tables","/collections/patio-chairs-seating","/collections/lounge-chairs","/collections/bistro-sets",], },{ id: "724258521401-child-7a4972c895ae2a5b5fba08d4bd17d3a4-legacy-outdoor-cleaning", title: "Outdoor Cleaning", items: ["/collections/lawn-mowers-tractors","/collections/pressure-washers","/collections/robotic-pool-cleaners",], },{ id: "729480855865-child-3f8574a9998d80956b0da4caf612db58-legacy-hardware", title: "Hardware", items: ["/collections/drawer-cabinet-hardware","/collections/motion-control",], },{ id: "729480888633-child-c459c5950f4156a9ce4b4d04a3d37cd3-legacy-drawer-cabinet-hardware", title: "Drawer & Cabinet Hardware", items: ["/collections/drawer-slide",], },{ id: "729480954169-child-71309509832c304355e04fa0c13e5efb-legacy-motion-control", title: "Motion Control", items: ["/collections/linear-guide-rail",], },{ id: "729528041785-child-d1c4d648518a08494ef0f20b017c9ba5-legacy-chain-wire-rope", title: "Chain & Wire & Rope", items: ["/collections/stainless-steel-cable",], },{ id: "729528107321-child-040d7fc8a0cde4635a3640fd527a2a42-legacy-filling-sealing-machine", title: "Filling & Sealing Machine", items: ["/collections/liquid-filling-machine","/collections/sealing-machine",], },{ id: "729528205625-child-c2b8e8223846ae4734bfa90b3d5b19a9-legacy-workbenches-accessories", title: "Workbenches & Accessories", items: ["/collections/adjustable-workbench",], },{ id: "730796392761-child-52fdf2add641946d05e1dea6e3b36cd0-legacy-garden-supplies", title: "Garden Supplies", items: ["/collections/greenhouses","/collections/storage-sheds","/collections/raised-garden-bed","/collections/plant-pots",], },{ id: "custom_menu", title: "Custom_Menu", items: ["/collections/rugs",], },{ id: "732571402553-child-46ee172311179774d49bfc274ae8cd46-legacy-rugs", title: "Rugs", items: ["/collections/room-rugs","/collections/color-rugs","/collections/style-rugs","/collections/size-rugs","/collections/rugs-room-outdoor",], },{ id: "732571435321-child-aa0f0a2608b4260a94137c9a6bb493bc-legacy-room-rugs", title: "Room Rugs", items: ["/collections/rugs-room-diningroom","/collections/rugs-room-office","/collections/hallway-rugs","/collections/rugs-room-entryway","/collections/outdoor-rugs",], },{ id: "732571828537-child-ba3f7f1f556dfb52c8b971698a00ba7e-legacy-size-rugs", title: "Size Rugs", items: ["/collections/2-x-3-rugs","/collections/2-x-6-rugs","/collections/2-x-8-rugs","/collections/2-x-10-rugs","/collections/2-x-12-rugs","/collections/3-x-5-rugs","/collections/4-x-6-rugs","/collections/5-x-7-rugs","/collections/6-x-9-rugs","/collections/8-x-10-rugs","/collections/9-x-12-rugs","/collections/10-x-13-rugs","/collections/11-x-15-rugs","/collections/12-x-18-rugs","/collections/rugs-shape-runner",], },{ id: "732573729081-child-2eeaab9ee0277e7f2f8d425cdaa831dc-legacy-color-rugs", title: "Color Rugs", items: ["/collections/black-rugs","/collections/black-white-rugs","/collections/blue-rugs","/collections/brown-khaki-rugs","/collections/colorful-rugs","/collections/green-rugs","/collections/grey-rugs","/collections/orange-rugs","/collections/pink-rugs","/collections/red-rugs","/collections/tan-lvory-rugs","/collections/white-white","/collections/yellow-rugs",], },{ id: "732575007033-child-5507705e7806c27e294f309f15487650-legacy-style-rugs", title: "Style Rugs", items: ["/collections/abstract-rugs","/collections/animal-print-rugs","/collections/boho-rugs","/collections/bordered-rugs","/collections/floral-rugs","/collections/fluffy-sheepskin-rugs","/collections/geometric-rugs","/collections/kids-rugs","/collections/medallion-damask-rugs","/collections/modern-rugs","/collections/moroccan-rugs","/collections/oriental-rugs","/collections/plaid-rugs","/collections/solid-rugs",], },{ id: "733273063737-child-471a333025f81dd0cdb3293298e8fddf-legacy-shelving-storage", title: "Shelving & Storage", items: ["/collections/cylinder-storage-cabinet","/collections/garage-storage-rack",], },{ id: "605419635001-child-432ac1ff39c34485a4e43ba19555bd1a-legacy-ride-on-toy", title: "Ride On Toy", items: ["/collections/ride-on-cars","/collections/ride-on-tractors","/collections/ride-on-jeeps","/collections/ride-on-atvs","/collections/ride-on-utvs","/collections/ride-on-motorcycles","/collections/ride-ons-go-kart","/collections/ride-on-bumper-cars","/collections/push-pedal","/collections/ride-on-truck","/collections/kids-bikes",], },{ id: "733861970233-child-8a2c79bd1a275e0b3c01c925637346c2-legacy-traffic-safety", title: "Traffic Safety", items: ["/collections/traffic-cone","/collections/sign-post",], },{ id: "735464587577-child-b524b5c48d106065cf65808d95e073e2-legacy-machining", title: "Machining", items: ["/collections/lathe-machines-accessories","/collections/milling-drilling-accessories","/collections/welding-safety-equipment",], },{ id: "735464620345-child-9e5ab61baccbe57f2c25050e76b1e99f-legacy-lathe-machines-accessories", title: "Lathe Machines & Accessories", items: ["/collections/wood-lathe",], },{ id: "735464653113-child-e97546d8d6be2e38fc87cb3b3fce6a21-legacy-milling-drilling-accessories", title: "Milling & Drilling Accessories", items: ["/collections/power-feed",], },{ id: "735464685881-child-bc2f7f60620dcdd0c882cc57601955df-legacy-welding-safety-equipment", title: "Welding Safety Equipment", items: ["/collections/welding-screens",], },{ id: "605191373113-child-c200c89d794485c50621526f4de2fd71-legacy-rugs", title: "Rugs", items: ["/collections/room-rugs","/collections/size-rugs","/collections/color-rugs","/collections/style-rugs","/collections/outdoor-rugs",], },{ id: "735811109177-child-db57cf6d9c2a8aab5bba59f0f9087a6c-legacy-home-furniture", title: "Home & Furniture", items: ["/collections/home-decor","/collections/sesonal-holiday","/collections/kitchen-dining","/collections/bedroom","/collections/living-room","/collections/bathroom","/collections/entryway","/collections/home-office","/collections/baby-kids","/collections/pets-supplies","/collections/home-improvement-tools","/collections/suitcases-luggage",], },{ id: "735811141945-child-ecac3a5cd688893bc3f79db886feaa3c-legacy-home-decor", title: "Home Decor", items: ["/collections/artificial-plants-flowers","/collections/lights","/collections/curtains-drapes","/collections/decorative-pillows","/collections/room-divider",], },{ id: "735811174713-child-c448cf005a2fcaf3fe7dc382bf8bc7e4-legacy-sesonal-holiday", title: "Sesonal & Holiday", items: ["/collections/christmas-trees","/collections/christmas-decorations","/collections/halloween-decorations","/collections/event-party",], },{ id: "735811207481-child-f8fa86d76e8faf35c7032b775c4b457e-legacy-kitchen-dining", title: "Kitchen & Dining", items: ["/collections/dining-tables-seating","/collections/wine-cabinets-racks","/collections/kitchen-fixtures","/collections/kitchen-islands-carts","/collections/buffets-sideboards","/collections/kitchen-utensils-gadgets","/collections/tilt-out-trash-cabinet","/collections/tableware",], },{ id: "735811240249-child-aa0236667b51580900865592e92e4bb4-legacy-bedroom", title: "Bedroom", items: ["/collections/beds-bed-frames","/collections/dressers-jewelry","/collections/bedroom-storage","/collections/bedding-accessories","/collections/nightstands",], },{ id: "735811273017-child-e8d97541e08208961caa9ed60bca0e8d-legacy-living-room", title: "Living Room", items: ["/collections/cabinets-chests","/collections/sofas-couches","/collections/chairs-seating","/collections/coffee-tables","/collections/end-side-tables","/collections/tv-stands-media-consoles","/collections/ottomans-poufs",], },{ id: "735811371321-child-9b876a8ff948af9acdbf3d2331db759e-legacy-home-office", title: "Home Office", items: ["/collections/office-electronics","/collections/office-desks-chairs","/collections/bookshelves-bookcases","/collections/office-stands",], },{ id: "735811404089-child-086c7b6d5e3f73b8fc6f89d166e582d3-legacy-baby-kids", title: "Baby & Kids", items: ["/collections/kids-cabinets-shelves","/collections/kids-sofas","/collections/kids-tables-chairs","/collections/nursery-baby-care","/collections/kids-armoires-dressers","/collections/kids-bed-frames-headboards",], },{ id: "735811469625-child-d5be4d8bb0ac6ed81dc8ee71e70aa05a-legacy-home-improvement-tools", title: "Home Improvement & Tools", items: ["/collections/cleaning-janitorial","/collections/carts",], },{ id: "735811305785-child-14b4f158ac3f91ad52fef2b449f6e557-legacy-bathroom", title: "Bathroom", items: ["/collections/bathroom-cabinets-shelves","/collections/bathroom-fixtures","/collections/bathtubs","/collections/toilets-toilet-parts",], },{ id: "735811338553-child-d97952b748cccd2c73df146c0cf46376-legacy-entryway", title: "Entryway", items: ["/collections/console-tables","/collections/shoe-organizers","/collections/storage-benches","/collections/hall-trees",], },{ id: "735811436857-child-208b7509d587f3d3dca91f1682963314-legacy-pets-supplies", title: "Pets' Supplies", items: ["/collections/dog-furniture","/collections/cat-furniture","/collections/animal-cages-racks","/collections/pet-grooming-products",], },{ id: "735811502393-child-e59a5c6f120b861dda14ada93f6f257e-legacy-suitcases-luggage", title: "Suitcases & Luggage", items: ["/collections/suitcases",], },{ id: "735945982265-child-64f05998a8ed63b1501550564452a920-legacy-room", title: "Room", items: ["/collections/living-room-rugs","/collections/bedroom-rugs","/collections/rugs-room-diningroom","/collections/rugs-room-office","/collections/hallway-rugs","/collections/kids-rugs","/collections/rugs-room-entryway","/collections/outdoor-rugs",], },{ id: "735947587897-child-2e14b5e67de826ff70c0dd22a6d252d9-legacy-size", title: "Size", items: ["/collections/2-x-3-rugs","/collections/2-x-6-rugs","/collections/2-x-8-rugs","/collections/2-x-10-rugs","/collections/2-x-12-rugs","/collections/3-x-5-rugs","/collections/4-x-6-rugs","/collections/5-x-7-rugs","/collections/6-x-9-rugs","/collections/8-x-10-rugs","/collections/9-x-12-rugs","/collections/10-x-13-rugs","/collections/11-x-15-rugs","/collections/12-x-18-rugs","/collections/rectangle-rugs","/collections/rugs-shape-runner","/collections/round-rugs",], },{ id: "735948177721-child-67854d803bd02ec7418b39441f057a08-legacy-color", title: "Color", items: ["/collections/black-rugs","/collections/black-white-rugs","/collections/blue-rugs","/collections/brown-khaki-rugs","/collections/colorful-rugs","/collections/green-rugs","/collections/grey-rugs","/collections/orange-rugs","/collections/pink-rugs","/collections/red-rugs","/collections/tan-lvory-rugs","/collections/white-white","/collections/yellow-rugs",], },{ id: "735948636473-child-f99d6922be5b5ebcb2e00ccd2ac1f241-legacy-style", title: "Style", items: ["/collections/abstract-rugs","/collections/animal-print-rugs","/collections/boho-rugs","/collections/bordered-rugs","/collections/floral-rugs","/collections/fluffy-sheepskin-rugs","/collections/geometric-rugs","/collections/kids-rugs","/collections/medallion-damask-rugs","/collections/modern-rugs","/collections/moroccan-rugs","/collections/oriental-rugs","/collections/plaid-rugs","/collections/solid-rugs",], },{ id: "735949127993-child-5100bb8b5ba2605f67cd7b2be66d377b-legacy-outdoor", title: "Outdoor", items: ["/collections/outdoor-rugs",], },{ id: "hot-search", title: "Hot Search", items: ["/search?q=rugs","/search?q=dresser","/search?q=24v+ride+on","/search?q=tractor","/search?q=area+rugs","/search?q=carport","/search?q=motorcycle+lift","/search?q=tractor+attachments","/search?q=go+kart","/search?q=pallet+forks",], },{ id: "604141715769-child-7027225c4a31c14c1512cdb54988c672-legacy-ride-on-toy", title: "Ride On Toy", items: ["/collections/ride-on-cars","/collections/ride-on-atvs","/collections/ride-on-bumper-cars","/collections/ride-on-jeeps","/collections/ride-on-motorcycles","/collections/ride-on-tractors","/collections/ride-on-trucks","/collections/ride-ons-go-kart",], },{ id: "737931591993-child-57269b7beee8d8f8bb5a1149945ff963-legacy-workbenches-accessories", title: "Workbenches & Accessories", items: ["/collections/adjustable-workbench",], },{ id: "738882978105-child-729b2801b64cdf898c92daa6e67bbdb8-legacy-action-aids", title: "Action Aids", items: ["/collections/walkers-rollators",], },{ id: "738883043641-child-b25ecfff78567f0d202d65561e728952-legacy-action-aids", title: "Action Aids", items: ["/collections/walkers-rollators",], },]; window.shopifyLinkLists = shopifyLinkLists; window.shopifyCurrencyFormat = shopifyCurrencyFormat; </script> <!-- QIKIFY NAVIGATOR END -->
  36847.  
  36848. <script id="qikify-smartmenu-config">
  36849.  
  36850.  
  36851.  _SM = {
  36852.    entries: null,
  36853.    subscription: null,
  36854.    translation: null,
  36855.    storefrontAccessToken: null,
  36856.  };
  36857.  
  36858.  
  36859.    _SM.entries = {"id":267184,"priority":0,"data":{"menu_selector":"selector","theme_selector":"all","transition":"none","trigger":"hover","show_indicator":true,"show_mobile_indicator":true,"menu_height":"50","alignment":"start","root_padding":"15","submenu_fullwidth":false,"megamenu":[{"id":"tmenu-menu-561911","setting":{"item_layout":"icon","submenu_type":"tab","submenu_mega_position":"fullwidth","title":"Categories","submenu_tab_position":"left","submenu_background":{"background_image":"","background_repeat":"no-repeat","background_position":"bottom left","background_size":"auto"},"submenu_minheight":"400","submenu_tab_control_width":"3","icon":{"id":"align-justify","name":"align justify","code":"","type":"fas"},"submenu_scrollbar":false,"submenu_height":"900"},"menus":[{"id":"tmenu-menu-379098","setting":{"item_layout":"text","title":"Lawn & Garden","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439888085305","handle":"lawn-garden","title":"Lawn & Garden","image":{"altText":"Lawn & Garden - GARVEE","id":"1753395069241","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Lawn-Garden-402930.jpg?v=1712984985"}}},"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-359492","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"column_width":"4","item_content_alignment":"left","hidden_mobile":false},"menus":[{"id":"tmenu-menu-958642","setting":{"item_layout":"text","title":"Outdoor Shade","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"492146852153","handle":"outdoorshade","title":"Outdoor Shade","image":{"altText":null,"id":"1758698307897","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Covers_69a758e2-8f88-41da-8155-5df1bad012e7.webp?v=1736822752"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-400146","setting":{"item_layout":"text","title":"Garden Supplies","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"493727088953","handle":"garden-supplies","title":"Garden Supplies","image":{"altText":null,"id":"1758936531257","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/51Fe-5O25aL_4c2df5f7-5d4b-4335-9019-725739ce639e.jpg?v=1739159795"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-636885","setting":{"item_layout":"text","title":"Outdoor & Patio Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479183503673","handle":"outdoor-patio-furniture","title":"Outdoor & Patio Furniture","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-250221","setting":{"item_layout":"text","title":"Fire Pits","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"493727580473","handle":"fire-pits","title":"Fire Pits","image":{"altText":null,"id":"1758936826169","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/41SUJpRDhPL_1d03997e-9a05-4757-98ed-0f7e036255c0.jpg?v=1739160066"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-790218","setting":{"item_layout":"text","title":"Pools & Spas","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462380728633","handle":"pools-spas","title":"Pools & Spas","image":{"altText":null,"id":"1742713258297","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pools_Spas.jpg?v=1730180428"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-826543","setting":{"item_layout":"text","title":"Outdoor Decoration","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477223551289","handle":"outdoor-decoration","title":"Outdoor Decoration","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-695617","setting":{"item_layout":"text","title":"Outdoor Cleaning","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"493727220025","handle":"outdoor-cleaning","title":"Outdoor Cleaning","image":{"altText":null,"id":"1758936695097","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/71rmWDi-mQL_9fbce670-e01e-4cfc-ab36-3097dbac82a9.jpg?v=1739159989"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-858349","setting":{"item_layout":"text","title":"Camp Kitchen","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477614375225","handle":"camp-kitchen","title":"Camp Kitchen","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-746983","setting":{"item_layout":"text","title":"Lawn Care","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477223518521","handle":"lawn-care","title":"Lawn Care","image":null}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-925576","setting":{"item_layout":"text","title":"Outdoor Hand Tools","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462380892473","handle":"outdoor-hand-tools","title":"Outdoor Hand Tools","image":null}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-705516","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"column_width":"4","item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-997495","setting":{"item_layout":"text","title":"Carports","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"460997394745","handle":"carports","title":"Carports","image":{"altText":"","id":"1753391006009","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Carports-657383.jpg?v=1717742727"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-305292","setting":{"item_layout":"text","title":"Canopy Tents","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477613130041","handle":"canopy-tent","title":"Canopy Tents","image":{"altText":null,"id":"1758698209593","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Camping_Tent_Canopy_Tent_and_Carport_Tent.-4.png?v=1736822015"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-565106","setting":{"item_layout":"text","title":"Gazebos","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477223452985","handle":"gazebo","title":"Gazebos","image":{"altText":null,"id":"1758697980217","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Gazebos.webp?v=1736821483"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-747016","setting":{"item_layout":"text","title":"Pergolas","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"492146950457","handle":"pergola","title":"Pergolas","image":{"altText":null,"id":"1758698340665","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pergolas_e6a90b61-a217-4644-aea2-1ea173d75771.webp?v=1736822886"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-471822","setting":{"item_layout":"text","title":"Greenhouses","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"492588663097","handle":"greenhouses","title":"Greenhouses","image":{"altText":null,"id":"1758936924473","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/71chQYhITWL_ec4d7a23-5d4c-4628-a596-c57ab9133e8a.jpg?v=1739160198"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-283416","setting":{"item_layout":"text","title":"Raised Garden Beds","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465471111481","handle":"raised-garden-bed","title":"Raised Garden Beds","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-521056","setting":{"item_layout":"text","title":"Plant Stands","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"493646872889","handle":"fish-furniture","title":"Plant Stands","image":{"altText":null,"id":"1758937284921","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/71ou4-9eMWL_7c977bff-1b85-400a-84a7-95ab64a210b4.jpg?v=1739160593"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-251364","setting":{"item_layout":"text","title":"Plant Pots","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477615358265","handle":"plant-pots","title":"Plant Pots","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-151352","setting":{"item_layout":"text","title":"Storage Sheds","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477213229369","handle":"storage-sheds","title":"Storage Sheds","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-256262","setting":{"item_layout":"text","title":"Patio Fire Pit Sets","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"480589611321","handle":"patio-fire-pit-sets","title":"Patio Fire Pit Sets","image":{"altText":null,"id":"1758136140089","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/41SUJpRDhPL_1.jpg?v=1730432807"}}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-301605","setting":{"item_layout":"image","title":"Carports ->","image_position":"bellow","image":"https://cdn.qikify.com/production/tmenu/instances/228774/a1941062f97edcc6c045907a8c0b93412e1f4ed619f75076c7f15c109878e320.webp","image_width":"220","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"460997394745","handle":"carports","title":"Carports","image":{"altText":"","id":"1753391006009","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Carports-657383.jpg?v=1717742727"}}},"item_display":true,"item_content_alignment":"left","hidden_mobile":false},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-340111","setting":{"item_layout":"text","title":"Air Conditioners","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477929046329","handle":"air-conditioners-accessories","title":"Air Conditioners & Accessories","image":null}},"item_content_alignment":"left","item_display":false,"image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/46e17c437e3ec4181ff711c9f35a2e2c3624261afd9762ce6d4beb93461e46f8.jpeg","image_position":"right","hidden_desktop":false},"menus":[{"id":"tmenu-menu-356751","setting":{"item_layout":"text","title":"Shop by Categories","item_display":true,"disable_link":true,"column_width":"4","item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-264636","setting":{"item_layout":"text","title":"Mini Split Air Conditioners","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"493457637689","handle":"mini-split-air-conditioners","title":"Mini Split Air Conditioners","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-383611","setting":{"item_layout":"text","title":"Window Air Conditioners","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"493457735993","handle":"window-air-conditioner","title":"Window air conditioner","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-500871","setting":{"item_layout":"text","title":"Portable Air Conditioners","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477223354681","handle":"portable-air-conditioners","title":"Portable Air Conditioner","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-331697","setting":{"item_layout":"text","title":"More Way to Shop","item_display":true,"disable_link":true,"column_width":"4"},"menus":[{"id":"tmenu-menu-782087","setting":{"item_layout":"text","title":"Inverter","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"493457703225","handle":"inverter","title":"Inverter","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-400550","setting":{"item_layout":"text","title":"Fixed frequency","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"493457932601","handle":"fixed-frequency","title":"Fixed frequency","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-690665","setting":{"item_layout":"image","title":"Mini Split Air Conditioners ->","item_display":true,"image_position":"bellow","image":"https://cdn.qikify.com/production/tmenu/instances/228774/8d49bebc90dbde97bdd858981d80ce527dc8768df250679cc02615a5d8ffb5d4.jpeg","column_width":"4","image_width":"220","product":{"id":"8675699097913","handle":"garvee-popcorn-machine-cart-pho-0x27s5y6","title":"GARVEE Popcorn Machine Cart Commercial Popcorn Machine with 8Oz Kettle Red","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/71K86YCFtgL.jpg?v=1694074853"},"price":"315.00","priceCompare":"399.00"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"product":{"id":"8288157892921","handle":"garvee-security-safe-pst-02tkhmni","title":"GARVEE Security Safe With Digital Keypad Lock 19.6 x 13.7 x 12.2 Inches Steel Safe","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/GARVEE-Security-Safe-With-Digital-Keypad-Lock-055.jpg?v=1683774275"},"price":"161.99","priceCompare":null},"link":"https://www.garvee.com/collections/ride-ons","collection":{"id":"493457637689","handle":"mini-split-air-conditioners","title":"Mini Split Air Conditioners","image":null}},"item_content_alignment":"left","hidden_mobile":false},"menus":[],"hide_submenu":false}],"hide_submenu":true},{"id":"tmenu-menu-297273","setting":{"item_layout":"text","title":"Home & Kitchen","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"438937780537","handle":"home-kitchen","title":"Home & Kitchen","image":{"altText":"Home & Kitchen - GARVEE","id":"1753394053433","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Home-Kitchen-1-955063.jpg?v=1712984942"}}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[{"id":"tmenu-menu-584299","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-453765","setting":{"item_layout":"text","title":"Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439493132601","handle":"furniture","title":"Furniture","image":{"altText":"Furniture - GARVEE","id":"1753393430841","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Furniture-310316.jpg?v=1712984916"}}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-683192","setting":{"item_layout":"text","title":"Rugs","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477212344633","handle":"rugs","title":"Rugs","image":{"altText":null,"id":"1755855487289","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/81J9cN9c1nL_48a2e598-59ea-4d2a-ae1b-a4f1238e8e1c_1.jpg?v=1718785213"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-453915","setting":{"item_layout":"text","title":"Bath Products","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477212475705","handle":"bath-products","title":"Bath Products","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-571849","setting":{"item_layout":"text","title":"Pet Supplies","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"447023153465","handle":"pet-supplies","title":"Pet Supplies","image":{"altText":"Pet Supplies","id":"1734701744441","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pet-Supplies.jpg?v=1683615820"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-768203","setting":{"item_layout":"text","title":"Home Lighting & Ceiling Fans","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477212508473","handle":"home-lighting-ceiling-fans","title":"Home Lighting & Ceiling Fans","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-325986","setting":{"item_layout":"text","title":"Home Decor Products","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477212639545","handle":"home-decor-products","title":"Home Decor Products","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-219436","setting":{"item_layout":"text","title":"Tools & Home Improvement","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/tools-home-improvement"}},"menus":[]},{"id":"tmenu-menu-914455","setting":{"item_layout":"text","title":"Kitchen & Dining","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477212737849","handle":"kitchen-dining","title":"Kitchen & Dining","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-368374","setting":{"item_layout":"text","title":"Bedding","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477212770617","handle":"bedding","title":"Bedding","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-723379","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"column_width":"4"},"menus":[{"id":"tmenu-menu-744051","setting":{"item_layout":"text","title":"Toilets & Toilet Parts","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"link":"https://www.garvee.com/collections/bedroom-furniture","collection":{"id":"458076782905","handle":"toilets-toilet-parts","title":"Toilets & Toilet Parts","image":{"altText":null,"id":"1742594605369","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Toilets_Toilet_Parts.jpg?v=1699008570"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-961453","setting":{"item_layout":"text","title":"Mattress Pads & Toppers","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477214245177","handle":"mattress-pads-toppers","title":"Mattress Pads & Toppers","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-685347","setting":{"item_layout":"text","title":"Artificial Plants & Flowers","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477214081337","handle":"artificial-plants-flowers","title":"Artificial Plants & Flowers","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-233247","setting":{"item_layout":"text","title":"Seasonal Decor","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477214114105","handle":"seasonal-decor","title":"Seasonal Decor","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-463062","setting":{"item_layout":"text","title":"Boho Rugs","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477213524281","handle":"entryway-furniture","title":"Entryway Furniture","image":null}},"item_content_alignment":"left","hidden_desktop":true},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-885661","setting":{"item_layout":"image","title":"Artificial Plants ->","image_position":"bellow","image_width":"220","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477214081337","handle":"artificial-plants-flowers","title":"Artificial Plants & Flowers","image":null}},"item_display":true,"item_content_alignment":"left","column_width":"4","hidden_mobile":false,"image":"https://cdn.qikify.com/production/tmenu/instances/228774/714cd092a56f988539ca76c54b2c28c3c99f257aad8a211041aa5499f0eabb5c.jpeg"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-260169","setting":{"item_layout":"text","title":"Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439493132601","handle":"furniture","title":"Furniture","image":{"altText":"Furniture - GARVEE","id":"1753393430841","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Furniture-310316.jpg?v=1712984916"}}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[{"id":"tmenu-menu-709884","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-256067","setting":{"item_layout":"text","title":"Living Room Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477213393209","handle":"living-room-furniture","title":"Living Room Furniture","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-143075","setting":{"item_layout":"text","title":"Bedroom Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477213294905","handle":"bedroom-furniture","title":"Bedroom Furniture","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-832196","setting":{"item_layout":"text","title":"Entryway Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477213524281","handle":"entryway-furniture","title":"Entryway Furniture","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-225563","setting":{"item_layout":"text","title":"Kids' Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477213557049","handle":"kids-furniture","title":"Kids' Furniture","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-683768","setting":{"item_layout":"text","title":"Kitchen & Dining Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479181603129","handle":"kitchen-dining-furniture","title":"Kitchen & Dining Furniture","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-537078","setting":{"item_layout":"text","title":"Bathroom Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479179702585","handle":"bathroom-furniture","title":"Bathroom Furniture","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-461943","setting":{"item_layout":"text","title":"Office Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381482297","handle":"office-furniture","title":"Office Furniture","image":{"altText":"","id":"1753395986745","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Office_Furniture-623583.jpg?v=1718173984"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-775058","setting":{"item_layout":"text","title":"Outdoor & Patio Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479183503673","handle":"outdoor-patio-furniture","title":"Outdoor & Patio Furniture","image":null}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-994078","setting":{"item_layout":"text","title":"Pet Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"440448418105","handle":"pet-furniture","title":"Pet Furniture","image":{"altText":null,"id":"1742714339641","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pet_Furniture.jpg?v=1699431744"}}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-480062","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-296588","setting":{"item_layout":"text","title":"Cabinets & Chests","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479182455097","handle":"cabinets-chests","title":"Cabinets & Chests","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-868460","setting":{"item_layout":"text","title":"Chairs & Seating","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479182553401","handle":"chairs-seating","title":"Chairs & Seating","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-827564","setting":{"item_layout":"text","title":"Coffee Tables","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479182717241","handle":"coffee-tables","title":"Coffee Tables","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-265985","setting":{"item_layout":"text","title":"End & Side Tables","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479182782777","handle":"end-side-tables","title":"End & Side Tables","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-608308","setting":{"item_layout":"text","title":"Sofas & Couches","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479182979385","handle":"sofas-couches","title":"Sofas & Couches","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-526743","setting":{"item_layout":"text","title":"TV Stands & Media Consoles","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479183012153","handle":"tv-stands-media-consoles","title":"TV Stands & Media Consoles","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-876257","setting":{"item_layout":"text","title":"Beds & Bed Frames","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439888216377","handle":"beds-bed-frames","title":"Beds & Bed Frames","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-218988","setting":{"item_layout":"text","title":"Dressers & Chests","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479180226873","handle":"dressers-chests","title":"Dressers & Chests","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-528190","setting":{"item_layout":"text","title":"Nightstands","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479180357945","handle":"nightstands","title":"Nightstands","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-734873","setting":{"item_layout":"text","title":"Console Tables","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479180620089","handle":"console-tables","title":"Console Tables","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-382936","setting":{"item_layout":"text","title":"Shoe Organizers","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479180882233","handle":"shoe-organizers","title":"Shoe Organizers","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-447230","setting":{"item_layout":"text","title":"Buffets & Sideboards","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479181799737","handle":"buffets-sideboards","title":"Buffets & Sideboards","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-354484","setting":{"item_layout":"text","title":"Dining Tables & Seating","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479182029113","handle":"dining-tables-seating","title":"Dining Tables & Seating","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-761462","setting":{"item_layout":"text","title":"Wine Cabinets & Racks","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479182160185","handle":"wine-cabinets-racks","title":"Wine Cabinets & Racks","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-435618","setting":{"item_layout":"text","title":"Bathroom Cabinets & Shelving","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479179866425","handle":"bathroom-cabinets-shelving","title":"Bathroom Cabinets & Shelving","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-777886","setting":{"item_layout":"text","title":"Kids' Tables & Chairs","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479181308217","handle":"kids-tables-chairs","title":"Kids' Tables & Chairs","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-525355","setting":{"item_layout":"text","title":"Nursery Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479181373753","handle":"nursery-furniture","title":"Nursery Furniture","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-262628","setting":{"item_layout":"text","title":"Bookshelves & Bookcases","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479183175993","handle":"bookshelves-bookcases","title":"Bookshelves & Bookcases","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-765014","setting":{"item_layout":"text","title":"Computer Desks","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479183241529","handle":"computer-desks","title":"Computer Desks","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-184760","setting":{"item_layout":"image","title":"Living Room Furniture ->","image_width":"220","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/c339e5da56934511f06fd25b4f0eef4fc5ce6014fea5b30187a8f19d0e5639b6.jpeg","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477213393209","handle":"living-room-furniture","title":"Living Room Furniture","image":null}},"item_display":true,"item_content_alignment":"left","hidden_mobile":false,"image_position":"bellow","column_width":"4"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-309115","setting":{"item_layout":"text","title":"Home & Furniture","hidden_desktop":false,"hidden_mobile":false,"url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/home-furniture"},"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-909801","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","hidden_desktop":false,"hidden_mobile":false},"menus":[{"id":"tmenu-menu-949659","setting":{"item_layout":"text","title":"Living Room","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/living-room"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-139992","setting":{"item_layout":"text","title":"Kitchen & Dining","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/kitchen-dining"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-355379","setting":{"item_layout":"text","title":"Bedroom","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/bedroom"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-932868","setting":{"item_layout":"text","title":"Baby & Kids","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/baby-kids"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-720630","setting":{"item_layout":"text","title":"Pets' Supplies","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/pets-supplies"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-858920","setting":{"item_layout":"text","title":"Home Office","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/home-office"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-297046","setting":{"item_layout":"text","title":"Bathroom","url":{"type":{"id":"link"},"link":"https://www.garvee.com/collections/bathroom"}},"menus":[]},{"id":"tmenu-menu-782733","setting":{"item_layout":"text","title":"Entryway","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/entryway"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-428450","setting":{"item_layout":"text","title":"Home Decor","disable_link":false,"url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/home-decor"},"item_display":false,"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-363486","setting":{"item_layout":"text","title":"Sesonal & Holiday","url":{"type":{"id":"link"},"link":"https://www.garvee.com/collections/sesonal-holiday"}},"menus":[]},{"id":"tmenu-menu-394738","setting":{"item_layout":"text","title":"Home Improvement & Tools","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/home-improvement-tools"},"item_content_alignment":"left","hidden_desktop":false,"hidden_mobile":false},"menus":[]},{"id":"tmenu-menu-302569","setting":{"item_layout":"text","title":"Suitcases & Luggage","url":{"type":{"id":"link"},"link":"https://www.garvee.com/collections/suitcases-luggage"}},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-306645","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-363553","setting":{"item_layout":"text","title":"Cabinets & Chests","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/cabinets-chests"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-365044","setting":{"item_layout":"text","title":"Sofas & Couches","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/sofas-couches"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-272553","setting":{"item_layout":"text","title":"Dining Tables & Seating","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/dining-tables-seating"},"item_content_alignment":"left","column_width":"12"},"menus":[]},{"id":"tmenu-menu-665363","setting":{"item_layout":"text","title":"Kitchen Islands & Carts","url":{"type":{"id":"link"},"link":"https://www.garvee.com/collections/kitchen-islands-carts"},"item_content_alignment":"left","column_width":"12"},"menus":[]},{"id":"tmenu-menu-523005","setting":{"item_layout":"text","title":"Beds & Bed Frames","url":{"type":{"id":"link"},"link":"https://www.garvee.com/collections/beds-bed-frames"},"item_content_alignment":"left","column_width":"12"},"menus":[]},{"id":"tmenu-menu-229066","setting":{"item_layout":"text","title":"Bedroom Storage","url":{"type":{"id":"link"},"link":"https://www.garvee.com/collections/bedroom-storage"},"column_width":"12","item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-899207","setting":{"item_layout":"text","title":"Nursery & Baby Care","url":{"type":{"id":"link"},"link":"https://www.garvee.com/collections/nursery-baby-care"},"item_content_alignment":"left","column_width":"12"},"menus":[]},{"id":"tmenu-menu-666423","setting":{"item_layout":"text","title":"Kids' Tables & Chairs","url":{"type":{"id":"link"},"link":"https://www.garvee.com/collections/kids-tables-chairs"},"item_content_alignment":"left","column_width":"12"},"menus":[]},{"id":"tmenu-menu-287536","setting":{"item_layout":"text","title":"Dog Furniture","url":{"type":{"id":"link"},"link":"https://www.garvee.com/collections/dog-furniture"},"item_content_alignment":"left","column_width":"12"},"menus":[]},{"id":"tmenu-menu-502208","setting":{"item_layout":"text","title":"Pet Grooming Products","url":{"type":{"id":"link"},"link":"https://www.garvee.com/collections/pet-grooming-products"},"item_content_alignment":"left","column_width":"12"},"menus":[]},{"id":"tmenu-menu-757144","setting":{"item_layout":"text","title":"Bookshelves & Bookcases","url":{"type":{"id":"link"},"link":"https://www.garvee.com/collections/bookshelves-bookcases"},"item_content_alignment":"left","column_width":"12"},"menus":[]},{"id":"tmenu-menu-732611","setting":{"item_layout":"text","title":"Shoe Organizers","url":{"type":{"id":"link"},"link":"https://www.garvee.com/collections/shoe-organizers"},"item_content_alignment":"left","column_width":"12"},"menus":[]},{"id":"tmenu-menu-419211","setting":{"item_layout":"text","title":"Lights","url":{"type":{"id":"link"},"link":"https://www.garvee.com/collections/lights"},"item_content_alignment":"left","column_width":"12"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-103384","setting":{"item_layout":"image","title":"Kitchen & Dining ->","image":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/61xPwvenaxL_ddf815c7-f754-4cd8-a9b8-30ba11e90f18.jpg?v=1746513141&width=220","image_position":"bellow","image_width":"220","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/kitchen-dining"},"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-528477","setting":{"item_layout":"text","title":"Rugs","hidden_desktop":false,"hidden_mobile":false,"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477212344633","handle":"rugs","title":"Rugs","image":{"altText":null,"id":"1755855487289","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/81J9cN9c1nL_48a2e598-59ea-4d2a-ae1b-a4f1238e8e1c_1.jpg?v=1718785213"}}}},"menus":[{"id":"tmenu-menu-919655","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-902047","setting":{"item_layout":"text","title":"Room","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"collection":{"id":"477212344633","handle":"rugs","title":"Rugs","image":{"altText":null,"id":"1755855487289","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/81J9cN9c1nL_48a2e598-59ea-4d2a-ae1b-a4f1238e8e1c_1.jpg?v=1718785213"}},"link":"https://www.garvee.com/collections/room-rugs"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-203471","setting":{"item_layout":"text","title":"Size","disable_link":false,"url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/size-rugs"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-887622","setting":{"item_layout":"text","title":"Color","disable_link":false,"url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/color-rugs"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-335363","setting":{"item_layout":"text","title":"Style","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/style-rugs"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-998013","setting":{"item_layout":"text","title":"Outdoor","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/outdoor-rugs"},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-815023","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-419860","setting":{"item_layout":"text","title":"Modern","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/modern-rugs"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-992844","setting":{"item_layout":"text","title":"Oriental & Persian","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/oriental-rugs"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-391051","setting":{"item_layout":"text","title":"Living Room Rugs","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/rugs-room-living-room"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-267488","setting":{"item_layout":"text","title":"Entryway Rugs","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/rugs-room-entryway"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-544735","setting":{"item_layout":"text","title":"Brown & Khaki","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/rugs-color-beown-khaki"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-145667","setting":{"item_layout":"text","title":"Black","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/rugs-color-black"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-165649","setting":{"item_layout":"text","title":"2' x 6'","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/2-x-6-rugs"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-665057","setting":{"item_layout":"text","title":"2' x 8'","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/2-x-8-rugs"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-386928","setting":{"item_layout":"text","title":"8' x 10'","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/8-x-10-rugs"},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-886828","setting":{"item_layout":"text","title":"9' x 12'","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/9-x-12-rugs"},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-645631","setting":{"item_layout":"image","title":"Modern ->","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/rugs-style-modern"},"image":"https://www.garvee.com/cdn/shop/files/81iCngjWQGL_e5660ebd-0140-4d1a-961f-592f536a03a4.jpg?v=1742983106&width=600","image_position":"bellow","image_width":"220","hidden_mobile":false,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-928439","setting":{"item_layout":"text","title":"Appliances","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"441853149497","handle":"appliances","title":"Appliances","image":{"altText":"Appliances - GARVEE","id":"1753389924665","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Appliances-188938.jpg?v=1712984764"}}},"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-393423","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"column_width":"4"},"menus":[{"id":"tmenu-menu-434852","setting":{"item_layout":"text","title":"Heating, Cooling & Air Quality","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477566009657","handle":"heating-cooling-air-quality","title":"Heating & Cooling & Air Quality","image":null}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-453096","setting":{"item_layout":"text","title":"Air Conditioners & Accessories","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477929046329","handle":"air-conditioners-accessories","title":"Air Conditioners & Accessories","image":null}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-558277","setting":{"item_layout":"text","title":"Small Appliances","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477226697017","handle":"small-appliances","title":"Small Appliances","image":null}},"item_content_alignment":"left","hidden_desktop":false},"menus":[]},{"id":"tmenu-menu-777142","setting":{"item_layout":"text","title":"Air Treatment","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477929013561","handle":"air-treatment","title":"Air Treatment","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-218605","setting":{"item_layout":"text","title":"Fireplaces & Stoves","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477928948025","handle":"fireplaces-stoves","title":"Fireplaces & Stoves","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-111713","setting":{"item_layout":"text","title":"Heater & Accessories","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477928915257","handle":"heater-accessories","title":"Heater & Accessories","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-788896","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"column_width":"4"},"menus":[{"id":"tmenu-menu-198403","setting":{"item_layout":"text","title":"Air Conditioner","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"442401227065","handle":"air-conditioners","title":"Air Conditioners","image":{"created_at":"2024-04-13T13:05:54+08:00","alt":"","width":2000,"height":2000,"url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Air-Conditioners-664390.jpg?v=1718173749"}}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-404780","setting":{"item_layout":"text","title":"Air Purifier","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"441854984505","handle":"air-purifiers","title":"Air Purifiers","image":{"created_at":"2024-04-13T13:05:59+08:00","alt":"Air Purifiers - GARVEE","width":700,"height":425,"url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Air-Purifiers-547946.jpg?v=1712984759"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-501463","setting":{"item_layout":"text","title":"Commercial Dehumidifiers","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"447458509113","handle":"commercial-dehumidifiers","title":"Commercial Dehumidifiers","image":{"altText":"Commercial Dehumidifiers - GARVEE","id":"1753391464761","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Commercial-Dehumidifiers-590014.jpg?v=1712984831"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-160618","setting":{"item_layout":"text","title":"Cordless Fan","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477224894777","handle":"cordless-fan","title":"Cordless Fan","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-603220","setting":{"item_layout":"text","title":"Electric Fireplace","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465270636857","handle":"electric-fireplace","title":"Electric Fireplace","image":{"altText":"Electric Fireplace - GARVEE","id":"1753392513337","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Electric_Fireplace-658180.jpg?v=1712984878"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-410443","setting":{"item_layout":"text","title":"Electric Space Heaters","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477224862009","handle":"electric-space-heaters","title":"Electric Space Heaters","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-639578","setting":{"item_layout":"text","title":"Evaporative Cooler","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477224436025","handle":"evaporative-cooler","title":"Evaporative Cooler","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-908572","setting":{"item_layout":"text","title":"Portable Air Conditioner","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477223354681","handle":"portable-air-conditioners","title":"Portable Air Conditioners","image":null}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-718656","setting":{"item_layout":"text","title":"Clothes Dryer","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477223846201","handle":"clothes-dryer","title":"Clothes dryer","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-430051","setting":{"item_layout":"text","title":"Hairdryer","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477223813433","handle":"hairdryer","title":"Hairdryer","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-966975","setting":{"item_layout":"image","title":"Air Conditioner ->","image_width":"220","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/d615c536036f8cdaebb568dc29f37d3344ab4fe5161d35cc8a53c7589a358f61.jpeg","hidden_mobile":false,"image_position":"bellow","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"442401227065","handle":"air-conditioners","title":"Air Conditioners","image":{"created_at":"2024-04-13T13:05:54+08:00","alt":"","width":2000,"height":2000,"url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Air-Conditioners-664390.jpg?v=1718173749"}}},"item_display":false,"item_content_alignment":"left"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-987339","setting":{"item_layout":"text","title":"Automotive","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"438325182777","handle":"automotive","title":"Automotive","image":{"altText":"Automotive","id":"1734703972665","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Automotive.jpg?v=1694590653"}}},"item_content_alignment":"left","item_display":false,"image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/46e17c437e3ec4181ff711c9f35a2e2c3624261afd9762ce6d4beb93461e46f8.jpeg","image_position":"right"},"menus":[{"id":"tmenu-menu-479780","setting":{"item_layout":"text","title":"Shop by Categories","item_display":true,"disable_link":true,"column_width":"4","item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-621933","setting":{"item_layout":"text","title":"Fuel Transfer & Lubrication","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"448035782969","handle":"fuel-transfer-lubrication","title":"Fuel Transfer & Lubrication","image":{"altText":"Fuel Transfer & Lubrication","id":"1734952812857","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Fuel-Transfer-Lubrication.jpg?v=1684144779"}}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-953497","setting":{"item_layout":"text","title":"Tire & Wheel Tools","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457512747321","handle":"tire-wheel-tools","title":"Tire & Wheel Tools","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-347737","setting":{"item_layout":"text","title":"Jacks & Jack Stands","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"461439041849","handle":"jacks-jack-stands","title":"Jacks & Jack Stands","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-657619","setting":{"item_layout":"text","title":"Automotive Accessories","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457511928121","handle":"automotive-accessories","title":"Automotive Accessories","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-328963","setting":{"item_layout":"text","title":"Air Conditioning & Heat","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381744441","handle":"air-conditioning-heat","title":"Air Conditioning & Heat","image":{"altText":"","id":"1742201487673","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Air_Conditioning___Heat-removebg-preview.png?v=1698998383"}}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-309163","setting":{"item_layout":"text","title":"Steering & Suspension Tool","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"461316718905","handle":"steering-suspension-tool","title":"Steering & Suspension Tool","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-429829","setting":{"item_layout":"text","title":"Cargo Management","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"460998902073","handle":"cargo-management","title":"Cargo Management","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-184786","setting":{"item_layout":"text","title":"More Way to Shop","item_display":true,"disable_link":true,"column_width":"4"},"menus":[{"id":"tmenu-menu-377910","setting":{"item_layout":"text","title":"Truck Tool Boxes","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"466367643961","handle":"truck-tool-boxes","title":"Truck Tool Boxes","image":{"altText":null,"id":"1742751826233","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Truck_Tool_Boxes.jpg?v=1699519248"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-487062","setting":{"item_layout":"text","title":"Oil Drain Pan","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"448035750201","handle":"oil-drain-pan","title":"Oil Drain Pan","image":{"altText":null,"id":"1734952878393","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Oil-Drain-Pan.jpg?v=1684145097"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-828821","setting":{"item_layout":"text","title":"Fuel Caddy","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457638805817","handle":"fuel-caddy","title":"Fuel Caddy","image":null}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-734377","setting":{"item_layout":"text","title":"Portable Fuel Tank","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"461182107961","handle":"portable-fuel-tank","title":"Portable Fuel Tank","image":{"altText":null,"id":"1742202339641","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Portable_Fuel_Tank-removebg-preview.png?v=1697446930"}}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-193198","setting":{"item_layout":"text","title":"Floor Jacks","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457535979833","handle":"floor-jacks","title":"Floor Jacks","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-807459","setting":{"item_layout":"text","title":"Shock Absorber","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"461316751673","handle":"shock-absorber","title":"Shock Absorber","image":null}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-920774","setting":{"item_layout":"text","title":"Brake Tools","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457636282681","handle":"brake-tools","title":"Brake Tools","image":{"altText":"","id":"1742201749817","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Brake_Tools-removebg-preview.png?v=1699000661"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-424636","setting":{"item_layout":"text","title":"Ladder Racks","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465040408889","handle":"ladder-racks","title":"Ladder Racks","image":{"altText":"Ladder Racks","id":"1742201946425","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Ladder_Racks-removebg-preview.png?v=1699423377"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-470029","setting":{"item_layout":"text","title":"Diesel Heater","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465039917369","handle":"diesel-heater","title":"Diesel Heater","image":{"altText":"","id":"1742201520441","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Diesel_Heater-removebg-preview.png?v=1699001825"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-790559","setting":{"item_layout":"text","title":"Body & Suspension Lift Kits","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"448040075577","handle":"body-suspension-lift-kits","title":"Body & Suspension Lift Kits","image":{"created_at":"2023-05-15T18:42:04+08:00","alt":"Body & Suspension Lift Kits","width":700,"height":425,"url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Body-Suspension-Lift-Kits.jpg?v=1684147324"}}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-235836","setting":{"item_layout":"image","title":"Portable Fuel Tank  ->","item_display":true,"image_position":"bellow","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/c360312157f21d539fced942454da97085902f2b420829d35264199654aa5c67.jpeg","column_width":"4","image_width":"220","product":{"id":"8675699097913","handle":"garvee-popcorn-machine-cart-pho-0x27s5y6","title":"GARVEE Popcorn Machine Cart Commercial Popcorn Machine with 8Oz Kettle Red","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/71K86YCFtgL.jpg?v=1694074853"},"price":"315.00","priceCompare":"399.00"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"product":{"id":"8659579404601","handle":"garvee-trailer-tires-pau-0fqp3muo","title":"GARVEE 2 Pack 480-12 4.80x12 4.80-12 4.8-12 Trailer Tires with 12 Inch Rims","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/trailer-tires-002.jpg?v=1693470998"},"price":"124.99","priceCompare":"159.99"},"link":"","collection":{"id":"461182107961","handle":"portable-fuel-tank","title":"Portable Fuel Tank","image":{"altText":null,"id":"1742202339641","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Portable_Fuel_Tank-removebg-preview.png?v=1697446930"}}},"item_content_alignment":"left","hidden_mobile":false},"menus":[],"hide_submenu":false}],"hide_submenu":true},{"id":"tmenu-menu-998460","setting":{"item_layout":"text","title":"Material Handling","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439132062009","handle":"material-handling","title":"Material Handling","image":{"altText":"Material Handling","id":"1732743070009","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Material-Handling.jpg?v=1694590709"}}},"item_content_alignment":"left","item_display":false,"image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/46e17c437e3ec4181ff711c9f35a2e2c3624261afd9762ce6d4beb93461e46f8.jpeg","image_position":"right"},"menus":[{"id":"tmenu-menu-688854","setting":{"item_layout":"text","title":"Shop by Categories","item_display":true,"disable_link":true,"column_width":"4","item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-520671","setting":{"item_layout":"text","title":"Moving Equipment","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462298022201","handle":"moving-equipment","title":"Moving Equipment","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-406182","setting":{"item_layout":"text","title":"Lifting Equipment","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462298054969","handle":"lifting-equipment","title":"Lifting Equipment","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-336863","setting":{"item_layout":"text","title":"Hoists & Winches & Rigging","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"450455896377","handle":"hoists-winches-rigging","title":"Hoists & Winches & Rigging","image":{"altText":"Hoists & Winches & Rigging - GARVEE","id":"1753393955129","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/hoists-winches-rigging-390944.jpg?v=1712984939"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-681729","setting":{"item_layout":"text","title":"Pallet Moving Equipment & Accessories","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457647718713","handle":"pallet-moving-equipment-accessories","title":"Pallet Moving Equipment & Accessories","image":{"altText":null,"id":"1742714667321","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pallet_Moving_Equipment_Accessories.jpg?v=1699432306"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-970035","setting":{"item_layout":"text","title":"Ramps & Ladders","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"461317308729","handle":"ramps-ladders","title":"Ramps & Ladders","image":{"altText":null,"id":"1742713159993","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Ramps_Ladders.jpg?v=1699516203"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-482309","setting":{"item_layout":"text","title":"Carts & Trucks","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381285689","handle":"carts-trucks","title":"Carts & Trucks","image":{"altText":"Carts & Trucks - GARVEE","id":"1753391071545","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Carts_Trucks-421644.jpg?v=1712984815"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-555815","setting":{"item_layout":"text","title":"Dollies & Movers","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381252921","handle":"dollies-movers","title":"Dollies & Movers","image":{"altText":"Dollies & Movers - GARVEE","id":"1753392120121","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Dollies_Movers-449701.jpg?v=1712984860"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-690210","setting":{"item_layout":"text","title":"Workbenches & Accessories","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381318457","handle":"workbenches-accessories","title":"Workbenches & Accessories","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-267907","setting":{"item_layout":"text","title":"Filling & Sealing Machine","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477472620857","handle":"filling-sealing-machine","title":"Filling & Sealing Machine","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-794307","setting":{"item_layout":"text","title":"Heavy Equipment Accessories","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439887888697","handle":"heavy-equipment-accessories","title":"Heavy Equipment Accessories","image":{"altText":"Heavy Equipment Accessories - GARVEE","id":"1753393922361","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Heavy-Equipment-Accessories-267582.jpg?v=1712984937"}}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-856650","setting":{"item_layout":"text","title":"More Way to Shop","item_display":true,"disable_link":true,"column_width":"4"},"menus":[{"id":"tmenu-menu-665701","setting":{"item_layout":"text","title":"Pallet Forks","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457650405689","handle":"pallet-forks","title":"Pallet Forks","image":null}},"column_width":"automatic","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-536709","setting":{"item_layout":"text","title":"Pallet Forks Extensions","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465090216249","handle":"pallet-forks-extensions","title":"Pallet Forks Extensions","image":null}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-945607","setting":{"item_layout":"text","title":"Hoists & Winches & Rigging","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"450455896377","handle":"hoists-winches-rigging","title":"Hoists & Winches & Rigging","image":{"altText":null,"id":"1736094875961","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/hoists-winches-rigging.jpg?v=1686296540"}}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-296450","setting":{"item_layout":"text","title":"Ramps & Ladders","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"461317308729","handle":"ramps-ladders","title":"Ramps & Ladders","image":null}},"column_width":"automatic","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-175452","setting":{"item_layout":"text","title":"Heavy Equipment Accessories","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439887888697","handle":"heavy-equipment-accessories","title":"Heavy Equipment Accessories","image":{"altText":"Heavy Equipment Accessories","id":"1734701580601","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Heavy-Equipment-Accessories.jpg?v=1683615079"}}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-964845","setting":{"item_layout":"text","title":"Hydraulic Scissor Cart","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477472719161","handle":"hydraulic-scissor-cart","title":"Hydraulic Scissor Cart","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-567044","setting":{"item_layout":"text","title":"Utility Cart","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"450690613561","handle":"utility-cart","title":"Utility Cart","image":{"altText":null,"id":"1736094449977","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Utility-Cart.jpg?v=1716282682"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-446932","setting":{"item_layout":"text","title":"Drum Dolly","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477472784697","handle":"drum-dolly","title":"Drum Dolly","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-106804","setting":{"item_layout":"text","title":"Quick Tach Mount Plate","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457646145849","handle":"quick-tach-mount-plate","title":"Quick Tach Mount Plate","image":{"altText":null,"id":"1742713225529","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Quick_Tach_Mount_Plate.jpg?v=1718438422"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-280082","setting":{"item_layout":"text","title":"Manual Chain Hoist","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477472817465","handle":"manual-chain-hoist","title":"Manual Chain Hoist","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-528253","setting":{"item_layout":"text","title":"Pallet Forks Extensions","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465090216249","handle":"pallet-forks-extensions","title":"Pallet Forks Extensions","image":{"altText":"Pallet Forks Extensions - GARVEE","id":"1753396314425","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pallet_Forks_Extensions-457668.jpg?v=1718438486"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-871667","setting":{"item_layout":"text","title":"Pallet Forks","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457650405689","handle":"pallet-forks","title":"Pallet Forks","image":{"altText":"Pallet Forks - GARVEE","id":"1753396281657","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pallet_Forks-834399.jpg?v=1718438230"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-873006","setting":{"item_layout":"text","title":"Forklift Safety Cage","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"446659494201","handle":"forklift-safety-cage","title":"Forklift Safety Cage","image":{"altText":"Forklift Safety Cage - GARVEE","id":"1753393267001","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Forklift-Safety-Cage-500815.jpg?v=1718438336"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-406569","setting":{"item_layout":"text","title":"Aluminum Dock Ladder","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477472883001","handle":"aluminum-dock-ladder","title":"Aluminum Dock Ladder","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-859107","setting":{"item_layout":"text","title":"Adjustable Workbench","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477472915769","handle":"adjustable-workbench","title":"Adjustable Workbench","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-572272","setting":{"item_layout":"image","title":"Pallet Forks ->","item_display":true,"image_position":"bellow","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/0cedd540e208d6f4da6b1a31f413ebd029ec8b1dcddc210cb2b46f4652c5fceb.webp","column_width":"4","image_width":"220","product":{"id":"8675699097913","handle":"garvee-popcorn-machine-cart-pho-0x27s5y6","title":"GARVEE Popcorn Machine Cart Commercial Popcorn Machine with 8Oz Kettle Red","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/71K86YCFtgL.jpg?v=1694074853"},"price":"315.00","priceCompare":"399.00"},"url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"product":{"id":"8698436583737","handle":"garvee-heavy-duty-pallet-forks-pau-0hkxwzyq","title":"GARVEE 2000lbs 60 Inch Heavy Duty Clamp-on Pallet Forks with Adjustable Stabilizer Bar for Tractor","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/61zpiQcmEFL.png?v=1694688568"},"price":"215.99","priceCompare":null},"link":"https://www.garvee.com/collections/pallet-forks","collection":{"id":"465090216249","handle":"pallet-forks-extensions","title":"Pallet Forks Extensions","image":{"altText":"Pallet Forks Extensions - GARVEE","id":"1753396314425","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pallet_Forks_Extensions-457668.jpg?v=1718438486"}}},"item_content_alignment":"left","hidden_mobile":false},"menus":[],"hide_submenu":false}],"hide_submenu":true},{"id":"tmenu-menu-611510","setting":{"item_layout":"text","title":"Ride On Toy","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"474920059193","handle":"ride-ons","title":"Ride Ons","image":null}},"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-642903","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-403442","setting":{"item_layout":"text","title":"Ride On Tractors","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477222273337","handle":"ride-on-tractors","title":"Ride On Tractors","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-664265","setting":{"item_layout":"text","title":"Ride Ons Go Kart","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477223125305","handle":"ride-ons-go-kart","title":"Ride Ons Go Kart","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-222444","setting":{"item_layout":"text","title":"Ride On UTVs","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477222469945","handle":"ride-on-utvs","title":"Ride On UTVs","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-488371","setting":{"item_layout":"text","title":"Ride On Trucks","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"476072313145","handle":"ride-on-trucks","title":"Ride On Trucks","image":{"altText":null,"id":"1755745091897","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pink-01_f9fb3c9b-2104-4e30-9580-cf59fbfe0a84.jpg?v=1718175086"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-442032","setting":{"item_layout":"text","title":"Ride On ATV","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477221683513","handle":"ride-on-atvs","title":"Ride On ATVs","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-726426","setting":{"item_layout":"text","title":"Ride On Jeeps","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477221880121","handle":"ride-on-jeeps","title":"Ride On Jeeps","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-758619","setting":{"item_layout":"text","title":"Ride On Cars","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477221847353","handle":"ride-on-cars","title":"Ride On Cars","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-944105","setting":{"item_layout":"text","title":"Ride On Motorcycle","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477221978425","handle":"ride-on-motorcycles","title":"Ride On Motorcycles","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-518819","setting":{"item_layout":"text","title":"Ride On Bumper Cars","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477221749049","handle":"ride-on-bumper-cars","title":"Ride On Bumper Cars","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-854473","setting":{"item_layout":"text","title":"Water Sports","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477214277945","handle":"water-sports","title":"Water Sports","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-482559","setting":{"item_layout":"text","title":"Treadmill","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"460995428665","handle":"treadmill","title":"Treadmill","image":{"altText":"","id":"1742203388217","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Treadmill-removebg-preview.png?v=1718173854"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-957414","setting":{"item_layout":"text","title":"Push & Pedal","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477221552441","handle":"push-pedal","title":"Push & Pedal","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-970759","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-102771","setting":{"item_layout":"text","title":"1-3 Years Old","url":{"type":{"id":"collection"},"collection":{"id":"480353091897","title":"Ride On Car - (3-)","handle":"ride-on-car-3"}}},"menus":[]},{"id":"tmenu-menu-836087","setting":{"item_layout":"text","title":"3-6 Years Old","url":{"type":{"id":"collection"},"collection":{"id":"480353190201","title":"Ride On Car - (3-6)","handle":"ride-on-cart-3-6"}}},"menus":[]},{"id":"tmenu-menu-806817","setting":{"item_layout":"text","title":"6+ Years Old","url":{"type":{"id":"collection"},"collection":{"id":"480355582265","title":"Ride On Car - (6-12)","handle":"ride-on-cart-6-12"}}},"menus":[]}]},{"id":"tmenu-menu-620746","setting":{"item_layout":"image","title":"Ride On Tractors ->","image":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/1600x1600_1_e1d18ff8-dfe2-4f35-aeba-9187d0280891.jpg?v=1747896233","image_position":"bellow","image_width":"220","url":{"type":{"id":"collection"},"collection":{"id":"477222273337","title":"Ride On Tractors","handle":"ride-on-tractors","image":{"url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/61t5lkcAwuL.png?v=1734577144"}}},"item_display":true,"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-792616","setting":{"item_layout":"text","title":"Sports & Outdoors","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"469890662713","handle":"sports-recreation","title":"Sports & Outdoors","image":null}},"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-294860","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-232125","setting":{"item_layout":"text","title":"Exercise & Fitness","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"460995395897","handle":"exercise-fitness","title":"Exercise & Fitness","image":{"altText":"Exercise & Fitness - GARVEE","id":"1753392906553","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Exercise_Fitness-339070.jpg?v=1712984895"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-694279","setting":{"item_layout":"text","title":"Outdoor Recreation","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477212868921","handle":"outdoor-recreation","title":"Outdoor Recreation","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-770415","setting":{"item_layout":"text","title":"Sports","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477212967225","handle":"sports","title":"Sports","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-185387","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-983168","setting":{"item_layout":"text","title":"Kids Bikes","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477221519673","handle":"kids-bikes","title":"Kids Bikes","image":null}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-202772","setting":{"item_layout":"image","title":"Ride On Cars ->","image_position":"bellow","image_width":"220","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477221847353","handle":"ride-on-cars","title":"Ride On Cars","image":null}},"item_display":true,"item_content_alignment":"left","hidden_mobile":false,"image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/fd7e6cad06cd5cd85d3f69e8708a98baa3bda5f1c0f8d3340e6c5dfba72f8312.jpeg"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-864602","setting":{"item_layout":"text","title":"Power & Hand Tools","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462053671225","handle":"power-hand-tools","title":"Power & Hand Tools","image":{"altText":null,"id":"1741226836281","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Power-Hand-Tools.jpg?v=1694590614"}}},"item_content_alignment":"left","item_display":false,"image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/46e17c437e3ec4181ff711c9f35a2e2c3624261afd9762ce6d4beb93461e46f8.jpeg","image_position":"right"},"menus":[{"id":"tmenu-menu-930448","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-956940","setting":{"item_layout":"text","title":"Demolition Tools & Equipment","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458053878073","handle":"demolition-tools-equipment","title":"Demolition Tools & Equipment","image":{"altText":"Demolition Tools & Equipment - GARVEE","id":"1753391956281","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Demolition_Tools_Equipment-171575.jpg?v=1712984853"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-322695","setting":{"item_layout":"text","title":"Drills & Drivers","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439131668793","handle":"drills-drivers","title":"Drills & Drivers","image":{"altText":"Drills & Drivers - GARVEE","id":"1753392415033","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Drills-Drivers-601874.jpg?v=1712984873"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-186607","setting":{"item_layout":"text","title":"Grinding & Sanding & Finishing Tools","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457641591097","handle":"grinding-sanding-finishing-tools","title":"Grinding & Sanding & Finishing Tools","image":{"altText":"Grinding & Sanding & Finishing Tools - GARVEE","id":"1753393627449","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Grinding_Sanding_Finishing_Tools-227677.jpg?v=1712984924"}}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-744059","setting":{"item_layout":"text","title":"Inspection & Retrieving Tools","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457640739129","handle":"inspection-retrieving-tools","title":"Inspection & Retrieving Tools","image":{"altText":"Inspection & Retrieving Tools - GARVEE","id":"1753394512185","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Inspection_Retrieving_Tools-906897.jpg?v=1712984962"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-877436","setting":{"item_layout":"text","title":"Saws & Accessories","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462380007737","handle":"saws-accessories","title":"Saws & Accessories","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-171410","setting":{"item_layout":"text","title":"Wrenches","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439132356921","handle":"wrenches","title":"Wrenches","image":{"altText":"","id":"1734703546681","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Wrenches.jpg?v=1717645966"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-388432","setting":{"item_layout":"text","title":"Pipe Wrench","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465090675001","handle":"pipe-wrench","title":"Pipe Wrench","image":{"altText":"","id":"1742713979193","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pipe_Wrench.jpg?v=1717646003"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-483733","setting":{"item_layout":"text","title":"Chain & Wire & Rope","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"447601869113","handle":"chain-wire-rope","title":"Chain & Wire & Rope","image":{"altText":"Chain & Wire & Rope - GARVEE","id":"1753391169849","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Chain-Wire-Rope-192967.jpg?v=1712984819"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-236542","setting":{"item_layout":"text","title":"Filling & Sealing Machine","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477472620857","handle":"filling-sealing-machine","title":"Filling & Sealing Machine","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-176956","setting":{"item_layout":"text","title":"Workbenches & Accessories","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381318457","handle":"workbenches-accessories","title":"Workbenches & Accessories","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-822287","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-200346","setting":{"item_layout":"text","title":"Drill Press","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465208770873","handle":"drill-press","title":"Drill Press","image":{"altText":"Drill Press - GARVEE","id":"1753392382265","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Drill_Press-722708.jpg?v=1712984872"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-184691","setting":{"item_layout":"text","title":"Jack Hammer","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"450464350521","handle":"jack-hammer","title":"Jack Hammer","image":{"altText":"Jack Hammer - GARVEE","id":"1753394577721","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Jack-Hammer-535991.jpg?v=1712984965"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-749582","setting":{"item_layout":"text","title":"Saw Blade Sharpener","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477226500409","handle":"saw-blade-sharpener","title":"Saw Blade Sharpener","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-705232","setting":{"item_layout":"text","title":"Pipe Inspection Camera","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"461171360057","handle":"pipe-inspection-camera","title":"Pipe Inspection Camera","image":{"altText":null,"id":"1742203846969","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pipe_Inspection_Camera.png?v=1697452500"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-999728","setting":{"item_layout":"text","title":"Magnetic Drill","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477226434873","handle":"magnetic-drill","title":"Magnetic Drill","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-498302","setting":{"item_layout":"text","title":"Wrench Sets","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477226303801","handle":"wrench-sets","title":"Wrench Sets","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-416022","setting":{"item_layout":"text","title":"Liquid Filling Machine","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477617160505","handle":"liquid-filling-machine","title":"Liquid Filling Machine","image":{"altText":null,"id":"1758118641977","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/61wEI1xhvvL_dacbfb4a-d56a-4c74-a400-2c3bf18da835.jpg?v=1730170927"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-889773","setting":{"item_layout":"text","title":"Adjustable Workbench","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477472915769","handle":"adjustable-workbench","title":"Adjustable Workbench","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-524474","setting":{"item_layout":"image","title":"Drills & Drivers ->","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/3b66f4ef8d92ee7fd749155acdb2bd98350c707a09c7f024a3ec51c0e1666e23.jpeg","image_position":"bellow","image_width":"220","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439131668793","handle":"drills-drivers","title":"Drills & Drivers","image":{"altText":"Drills & Drivers - GARVEE","id":"1753392415033","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Drills-Drivers-601874.jpg?v=1712984873"}}},"item_display":true,"item_content_alignment":"left","hidden_mobile":false,"column_width":"4"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-616836","setting":{"item_layout":"text","title":"Restaurant & Food Service","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"collection":{"id":"438937649465","handle":"restaurant-food-service","title":"Restaurant & Food Service","image":{"altText":"Restaurant & Food Service","id":"1732743135545","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Restaurant-Food-Service.jpg?v=1694590523"}},"link":"https://www.garvee.com/collections/restaurant-food-service"},"item_content_alignment":"left","item_display":false,"image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/46e17c437e3ec4181ff711c9f35a2e2c3624261afd9762ce6d4beb93461e46f8.jpeg","image_position":"right"},"menus":[{"id":"tmenu-menu-188375","setting":{"item_layout":"text","title":"Shop by Categories","item_display":true,"disable_link":true,"column_width":"4"},"menus":[{"id":"tmenu-menu-263769","setting":{"item_layout":"text","title":"Beverage Equipment","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462287012153","handle":"beverage-equipment","title":"Beverage Equipment","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-788968","setting":{"item_layout":"text","title":"Cooking Equipment","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458072785209","handle":"cooking-equipment","title":"Cooking Equipment","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-811789","setting":{"item_layout":"text","title":"Refrigeration & Ice Equipment","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"collection":{"id":"458075177273","handle":"refrigeration-ice-equipment","title":"Refrigeration & Ice Equipment","image":null},"link":"https://www.garvee.com/collections/refrigeration-ice-equipment"},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-852124","setting":{"item_layout":"text","title":"Food Preparation Equipment","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"440449171769","handle":"food-preparation-equipment","title":"Food Preparation Equipment","image":{"altText":"Food Preparation Equipment","id":"1734704562489","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Food-Preparation-Equipment.jpg?v=1683624715"}}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-296013","setting":{"item_layout":"text","title":"Food Holding & Warming Equipment","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462286684473","handle":"food-holding-warming-equipment","title":"Food Holding & Warming Equipment","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-617836","setting":{"item_layout":"text","title":"Restaurant Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458073276729","handle":"restaurant-furniture","title":"Restaurant Furniture","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-423051","setting":{"item_layout":"text","title":"Storage & Organization","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"438937715001","handle":"storage-organization","title":"Storage & Organization","image":{"altText":"Storage & Organization","id":"1734702137657","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Storage-Organization.jpg?v=1683618417"}}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-575833","setting":{"item_layout":"text","title":"More Way to Shop","item_display":true,"disable_link":true,"column_width":"4"},"menus":[{"id":"tmenu-menu-942806","setting":{"item_layout":"text","title":"Ice Machines","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"443656274233","handle":"ice-machines","title":"Ice Machines","image":{"altText":"Ice Machines","id":"1734702793017","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Ice-Machines.jpg?v=1683621207"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-348677","setting":{"item_layout":"text","title":"Soft Serve Ice Cream Machines","url":{"type":{"id":"collection"},"collection":{"id":"461174636857","title":"Soft Serve Ice Cream Machines","handle":"soft-serve-ice-cream-machines","image":{"url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Soft_Serve_Ice_Cream_Machines-removebg-preview.png?v=1697697316"}}}},"menus":[]},{"id":"tmenu-menu-806041","setting":{"item_layout":"text","title":"Granita & Slushy Machines","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477806788921","handle":"granita-slushy-machines-2","title":"Granita & Slushy Machines","image":{"altText":null,"id":"1757764944185","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/image_1_48a5efa2-8878-4d6d-9c4b-ce5ba81693f7.webp?v=1727491549"}}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-786211","setting":{"item_layout":"text","title":"Commercial Sinks","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477807182137","handle":"commercial-sinks","title":"Commercial Sinks","image":{"altText":null,"id":"1758124605753","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/61b7SRc3NXL_1.jpg?v=1730274309"}}}},"menus":[]},{"id":"tmenu-menu-576455","setting":{"item_layout":"text","title":"Beverage Refrigerator","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"461175718201","handle":"beverage-refrigerator","title":"Beverage Refrigerator","image":{"created_at":"2023-10-16T19:00:57+08:00","alt":"","width":700,"height":425,"url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Beverage_Refrigerator-removebg-preview.png?v=1699000227"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-700186","setting":{"item_layout":"text","title":"Commercial Pizza Oven","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462687371577","handle":"commercial-pizza-oven","title":"Commercial Pizza Oven","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-516361","setting":{"item_layout":"text","title":"Chafing Dishes & Accessories","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"469891023161","handle":"chafing-dishes-accessories","title":"Chafing Dishes & Accessories","image":{"altText":null,"id":"1758130209081","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/61BBxg6F8jL_4c4bdb5f-6a71-4ac0-aa45-49cc39bc4f8c_1.jpg?v=1730337725"}}}},"menus":[]},{"id":"tmenu-menu-988533","setting":{"item_layout":"text","title":"Compact & Built-In Refrigerators","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477807640889","handle":"reach-in-refrigerators-and-freezers","title":"Compact & Built-In Refrigerators","image":{"altText":null,"id":"1758071685433","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/61GCmdM3d4L_35e819c0-25b5-41a8-90b5-ef9c8847d18c.webp?v=1729671423"}}}},"menus":[]},{"id":"tmenu-menu-252191","setting":{"item_layout":"text","title":"Stainless Steel Work Table","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"450466152761","handle":"stainless-steel-work-table","title":"Stainless Steel Work Table","image":{"altText":null,"id":"1736094548281","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/stainless-steel-work-table.jpg?v=1686294781"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-555408","setting":{"item_layout":"text","title":"Alcohol Distiller","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462287634745","handle":"alcohol-distiller","title":"Alcohol Distiller","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-461701","setting":{"item_layout":"text","title":"Coffee Makers","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477806526777","handle":"coffee-makers","title":"Coffee Makers","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-489173","setting":{"item_layout":"text","title":"Car Refrigerator","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458075275577","handle":"car-refrigerator","title":"Car Refrigerator","image":{"altText":"Car Refrigerator - GARVEE","id":"1753390907705","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Car_Refrigerator-167794.jpg?v=1712984807"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-598538","setting":{"item_layout":"text","title":"Commercial Mixers","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"447192662329","handle":"commercial-mixers","title":"Commercial Mixers","image":{"altText":"Commercial Mixers","id":"1734702006585","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Commercial-Mixers.jpg?v=1683617099"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-919809","setting":{"item_layout":"text","title":"Pull Out Trash Cans","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465084121401","handle":"pull-out-trash-cans","title":"Pull Out Trash Cans","image":{"altText":null,"id":"1742657519929","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pull_Out_Trash_Cans.jpg?v=1699270827"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-939557","setting":{"item_layout":"text","title":"Faucets & Replacement Parts","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439878451513","handle":"faucets-replacement-parts","title":"Faucets & Replacement Parts","image":{"altText":"Faucets & Replacement Parts","id":"1733895815481","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Faucets-Replacement-Parts.jpg?v=1681188162"}}},"column_width":"automatic"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-877433","setting":{"item_layout":"image","title":"Granita & Slushy Machines ->","item_display":true,"image_position":"bellow","image":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/71MUI1stCHL.webp?v=1747886430","column_width":"4","image_width":"220","product":{"id":"8675699097913","handle":"garvee-popcorn-machine-cart-pho-0x27s5y6","title":"GARVEE Popcorn Machine Cart Commercial Popcorn Machine with 8Oz Kettle Red","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/71K86YCFtgL.jpg?v=1694074853"},"price":"315.00","priceCompare":"399.00"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"product":{"id":"8331907203385","handle":"garvee-dish-buffet-set-pho-0y1zhn88","title":"GARVEE 9QT Visible Roll Top Chafing Dish Buffet Set Stainless Steel Buffet Servers And Warmers For Party","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/GARVEE-9-QT-Visible-Roll-Top-Chafing-Dish-Buffet-Set-002_932cc907-f0ec-4f1a-81d9-b5c84bbf0686.jpg?v=1694777451"},"price":"129.99","priceCompare":null},"link":"https://www.garvee.com/collections/refrigerators","collection":{"id":"477806788921","title":"Granita & Slushy Machines","handle":"granita-slushy-machines-2","image":{"url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/image_1_48a5efa2-8878-4d6d-9c4b-ce5ba81693f7.webp?v=1727491549"}}},"item_content_alignment":"left","hidden_mobile":false},"menus":[],"hide_submenu":false}],"hide_submenu":true},{"id":"tmenu-menu-745977","setting":{"item_layout":"text","title":"Agriculture & Forestry Equipment","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462297923897","handle":"agriculture-forestry-equipment","title":"Agriculture & Forestry Equipment","image":{"altText":"Agriculture & Forestry Equipment - GARVEE","id":"1753389629753","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Agriculture-Forestry-Equipment-621855.jpg?v=1712984750"}}},"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-441756","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-737587","setting":{"item_layout":"text","title":"Equipment Parts & Accessories","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381056313","handle":"equipment-parts-accessories","title":"Equipment Parts & Accessories","image":{"altText":"Equipment Parts & Accessories - GARVEE","id":"1753392841017","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Equipment_Parts_Accessories-713585.jpg?v=1712984892"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-431050","setting":{"item_layout":"text","title":"Livestock & Poultry Supplies","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381089081","handle":"livestock-poultry-supplies","title":"Livestock & Poultry Supplies","image":{"altText":"Livestock & Poultry Supplies - GARVEE","id":"1753395233081","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Livestock_Poultry_Supplies-905464.jpg?v=1712984991"}}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-883029","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-723867","setting":{"item_layout":"text","title":"Trailer Hitch","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457510781241","handle":"trailer-hitch","title":"Trailer Hitch","image":{"altText":"","id":"1742202011961","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Trailer_Hitch-removebg-preview.png?v=1717151164"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-997520","setting":{"item_layout":"text","title":"Driveway Drag","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465037820217","handle":"driveway-drag","title":"Driveway Drag","image":{"altText":"","id":"1742712406329","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Driveway_Drag.jpg?v=1717666851"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-902402","setting":{"item_layout":"text","title":"Rakes","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458106372409","handle":"rakes","title":"Rakes","image":{"altText":null,"id":"1742713127225","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Rakes.jpg?v=1699429753"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-776310","setting":{"item_layout":"text","title":"Automatic Poultry Feeder","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465037001017","handle":"automatic-poultry-feeder","title":"Automatic Poultry Feeder","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-149665","setting":{"item_layout":"text","title":"Chicken Coop","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465469473081","handle":"chicken-coop","title":"Chicken Coop","image":{"altText":"Chicken Coop - GARVEE","id":"1753391235385","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Chicken_Coop-997486.jpg?v=1712984821"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-520942","setting":{"item_layout":"text","title":"Beekeeping Supplies","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381154617","handle":"beekeeping-supplies","title":"Beekeeping Supplies","image":null}}},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-523493","setting":{"item_layout":"image","title":"Driveway Drag ->","image_width":"220","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/1562462d69742a45033196a368163e8287bb38a0016855f2adbf9761d627f34e.jpeg","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465037820217","handle":"driveway-drag","title":"Driveway Drag","image":{"altText":"","id":"1742712406329","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Driveway_Drag.jpg?v=1717666851"}}},"item_display":true,"item_content_alignment":"left","hidden_mobile":false,"image_position":"bellow","column_width":"4"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-184869","setting":{"item_layout":"text","title":"Building & Construction","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457645490489","handle":"building-construction","title":"Building & Construction","image":{"altText":"Building & Construction - GARVEE","id":"1753390711097","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Building_Construction-636532.jpg?v=1712984799"}}},"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-136017","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-556501","setting":{"item_layout":"text","title":"Building Supplies","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"468638859577","handle":"building-supplies","title":"Building Supplies","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-987176","setting":{"item_layout":"text","title":"Scaffolds & Mobile Bases","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477339844921","handle":"scaffolds-mobile-bases","title":"Scaffolds & Mobile Bases","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-749682","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-428825","setting":{"item_layout":"text","title":"Stainless Steel Backsplash","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477339910457","handle":"stainless-steel-backsplash","title":"Stainless Steel Backsplash","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-486511","setting":{"item_layout":"text","title":"Stair Handrail","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465209229625","handle":"stair-handrail","title":"Stair Handrail","image":{"altText":null,"id":"1742594900281","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Stair_Handrail.jpg?v=1699013017"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-729289","setting":{"item_layout":"text","title":"Electric Rebar Bender","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"447017386297","handle":"electric-rebar-bender","title":"Electric Rebar Bender","image":{"altText":"Electric Rebar Bender - GARVEE","id":"1753392546105","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/electric-rebar-bender-466358.jpg?v=1712984879"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-819233","setting":{"item_layout":"text","title":"Electric Rebar Cutter","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477339975993","handle":"electric-rebar-cutter","title":"Electric Rebar Cutter","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-199149","setting":{"item_layout":"text","title":"Aluminum Work Plank","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477340008761","handle":"aluminum-work-plank","title":"Aluminum Work Plank","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-419599","setting":{"item_layout":"text","title":"Chimney Cap","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477340041529","handle":"chimney-cap","title":"Chimney Cap","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-797020","setting":{"item_layout":"text","title":"Vessel Sinks","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477340074297","handle":"vessel-sinks","title":"Vessel Sinks","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-770048","setting":{"item_layout":"image","title":"Stair Handrail ->","image_width":"220","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/60b64f7ca2e33bbe865d5e3bfe28c0c851f4ad7814a0825023b12905d05019c2.jpeg","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465209229625","handle":"stair-handrail","title":"Stair Handrail","image":{"altText":null,"id":"1742594900281","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Stair_Handrail.jpg?v=1699013017"}}},"item_display":false,"item_content_alignment":"left","hidden_mobile":true,"image_position":"bellow","column_width":"4"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-469244","setting":{"item_layout":"text","title":"Cleaning & Janitorial Supplies","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462380204345","handle":"cleaning-janitorial-supplies","title":"Cleaning & Janitorial Supplies","image":null}},"item_content_alignment":"left","item_display":false,"image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/46e17c437e3ec4181ff711c9f35a2e2c3624261afd9762ce6d4beb93461e46f8.jpeg","image_position":"right","hidden_desktop":true,"hidden_mobile":true},"menus":[{"id":"tmenu-menu-424651","setting":{"item_layout":"text","title":"Shop by Categories","item_display":true,"disable_link":true,"column_width":"4","item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-658904","setting":{"item_layout":"text","title":"Mopping Supplies","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479605358905","handle":"mopping-supplies","title":"Mopping Supplies","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-229496","setting":{"item_layout":"text","title":"Trash & Recycling & Compost","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477616505145","handle":"trash-recycling-compost","title":"Trash & Recycling & Compost","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-319987","setting":{"item_layout":"text","title":"Trash Cans & Wastebaskets","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479534842169","handle":"trash-cans-wastebaskets","title":"Trash Cans & Wastebaskets","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-409088","setting":{"item_layout":"text","title":"More Way to Shop","item_display":true,"disable_link":true,"column_width":"4"},"menus":[{"id":"tmenu-menu-429373","setting":{"item_layout":"text","title":"Bucket Mops","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"479605457209","handle":"bucket-mops","title":"Bucket Mops","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-659595","setting":{"item_layout":"text","title":"Janitorial Cleaning Cart","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477616570681","handle":"janitorial-cleaning-cart","title":"Janitorial Cleaning Cart","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-948576","setting":{"item_layout":"text","title":"Pull Out Trash Cans","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465084121401","handle":"pull-out-trash-cans","title":"Pull Out Trash Cans","image":{"altText":"","id":"1742657519929","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pull_Out_Trash_Cans.jpg?v=1718172688"}}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-261970","setting":{"item_layout":"image","title":"Pull Out Trash Cans ->","item_display":true,"image_position":"bellow","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/163075e5aa521992765f41ac5efd31f407573111d7b9687f5823a1c47089c927.jpeg","column_width":"4","image_width":"220","product":{"id":"8675699097913","handle":"garvee-popcorn-machine-cart-pho-0x27s5y6","title":"GARVEE Popcorn Machine Cart Commercial Popcorn Machine with 8Oz Kettle Red","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/71K86YCFtgL.jpg?v=1694074853"},"price":"315.00","priceCompare":"399.00"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"product":{"id":"8288157892921","handle":"garvee-security-safe-pst-02tkhmni","title":"GARVEE Security Safe With Digital Keypad Lock 19.6 x 13.7 x 12.2 Inches Steel Safe","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/GARVEE-Security-Safe-With-Digital-Keypad-Lock-055.jpg?v=1683774275"},"price":"161.99","priceCompare":null},"link":"https://www.garvee.com/collections/ride-ons","collection":{"id":"465084121401","handle":"pull-out-trash-cans","title":"Pull Out Trash Cans","image":{"altText":"","id":"1742657519929","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pull_Out_Trash_Cans.jpg?v=1718172688"}}},"item_content_alignment":"left","hidden_mobile":false},"menus":[],"hide_submenu":false}],"hide_submenu":true},{"id":"tmenu-menu-672081","setting":{"item_layout":"text","title":"Security","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458076619065","handle":"security","title":"Security","image":{"altText":null,"id":"1742594965817","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Security.jpg?v=1699013504"}}},"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-882406","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-299280","setting":{"item_layout":"text","title":"Access Barriers & Crowd Control","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477340205369","handle":"access-barriers-crowd-control","title":"Access Barriers & Crowd Control","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-934192","setting":{"item_layout":"text","title":"Safes","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477340238137","handle":"safes","title":"Safes","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-653501","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-179177","setting":{"item_layout":"text","title":"Folding Security Gate","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477340303673","handle":"folding-security-gate","title":"Folding Security Gate","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-595303","setting":{"item_layout":"text","title":"Safety Bollard","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465270669625","handle":"safety-bollard","title":"Safety Bollard","image":{"altText":null,"id":"1742657814841","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Safety_Bollard.jpg?v=1699272799"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-109792","setting":{"item_layout":"text","title":"Biometric Safes","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465270571321","handle":"biometric-safes","title":"Biometric Safes","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-481225","setting":{"item_layout":"text","title":"Electronic Safes","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465045848377","handle":"electronic-safes","title":"Electronic Safes","image":{"altText":"Electronic Safes - GARVEE","id":"1753392775481","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Electronic_Safes-removebg-preview-433084.png?v=1712984889"}}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-755563","setting":{"item_layout":"image","title":"Electronic Safes ->","image_width":"220","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/1f5772eb3bb31959dfe6c5218f59382d2adbd35a8fd8df4a8f57fd88ba84701d.jpeg","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465045848377","handle":"electronic-safes","title":"Electronic Safes","image":{"altText":"Electronic Safes - GARVEE","id":"1753392775481","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Electronic_Safes-removebg-preview-433084.png?v=1712984889"}}},"item_display":true,"item_content_alignment":"left","hidden_mobile":false,"image_position":"bellow","column_width":"4"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-175387","setting":{"item_layout":"text","title":"Electrical","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458069541177","handle":"electrical","title":"Electrical","image":{"altText":"Electrical - GARVEE","id":"1753392644409","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Electrical-343311.png?v=1712984884"}}},"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-831650","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-501639","setting":{"item_layout":"text","title":"Electrical Boxes & Panels & Fittings","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"460995232057","handle":"electrical-boxes-panels-fittings","title":"Electrical Boxes & Panels & Fittings","image":{"altText":"Electrical Boxes & Panels & Fittings - GARVEE","id":"1753392677177","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Electrical_Boxes_Panels_Fittings-175904.jpg?v=1712984885"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-779192","setting":{"item_layout":"text","title":"Electrical Tools","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458099556665","handle":"electrical-tools","title":"Electrical Tools","image":{"altText":"Electrical Tools - GARVEE","id":"1753392742713","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Electrical_Tools-183649.jpg?v=1712984887"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-120098","setting":{"item_layout":"text","title":"Wire & Cable & Conduit","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462379516217","handle":"wire-cable-conduit","title":"Wire & Cable & Conduit","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-148934","setting":{"item_layout":"text","title":"Generators","newtab":false,"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458069967161","handle":"generators","title":"Generators","image":{"altText":"Generators - GARVEE","id":"1753393561913","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Generators-879793.jpg?v=1712984922"}}}},"menus":[]},{"id":"tmenu-menu-535507","setting":{"item_layout":"text","title":"Renewable Energy","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477619323193","handle":"renewable-energy","title":"Renewable Energy","image":{"altText":null,"id":"1758109270329","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/8122mY3_tfL_1_2cbb458b-5aa9-4c0d-b4ae-c7d0e9c438a1.jpg?v=1730086246"}}}},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-772234","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-527308","setting":{"item_layout":"text","title":"Electrical Enclosure","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"460995264825","handle":"electrical-enclosure","title":"Electrical Enclosure","image":{"altText":"Electrical Enclosure ","id":"1753392709945","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Electrical_Enclosure-239182.jpg?v=1717643587"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-693046","setting":{"item_layout":"text","title":"Electric Wire Stripping Machine","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458099818809","handle":"electric-wire-stripping-machine","title":"Electric Wire Stripping Machine","image":{"altText":"Electric Wire Stripping Machine","id":"1753392611641","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Electric_Wire_Stripping_Machine-187874.jpg?v=1717645163"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-753340","setting":{"item_layout":"text","title":"Manual Wire Stripping Machine","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477339156793","handle":"manual-wire-stripping-machine","title":"Manual Wire Stripping Machine","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-319834","setting":{"item_layout":"text","title":"Cable Ramp","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477339287865","handle":"cable-ramp","title":"Cable Ramp","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-779796","setting":{"item_layout":"text","title":"Fusion Fiber Splicer","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477619421497","handle":"fusion-fiber-splicer","title":"Fusion Fiber Splicer","image":{"altText":null,"id":"1758109106489","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/71JaEeJ-vEL_1.jpg?v=1730085657"}}}},"menus":[]},{"id":"tmenu-menu-645629","setting":{"item_layout":"text","title":"Power Station","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462380433721","handle":"power-station","title":"Power Station","image":null}}},"menus":[]},{"id":"tmenu-menu-906214","setting":{"item_layout":"text","title":"Solar Panels","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477619487033","handle":"solar-panels","title":"Solar Panels","image":{"altText":null,"id":"1758109237561","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/8122mY3_tfL_c58cfaa0-2314-4d37-93d3-9e2b60ad7b71_1.jpg?v=1730086243"}}}},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-776701","setting":{"item_layout":"image","title":"Electrical Enclosure ->","image_width":"220","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/29ee81d35d244b6fffc695ba0539d1e1c895a09598547a720943b1483d2fbb5a.png","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"460995264825","handle":"electrical-enclosure","title":"Electrical Enclosure","image":{"altText":"Electrical Enclosure ","id":"1753392709945","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Electrical_Enclosure-239182.jpg?v=1717643587"}}},"item_display":true,"item_content_alignment":"left","hidden_mobile":false,"image_position":"bellow","column_width":"4"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-492060","setting":{"item_layout":"text","title":"Toys & Games","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477214540089","handle":"toys-games","title":"Toys & Games","image":null}},"item_content_alignment":"left","badge":false,"hidden_desktop":false,"newtab":false,"disable_link":false},"menus":[{"id":"tmenu-menu-423547","setting":{"item_layout":"text","title":"Shop by Categories","item_display":true,"disable_link":true,"column_width":"4","item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-312527","setting":{"item_layout":"text","title":"Musical Instruments","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485498356025","handle":"musical-instruments","title":"Musical Instruments","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-455975","setting":{"item_layout":"text","title":"Kids' Dress Up & Pretend Play","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"482091106617","handle":"kids-dress-up-pretend-play","title":"Kids' Dress Up & Pretend Play","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-905980","setting":{"item_layout":"text","title":"Learning & Education Toys","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485498913081","handle":"learning-education-toys","title":"Learning & Education Toys","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-469661","setting":{"item_layout":"text","title":"Games & Accessories","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485498585401","handle":"games-accessories","title":"Games & Accessories","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-780044","setting":{"item_layout":"text","title":"More Way to Shop","item_display":true,"disable_link":true,"column_width":"4"},"menus":[{"id":"tmenu-menu-820854","setting":{"item_layout":"text","title":"Musical Instrument Keyboards","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485498388793","handle":"musical-instrument-keyboards","title":"Musical Instrument Keyboards","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-173089","setting":{"item_layout":"text","title":"Guitars","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485498487097","handle":"guitars","title":"Guitars","image":null}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-492097","setting":{"item_layout":"text","title":"Drums & Percussion","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485498552633","handle":"drums-percussion","title":"Drums & Percussion","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-813126","setting":{"item_layout":"text","title":"Toy Kitchen Products","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485498519865","handle":"toy-kitchen-products","title":"Toy Kitchen Products","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-824218","setting":{"item_layout":"text","title":"Early Development & Activity Toys","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485499044153","handle":"early-development-activity-toys","title":"Early Development & Activity Toys","image":null}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-809173","setting":{"item_layout":"text","title":"Education Toys","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485498913081","handle":"learning-education-toys","title":"Learning & Education Toys","image":null}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-354753","setting":{"item_layout":"text","title":"Game Accessories","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485498618169","handle":"game-accessories","title":"Game Accessories","image":null}},"column_width":"automatic"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-719266","setting":{"item_layout":"image","title":"Toy Kitchen Products ->","item_display":true,"image_position":"bellow","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/11a0d8b7dbbebe638308f9730066126a0fbb2ca17736b73d34f979f4fddb58cb.jpeg","column_width":"4","image_width":"220","product":{"id":"8675699097913","handle":"garvee-popcorn-machine-cart-pho-0x27s5y6","title":"GARVEE Popcorn Machine Cart Commercial Popcorn Machine with 8Oz Kettle Red","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/71K86YCFtgL.jpg?v=1694074853"},"price":"315.00","priceCompare":"399.00"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"product":{"id":"8506975125817","handle":"garvee-drain-cleaner-machine-pho-0wujzsvj","title":"GARVEE 75Ft x 1/2 Inch Drain Cleaner Machine Auto-feed Electric Drain Auger","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/Drain-Cleaner-Machine-001_6b4abe33-3d92-40cb-97b5-7c484cb01054.jpg?v=1694772858"},"price":"389.00","priceCompare":"459.00"},"link":"https://www.garvee.com/collections/drains-drainage","collection":{"id":"485498519865","handle":"toy-kitchen-products","title":"Toy Kitchen Products","image":null}},"item_content_alignment":"left","hidden_mobile":false},"menus":[],"hide_submenu":false}],"hide_submenu":true},{"id":"tmenu-menu-859467","setting":{"item_layout":"text","title":"Office Supplies","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457957081401","handle":"office-supplies","title":"Office Supplies","image":{"altText":"","id":"1753396052281","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Office-Supplies-134619.jpg?v=1718173678"}}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[{"id":"tmenu-menu-480897","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-257372","setting":{"item_layout":"text","title":"Office Electronics","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457957114169","handle":"office-electronics","title":"Office Electronics","image":{"altText":"Office Electronics - GARVEE","id":"1753395953977","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Office_Electronics-removebg-preview-224996.png?v=1712985023"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-873255","setting":{"item_layout":"text","title":"Office Furniture","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381482297","handle":"office-furniture","title":"Office Furniture","image":{"altText":"","id":"1753395986745","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Office_Furniture-623583.jpg?v=1718173984"}}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-962322","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-517843","setting":{"item_layout":"text","title":"Projector Screens","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477337026873","handle":"projector-screens","title":"Projector Screens","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-729600","setting":{"item_layout":"text","title":"File cabinet","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477337387321","handle":"file-cabinet","title":"File cabinet","image":null}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-739451","setting":{"item_layout":"image","title":"Office Furniture ->","image_width":"220","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/b56490a07e486383d975c8e27bfcb1a053ddf4ae1f922b42af851973b6badb4c.jpeg","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381482297","handle":"office-furniture","title":"Office Furniture","image":{"altText":"","id":"1753395986745","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Office_Furniture-623583.jpg?v=1718173984"}}},"item_display":true,"item_content_alignment":"left","hidden_mobile":false,"image_position":"bellow","column_width":"4"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-632141","setting":{"item_layout":"text","title":"Arts & Crafts & Sewing","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457642180921","handle":"arts-crafts-sewing","title":"Arts & Crafts & Sewing","image":{"altText":"","id":"1753389957433","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/office_products_-_printmaking-721674.webp?v=1718173613"}}},"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-560076","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-113929","setting":{"item_layout":"text","title":"Jewelry Making & Repair","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"460035195193","handle":"jewelry-making-repair","title":"Jewelry Making & Repair","image":{"altText":"Jewelry Making & Repair - GARVEE","id":"1753394643257","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Jewelry_Making_Repair-776475.jpg?v=1712984967"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-870279","setting":{"item_layout":"text","title":"Printmaking","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457642082617","handle":"printmaking","title":"Printmaking","image":{"altText":null,"id":"1742657388857","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Printmaking.jpg?v=1699270555"}}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-317162","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-803578","setting":{"item_layout":"text","title":"Heat Press Machine","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439887528249","handle":"heat-press-machines","title":"Heat Press Machines","image":{"altText":"","id":"1753393856825","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Heat-Press-Machines-667456.jpg?v=1718174684"}}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]},{"id":"tmenu-menu-758553","setting":{"item_layout":"text","title":"Melting Furnace","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"460035260729","handle":"melting-furnace","title":"Melting Furnace","image":{"altText":"","id":"1753395495225","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Heat_Press_Machines-removebg-preview-786991.png?v=1718174623"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-125120","setting":{"item_layout":"text","title":"Silk Screen Frame","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477340926265","handle":"silk-screen-frame","title":"Silk Screen Frame","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-295403","setting":{"item_layout":"image","title":"Heat Press Machine ->","image_width":"220","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/1b1913fa5d1c126cffa25260f87d2e21c607c0418b64fc190b82cd900f292d91.jpeg","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439887528249","handle":"heat-press-machines","title":"Heat Press Machines","image":{"altText":"","id":"1753393856825","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Heat-Press-Machines-667456.jpg?v=1718174684"}}},"item_display":true,"item_content_alignment":"left","hidden_mobile":false,"image_position":"bellow","column_width":"4"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-544043","setting":{"item_layout":"text","title":"Pumps","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457955672377","handle":"pumps","title":"Pumps","image":{"altText":null,"id":"1742657552697","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pumps.jpg?v=1699271057"}}},"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-977422","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-927310","setting":{"item_layout":"text","title":"Water Pumps","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457955639609","handle":"water-pumps","title":"Water Pumps","image":{"altText":null,"id":"1742593556793","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Water_Pumps.jpg?v=1699003853"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-490510","setting":{"item_layout":"text","title":"Oil Pumps","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477619913017","handle":"oil-pumps","title":"Oil Pumps","image":null}}},"menus":[]},{"id":"tmenu-menu-446365","setting":{"item_layout":"text","title":"Vacuum Pumps","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477340107065","handle":"vacuum-pumps","title":"Vacuum Pumps","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-398687","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-497991","setting":{"item_layout":"text","title":"Swimming Pool Pump","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465038344505","handle":"swimming-pool-pump-1","title":"Swimming Pool Pump","image":{"altText":null,"id":"1742594408761","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Swimming_Pool_Pump.jpg?v=1699005933"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-343560","setting":{"item_layout":"text","title":"Water Transfer Pump","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465038704953","handle":"water-transfer-pump","title":"Water Transfer Pump","image":{"altText":"","id":"1742657683769","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Water_Transfer_Pump.jpg?v=1717666886"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-605485","setting":{"item_layout":"text","title":"Electric Fuel Pumps","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477619978553","handle":"electric-fuel-pumps","title":"Electric Fuel Pumps","image":null}}},"menus":[]},{"id":"tmenu-menu-819054","setting":{"item_layout":"text","title":"Vacuum Pump","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477340107065","handle":"vacuum-pumps","title":"Vacuum Pumps","image":null}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-938997","setting":{"item_layout":"image","title":"Swimming Pool Pump ->","image_width":"220","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/6a25766cd21cff69495ecfe26563cc574ec978cd06187c2d831ede84052de730.jpeg","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465038344505","handle":"swimming-pool-pump-1","title":"Swimming Pool Pump","image":{"altText":null,"id":"1742594408761","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Swimming_Pool_Pump.jpg?v=1699005933"}}},"item_display":false,"item_content_alignment":"left","hidden_mobile":false,"image_position":"bellow","column_width":"4"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-558405","setting":{"item_layout":"text","title":"Plumbing","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439888118073","handle":"plumbing","title":"Plumbing","image":{"altText":"Plumbing","id":"1734705086777","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Plumbing.jpg?v=1683627239"}}},"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-958980","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-283504","setting":{"item_layout":"text","title":"Drains & Drainage","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457956655417","handle":"drains-drainage","title":"Drains & Drainage","image":{"altText":"Drains & Drainage - GARVEE","id":"1753392283961","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Drains_Drainage-395750.jpg?v=1712984867"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-285399","setting":{"item_layout":"text","title":"Pipe Stands & Vises","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462380335417","handle":"pipe-stands-vises","title":"Pipe Stands & Vises","image":{"altText":null,"id":"1742714011961","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pipe_Stands_Vises.jpg?v=1699431362"}}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-176985","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-809570","setting":{"item_layout":"text","title":"Drain Cleaner Machine","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458099392825","handle":"drain-cleaner-machine","title":"Drain Cleaner Machine","image":{"altText":"","id":"1753392218425","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Drain_Cleaner_Machine-416238.png?v=1717646184"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-134994","setting":{"item_layout":"text","title":"Roller Head Pipe Stand","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465090740537","handle":"roller-head-pipe-stand","title":"Roller Head Pipe Stand","image":{"altText":"","id":"1742657880377","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Roller_Head_Pipe_Stand.jpg?v=1717646212"}}},"item_content_alignment":"left"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-820821","setting":{"item_layout":"image","title":"Drain Cleaner Machine ->","image_width":"220","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/4c4afe295cbc5959e20c1b683f7dbb1e39bb72cca16eba1a82806b4dd76cb669.jpeg","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458099392825","handle":"drain-cleaner-machine","title":"Drain Cleaner Machine","image":{"altText":"","id":"1753392218425","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Drain_Cleaner_Machine-416238.png?v=1717646184"}}},"item_display":true,"item_content_alignment":"left","hidden_mobile":false,"image_position":"bellow","column_width":"4"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-766406","setting":{"item_layout":"text","title":"Agriculture & Material Handling","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"498222498105","handle":"agriculture-material-handling","title":"Agriculture & Material Handling","image":null}},"item_content_alignment":"left","item_display":false,"image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/46e17c437e3ec4181ff711c9f35a2e2c3624261afd9762ce6d4beb93461e46f8.jpeg","image_position":"right","hidden_desktop":true,"hidden_mobile":true},"menus":[{"id":"tmenu-menu-776238","setting":{"item_layout":"text","title":"Shop by Categories","item_display":true,"disable_link":true,"column_width":"4","item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-524817","setting":{"item_layout":"text","title":"Carts & Trucks","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381285689","handle":"carts-trucks","title":"Carts & Trucks","image":{"altText":"Carts & Trucks - GARVEE","id":"1753391071545","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Carts_Trucks-421644.jpg?v=1712984815"}}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-858082","setting":{"item_layout":"text","title":"Dollies & Movers","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381252921","handle":"dollies-movers","title":"Dollies & Movers","image":{"altText":"Dollies & Movers - GARVEE","id":"1753392120121","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Dollies_Movers-449701.jpg?v=1712984860"}}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-916610","setting":{"item_layout":"text","title":"Equipment Parts & Accessories","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381056313","handle":"equipment-parts-accessories","title":"Equipment Parts & Accessories","image":{"altText":"Equipment Parts & Accessories - GARVEE","id":"1753392841017","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Equipment_Parts_Accessories-713585.jpg?v=1712984892"}}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-314007","setting":{"item_layout":"text","title":"Hoists & Winches & Rigging","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"450455896377","handle":"hoists-winches-rigging","title":"Hoists & Winches & Rigging","image":{"altText":"Hoists & Winches & Rigging - GARVEE","id":"1753393955129","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/hoists-winches-rigging-390944.jpg?v=1712984939"}}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-101007","setting":{"item_layout":"text","title":"Livestock & Poultry Supplies","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381089081","handle":"livestock-poultry-supplies","title":"Livestock & Poultry Supplies","image":{"altText":"Livestock & Poultry Supplies - GARVEE","id":"1753395233081","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Livestock_Poultry_Supplies-905464.jpg?v=1712984991"}}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-477450","setting":{"item_layout":"text","title":"Pallet Moving Equipment & Accessories","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457647718713","handle":"pallet-moving-equipment-accessories","title":"Pallet Moving Equipment & Accessories","image":{"altText":null,"id":"1742714667321","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pallet_Moving_Equipment_Accessories.jpg?v=1699432306"}}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-500504","setting":{"item_layout":"text","title":"Ramps & Ladders","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"461317308729","handle":"ramps-ladders","title":"Ramps & Ladders","image":{"altText":null,"id":"1742713159993","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Ramps_Ladders.jpg?v=1699516203"}}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-540425","setting":{"item_layout":"text","title":"Shelving & Storage","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485344739641","handle":"shelving-storage","title":"Shelving & Storage","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-521839","setting":{"item_layout":"text","title":"More Way to Shop","item_display":true,"disable_link":true,"column_width":"4"},"menus":[{"id":"tmenu-menu-547856","setting":{"item_layout":"text","title":"Hydraulic Scissor Cart","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477472719161","handle":"hydraulic-scissor-cart","title":"Hydraulic Scissor Cart","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-226341","setting":{"item_layout":"text","title":"Drag Chain Harrow","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465037525305","handle":"drag-chain-harrow","title":"Drag Chain Harrow","image":{"altText":"","id":"1753392185657","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Drag_Chain_Harrow-364389.jpg?v=1730117761"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-787217","setting":{"item_layout":"text","title":"Driveway Drag","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465037820217","handle":"driveway-drag","title":"Driveway Drag","image":{"altText":"","id":"1742712406329","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Driveway_Drag.jpg?v=1717666851"}}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-627053","setting":{"item_layout":"text","title":"Hay Spear","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465037951289","handle":"hay-spear","title":"Hay Spear","image":{"altText":"Hay Spear - GARVEE","id":"1753393791289","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Hay-Spear-250207.jpg?v=1730117863"}}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-861909","setting":{"item_layout":"text","title":"Log Tongs","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"484123345209","handle":"log-tongs","title":"Log Tongs","image":{"altText":null,"id":"1758111203641","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/71OxnWdYXbL_833a2e3b-8ece-4981-95ca-45e08917a888.jpg?v=1730117584"}}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-233255","setting":{"item_layout":"text","title":"Rakes","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458106372409","handle":"rakes","title":"Rakes","image":{"altText":null,"id":"1742713127225","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Rakes.jpg?v=1730117681"}}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-559342","setting":{"item_layout":"text","title":"Chicken Coop","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465469473081","handle":"chicken-coop","title":"Chicken Coop","image":{"altText":"Chicken Coop - GARVEE","id":"1753391235385","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Chicken_Coop-997486.jpg?v=1730116846"}}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-695033","setting":{"item_layout":"text","title":"Forklift Safety Cage","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"446659494201","handle":"forklift-safety-cage","title":"Forklift Safety Cage","image":{"altText":"Forklift Safety Cage - GARVEE","id":"1753393267001","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Forklift-Safety-Cage-500815.jpg?v=1718438336"}}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-427979","setting":{"item_layout":"text","title":"Pallet Forks","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"457650405689","handle":"pallet-forks","title":"Pallet Forks","image":{"altText":"Pallet Forks - GARVEE","id":"1753396281657","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pallet_Forks-834399.jpg?v=1718438230"}}},"column_width":"automatic"},"menus":[]},{"id":"tmenu-menu-339547","setting":{"item_layout":"text","title":"Loading Ramps","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"461317275961","handle":"loading-ramps","title":"Loading Ramps","image":{"altText":"","id":"1753395265849","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Loading_Ramps-removebg-preview-626167.png?v=1718173509"}}},"column_width":"automatic"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-199979","setting":{"item_layout":"image","title":"Pallet Forks ->","item_display":true,"image_position":"bellow","image":"https://cdn.qikify.com/production/tmenu/instances/228774/b2bae592b0b02721726de1e910294431ce2b4fd635702ee79c6d4197f7af642e.jpeg","column_width":"4","image_width":"220","product":{"id":"8675699097913","handle":"garvee-popcorn-machine-cart-pho-0x27s5y6","title":"GARVEE Popcorn Machine Cart Commercial Popcorn Machine with 8Oz Kettle Red","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/71K86YCFtgL.jpg?v=1694074853"},"price":"315.00","priceCompare":"399.00"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"product":{"id":"8272497508665","handle":"garvee-pioneerworks-propane-fire-pit-table-pho-0wctuift","title":"GARVEE 44 Inch Propane Fire Pit Table 50000BTU Rectangle Table with Double-Sided Cover","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/71fURlPte-L_8f27585d-1ee8-44d9-8c7a-a62e56a9d1d6.jpg?v=1694768988"},"price":"359.00","priceCompare":null},"link":"https://www.garvee.com/collections/landscaping-shade","collection":{"id":"457650405689","handle":"pallet-forks","title":"Pallet Forks","image":{"altText":"Pallet Forks - GARVEE","id":"1753396281657","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Pallet_Forks-834399.jpg?v=1718438230"}}},"item_content_alignment":"left","hidden_mobile":false},"menus":[],"hide_submenu":false}],"hide_submenu":true},{"id":"tmenu-menu-662301","setting":{"item_layout":"text","title":"Lab","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462381580601","handle":"lab","title":"Lab","image":{"altText":"Lab - GARVEE","id":"1753394872633","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Lab-857837.jpg?v=1712984977"}}},"item_content_alignment":"left","hidden_desktop":true},"menus":[{"id":"tmenu-menu-825520","setting":{"item_layout":"text","title":"Shop by Categories","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-498298","setting":{"item_layout":"text","title":"Cleaning Equipment","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477340500281","handle":"cleaning-equipment","title":"Cleaning Equipment","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-729862","setting":{"item_layout":"text","title":"Heating & Cooling Equipment","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477620371769","handle":"heating-cooling-equipment","title":"Heating & Cooling Equipment","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-537406","setting":{"item_layout":"text","title":"Test & Measure","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439878287673","handle":"test-measure-inspect","title":"Test & Measure & Inspect","image":{"altText":"","id":"1734703513913","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Test-Measure-Inspect.jpg?v=1717645905"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-967964","setting":{"item_layout":"text","title":"Mixing & Blending Equipment","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477340565817","handle":"mixing-blending-equipment","title":"Mixing & Blending Equipment","image":null}},"item_content_alignment":"left","hidden_desktop":true,"hidden_mobile":true},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-290038","setting":{"item_layout":"text","title":"More Way to Shop","disable_link":true,"item_display":true,"item_content_alignment":"left","column_width":"4"},"menus":[{"id":"tmenu-menu-372080","setting":{"item_layout":"text","title":"Ultrasonic Cleaner","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465090511161","handle":"ultrasonic-cleaner","title":"Ultrasonic Cleaner","image":{"altText":"","id":"1742593687865","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Ultrasonic_Cleaner.jpg?v=1718173893"}}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-119668","setting":{"item_layout":"text","title":"Magnetic Stirrer","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477340598585","handle":"magnetic-stirrer","title":"Magnetic Stirrer","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-300778","setting":{"item_layout":"text","title":"Lab Incubator","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477620633913","handle":"reptile-incubator","title":"Lab Incubator","image":null}}},"menus":[]},{"id":"tmenu-menu-378552","setting":{"item_layout":"text","title":"Test Strips","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"487029866809","handle":"test-strips","title":"Test Strips","image":null}}},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-339320","setting":{"item_layout":"image","title":"Ultrasonic Cleaner ->","image_width":"220","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/c3afb891ae7f4acc8506fd48fdbfc59f8558e98e84dc9d38735d36ba10b219d0.jpeg","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"465090511161","handle":"ultrasonic-cleaner","title":"Ultrasonic Cleaner","image":{"altText":"","id":"1742593687865","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Ultrasonic_Cleaner.jpg?v=1718173893"}}},"item_display":true,"item_content_alignment":"left","hidden_mobile":false,"image_position":"bellow","column_width":"4"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-648699","setting":{"item_layout":"text","title":"Hydraulics","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"462380106041","handle":"hydraulics","title":"Hydraulics","image":null}},"item_content_alignment":"left","item_display":false,"image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/46e17c437e3ec4181ff711c9f35a2e2c3624261afd9762ce6d4beb93461e46f8.jpeg","image_position":"right","hidden_desktop":true},"menus":[{"id":"tmenu-menu-383212","setting":{"item_layout":"text","title":"Shop by Categories","item_display":true,"disable_link":true,"column_width":"4","item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-159489","setting":{"item_layout":"text","title":"Hydraulic Equipment","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477621256505","handle":"hydraulic-equipment","title":"Hydraulic Equipment","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]},{"id":"tmenu-menu-413735","setting":{"item_layout":"text","title":"Hydraulic Pumps","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477621354809","handle":"hydraulic-pumps","title":"Hydraulic Pumps","image":null}},"item_content_alignment":"left","item_display":false,"icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"}},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-918318","setting":{"item_layout":"text","title":"More Way to Shop","item_display":true,"disable_link":true,"column_width":"4"},"menus":[{"id":"tmenu-menu-969050","setting":{"item_layout":"text","title":"Hydraulic Power Unit","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485498650937","handle":"hydraulic-power-unit","title":"Hydraulic Power Unit","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-157797","setting":{"item_layout":"text","title":"Hydraulic Shop Press","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485498683705","handle":"hydraulic-shop-press","title":"Hydraulic Shop Press","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-614104","setting":{"item_layout":"text","title":"Manual Hydraulic Pump","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"485498749241","handle":"manual-hydraulic-pump","title":"Manual Hydraulic Pump","image":null}},"item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-705344","setting":{"item_layout":"text","title":"Air Hydraulic Pump","icon":{"id":"angle-right","name":"angle right","code":"","type":"fas"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"477621420345","handle":"air-hydraulic-pump","title":"Air Hydraulic Pump","image":null}},"column_width":"automatic"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-260060","setting":{"item_layout":"image","title":"Hydraulic Pump Power ->","item_display":true,"image_position":"bellow","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/6a538349f14c4d6ad2b57d0f4188f8446c2fcafa68c2e36cecf77f0212ea7343.jpeg","column_width":"4","image_width":"220","product":{"id":"8675699097913","handle":"garvee-popcorn-machine-cart-pho-0x27s5y6","title":"GARVEE Popcorn Machine Cart Commercial Popcorn Machine with 8Oz Kettle Red","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/71K86YCFtgL.jpg?v=1694074853"},"price":"315.00","priceCompare":"399.00"},"url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"product":{"id":"8288157892921","handle":"garvee-security-safe-pst-02tkhmni","title":"GARVEE Security Safe With Digital Keypad Lock 19.6 x 13.7 x 12.2 Inches Steel Safe","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/GARVEE-Security-Safe-With-Digital-Keypad-Lock-055.jpg?v=1683774275"},"price":"161.99","priceCompare":null},"link":"https://www.garvee.com/collections/ride-ons","collection":{"id":"485498650937","handle":"hydraulic-power-unit","title":"Hydraulic Power Unit","image":null}},"item_content_alignment":"left","hidden_mobile":false},"menus":[],"hide_submenu":false}],"hide_submenu":true},{"id":"tmenu-menu-990329","setting":{"item_layout":"text","title":"Machining","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"458102309177","handle":"machining","title":"Machining","image":{"altText":"Machining - GARVEE","id":"1753395298617","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/Machining-130648.jpg?v=1712984994"}}},"item_content_alignment":"left","item_display":false,"image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/46e17c437e3ec4181ff711c9f35a2e2c3624261afd9762ce6d4beb93461e46f8.jpeg","image_position":"right","hidden_desktop":true},"menus":[],"hide_submenu":false}],"hide_submenu":false},{"id":"tmenu-menu-363940","setting":{"item_layout":"text","submenu_type":"mega","submenu_mega_position":"fullwidth","title":"Bulk Savings","submenu_mega_width":"850","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"page":{"id":138778411321,"title":"Garvee Summer Sale","handle":"garvee-summer-sale"},"link":"CLEARANCE","collection":{"id":"486038143289","handle":"clearance-100","title":"Clearance (<100)","image":null}},"hidden_desktop":true,"hidden_mobile":true},"menus":[],"hide_submenu":false},{"id":"tmenu-menu-406683","setting":{"item_layout":"text","submenu_type":"mega","submenu_mega_position":"fullwidth","title":"Ride On Car","submenu_mega_width":"850","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"page":{"id":138778411321,"title":"Garvee Summer Sale","handle":"garvee-summer-sale"},"collection":{"id":"474920059193","handle":"ride-ons","title":"Ride Ons","image":null}},"hidden_desktop":true,"hidden_mobile":true},"menus":[],"hide_submenu":false},{"id":"tmenu-menu-529251","setting":{"item_layout":"text","submenu_type":"mega","submenu_mega_position":"fullwidth","title":"Best Sellers","submenu_mega_width":"850","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"page":{"id":138778411321,"title":"Garvee Summer Sale","handle":"garvee-summer-sale"},"link":"CLEARANCE","collection":{"id":"477667033401","handle":"google-best-sellers","title":"Google Best Sellers","image":null}},"hidden_desktop":true,"hidden_mobile":false},"menus":[],"hide_submenu":false},{"id":"tmenu-menu-989277","setting":{"item_layout":"text","submenu_type":"mega","submenu_mega_position":"fullwidth","title":"Deals","submenu_mega_width":"850","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"page":{"id":138778411321,"title":"Garvee Summer Sale","handle":"garvee-summer-sale"},"collection":{"id":"439485923641","handle":"flash-deals","title":"Flash Deals","image":{"altText":"Flash Deals - GARVEE","id":"1753393103161","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/FLASH-DEALS-852332.jpg?v=1712984904"}}}},"menus":[],"hide_submenu":false},{"id":"tmenu-menu-467224","setting":{"item_layout":"text","submenu_type":"mega","submenu_mega_position":"fullwidth","title":"DIY Projects & Ideas","submenu_mega_width":"850","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/pages/diy-ideas"}},"menus":[{"id":"tmenu-menu-838678","setting":{"item_layout":"text","title":"Trending Now","item_display":true,"column_width":"4","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/blogs/trending-now/"},"item_content_alignment":"left","disable_link":false},"menus":[{"id":"tmenu-menu-236589","setting":{"item_layout":"image","title":"Everything You Need to Know About Rug Sizes and Placement","image":"https://cdn.qikify.com/production/tmenu/instances/228774/9e608a23903e46955977933d996ffa500aa0736e58ebc2c26436a83e8ba66947.webp","disable_link":false,"url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/blogs/buying-guides/everything-you-need-to-know-about-rug-sizes-and-placement"},"image_width":"220","image_position":"bellow","item_content_alignment":"left"},"menus":[]},{"id":"tmenu-menu-647559","setting":{"item_layout":"image","title":"Find the Right One for Your Business Needs","image_position":"bellow","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/9dbbad983541795398dd4cf94358e86f01a3f78e00ef9d3e845abf9c646fa265.jpeg","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/blogs/buying-guides/utility-cart-buying-guide-finding-the-correct-one-for-your-business-needs"},"image_width":"220"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-585631","setting":{"item_layout":"text","title":"Buying Guides","item_display":true,"column_width":"4","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/blogs/buying-guides/"},"item_content_alignment":"left","image_position":"bellow","disable_link":false},"menus":[{"id":"tmenu-menu-534716","setting":{"item_layout":"image","title":"Power Tools Vs. Hand Tools: What You Need to Know","image_position":"bellow","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/adb51b6f7f546e250283ca89c3ffbeeb0cd910465e848febc4fcc1a8d1b5b78b.png","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/blogs/buying-guides/power-tools-vs-hand-tools-what-you-need-to-know"},"image_width":"220"},"menus":[]},{"id":"tmenu-menu-310805","setting":{"item_layout":"image","title":"Everything You Should Know About Wine Cooler","image_width":"220","image_position":"bellow","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/blogs/buying-guides/everything-you-should-know-about-wine-cooler"},"image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/afe72d606651f5e6b636c8ba95760803b1b5bc8581a6dc87963fdf7dd955eb0f.png"},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-188248","setting":{"item_layout":"text","title":"How Tos","item_display":true,"column_width":"4","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/blogs/how-tos/"},"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-852598","setting":{"item_layout":"image","title":"Difference Between a Dresser and a Chest of Drawers","image_width":"220","image_position":"bellow","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/blogs/buying-guides/what-is-the-difference-between-a-dresser-and-a-chest-of-drawers-a-comprehensive-comparison"},"image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/37eae9310c8f843622a190791d993c3e25ad0625ddd6cf29b2fe6e4b89801372.jpeg"},"menus":[]},{"id":"tmenu-menu-220774","setting":{"item_layout":"image","title":"Cheap Home Improvement Ideas Boost Your Home's Value","image_position":"bellow","image":"https://cdn.qikify.com/production/tmenu/instances/228774/1b52b89359357c44537998739388b59f85f9776e1b899f0f4969d58ce4703456.webp","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/blogs/buying-guides/cheap-home-improvement-ideas-boost-your-homes-value-on-a-budget"},"image_width":"220"},"menus":[]}],"hide_submenu":true}],"hide_submenu":true},{"id":"tmenu-menu-983339","setting":{"item_layout":"text","submenu_type":"mega","submenu_mega_position":"fullwidth","title":"Coupons","hidden_desktop":true,"submenu_mega_width":"","submenu_minheight":"300","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"collection":{"id":"439485923641","handle":"flash-deals","title":"Flash Deals","image":{"altText":"FLASH DEALS","id":"1734704529721","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/FLASH-DEALS.jpg?v=1683624299"}}},"submenu_scrollbar":true,"disable_link":true,"hidden_mobile":true},"menus":[{"id":"tmenu-menu-113110","setting":{"item_layout":"text","title":"Must Buy Deals ->","item_display":true,"column_width":"4","disable_link":false,"url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/deals"}},"menus":[{"id":"tmenu-menu-390540","setting":{"item_layout":"image","title":"Ride-On UTV <br> <font color=\"#CD2215\";>$259.99</font>","product":{"id":"8659579404601","handle":"garvee-trailer-tires-pau-0fqp3muo","title":"GARVEE 2 Pack 480-12 4.80x12 4.80-12 4.8-12 Trailer Tires with 12 Inch Rims","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/trailer-tires-002.jpg?v=1693470998"},"price":"124.99","priceCompare":"159.99"},"product_image_position":"left","item_content_alignment":"left","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/979ec8f95af20b3e08e4b71f3e76402fc070d121b7d953ea5df096813632856d.jpeg","image_width":"100","image_position":"left","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"product":{"id":"8107450728761","handle":"garvee-electric-random-orbital-sander-pho-0vojdc6z","title":"6-Inch 350W Brushless Orbital Sander, 10000 RPM for Carpentry","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/garvee-electric-random-orbital-sander_002_e4c2fbb3-83dc-42b8-a367-a010af0dda58-239542.jpg?v=1713017345"},"price":"189.99","priceCompare":null},"link":"https://www.garvee.com/products/garvee-ride-on-utv-car-24v-pto-0yupps7s?_pos=9&_sid=672c47cda&_ss=r"},"newtab":true},"menus":[]},{"id":"tmenu-menu-508347","setting":{"item_layout":"image","title":"Log Lifting Tongs<br> <font color=\"#CD2215\";>$98.99</font>","product":{"id":"8659579404601","handle":"garvee-trailer-tires-pau-0fqp3muo","title":"GARVEE 2 Pack 480-12 4.80x12 4.80-12 4.8-12 Trailer Tires with 12 Inch Rims","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/trailer-tires-002.jpg?v=1693470998"},"price":"124.99","priceCompare":"159.99"},"product_image_position":"left","item_content_alignment":"left","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/0e3a84ec47e39bc5f6d0ae033b00ae1c73d12392b32f1d213cbbe447aa60cae9.jpeg","image_width":"100","image_position":"left","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"product":{"id":"8331907203385","handle":"garvee-dish-buffet-set-pho-0y1zhn88","title":"GARVEE 9QT Visible Roll Top Chafing Dish Buffet Set Stainless Steel Buffet","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/GARVEE-9-QT-Visible-Roll-Top-Chafing-Dish-Buffet-Set-002_932cc907-f0ec-4f1a-81d9-b5c84bbf0686.jpg?v=1694777451"},"price":"129.99","priceCompare":"169.99"},"link":"https://www.garvee.com/products/log-lifting-tongs-4-claw-pho-0zj3?_pos=2&_sid=a0220d62b&_ss=r"}},"menus":[]},{"id":"tmenu-menu-310507","setting":{"item_layout":"image","title":"Safety Bollard<br> <font color=\"#CD2215\";>$249.99</font>","product":{"id":"8659579404601","handle":"garvee-trailer-tires-pau-0fqp3muo","title":"GARVEE 2 Pack 480-12 4.80x12 4.80-12 4.8-12 Trailer Tires with 12 Inch Rims","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/trailer-tires-002.jpg?v=1693470998"},"price":"124.99","priceCompare":"159.99"},"product_image_position":"left","item_content_alignment":"left","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/51aab6847ca59f185d79686d9db478f52401ede162f78d84847a97079fdf31d1.jpeg","image_width":"100","image_position":"left","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"product":{"id":"8204446794041","handle":"garvee-acekool-14000btu-portable-air-conditioner-pho-0uih4qbm","title":"GARVEE 14000 BTU Portable Air Conditioner Dehumidifier Fan with Remote Control","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/GARVEE-ACEKOOL-14000-BTU-Portable-Air-Conditioner-D-_2_42fee384-451b-4753-80a5-e8ec4baddcd1.jpg?v=1694769880"},"price":"499.00","priceCompare":"599.00"},"link":"https://www.garvee.com/products/garvee-safety-bollard-6-packs-height-pho-10e0mbdh?_pos=1&_psq=Safety+Bollard&_ss=e&_v=1.0"}},"menus":[]}],"hide_submenu":true},{"id":"tmenu-menu-309047","setting":{"item_layout":"text","title":"Freshness on Demand ->","column_width":"4","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/collections/air-conditioners"},"item_display":true},"menus":[{"id":"tmenu-menu-100758","setting":{"item_layout":"image","title":"4,000 BTU Portable AC <br> <font color=\"#CD2215\";>$335.99</font>","image_width":"100","image_position":"left","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/89fe5e988ce05e47594aa149c7825a6c722e896e80b0f58f9311fad040e8349a.jpeg","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"product":null,"link":"https://www.garvee.com/products/14000-btu-portable-pho_10hz5v1q?_pos=2&_sid=971f36d6c&_ss=r"}},"menus":[]},{"id":"tmenu-menu-875062","setting":{"item_layout":"image","title":"Industrial Drum Fan<br> <font color=\"#CD2215\";>$100.99</font>","image_width":"100","image_position":"left","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/c45d2eacd88a4e5469902cecf9f81302f06d9da5a40543cb6269f627810f5628.jpeg","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/products/garvee-garveehome-24-inch-industrial-drum-pho-13hn25gw?_pos=2&_psq=Industrial+Drum+Fan&_ss=e&_v=1.0"}},"menus":[]},{"id":"tmenu-menu-145763","setting":{"item_layout":"image","title":"Car Ramps <br> <font color=\"#CD2215\";>$286.99</font>","image_width":"100","image_position":"left","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"link":"https://www.garvee.com/products/garvee-10000lbs-heavy-duty-steel-ramps-pau-0j26ps76?_pos=2&_psq=Car+Ramps&_ss=e&_v=1.0"},"image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/8ef50f2ad8a54299359d7f8e5782a7e306109ebc9b2fd004e0f4b4d19f75fac7.jpeg"},"menus":[]}],"hide_submenu":false},{"id":"tmenu-menu-101953","setting":{"item_layout":"text","title":"You Might Like ->","item_display":true,"column_width":"4","disable_link":true,"item_content_alignment":"left"},"menus":[{"id":"tmenu-menu-685249","setting":{"item_layout":"image","title":"Electric Oil Drain<br> <font color=\"#CD2215\";>$224.99</font>","product":{"id":"8659579404601","handle":"garvee-trailer-tires-pau-0fqp3muo","title":"GARVEE 2 Pack 480-12 4.80x12 4.80-12 4.8-12 Trailer Tires with 12 Inch Rims","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/trailer-tires-002.jpg?v=1693470998"},"price":"124.99","priceCompare":"159.99"},"product_image_position":"left","item_content_alignment":"left","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/ff40c3f4dbb5a4662397ebf32099c38c1cf37e1d17d90420e67e0c19069aa6c1.jpeg","image_width":"100","image_position":"left","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"product":{"id":"9483008409913","handle":"12v-kids-ride-on-car-pto-0yrhsdgj","title":"GARVEE 12V Kids Ride on Car, Licensed Mercedes Benz G63 Electric Car w/Remote Control, Music, Spring Suspension, LED Light, Bluetooth, Horn, AUX, Safety Lock Battery Powered Electric Vehicle - White","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/71bT9Bm-ICL_886271b8-d884-4abe-b0f9-4883a840a924.jpg?v=1718948298"},"price":"199.99","priceCompare":"285.99"},"link":" https://www.garvee.com › products › garvee-electric-oil-drain-pan-pau-0hsm"},"disable_link":false},"menus":[]},{"id":"tmenu-menu-495836","setting":{"item_layout":"image","title":"Slim Console Table<br> <font color=\"#CD2215\";>$57.99</font>","product":{"id":"8659579404601","handle":"garvee-trailer-tires-pau-0fqp3muo","title":"GARVEE 2 Pack 480-12 4.80x12 4.80-12 4.8-12 Trailer Tires with 12 Inch Rims","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/trailer-tires-002.jpg?v=1693470998"},"price":"124.99","priceCompare":"159.99"},"product_image_position":"left","item_content_alignment":"left","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/34ee0260668cf104f0478cbadaa6cb4b6f5b2f1424aebf4a1d0e620634c0953d.jpeg","image_width":"100","image_position":"left","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"product":{"id":"8257895661881","handle":"garvee-depository-safe-box-pst-02tszwhg","title":"GARVEE Depository Safe DS 68 Digital Depository Safe Box Steel Safe Keypad","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/GARVEEDepositorySafeDS68DigitalDepositorySafeBox_008.jpg?v=1682496929"},"price":"449.00","priceCompare":"499.00"},"link":"https://www.garvee.com/products/garvee-narrow-sofa-table-2-tier-pho-0ysgj1uo?_pos=1&_psq=GARVEE+Slim+Console+Table+5.9%22+Narrow+Sofa+Table%2C+2+Tier+Skinny+Console+Table+with+Adjustable+Shelf%2C+Slim+Behind+Couch+Table+for+Living+Room%2C+Entryway%2C+Hallway%2C+Foyer+-+Grey&_ss=e&_v=1.0"}},"menus":[]},{"id":"tmenu-menu-910141","setting":{"item_layout":"image","title":"1100 LBS Lift Jack<br> <font color=\"#CD2215\";>$99.99</font>","product":{"id":"8659579404601","handle":"garvee-trailer-tires-pau-0fqp3muo","title":"GARVEE 2 Pack 480-12 4.80x12 4.80-12 4.8-12 Trailer Tires with 12 Inch Rims","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/trailer-tires-002.jpg?v=1693470998"},"price":"124.99","priceCompare":"159.99"},"product_image_position":"left","item_content_alignment":"left","image":"https://qikify-cdn.nyc3.digitaloceanspaces.com/production/tmenu/instances/228774/a97a6ec18f6587b3de85f98498c34fd5310c3c1fb2d0fa84331663003630e7d1.jpeg","image_width":"100","image_position":"left","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"product":{"id":"8698436583737","handle":"garvee-heavy-duty-pallet-forks-pau-0hkxwzyq","title":"GARVEE 2000lbs 60 Inch Heavy Duty Clamp-on Pallet Forks with Stabilizer Bar","image":{"src":"https://cdn.shopify.com/s/files/1/0724/6698/9369/files/61zpiQcmEFL.png?v=1694688568"},"price":"215.99","priceCompare":null},"link":"https://www.garvee.com/products/motorcycle-lift-pau-0j98pfwl"}},"menus":[]}],"hide_submenu":true}],"hide_submenu":true},{"id":"tmenu-menu-921660","setting":{"item_layout":"text","submenu_type":"mega","submenu_mega_position":"fullwidth","title":"Community","submenu_mega_width":"850","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"page":{"id":150914629945,"title":"GARVEE BFCM 2024","handle":"garvee-bfcm-2024"},"link":"https://bit.ly/3BL14Uw","collection":{"id":"442295845177","handle":"best-sellers","title":"Best Sellers","image":{"altText":"Best Sellers - GARVEE","id":"1753390219577","url":"https://cdn.shopify.com/s/files/1/0724/6698/9369/collections/best-250108.jpg?v=1712984777"}}},"hidden_desktop":true,"hidden_mobile":true},"menus":[],"hide_submenu":false},{"id":"tmenu-menu-322731","setting":{"item_layout":"text","submenu_type":"mega","submenu_mega_position":"fullwidth","title":"Clearance","submenu_mega_width":"850","url":{"type":{"id":"collection","icon":["fas","columns"],"name":"Collection"},"page":null,"link":"https://www.garvee.com/pages/new-year-deal","collection":{"id":"486038143289","handle":"clearance-100","title":"Bulk Savings","image":null}},"hidden_desktop":false},"menus":[],"hide_submenu":false},{"id":"tmenu-menu-926543","setting":{"item_layout":"text","submenu_type":"mega","submenu_mega_position":"fullwidth","title":"Help Center","submenu_mega_width":"850","url":{"type":{"id":"link","icon":["fas","external-link-square-alt"],"name":"Custom Link"},"page":null,"link":"https://www.garvee.com/pages/helpcenter","collection":{"id":"486038143289","handle":"clearance-100","title":"Bulk Savings","image":null}},"hidden_desktop":true},"menus":[],"hide_submenu":false},{"id":"tmenu-menu-728983","setting":{"item_layout":"text","submenu_type":"mega","submenu_mega_position":"fullwidth","title":"Contact Us","submenu_mega_width":"850","url":{"type":{"id":"page","icon":["fas","newspaper"],"name":"Page"},"page":{"id":111806546233,"title":"Contact Us","handle":"contact"},"link":"https://www.garvee.com/pages/helpcenter","collection":{"id":"486038143289","handle":"clearance-100","title":"Bulk Savings","image":null}},"hidden_desktop":true},"menus":[],"hide_submenu":false}],"orientation":"horizontal","submenu_background":"#ffffff","item_hover_color":"#074174","item_header_border":"","price_color":"#074174","enable_quickview":false,"root_typography":{"fontSize":"18","fontFamily":"Source Sans 3","letterSpacing":"1","variant":"800"},"menu_background":"#074174","root_color":"#FFFFFF","root_active_color":"#074174","root_active_background":"#f2f2f2","typography":{"fontFamily":"Roboto Condensed","variant":"regular","fontSize":"16"},"navigator_selector":"sticky-header > div.m-header__nav.m-section--padding.m-gradient.m\\:hidden.xl\\:m\\:block > div > div > div.m-header__menu-center","mobile_navigator_selector":"sticky-header > div.m-header__top-wrapper.m-section--padding.m-gradient > div > header-drawer > div > div > div > div > ul","theme":{"created_at":{"date":"2024-04-30 09:36:18.000000","timezone_type":1,"timezone":"+08:00"},"id":167755252025,"name":"Copy of Copy of Dev of FoxEcom-gmc2.2-04/30","role":"main","updated_at":{"date":"2024-04-30 19:03:42.000000","timezone_type":1,"timezone":"+08:00"},"previewable":true,"processing":false},"menu_wrap":true,"navigator":{"id":"garvee-menu","title":"garvee menu","items":["/collections/restaurant-food-service","/collections/automotive","/collections/power-hand-tools","/collections/agriculture-garden","/collections/material-handling","/collections/office-products","https://www.garvee.com/pages/blogs"]},"mobile_navigator":null},"status":1,"created_at":"2023-09-15 11:05:31","updated_at":"2025-06-04 08:58:46"};
  36860.  
  36861.  
  36862.  
  36863.    _SM.subscription = {"name":"tmenu-premium","kind":"subscription"};
  36864.  
  36865.  
  36866.  
  36867.    _SM.translation = {};
  36868.  
  36869.  
  36870.  
  36871.    _SM.storefrontAccessToken = '6770cd3337ca511c203f679cfacba361';
  36872.  
  36873. </script>
  36874.  
  36875. <script src="https://cdn.shopify.com/extensions/84dfac09-8412-4b4a-9295-329526e515f8/qikify-smart-menu-mega-menu-55/assets/smartmenu-v2.js" defer="defer"></script>
  36876.  
  36877.  
  36878.  
  36879.  
  36880.  <style id="qikify-tmenu-custom-style">/* #41798 - Sebastian - 16/09/2023 */
  36881. nav.tmenu_app {
  36882.  z-index: 26;
  36883. }
  36884.  
  36885. .tmenu_submenu_tab_control li.tmenu_submenu_tab_active {
  36886.  background: none !important;
  36887. }
  36888. .tmenu_submenu_type_tab .tmenu_item_link {
  36889. padding-top: 3px !important;
  36890. padding-bottom: 3px !important;
  36891. }</style>
  36892.  
  36893.  
  36894.  
  36895.  <script id="qikify-tmenu-custom-script"></script>
  36896.  
  36897.  
  36898.  
  36899.  
  36900. </div><div id="shopify-block-AWUJZM1huRjREckdHZ__16256948136948485038" class="shopify-block shopify-app-block"><link href="//cdn.shopify.com/extensions/6d5abce9-97a0-4217-a99e-afeae6ac0362/upcharge-surcharges-79/assets/mws_fees_bundle.css" rel="stylesheet" type="text/css" media="all" />
  36901.  
  36902. <script type="module" defer="defer" src="https://cdn.shopify.com/extensions/6d5abce9-97a0-4217-a99e-afeae6ac0362/upcharge-surcharges-79/assets/mws_fees_bundle.js"></script>
  36903.  
  36904.  
  36905.  
  36906.  
  36907.  
  36908.  
  36909.  
  36910. <script type='application/json' id='mwFeesCart'>
  36911.  
  36912.  
  36913.  
  36914.  {
  36915.    "attributes": {},
  36916.    "collections":
  36917.  {
  36918.  
  36919.  }
  36920. ,
  36921.    "item_count": 0,
  36922.    "items_subtotal_price": 0,
  36923.    "items": [],
  36924.    "tags":
  36925.  {
  36926.  
  36927.  }
  36928. ,
  36929.    "total_discount": 0,
  36930.    "total_price": 0,
  36931.    "total_weight": 0.0,
  36932.    "original_total_price": 0
  36933.  }
  36934.  
  36935. </script>
  36936.  
  36937. <script id='mwFeesConfig'>
  36938.    
  36939.    
  36940.    function mwsFeesNextInit() {
  36941.      let config = {"cache_hash":1747918503,"settings":{"calendar_format":"m\/d\/Y","force_reload_page":false,"combined_hidden_fees":false,"combined_hidden_fees_title":"Extra charges","translations":{"text_fee_property_name":"Message","date_fee_property_name":"Date","apply_button_label":"Apply","none_option_label":"-- Please select --","fee_required_message":"This fee is required","value_blank_message":"Value can't be blank","cta_fee_price_property_name":"Fee","cta_product_price_property_name":"Price","checkout_warning_message":"The following required fees have been added to your order. Continue to accept.","checkout_warning_continue":"Continue","checkout_warning_return":"Decline \u0026 return"},"selectors":{"cart_line_item":"","cart_line_item_filter":"","cart_line_item_qty":"","cart_subtotal":"[data-rebuy-component-id=\"cart_subtotal\"]","cart_count":"","checkout_btn":"","hidden_elements":""},"styling":{"enable_custom_css":true,"custom_css":".rebuy-cart__flyout-item.product-additional-fees.tag-mws_fee_generated {\n    display: none;\n}"},"wrapper_cart_cta":{"base_title":"Additional fees","meta":null},"store_front_token":"ba42d3e5f6e197a729056570e050abbe"},"fees":[],"deactivated_clones":[]};
  36942.      config = config || {
  36943.        "settings": {},
  36944.        "fees": [],
  36945.        "cache_hash": 123456789
  36946.      };
  36947.  
  36948.      if (config.settings.styling && config.settings.styling.enable_custom_css && config.settings.styling.custom_css.length) {
  36949.        const styleEl = document.createElement('style');
  36950.  
  36951.        styleEl.innerHTML = config.settings.styling.custom_css;
  36952.        document.head.appendChild(styleEl);
  36953.      }
  36954.  
  36955.      window.mwFeesConfig = {
  36956.        ... config,
  36957.        cart:
  36958.  {
  36959.    "attributes": {},
  36960.    "collections":
  36961.  {
  36962.  
  36963.  }
  36964. ,
  36965.    "item_count": 0,
  36966.    "items_subtotal_price": 0,
  36967.    "items": [],
  36968.    "tags":
  36969.  {
  36970.  
  36971.  }
  36972. ,
  36973.    "total_discount": 0,
  36974.    "total_price": 0,
  36975.    "total_weight": 0.0,
  36976.    "original_total_price": 0
  36977.  }
  36978.  ,
  36979.        customer_tags:
  36980.  [
  36981.  
  36982.  ]
  36983. ,
  36984.        shop: {
  36985.          domain: "www.garvee.com",
  36986.          permanent_domain: "mygarvee.myshopify.com"
  36987.        },
  36988.        template_name: "index",
  36989.        money_format: "${{amount}}",
  36990.        shop_currency: "USD",
  36991.        current_money_format: "$0.00 USD"
  36992.      }
  36993.  }
  36994.  
  36995.  mwsFeesNextInit();
  36996. </script>
  36997.  
  36998.  
  36999. </div></body>
  37000. </html>
  37001.  
  37002.  
  37003.  <style>
  37004.    @media screen and (min-width: 768px) {
  37005.      .m-product-card {
  37006.        min-height: 438px;
  37007.      }
  37008.    }
  37009.  </style>
  37010.  
  37011.  
  37012.  
  37013.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda