<!doctype html>
<html class="no-js" lang="en" dir="ltr">
  <head>
    <!-- Google Consent Mode V2 Consentmo -->
<script>
  window.consentmo_gcm_initial_state = "";
  window.consentmo_gcm_state = "";
  window.consentmo_gcm_security_storage = "";
  window.consentmo_gcm_ad_storage = "";
  window.consentmo_gcm_analytics_storage = "";
  window.consentmo_gcm_functionality_storage = "";
  window.consentmo_gcm_personalization_storage = "";
  window.consentmo_gcm_ads_data_redaction = "";
  window.consentmo_gcm_url_passthrough = "";
  window.consentmo_gcm_data_layer_name = "";
  
  // Google Consent Mode V2 integration script from Consentmo GDPR
  window.isenseRules = {};
  window.isenseRules.gcm = {
      gcmVersion: 2,
      integrationVersion: 3,
      customChanges: false,
      consentUpdated: false,
      initialState: 7,
      isCustomizationEnabled: false,
      adsDataRedaction: true,
      urlPassthrough: false,
      dataLayer: 'dataLayer',
      categories: { ad_personalization: "marketing", ad_storage: "marketing", ad_user_data: "marketing", analytics_storage: "analytics", functionality_storage: "functionality", personalization_storage: "functionality", security_storage: "strict"},
      storage: { ad_personalization: "false", ad_storage: "false", ad_user_data: "false", analytics_storage: "false", functionality_storage: "false", personalization_storage: "false", security_storage: "false", wait_for_update: 2000 }
  };
  if(window.consentmo_gcm_state !== null && window.consentmo_gcm_state !== "" && window.consentmo_gcm_state !== "0") {
    window.isenseRules.gcm.isCustomizationEnabled = true;
    window.isenseRules.gcm.initialState = window.consentmo_gcm_initial_state === null || window.consentmo_gcm_initial_state.trim() === "" ? window.isenseRules.gcm.initialState : window.consentmo_gcm_initial_state;
    window.isenseRules.gcm.categories.ad_storage = window.consentmo_gcm_ad_storage === null || window.consentmo_gcm_ad_storage.trim() === "" ? window.isenseRules.gcm.categories.ad_storage : window.consentmo_gcm_ad_storage;
    window.isenseRules.gcm.categories.ad_user_data = window.consentmo_gcm_ad_storage === null || window.consentmo_gcm_ad_storage.trim() === "" ? window.isenseRules.gcm.categories.ad_user_data : window.consentmo_gcm_ad_storage;
    window.isenseRules.gcm.categories.ad_personalization = window.consentmo_gcm_ad_storage === null || window.consentmo_gcm_ad_storage.trim() === "" ? window.isenseRules.gcm.categories.ad_personalization : window.consentmo_gcm_ad_storage;
    window.isenseRules.gcm.categories.analytics_storage = window.consentmo_gcm_analytics_storage === null || window.consentmo_gcm_analytics_storage.trim() === "" ? window.isenseRules.gcm.categories.analytics_storage : window.consentmo_gcm_analytics_storage;
    window.isenseRules.gcm.categories.functionality_storage = window.consentmo_gcm_functionality_storage === null || window.consentmo_gcm_functionality_storage.trim() === "" ? window.isenseRules.gcm.categories.functionality_storage : window.consentmo_gcm_functionality_storage;
    window.isenseRules.gcm.categories.personalization_storage = window.consentmo_gcm_personalization_storage === null || window.consentmo_gcm_personalization_storage.trim() === "" ? window.isenseRules.gcm.categories.personalization_storage : window.consentmo_gcm_personalization_storage;
    window.isenseRules.gcm.categories.security_storage = window.consentmo_gcm_security_storage === null || window.consentmo_gcm_security_storage.trim() === "" ? window.isenseRules.gcm.categories.security_storage : window.consentmo_gcm_security_storage;
    window.isenseRules.gcm.urlPassthrough = window.consentmo_gcm_url_passthrough === null || window.consentmo_gcm_url_passthrough.trim() === "" ? window.isenseRules.gcm.urlPassthrough : window.consentmo_gcm_url_passthrough;
    window.isenseRules.gcm.adsDataRedaction = window.consentmo_gcm_ads_data_redaction === null || window.consentmo_gcm_ads_data_redaction.trim() === "" ? window.isenseRules.gcm.adsDataRedaction : window.consentmo_gcm_ads_data_redaction;
    window.isenseRules.gcm.dataLayer = window.consentmo_gcm_data_layer_name === null || window.consentmo_gcm_data_layer_name.trim() === "" ? window.isenseRules.gcm.dataLayer : window.consentmo_gcm_data_layer_name;
  }
  window.isenseRules.initializeGcm = function (rules) {
    if(window.isenseRules.gcm.isCustomizationEnabled) {
      rules.initialState = window.isenseRules.gcm.initialState;
      rules.urlPassthrough = window.isenseRules.gcm.urlPassthrough === true || window.isenseRules.gcm.urlPassthrough === 'true';
      rules.adsDataRedaction = window.isenseRules.gcm.adsDataRedaction === true || window.isenseRules.gcm.adsDataRedaction === 'true';
    }
    
    let initialState = parseInt(rules.initialState);
    let marketingBlocked = initialState === 0 || initialState === 2 || initialState === 5 || initialState === 7;
    let analyticsBlocked = initialState === 0 || initialState === 3 || initialState === 6 || initialState === 7;
    let functionalityBlocked = initialState === 4 || initialState === 5 || initialState === 6 || initialState === 7;

    let gdprCache = localStorage.getItem('gdprCache') ? JSON.parse(localStorage.getItem('gdprCache')) : null;
    if (gdprCache && typeof gdprCache.updatedPreferences !== "undefined") {
      let updatedPreferences = gdprCache.updatedPreferences;
      marketingBlocked = parseInt(updatedPreferences.indexOf('marketing')) > -1;
      analyticsBlocked = parseInt(updatedPreferences.indexOf('analytics')) > -1;
      functionalityBlocked = parseInt(updatedPreferences.indexOf('functionality')) > -1;
    }

    Object.entries(rules.categories).forEach(category => {
      if(rules.storage.hasOwnProperty(category[0])) {
        switch(category[1]) {
          case 'strict':
            rules.storage[category[0]] = "granted";
            break;
          case 'marketing':
            rules.storage[category[0]] = marketingBlocked ? "denied" : "granted";
            break;
          case 'analytics':
            rules.storage[category[0]] = analyticsBlocked ? "denied" : "granted";
            break;
          case 'functionality':
            rules.storage[category[0]] = functionalityBlocked ? "denied" : "granted";
            break;
        }
      }
    });
    rules.consentUpdated = true;
    isenseRules.gcm = rules;
  }

  // Google Consent Mode - initialization start
  window.isenseRules.initializeGcm({
    ...window.isenseRules.gcm,
    adsDataRedaction: true,
    urlPassthrough: false,
    initialState: 7
  });

  /*
  * initialState acceptable values:
  * 0 - Set both ad_storage and analytics_storage to denied
  * 1 - Set all categories to granted
  * 2 - Set only ad_storage to denied
  * 3 - Set only analytics_storage to denied
  * 4 - Set only functionality_storage to denied
  * 5 - Set both ad_storage and functionality_storage to denied
  * 6 - Set both analytics_storage and functionality_storage to denied
  * 7 - Set all categories to denied
  */

  window[window.isenseRules.gcm.dataLayer] = window[window.isenseRules.gcm.dataLayer] || [];
  function gtag() { window[window.isenseRules.gcm.dataLayer].push(arguments); }
  gtag("consent", "default", isenseRules.gcm.storage);
  isenseRules.gcm.adsDataRedaction && gtag("set", "ads_data_redaction", isenseRules.gcm.adsDataRedaction);
  isenseRules.gcm.urlPassthrough && gtag("set", "url_passthrough", isenseRules.gcm.urlPassthrough);
</script>
  

    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <meta name="theme-color" content="#111111">
    <link rel="canonical" href="https://inhabitliving.com/collections/harmony-acoustic-pet-felt-3d-panels">
    <link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin>
    <link rel="dns-prefetch" href="https://ajax.googleapis.com">
    <link rel="dns-prefetch" href="https://maps.googleapis.com">
    <link rel="dns-prefetch" href="https://maps.gstatic.com"><link rel="shortcut icon" href="//inhabitliving.com/cdn/shop/files/INH_favicon_32x32.jpg?v=1614733954" type="image/png">
<title>Acoustic Felt Wall Panels - Harmony3D by Inhabit</title>
<meta name="description" content="Enhance your space with Harmony3D Acoustic Felt 3D Wall Panels, proudly made in the USA. Experience the perfect fusion of captivating design, exceptional acoustic performance, and recycled materials. Transform any room into a haven of tranquility and style with our premium, domestically crafted panels. Explore the collection now!">
<meta property="og:site_name" content="Inhabit">
<meta property="og:url" content="https://inhabitliving.com/collections/harmony-acoustic-pet-felt-3d-panels">
<meta property="og:title" content="Acoustic Felt Wall Panels - Harmony3D by Inhabit">
<meta property="og:type" content="website">
<meta property="og:description" content="Enhance your space with Harmony3D Acoustic Felt 3D Wall Panels, proudly made in the USA. Experience the perfect fusion of captivating design, exceptional acoustic performance, and recycled materials. Transform any room into a haven of tranquility and style with our premium, domestically crafted panels. Explore the collection now!"><meta property="og:image" content="http://inhabitliving.com/cdn/shop/collections/harmony-acoustic-pet-felt-3d-panels-987087.jpg?v=1664239229">
  <meta property="og:image:secure_url" content="https://inhabitliving.com/cdn/shop/collections/harmony-acoustic-pet-felt-3d-panels-987087.jpg?v=1664239229">
  <meta property="og:image:width" content="2000">
  <meta property="og:image:height" content="300"><meta name="twitter:site" content="@">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Acoustic Felt Wall Panels - Harmony3D by Inhabit">
<meta name="twitter:description" content="Enhance your space with Harmony3D Acoustic Felt 3D Wall Panels, proudly made in the USA. Experience the perfect fusion of captivating design, exceptional acoustic performance, and recycled materials. Transform any room into a haven of tranquility and style with our premium, domestically crafted panels. Explore the collection now!">

<style data-shopify>@font-face {
  font-family: "Work Sans";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("//inhabitliving.com/cdn/fonts/work_sans/worksans_n3.9147fb8a17f92eea90fbd0f4a12980752c760985.woff2") format("woff2"),
       url("//inhabitliving.com/cdn/fonts/work_sans/worksans_n3.77ff01b19c0b08f0c3cb6da29ec620c1042f8122.woff") format("woff");
}

  @font-face {
  font-family: Inter;
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("//inhabitliving.com/cdn/fonts/inter/inter_n3.6faba940d2e90c9f1c2e0c5c2750b84af59fecc0.woff2") format("woff2"),
       url("//inhabitliving.com/cdn/fonts/inter/inter_n3.413aa818ec2103383c4ac7c3744c464d04b4db49.woff") format("woff");
}


  @font-face {
  font-family: Inter;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("//inhabitliving.com/cdn/fonts/inter/inter_n6.771af0474a71b3797eb38f3487d6fb79d43b6877.woff2") format("woff2"),
       url("//inhabitliving.com/cdn/fonts/inter/inter_n6.88c903d8f9e157d48b73b7777d0642925bcecde7.woff") format("woff");
}

  @font-face {
  font-family: Inter;
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  src: url("//inhabitliving.com/cdn/fonts/inter/inter_i3.6d51b5c1aff0e6286c06ee460a22e95b7c89d160.woff2") format("woff2"),
       url("//inhabitliving.com/cdn/fonts/inter/inter_i3.125e6a7560f210d08832797e294849204cda4973.woff") format("woff");
}

  @font-face {
  font-family: Inter;
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  src: url("//inhabitliving.com/cdn/fonts/inter/inter_i6.3bbe0fe1c7ee4f282f9c2e296f3e4401a48cbe19.woff2") format("woff2"),
       url("//inhabitliving.com/cdn/fonts/inter/inter_i6.8bea21f57a10d5416ddf685e2c91682ec237876d.woff") format("woff");
}

</style><link href="//inhabitliving.com/cdn/shop/t/98/assets/custom.css?v=113313802666081586641732803582" rel="stylesheet" type="text/css" media="all" />

    <link href="//inhabitliving.com/cdn/shop/t/98/assets/components.css?v=23588865534838672711732803582" rel="stylesheet" type="text/css" media="all" />

<style data-shopify>:root {
    --colorBody: #ffffff;
    --colorBodyAlpha05: rgba(255, 255, 255, 0.05);
    --colorBodyDim: #f2f2f2;

    --colorBorder: #e8e8e1;

    --colorBtnPrimary: #111111;
    --colorBtnPrimaryLight: #2b2b2b;
    --colorBtnPrimaryDim: #040404;
    --colorBtnPrimaryText: #ffffff;

    --colorCartDot: #898989;
    --colorCartDotText: #fff;

    --colorFooter: #000000;
    --colorFooterBorder: #eeeeee;
    --colorFooterText: #ffffff;

    --colorLink: #000000;

    --colorModalBg: rgba(15, 15, 15, 0.6);

    --colorNav: #ffffff;
    --colorNavSearch: #ffffff;
    --colorNavText: #000000;

    --colorPrice: #1c1d1d;

    --colorSaleTag: #ba4444;
    --colorSaleTagText: #ffffff;

    --colorScheme1Text: #111111;
    --colorScheme1Bg: #eeeeee;
    --colorScheme2Text: #ffffff;
    --colorScheme2Bg: #000000;
    --colorScheme3Text: #000000;
    --colorScheme3Bg: #e8e8e1;

    --colorTextBody: #000000;
    --colorTextBodyAlpha005: rgba(0, 0, 0, 0.05);
    --colorTextBodyAlpha008: rgba(0, 0, 0, 0.08);
    --colorTextSavings: #ba4444;

    --colorToolbar: #000000;
    --colorToolbarText: #ffffff;

    --urlIcoSelect: url(//inhabitliving.com/cdn/shop/t/98/assets/ico-select.svg);
    --urlSwirlSvg: url(//inhabitliving.com/cdn/shop/t/98/assets/swirl.svg);

    --header-padding-bottom: 0;

    --pageTopPadding: 35px;
    --pageNarrow: 780px;
    --pageWidthPadding: 40px;
    --gridGutter: 22px;
    --indexSectionPadding: 60px;
    --sectionHeaderBottom: 40px;
    --collapsibleIconWidth: 12px;

    --sizeChartMargin: 30px 0;
    --sizeChartIconMargin: 5px;

    --newsletterReminderPadding: 20px 30px 20px 25px;

    --textFrameMargin: 10px;

    /*Shop Pay Installments*/
    --color-body-text: #000000;
    --color-body: #ffffff;
    --color-bg: #ffffff;

    --typeHeaderPrimary: "Work Sans";
    --typeHeaderFallback: sans-serif;
    --typeHeaderSize: 30px;
    --typeHeaderWeight: 300;
    --typeHeaderLineHeight: 1.1;
    --typeHeaderSpacing: 0.0em;

    --typeBasePrimary:Inter;
    --typeBaseFallback:sans-serif;
    --typeBaseSize: 13px;
    --typeBaseWeight: 300;
    --typeBaseSpacing: 0.0em;
    --typeBaseLineHeight: 1.3;

    --colorSmallImageBg: #ffffff;
    --colorSmallImageBgDark: #f7f7f7;
    --colorLargeImageBg: #0f0f0f;
    --colorLargeImageBgLight: #303030;

    --icon-strokeWidth: 3px;
    --icon-strokeLinejoin: miter;

    
      --buttonRadius: 0;
      --btnPadding: 11px 20px;
    

    
      --roundness: 0;
    

    
      --gridThickness: 1px;
    

    --productTileMargin: 0%;
    --collectionTileMargin: 0%;

    --swatchSize: 42px;
  }

  @media screen and (max-width: 768px) {
    :root {
      --pageTopPadding: 15px;
      --pageNarrow: 330px;
      --pageWidthPadding: 17px;
      --gridGutter: 16px;
      --indexSectionPadding: 40px;
      --sectionHeaderBottom: 25px;
      --collapsibleIconWidth: 10px;
      --textFrameMargin: 7px;
      --typeBaseSize: 11px;

      
        --roundness: 0;
        --btnPadding: 9px 17px;
      
    }
  }</style><link href="//inhabitliving.com/cdn/shop/t/98/assets/overrides.css?v=61671070734277095511732803582" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>:root {
        --productGridPadding: 12px;
      }</style><script>
      document.documentElement.className = document.documentElement.className.replace('no-js', 'js');

      window.theme = window.theme || {};

      theme.settings = {
        themeName: 'Expanse',
        themeVersion: "5.2.4" // x-release-please-version
      };
    </script><script type="importmap">
{
  "imports": {
    "@archetype-themes/scripts/config": "//inhabitliving.com/cdn/shop/t/98/assets/config.js?v=46854268358620717621732803582",
    "@archetype-themes/scripts/helpers/a11y": "//inhabitliving.com/cdn/shop/t/98/assets/a11y.js?v=146705825431690116351732803582",
    "@archetype-themes/scripts/helpers/ajax-renderer": "//inhabitliving.com/cdn/shop/t/98/assets/ajax-renderer.js?v=7517952383981163841732803582",
    "@archetype-themes/scripts/helpers/cart": "//inhabitliving.com/cdn/shop/t/98/assets/cart.js?v=75437256748844919541732803582",
    "@archetype-themes/scripts/helpers/currency": "//inhabitliving.com/cdn/shop/t/98/assets/currency.js?v=30528371845530833611732803582",
    "@archetype-themes/scripts/helpers/library-loader": "//inhabitliving.com/cdn/shop/t/98/assets/library-loader.js?v=156273567395030534951732803582",
    "@archetype-themes/scripts/helpers/section": "//inhabitliving.com/cdn/shop/t/98/assets/section.js?v=132577235708517326151732803582",
    "@archetype-themes/scripts/helpers/utils": "//inhabitliving.com/cdn/shop/t/98/assets/utils.js?v=125538862470536898921732803582",
    "@archetype-themes/scripts/helpers/vimeo": "//inhabitliving.com/cdn/shop/t/98/assets/vimeo.js?v=24358449204266797831732803582",
    "@archetype-themes/scripts/helpers/youtube": "//inhabitliving.com/cdn/shop/t/98/assets/youtube.js?v=65638137014896701821732803582",
    "@archetype-themes/scripts/modules/base-media": "//inhabitliving.com/cdn/shop/t/98/assets/base-media.js?v=158686823065200144011732803582",
    "@archetype-themes/scripts/modules/cart-drawer": "//inhabitliving.com/cdn/shop/t/98/assets/cart-drawer.js?v=11062050084148031711732804557",
    "@archetype-themes/scripts/modules/cart-form": "//inhabitliving.com/cdn/shop/t/98/assets/cart-form.js?v=117261346759662240851732804365",
    "@archetype-themes/scripts/modules/collection-sidebar": "//inhabitliving.com/cdn/shop/t/98/assets/collection-sidebar.js?v=32046460992339877421732803582",
    "@archetype-themes/scripts/modules/disclosure": "//inhabitliving.com/cdn/shop/t/98/assets/disclosure.js?v=182459945533096787091732803582",
    "@archetype-themes/scripts/modules/drawers": "//inhabitliving.com/cdn/shop/t/98/assets/drawers.js?v=107619225559659722991732803582",
    "@archetype-themes/scripts/modules/header-nav": "//inhabitliving.com/cdn/shop/t/98/assets/header-nav.js?v=130288449627393218461732803582",
    "@archetype-themes/scripts/modules/modal": "//inhabitliving.com/cdn/shop/t/98/assets/modal.js?v=102967538291486637721732803582",
    "@archetype-themes/scripts/modules/parallax": "//inhabitliving.com/cdn/shop/t/98/assets/parallax.js?v=52940338558575531261732803582",
    "@archetype-themes/scripts/modules/photoswipe": "//inhabitliving.com/cdn/shop/t/98/assets/photoswipe.js?v=61950094564222720771732803582",
    "@archetype-themes/scripts/modules/product-media": "//inhabitliving.com/cdn/shop/t/98/assets/product-media.js?v=114769602821602274331732803582",
    "@archetype-themes/scripts/modules/product-recommendations": "//inhabitliving.com/cdn/shop/t/98/assets/product-recommendations.js?v=129269900080061478331732803582",
    "@archetype-themes/scripts/modules/quantity-selector": "//inhabitliving.com/cdn/shop/t/98/assets/quantity-selector.js?v=5518425597956516751732803582",
    "@archetype-themes/scripts/modules/slideshow": "//inhabitliving.com/cdn/shop/t/98/assets/slideshow.js?v=156838720240918166541732803582",
    "@archetype-themes/scripts/modules/swatches": "//inhabitliving.com/cdn/shop/t/98/assets/swatches.js?v=115748111205220542111732803582",
    "@archetype-themes/scripts/modules/video-modal": "//inhabitliving.com/cdn/shop/t/98/assets/video-modal.js?v=124352799055401291551732803582",
    "@archetype-themes/scripts/modules/video-section": "//inhabitliving.com/cdn/shop/t/98/assets/video-section.js?v=145713833504631471951732803582",
    "@archetype-themes/scripts/vendors/flickity": "//inhabitliving.com/cdn/shop/t/98/assets/flickity.js?v=144376614648444948171732803582",
    "@archetype-themes/scripts/vendors/flickity-fade": "//inhabitliving.com/cdn/shop/t/98/assets/flickity-fade.js?v=151768845016003842921732803582",
    "@archetype-themes/scripts/vendors/in-view": "//inhabitliving.com/cdn/shop/t/98/assets/in-view.js?v=124859139038447028371732803582",
    "@archetype-themes/scripts/vendors/photoswipe-ui-default.min": "//inhabitliving.com/cdn/shop/t/98/assets/photoswipe-ui-default.min.js?v=36102812715426724251732803582",
    "@archetype-themes/scripts/vendors/photoswipe.min": "//inhabitliving.com/cdn/shop/t/98/assets/photoswipe.min.js?v=9794040944707490151732803582",
    "@archetype-themes/utils/pubsub": "//inhabitliving.com/cdn/shop/t/98/assets/pubsub.js?v=133006050037748302171732803582",
    "@archetype-themes/utils/script-loader": "//inhabitliving.com/cdn/shop/t/98/assets/script-loader.js?v=25126702851678854941732803582",
    "components/announcement-bar": "//inhabitliving.com/cdn/shop/t/98/assets/announcement-bar.js?v=130357584752841676451732803582",
    "components/block-buy-buttons": "//inhabitliving.com/cdn/shop/t/98/assets/block-buy-buttons.js?v=11796062151789649231732803582",
    "components/block-price": "//inhabitliving.com/cdn/shop/t/98/assets/block-price.js?v=163350562479400801831732803582",
    "components/block-variant-picker": "//inhabitliving.com/cdn/shop/t/98/assets/block-variant-picker.js?v=55141893821538768491732803582",
    "components/collapsible": "//inhabitliving.com/cdn/shop/t/98/assets/collapsible.js?v=155419906067739637921732803582",
    "components/gift-card-recipient-form": "//inhabitliving.com/cdn/shop/t/98/assets/gift-card-recipient-form.js?v=64755253772159527141732803582",
    "components/header-mobile-nav": "//inhabitliving.com/cdn/shop/t/98/assets/header-mobile-nav.js?v=34501982044316274591732803582",
    "components/item-grid": "//inhabitliving.com/cdn/shop/t/98/assets/item-grid.js?v=152639846473000520891732803582",
    "components/newsletter-reminder": "//inhabitliving.com/cdn/shop/t/98/assets/newsletter-reminder.js?v=90617379688067204021732803582",
    "components/predictive-search": "//inhabitliving.com/cdn/shop/t/98/assets/predictive-search.js?v=125633826981499254571732803582",
    "components/price-range": "//inhabitliving.com/cdn/shop/t/98/assets/price-range.js?v=123052969041133689781732803582",
    "components/product-images": "//inhabitliving.com/cdn/shop/t/98/assets/product-images.js?v=88344245524099105901732803582",
    "components/product-inventory": "//inhabitliving.com/cdn/shop/t/98/assets/product-inventory.js?v=52642964346898521011732803582",
    "components/quick-add": "//inhabitliving.com/cdn/shop/t/98/assets/quick-add.js?v=153468363738513771401732803582",
    "components/quick-shop": "//inhabitliving.com/cdn/shop/t/98/assets/quick-shop.js?v=97897957291450767481732803582",
    "components/rte": "//inhabitliving.com/cdn/shop/t/98/assets/rte.js?v=181885037864920336431732803582",
    "components/section-advanced-accordion": "//inhabitliving.com/cdn/shop/t/98/assets/section-advanced-accordion.js?v=160203125380940052601732803582",
    "components/section-age-verification-popup": "//inhabitliving.com/cdn/shop/t/98/assets/section-age-verification-popup.js?v=70734405310605133951732803582",
    "components/section-background-image-text": "//inhabitliving.com/cdn/shop/t/98/assets/section-background-image-text.js?v=17382720343615129641732803582",
    "components/section-collection-header": "//inhabitliving.com/cdn/shop/t/98/assets/section-collection-header.js?v=81681564589283490831732803582",
    "components/section-countdown": "//inhabitliving.com/cdn/shop/t/98/assets/section-countdown.js?v=109956453145979029921732803582",
    "components/section-footer": "//inhabitliving.com/cdn/shop/t/98/assets/section-footer.js?v=164218822520813513031732803582",
    "components/section-header": "//inhabitliving.com/cdn/shop/t/98/assets/section-header.js?v=18369522156731752591732803582",
    "components/section-hotspots": "//inhabitliving.com/cdn/shop/t/98/assets/section-hotspots.js?v=176317069189202021961732803582",
    "components/section-image-compare": "//inhabitliving.com/cdn/shop/t/98/assets/section-image-compare.js?v=14228108873992596151732803582",
    "components/section-main-cart": "//inhabitliving.com/cdn/shop/t/98/assets/section-main-cart.js?v=112925653898238753791732803582",
    "components/section-map": "//inhabitliving.com/cdn/shop/t/98/assets/section-map.js?v=8045789484266781521732803582",
    "components/section-more-products-vendor": "//inhabitliving.com/cdn/shop/t/98/assets/section-more-products-vendor.js?v=159549355731084264781732803582",
    "components/section-newsletter-popup": "//inhabitliving.com/cdn/shop/t/98/assets/section-newsletter-popup.js?v=105940320737649261751732803582",
    "components/section-password-header": "//inhabitliving.com/cdn/shop/t/98/assets/section-password-header.js?v=113265428254908848341732803582",
    "components/section-recently-viewed": "//inhabitliving.com/cdn/shop/t/98/assets/section-recently-viewed.js?v=71380856058705518961732803582",
    "components/section-testimonials": "//inhabitliving.com/cdn/shop/t/98/assets/section-testimonials.js?v=99252732340278527291732803582",
    "components/section-toolbar": "//inhabitliving.com/cdn/shop/t/98/assets/section-toolbar.js?v=138777767681444653671732803582",
    "components/store-availability": "//inhabitliving.com/cdn/shop/t/98/assets/store-availability.js?v=63703472421863417921732803582",
    "components/tool-tip": "//inhabitliving.com/cdn/shop/t/98/assets/tool-tip.js?v=90403548259094193031732803582",
    "components/tool-tip-trigger": "//inhabitliving.com/cdn/shop/t/98/assets/tool-tip-trigger.js?v=140183424560662924111732803582",
    "components/variant-sku": "//inhabitliving.com/cdn/shop/t/98/assets/variant-sku.js?v=177336021623114299181732803582",
    "components/video-media": "//inhabitliving.com/cdn/shop/t/98/assets/video-media.js?v=73971623221435132531732803582",
    "js-cookie": "//inhabitliving.com/cdn/shop/t/98/assets/js.cookie.mjs?v=38015963105781969301732803582",
    "nouislider": "//inhabitliving.com/cdn/shop/t/98/assets/nouislider.js?v=100438778919154896961732803582"
  }
}
</script>
<script>
  if (!(HTMLScriptElement.supports && HTMLScriptElement.supports('importmap'))) {
    const el = document.createElement('script')
    el.async = true
    el.src = "//inhabitliving.com/cdn/shop/t/98/assets/es-module-shims.min.js?v=3197203922110785981732803582"
    document.head.appendChild(el)
  }
</script>

<script type="module" src="//inhabitliving.com/cdn/shop/t/98/assets/is-land.min.js?v=92343381495565747271732803582"></script>



<script type="module">
  try {
    const importMap = document.querySelector('script[type="importmap"]')
    const importMapJson = JSON.parse(importMap.textContent)
    const importMapModules = Object.values(importMapJson.imports)
    for (let i = 0; i < importMapModules.length; i++) {
      const link = document.createElement('link')
      link.rel = 'modulepreload'
      link.href = importMapModules[i]
      document.head.appendChild(link)
    }
  } catch (e) {
    console.error(e)
  }
</script>
<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="aUArk_CWTuo65oHa5J13rby192pUsWrhPUBGLRQ0WiY">
<meta name="google-site-verification" content="QjqLAXRkFZXfqu3zD6LuIp6QBJkZOf9PPgkgEJPSl1k">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/9417790/digital_wallets/dialog">
<meta name="shopify-checkout-api-token" content="4db74a344c03fcb5eec2c8f20203fc71">
<meta id="in-context-paypal-metadata" data-shop-id="9417790" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="USD">
<link rel="alternate" type="application/atom+xml" title="Feed" href="/collections/harmony-acoustic-pet-felt-3d-panels.atom" />
<link rel="alternate" type="application/json+oembed" href="https://inhabitliving.com/collections/harmony-acoustic-pet-felt-3d-panels.oembed">
<script async="async" src="/checkouts/internal/preloads.js?locale=en-US"></script>
<link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
<script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-US&shop_id=9417790" crossorigin="anonymous"></script>
<script id="apple-pay-shop-capabilities" type="application/json">{"shopId":9417790,"countryCode":"US","currencyCode":"USD","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/9417790","merchantName":"Inhabit","requiredBillingContactFields":["postalAddress","email","phone"],"requiredShippingContactFields":["postalAddress","email","phone"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex","discover","elo","jcb"],"total":{"type":"pending","label":"Inhabit","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
<script id="shopify-features" type="application/json">{"accessToken":"4db74a344c03fcb5eec2c8f20203fc71","betas":["rich-media-storefront-analytics"],"domain":"inhabitliving.com","predictiveSearch":true,"shopId":9417790,"locale":"en"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "inhabitshopify.myshopify.com";
Shopify.locale = "en";
Shopify.currency = {"active":"USD","rate":"1.0"};
Shopify.country = "US";
Shopify.theme = {"name":"InhabitV5.2.4-RefreshScript[ST-28-11-24]","id":141590823098,"schema_name":"Expanse","schema_version":"5.2.4","theme_store_id":902,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "inhabitliving.com/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";
Shopify.shopJsCdnBaseUrl = "https://cdn.shopify.com/shopifycloud/shop-js";</script>
<script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
<script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
<script>
  window.ShopifyPay = window.ShopifyPay || {};
  window.ShopifyPay.apiHost = "shop.app\/pay";
  window.ShopifyPay.redirectState = null;
</script>
<script id="shop-js-analytics" type="application/json">{"pageType":"collection"}</script>
<script defer="defer" async type="module" src="//inhabitliving.com/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js"></script>
<script type="module">
  await import("//inhabitliving.com/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js");

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

</script>
<script>
  window.Shopify = window.Shopify || {};
  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  window.Shopify.featureAssets['shop-js'] = {"shop-toast-manager":["modules/v2/loader.shop-toast-manager.en.esm.js"],"init-windoid":["modules/v2/loader.init-windoid.en.esm.js"],"shop-cash-offers":["modules/v2/loader.shop-cash-offers.en.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/loader.init-shop-email-lookup-coordinator.en.esm.js"],"init-fed-cm":["modules/v2/loader.init-fed-cm.en.esm.js"],"init-shop-cart-sync":["modules/v2/loader.init-shop-cart-sync.en.esm.js"],"shop-button":["modules/v2/loader.shop-button.en.esm.js"],"shop-cart-sync":["modules/v2/loader.shop-cart-sync.en.esm.js"],"shop-login-button":["modules/v2/loader.shop-login-button.en.esm.js"],"init-customer-accounts":["modules/v2/loader.init-customer-accounts.en.esm.js"],"avatar":["modules/v2/loader.avatar.en.esm.js"],"shop-login":["modules/v2/loader.shop-login.en.esm.js"],"checkout-modal":["modules/v2/loader.checkout-modal.en.esm.js"],"init-customer-accounts-sign-up":["modules/v2/loader.init-customer-accounts-sign-up.en.esm.js"],"shop-follow-button":["modules/v2/loader.shop-follow-button.en.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/loader.init-shop-for-new-customer-accounts.en.esm.js"],"pay-button":["modules/v2/loader.pay-button.en.esm.js"],"lead-capture":["modules/v2/loader.lead-capture.en.esm.js"],"payment-terms":["modules/v2/loader.payment-terms.en.esm.js"]};
</script>
<script>(function() {
  var isLoaded = false;
  function asyncLoad() {
    if (isLoaded) return;
    isLoaded = true;
    var urls = ["https:\/\/cf.storeify.app\/js\/frontend\/scripttag.js?shop=inhabitshopify.myshopify.com","https:\/\/config.gorgias.chat\/bundle-loader\/01GYCBTNNHZVFEYKBSNM7762B8?source=shopify1click\u0026shop=inhabitshopify.myshopify.com","https:\/\/cdn.hextom.com\/js\/quickannouncementbar.js?shop=inhabitshopify.myshopify.com","https:\/\/media.9gtb.com\/loader.js?g_cvt_id=e55f216c-6b70-44e8-b903-42fd59df0ac1\u0026shop=inhabitshopify.myshopify.com"];
    for (var i = 0; i < urls.length; i++) {
      var s = document.createElement('script');
      s.type = 'text/javascript';
      s.async = true;
      s.src = urls[i];
      var x = document.getElementsByTagName('script')[0];
      x.parentNode.insertBefore(s, x);
    }
  };
  if(window.attachEvent) {
    window.attachEvent('onload', asyncLoad);
  } else {
    window.addEventListener('load', asyncLoad, false);
  }
})();</script>
<script id="__st">var __st={"a":9417790,"offset":-14400,"reqid":"a7dbf273-88b1-43ae-8d1a-e2e98c7bc2ed-1774738361","pageurl":"inhabitliving.com\/collections\/harmony-acoustic-pet-felt-3d-panels?srsltid=AfmBOoqVmva6_BmOg2AWuQXJZR0mC2hVF4LHCQ9ZU6fLb8dJd3XZXPou","u":"618eb6210497","p":"collection","rtyp":"collection","rid":291819978938};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!0,!0)}();</script>
<script integrity="sha256-Rd0I1U3I5BUKM/ZklNQ9ssBhyhvFP+5roZEEsW2MGUw=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//inhabitliving.com/cdn/shopifycloud/storefront/assets/storefront/load_feature-496de5fe.js" crossorigin="anonymous"></script>
<script crossorigin="anonymous" defer="defer" src="//inhabitliving.com/cdn/shopifycloud/storefront/assets/shopify_pay/storefront-65b4c6d7.js?v=20250812"></script>
<script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://inhabitliving.com/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
</script>
<script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
</script>
<script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
</script>
<link id="shopify-accelerated-checkout-styles" rel="stylesheet" media="screen" href="https://inhabitliving.com/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
<style id="shopify-accelerated-checkout-cart">
        #shopify-buyer-consent {
  margin-top: 1em;
  display: inline-block;
  width: 100%;
}

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

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

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

      </style>

<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>

    <script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>

    <script src="//inhabitliving.com/cdn/shop/t/98/assets/theme.js?v=77167323714411244521732803582" defer="defer"></script>
    <script>
      window.webyzeilpo_appLoadedCallback = ()=>{setTimeout(()=>jQuery('.webyze-ilpo-preview-wrapper').appendTo('#PageContainer .transition-body'), 400);}
    </script>
    <style>
      div.webyze-ilpo-preview-wrapper {z-index:1 !important;}
    </style>
    <script>window.is_hulkpo_installed=true</script>
  <!-- BEGIN app block: shopify://apps/consentmo-gdpr/blocks/gdpr_cookie_consent/4fbe573f-a377-4fea-9801-3ee0858cae41 -->


<!-- END app block --><!-- BEGIN app block: shopify://apps/zepto-product-personalizer/blocks/product_personalizer_main/7411210d-7b32-4c09-9455-e129e3be4729 -->
<!-- BEGIN app snippet: zepto_common --><script>
var pplr_cart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"USD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0};
var pplr_shop_currency = "USD";
var pplr_enabled_currencies_size = 1;
var pplr_money_formate = "${{amount}}";
var pplr_manual_theme_selector=["CartCount span:first","tr:has([name*=updates]), .cart__item",".image-wrap",".line-item__title, .cart__item--properties",".pplr_item_price",".pplr_item_line_price, .cart__price, .cart-item__price-wrapper .price",".pplr_item_remove",".ajaxcart__qty, .cart__item-sub.cart__item-row div:nth-child(2)",".pplr_subtotal_price, .zep_t_c","form[action*=cart] [name=checkout], .cart__checkout","Click To View Image","1","Discount Code {{ code }} is invalid","Discount code","Apply","#pplr_D_class","Subtotal","Shipping","EST. Total","100"];
</script>
<script defer src="//cdn-zeptoapps.com/product-personalizer/pplr_common.js?v=28" ></script><!-- END app snippet -->

<!-- END app block --><!-- BEGIN app block: shopify://apps/rt-terms-and-conditions-box/blocks/app-embed/17661ca5-aeea-41b9-8091-d8f7233e8b22 --><script type='text/javascript'>
  window.roarJs = window.roarJs || {};
      roarJs.LegalConfig = {
          metafields: {
          shop: "inhabitshopify.myshopify.com",
          settings: {"enabled":"1","only1":"true","param":{"message":"I have read and agreed with the {link}","error_message":"Please agree to the terms and conditions before making a purchase!","error_display":"dialog","greeting":{"enabled":"0","message":"Please agree to the T\u0026C before purchasing!","delay":"1"},"link_order":["link"],"links":{"link":{"label":"terms and conditions","target":"_blank","url":"pages\/terms-conditions","policy":"terms-of-service"}},"force_enabled":"0","optional":"0","optional_message_enabled":"0","optional_message_value":"Thank you! The page will be moved to the checkout page.","optional_checkbox_hidden":"0","time_enabled":"1","time_label":"Agreed to the Terms and Conditions on","checkbox":"1"},"popup":{"title":"Terms and Conditions","width":"600","button":"Process to Checkout","icon_color":"#000000"},"style":{"checkbox":{"size":"12","color":"#75757f"},"message":{"font":"inherit","size":"12","customized":{"enabled":"1","color":"#212b36","accent":"#000000","error":"#de3618"},"align":"inherit","padding":{"top":"12","right":"0","bottom":"12","left":"0"}}},"installer":[]},
          moneyFormat: "${{amount}}"
      }
  }
</script>
<script src='https://cdn.shopify.com/extensions/019a2c75-764c-7925-b253-e24466484d41/legal-7/assets/legal.js' defer></script>


<!-- END app block --><!-- BEGIN app block: shopify://apps/rt-disable-right-click/blocks/app-embed/1a6da957-7246-46b1-9660-2fac7e573a37 --><script>
  window.roarJs = window.roarJs || {};
  roarJs.ProtectorConfig = {
    metafields: {
      shop: "inhabitshopify.myshopify.com",
      settings: {"enabled":"0","param":{"image":"1","text":"1","keyboard":"1","alert":"1","alert_duration":"3","print":"0","legal":"1"},"texts":{"alert":"Content is protected !!","print":"You are not allowed to print preview this page, Thank you.","legal_header":"** LEGAL NOTICE **","legal_footer":"Please exit this area immediately.","legal_body":"All site content, including files, images, video, and written content is the property of Inhabit.\r\n\r\nAny attempts to mimic said content, or use it as your own without the direct consent of Inhabit may result in LEGAL ACTION against YOU."},"mobile":{"image":"1","text":"1"},"only1":"true"},
      moneyFormat: "${{amount}}"
    }
  }
</script>

<script src='https://cdn.shopify.com/extensions/019b3f8c-4deb-7edd-a77f-1462a1c4ebfc/protector-2/assets/protector.js' defer></script>


<!-- END app block --><!-- BEGIN app block: shopify://apps/easyban-country-blocker/blocks/easyban-blocker/6583aec2-8e90-464e-9601-efb6039a18f8 --><script src="https://cdn.shopify.com/extensions/0199b407-62ab-757c-8c40-b410f744da52/easy-ban-40/assets/filter.js?v=13&shop=inhabitshopify.myshopify.com" async></script>
<script src="https://cdn.shopify.com/extensions/0199b407-62ab-757c-8c40-b410f744da52/easy-ban-40/assets/regc.js?v=1&shop=inhabitshopify.myshopify.com" async></script>




  <script async>
   (function(_0x169799,_0x173c0f){var _0x47f87a=_0x120b,_0x49fa92=_0x169799();while(!![]){try{var _0x28db74=parseInt(_0x47f87a(0x141))/0x1*(parseInt(_0x47f87a(0x131))/0x2)+parseInt(_0x47f87a(0x13f))/0x3+parseInt(_0x47f87a(0x12b))/0x4*(parseInt(_0x47f87a(0x142))/0x5)+-parseInt(_0x47f87a(0x139))/0x6+parseInt(_0x47f87a(0x13a))/0x7+parseInt(_0x47f87a(0x12e))/0x8*(-parseInt(_0x47f87a(0x133))/0x9)+parseInt(_0x47f87a(0x136))/0xa*(-parseInt(_0x47f87a(0x13d))/0xb);if(_0x28db74===_0x173c0f)break;else _0x49fa92['push'](_0x49fa92['shift']());}catch(_0x220ae6){_0x49fa92['push'](_0x49fa92['shift']());}}}(_0x43f3,0x8ad02),function e(){window['_eb_blocked']=![];var _0x4c5c0f=new MutationObserver(function(_0x5b3d84){var _0x22d5d1=_0x120b;_0x5b3d84[_0x22d5d1(0x13b)](function(_0x48ea97){var _0x4ecf5b=_0x22d5d1;_0x48ea97['addedNodes'][_0x4ecf5b(0x13b)](function(_0xf966ad){var _0x2a5c50=_0x4ecf5b;if(_0xf966ad[_0x2a5c50(0x13c)]==='SCRIPT'&&window[_0x2a5c50(0x12f)]==![]){var _0x2c9825=_0xf966ad[_0x2a5c50(0x137)]||_0xf966ad[_0x2a5c50(0x135)];_0x2c9825['includes'](_0x2a5c50(0x138))&&(window['_eb_blocked']=!![],window[_0x2a5c50(0x12d)]=_0x2c9825,_0xf966ad[_0x2a5c50(0x143)][_0x2a5c50(0x130)](_0xf966ad),_0x4c5c0f[_0x2a5c50(0x12a)]());}});});});_0x4c5c0f['observe'](document['documentElement'],{'childList':!![],'subtree':!![]}),setTimeout(()=>{var _0x5cfd94=_0x120b;if(!window[_0x5cfd94(0x132)]&&window[_0x5cfd94(0x12f)]){var _0x2cfc78=document['createElement'](_0x5cfd94(0x12c));_0x2cfc78[_0x5cfd94(0x13e)]=_0x5cfd94(0x144),_0x2cfc78[_0x5cfd94(0x137)]=window['_eb_blocked_script'],document[_0x5cfd94(0x134)][_0x5cfd94(0x140)](_0x2cfc78);}},0x2ee0);}());function _0x120b(_0x5de87e,_0x351d93){var _0x43f3e0=_0x43f3();return _0x120b=function(_0x120bfa,_0x4264fd){_0x120bfa=_0x120bfa-0x12a;var _0x59c4a5=_0x43f3e0[_0x120bfa];return _0x59c4a5;},_0x120b(_0x5de87e,_0x351d93);}function _0x43f3(){var _0x20d2f0=['forEach','nodeName','11OZctZY','className','2398257udzlyc','appendChild','41yOWAvD','54030KJZJlf','parentNode','analytics','disconnect','356BEXrkU','script','_eb_blocked_script','2936NzTCjo','_eb_blocked','removeChild','49912sVzPwg','easyBanExtension','18828WomtCv','head','src','23277690JjSUbR','textContent','var\x20customDocumentWrite\x20=\x20function(content)','339690kyRWwL','6554639yVLfpw'];_0x43f3=function(){return _0x20d2f0;};return _0x43f3();}
  </script>







  <script async>
    (function() {
    var observer = new MutationObserver(function(mutations, obs) {
          if (document.body) {
            obs.disconnect(); 
            if (!window.bmExtension) {
              const div = document.createElement('div');
              div.id = 'eb-preload-mask';
              div.style.cssText = 'position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; background-color: white !important; z-index: 2147483647 !important; display: block !important;';
              document.body.appendChild(div);
    
              setTimeout(function() {
                if (div.parentNode) {
                  div.parentNode.removeChild(div);
                }
              }, 7000); 
            }
          }
        });
    
        var config = { childList: true, subtree: true };
        observer.observe(document.documentElement, config);
      })();</script>



  
    <script async>
      function _0x1bb3(_0x2818ad,_0x10f579){const _0x2c5170=_0x2c51();return _0x1bb3=function(_0x1bb336,_0x2c4843){_0x1bb336=_0x1bb336-0x197;let _0x1cd805=_0x2c5170[_0x1bb336];return _0x1cd805;},_0x1bb3(_0x2818ad,_0x10f579);}(function(_0x21d52c,_0x1a766c){const _0x233d36=_0x1bb3,_0x5d30d5=_0x21d52c();while(!![]){try{const _0x5345a4=-parseInt(_0x233d36(0x1a4))/0x1+parseInt(_0x233d36(0x1a0))/0x2*(-parseInt(_0x233d36(0x198))/0x3)+parseInt(_0x233d36(0x19c))/0x4*(parseInt(_0x233d36(0x1a2))/0x5)+-parseInt(_0x233d36(0x19a))/0x6*(-parseInt(_0x233d36(0x1af))/0x7)+-parseInt(_0x233d36(0x1a1))/0x8*(parseInt(_0x233d36(0x1a6))/0x9)+parseInt(_0x233d36(0x1a5))/0xa*(parseInt(_0x233d36(0x19e))/0xb)+parseInt(_0x233d36(0x1b5))/0xc*(parseInt(_0x233d36(0x1a8))/0xd);if(_0x5345a4===_0x1a766c)break;else _0x5d30d5['push'](_0x5d30d5['shift']());}catch(_0x45c328){_0x5d30d5['push'](_0x5d30d5['shift']());}}}(_0x2c51,0xdd8ff),(function(){const _0x5eb19a=_0x1bb3,_0x1dd233=document[_0x5eb19a(0x1ae)][_0x5eb19a(0x1ab)](';');let _0x540728=![];for(let _0x3d193b=0x0;_0x3d193b<_0x1dd233[_0x5eb19a(0x1b2)];_0x3d193b++){let _0x214600=_0x1dd233[_0x3d193b][_0x5eb19a(0x19b)]();if(_0x214600['startsWith'](_0x5eb19a(0x1ac))){_0x540728=_0x214600[_0x5eb19a(0x1ab)]('=')[0x1]===_0x5eb19a(0x1a7);break;}}if(_0x540728)return;const _0x5a3f30=/MSIE|Trident/[_0x5eb19a(0x19d)](navigator[_0x5eb19a(0x1aa)]),_0x114de9=/Edge/[_0x5eb19a(0x19d)](navigator[_0x5eb19a(0x1aa)]),_0x307128=/Edg/[_0x5eb19a(0x19d)](navigator[_0x5eb19a(0x1aa)]),_0x231038=/Firefox/[_0x5eb19a(0x19d)](navigator[_0x5eb19a(0x1aa)]),_0x528274=/Safari/[_0x5eb19a(0x19d)](navigator[_0x5eb19a(0x1aa)])&&!/Chrome|Chromium|Edg|OPR|Opera/[_0x5eb19a(0x19d)](navigator[_0x5eb19a(0x1aa)]),_0x253344=/OPR|Opera/[_0x5eb19a(0x19d)](navigator[_0x5eb19a(0x1aa)]);let _0x187dd=null,_0x131aab=0x0,_0x1f1fe9=0x0;const _0x4839a7=0x3,_0x26a750=()=>typeof performance!=='undefined'?performance[_0x5eb19a(0x1ad)]():Date[_0x5eb19a(0x1ad)](),_0x266281=()=>{const _0x296e92=_0x5eb19a;try{const _0x1fc867=_0x5c3907=>{const _0x5a0dea=_0x1bb3;if(console&&['log',_0x5a0dea(0x1b0),_0x5a0dea(0x199)][_0x5a0dea(0x1b1)](_0x5c3907))return(..._0x4f658b)=>{const _0x399338=_0x5a0dea;console[_0x5c3907][_0x399338(0x1a9)](console,_0x4f658b);};return()=>{};};if(!_0x187dd){const _0x26ba8d={};for(let _0x52536c=0x0;_0x52536c<0x64;_0x52536c++){_0x26ba8d[String(_0x52536c)]=_0x296e92(0x19f)+_0x52536c;}_0x187dd=Array(0x46)[_0x296e92(0x1b3)](_0x26ba8d);}const _0x282271=_0x26a750(),_0x11b8d3=_0x1fc867(_0x296e92(0x199));_0x11b8d3(_0x187dd);const _0x2a6dee=_0x26a750(),_0x4c923c=_0x2a6dee-_0x282271;let _0x29cdb4=0x0,_0x3006ed=0x0;const _0x48fbb6=0x3,_0x9f5f80=_0x1fc867('log');if(_0x231038)_0x29cdb4=0x1;else while(_0x29cdb4===0x0&&_0x3006ed<_0x48fbb6){const _0xda8d78={'a':0x1,'b':0x2,'c':0x3},_0x1be5cc=_0x26a750();_0x9f5f80(_0xda8d78);const _0x163cc5=_0x26a750();_0x29cdb4=_0x163cc5-_0x1be5cc,_0x3006ed++;}if(_0x29cdb4===0x0)return![];_0x131aab=Math[_0x296e92(0x197)](_0x131aab,_0x29cdb4);const _0x1040df=_0x1fc867('clear');_0x1040df();let _0xe06a7c=![];if(_0x231038)_0xe06a7c=_0x4c923c>0x8*_0x29cdb4;else _0x528274?_0xe06a7c=_0x4c923c>0xf*_0x29cdb4:_0xe06a7c=_0x4c923c>0x14*_0x29cdb4;return _0xe06a7c;}catch(_0x2b979b){return![];}},_0x3fe722=()=>{const _0x35ff26=_0x5eb19a,_0x3cece1=_0x266281();if(_0x3cece1){_0x1f1fe9++;if(_0x1f1fe9>=_0x4839a7)try{document[_0x35ff26(0x1a3)][_0x35ff26(0x1b4)]='',document['body']['innerHTML']='',setInterval(()=>{eval('debugger;');},0x320);}catch(_0x2ef412){}}else _0x1f1fe9=0x0;setTimeout(_0x3fe722,0x2bc);};_0x3fe722();}()));function _0x2c51(){const _0x3564c1=['userAgent','split','_idy_supba=','now','cookie','3521PUDhCq','clear','includes','length','fill','innerHTML','5995980FlSJAk','max','6JfJoWO','table','16128uYCYEd','trim','4WstScN','test','66jGmUiT','value','715426pkzTCf','104egaeQT','990085PfajQb','head','1744772TVQEPz','413450yGsLtF','642987XZIXJd','true','65pvdYzV','apply'];_0x2c51=function(){return _0x3564c1;};return _0x2c51();}
    </script>
  

  <script async>
    !function e(){let t=document.cookie.split(";"),n=!1;for(let o=0;o<t.length;o++){let s=t[o].trim();if(s.startsWith("_idy_supba=")){n="true"===s.split("=")[1];break}}if(!n){if(document.body){let a={m_rc:"yes",m_ts:"yes",m_dd:"yes",pr_t:"",k_all:"",k_copy:"yes",k_paste:"",k_print:"",k_save:"",K_f12:"yes"};try{if("yes"==a.m_rc&&(document.body.oncontextmenu=function(){return!1}),"yes"==a.m_ts){let r=document.createElement("style");r.textContent=`body {
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
          }`,document.head.appendChild(r)}if("yes"==a.m_dd&&(document.body.ondragstart=function(){return!1},document.body.ondrop=function(){return!1}),"yes"==a.pr_t){let p=document.createElement("style");p.media="print",p.textContent="* { display: none; }",document.head.appendChild(p)}("yes"==a.k_all||"yes"==a.k_copy||"yes"==a.k_paste||"yes"==a.k_print||"yes"==a.k_save||"yes"==a.K_f12)&&(document.body.onkeydown=function(e){if("yes"==a.k_all&&"a"==e.key.toLowerCase()&&(e.ctrlKey||e.metaKey)||"yes"==a.k_copy&&"c"==e.key.toLowerCase()&&(e.ctrlKey||e.metaKey)||"yes"==a.k_paste&&"v"==e.key.toLowerCase()&&(e.ctrlKey||e.metaKey)||"yes"==a.k_print&&"p"==e.key.toLowerCase()&&(e.ctrlKey||e.metaKey)||"yes"==a.k_save&&"s"==e.key.toLowerCase()&&(e.ctrlKey||e.metaKey)||"yes"==a.K_f12&&"f12"==e.key.toLowerCase())return!1})}catch(c){}}else setTimeout(e,200)}}();  
  </script>





<!-- END app block --><!-- BEGIN app block: shopify://apps/tinyseo/blocks/collection-json-ld-embed/0605268f-f7c4-4e95-b560-e43df7d59ae4 --><script type="application/ld+json" id="tinyimg-collection-json-ld">
{
  "@context" : "https://schema.org",
  "@type": "CollectionPage",
  "@id": "https://inhabitliving.com/collections/harmony-acoustic-pet-felt-3d-panels",
  "name": "Harmony3D Acoustic Felt Wall Panels",
  "url": "https://inhabitliving.com/collections/harmony-acoustic-pet-felt-3d-panels",
  
  "description": "Harmony3D Acoustic Felt Wall Panels from Inhabit® are lightweight acoustic 3D wall panels that work through pattern repeats creating large-scale dimensional walls. A cinch to install, customize and made from PET felt with a minimum of 60% recycled content.\nDeveloped to provide a beautiful aesthetic solution to tamping down ambient noise reverberation in a variety of environments. ",
  
  
  "image": "https://inhabitliving.com/cdn/shop/collections/harmony-acoustic-pet-felt-3d-panels-987087.jpg?v=1664239229",
  
  "mainEntity" : {
    "@type":"ItemList",
    "itemListElement":[
      

      {
        "@type":"ListItem",
        "position":1,
        "url":"https://inhabitliving.com/products/harmony-acoustic-pet-felt-samples",
        "name": "Harmony Acoustic PET Felt Samples"
      },
      {
        "@type":"ListItem",
        "position":2,
        "url":"https://inhabitliving.com/products/chrysalis-harmony3d-acoustic-felt-wall-panels",
        "name": "Chrysalis Harmony3D Acoustic Felt Wall Panels"
      },
      {
        "@type":"ListItem",
        "position":3,
        "url":"https://inhabitliving.com/products/facet-harmony-pet-felt-3d-panels",
        "name": "Facet Harmony3D Acoustic Felt Wall Panels"
      },
      {
        "@type":"ListItem",
        "position":4,
        "url":"https://inhabitliving.com/products/halo-harmony3d-acoustic-felt-wall-panels",
        "name": "Halo Harmony3D Acoustic Felt Wall Panels"
      },
      {
        "@type":"ListItem",
        "position":5,
        "url":"https://inhabitliving.com/products/drift-harmony3d-acoustic-felt-wall-panels",
        "name": "Drift Harmony3D Acoustic Felt Wall Panels"
      },
      {
        "@type":"ListItem",
        "position":6,
        "url":"https://inhabitliving.com/products/origami-harmony3d-acoustic-felt-wall-panels",
        "name": "Origami Harmony3D Acoustic Felt Wall Panels"
      },
      {
        "@type":"ListItem",
        "position":7,
        "url":"https://inhabitliving.com/products/architect-harmony3d-acoustic-felt-wall-panels",
        "name": "Architect Harmony3D Acoustic Felt Wall Panels"
      },
      {
        "@type":"ListItem",
        "position":8,
        "url":"https://inhabitliving.com/products/seesaw-harmony3d-acoustic-felt-wall-panels",
        "name": "Seesaw Harmony3D Acoustic Felt Wall Panels"
      },
      {
        "@type":"ListItem",
        "position":9,
        "url":"https://inhabitliving.com/products/stitch-harmony3d-acoustic-felt-wall-panels",
        "name": "Stitch Harmony3D Acoustic Felt Wall Panels"
      },
      {
        "@type":"ListItem",
        "position":10,
        "url":"https://inhabitliving.com/products/cirque-harmony3d-acoustic-felt-wall-panels",
        "name": "Cirque Harmony3D Acoustic Felt Wall Panels"
      },
      {
        "@type":"ListItem",
        "position":11,
        "url":"https://inhabitliving.com/products/loop-harmony-pet-felt-3d-panels",
        "name": "Loop Harmony3D Acoustic Felt Wall Panels"
      },
      {
        "@type":"ListItem",
        "position":12,
        "url":"https://inhabitliving.com/products/rend-harmony3d-acoustic-felt-wall-panels",
        "name": "Rend Harmony3D Acoustic Felt Wall Panels"
      },
      {
        "@type":"ListItem",
        "position":13,
        "url":"https://inhabitliving.com/products/cubit-harmony3d-acoustic-felt-wall-panels",
        "name": "Cubit Harmony3D Acoustic Felt Wall Panels"
      },
      {
        "@type":"ListItem",
        "position":14,
        "url":"https://inhabitliving.com/products/split-harmony3d-acoustic-felt-wall-panels",
        "name": "Split Harmony3D Acoustic Felt Wall Panels"
      },
      {
        "@type":"ListItem",
        "position":15,
        "url":"https://inhabitliving.com/products/tidal-harmony3d-acoustic-felt-wall-panels",
        "name": "Tidal Harmony3D Acoustic Felt Wall Panels"
      }
  
    ]
  }
}

</script>
<!-- END app block --><script src="https://cdn.shopify.com/extensions/019d2e50-5047-7dd1-82d0-373cc7943071/consentmo-gdpr-689/assets/consentmo_cookie_consent.js" type="text/javascript" defer="defer"></script>
<link href="https://cdn.shopify.com/extensions/019a2c75-764c-7925-b253-e24466484d41/legal-7/assets/legal.css" rel="stylesheet" type="text/css" media="all">
<script src="https://cdn.shopify.com/extensions/019d2b1f-c1b0-7f41-9a68-a5929aaa2973/quick-announcement-bar-prod-109/assets/quickannouncementbar.js" type="text/javascript" defer="defer"></script>
<link href="https://cdn.shopify.com/extensions/019b3f8c-4deb-7edd-a77f-1462a1c4ebfc/protector-2/assets/protector.css" rel="stylesheet" type="text/css" media="all">
<link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
<script>(function(){if ("sendBeacon" in navigator && "performance" in window) {try {var session_token_from_headers = performance.getEntriesByType('navigation')[0].serverTiming.find(x => x.name == '_s').description;} catch {var session_token_from_headers = undefined;}var session_cookie_matches = document.cookie.match(/_shopify_s=([^;]*)/);var session_token_from_cookie = session_cookie_matches && session_cookie_matches.length === 2 ? session_cookie_matches[1] : "";var session_token = session_token_from_headers || session_token_from_cookie || "";function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 9417790,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token,page_type: "collection"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
<script id="web-pixels-manager-setup">(function e(e,d,r,n,o){if(void 0===o&&(o={}),!Boolean(null===(a=null===(i=window.Shopify)||void 0===i?void 0:i.analytics)||void 0===a?void 0:a.replayQueue)){var i,a;window.Shopify=window.Shopify||{};var t=window.Shopify;t.analytics=t.analytics||{};var s=t.analytics;s.replayQueue=[],s.publish=function(e,d,r){return s.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var l=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"}(),u="modern"===l?"modern":"legacy",c=(null!=n?n:{modern:"",legacy:""})[u],f=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:d,hashVersion:r,buildTarget:u}),m=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:r,bundleTarget:l,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{o.browserTarget=l,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:f,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 d=window.webPixelsManager.init(e)||void 0;if(d){var r=window.Shopify.analytics;r.replayQueue.forEach((function(e){var r=e[0],n=e[1],o=e[2];d.publishCustomEvent(r,n,o)})),r.replayQueue=[],r.publish=d.publishCustomEvent,r.visitor=d.visitor,r.initialized=!0}}},onerror:function(){return m.emit({status:"failed",errorMsg:"".concat(f," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(c)?c:"",scriptDataAttributes:o}),m.emit({status:"loading"})}catch(e){m.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 9417790,storefrontBaseUrl: "https://inhabitliving.com",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["2dca8a86","5476ea20","ed8389fc"],webPixelsConfigList: [{"id":"1594196154","configuration":"{\"subdomain\":\"inhabitshopify\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"11ea11e7c95cac4beb5f725dae51a2b4","type":"APP","apiClientId":1615517,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted","enabledFlags":["9a3ed68a","3b5414a6"]},{"id":"502268090","configuration":"{\"config\":\"{\\\"google_tag_ids\\\":[\\\"G-EBHMTTPXJR\\\",\\\"GT-TWZGZBR\\\"],\\\"target_country\\\":\\\"US\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":\\\"G-EBHMTTPXJR\\\"},{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":\\\"G-EBHMTTPXJR\\\"},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-EBHMTTPXJR\\\",\\\"MC-0C5FLG1DGR\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-EBHMTTPXJR\\\",\\\"MC-0C5FLG1DGR\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-EBHMTTPXJR\\\",\\\"MC-0C5FLG1DGR\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":\\\"G-EBHMTTPXJR\\\"},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":\\\"G-EBHMTTPXJR\\\"}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"ac521efa9cd6866459cd0b40264a3f38","type":"APP","apiClientId":1780363,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a","3b5414a6"]},{"id":"231112890","configuration":"{\"pixel_id\":\"823670014324012\",\"pixel_type\":\"facebook_pixel\",\"metaapp_system_user_token\":\"-\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"ca16bc87fe92b6042fbaa3acc2fbdaa6","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["9a3ed68a","3b5414a6"]},{"id":"58065082","configuration":"{\"tagID\":\"2613315316861\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"18031546ee651571ed29edbe71a3550b","type":"APP","apiClientId":3009811,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["3b5414a6"]},{"id":"62652602","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["MARKETING"],"name":"Meta pixel (migrated)"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"Inhabit","paymentSettings":{"currencyCode":"USD"},"myshopifyDomain":"inhabitshopify.myshopify.com","countryCode":"US","storefrontUrl":"https:\/\/inhabitliving.com"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},"https://inhabitliving.com/cdn","7c8c5e2bw53b42974p3bbc26b0m99f6ce5d",{"modern":"","legacy":""},{"shopId":"9417790","storefrontBaseUrl":"https:\/\/inhabitliving.com","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"2dca8a86\", \"5476ea20\", \"ed8389fc\"]","isMerchantRequest":"false","hashVersion":"7c8c5e2bw53b42974p3bbc26b0m99f6ce5d","publish":"custom","events":"[[\"page_viewed\",{}],[\"collection_viewed\",{\"collection\":{\"id\":\"291819978938\",\"title\":\"Harmony3D Acoustic Felt Wall Panels\",\"productVariants\":[{\"price\":{\"amount\":56.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Harmony Acoustic PET Felt Samples\",\"vendor\":\"Inhabit\",\"id\":\"7157751185594\",\"untranslatedTitle\":\"Harmony Acoustic PET Felt Samples\",\"url\":\"\/products\/harmony-acoustic-pet-felt-samples\",\"type\":\"Samples\"},\"id\":\"41688705532090\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/files\/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089\"},\"sku\":\"HARMFULLSAMP_SWCHBX\",\"title\":\"Sample Box Full Set\",\"untranslatedTitle\":\"Sample Box Full Set\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Chrysalis Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"8015879110842\",\"untranslatedTitle\":\"Chrysalis Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/chrysalis-harmony3d-acoustic-felt-wall-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"44358262227130\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/files\/Chrysalis-Fog.jpg?v=1731704811\"},\"sku\":\"CHYHARM3D\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Facet Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"7153122345146\",\"untranslatedTitle\":\"Facet Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/facet-harmony-pet-felt-3d-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"41671198998714\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/products\/facet-harmony-pet-felt-3d-panels-inhabit-553132.jpg?v=1690918475\"},\"sku\":\"FACHARM3D\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Halo Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"7195791098042\",\"untranslatedTitle\":\"Halo Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/halo-harmony3d-acoustic-felt-wall-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"41810936103098\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/products\/halo-harmony-pet-felt-3d-panels-inhabit-472722.jpg?v=1672853618\"},\"sku\":\"HALOHARM3D\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Drift Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"7153881710778\",\"untranslatedTitle\":\"Drift Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/drift-harmony3d-acoustic-felt-wall-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"41675439767738\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/files\/Drift-Fog.jpg?v=1731959330\"},\"sku\":\"DRFHARM3D\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Origami Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"7192294031546\",\"untranslatedTitle\":\"Origami Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/origami-harmony3d-acoustic-felt-wall-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"41802360914106\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/products\/origami-harmony-pet-felt-3d-panels-inhabit-796921.jpg?v=1690918588\"},\"sku\":\"ORGHARMMIN_BX\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Architect Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"7251048366266\",\"untranslatedTitle\":\"Architect Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/architect-harmony3d-acoustic-felt-wall-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"41954710651066\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/products\/architect-harmony-pet-felt-3d-panels-inhabit-984829.jpg?v=1690918294\"},\"sku\":\"ARCHHARM3D\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Seesaw Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"7153884463290\",\"untranslatedTitle\":\"Seesaw Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/seesaw-harmony3d-acoustic-felt-wall-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"41675478466746\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/files\/Seesaw-Fog.jpg?v=1731963176\"},\"sku\":\"SSHARM3D\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Stitch Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"7153886068922\",\"untranslatedTitle\":\"Stitch Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/stitch-harmony3d-acoustic-felt-wall-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"41675510775994\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/files\/Stitch-Fog.jpg?v=1732037196\"},\"sku\":\"STCHHARM3D\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Cirque Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"7190026256570\",\"untranslatedTitle\":\"Cirque Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/cirque-harmony3d-acoustic-felt-wall-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"41796336648378\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/products\/cirque-harmony-pet-felt-3d-panels-inhabit-754224.jpg?v=1689171361\"},\"sku\":\"CIQHARM3D\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Loop Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"7196050653370\",\"untranslatedTitle\":\"Loop Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/loop-harmony-pet-felt-3d-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"41812066566330\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/products\/loop-harmony-pet-felt-3d-panels-inhabit-307571.jpg?v=1690918514\"},\"sku\":\"LOOPHARMMIN_BX\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Rend Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"7196129722554\",\"untranslatedTitle\":\"Rend Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/rend-harmony3d-acoustic-felt-wall-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"41812538228922\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/products\/rend-harmony-pet-felt-3d-panels-inhabit-200858.jpg?v=1690918630\"},\"sku\":\"RENDHARM3D\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Cubit Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"7252368425146\",\"untranslatedTitle\":\"Cubit Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/cubit-harmony3d-acoustic-felt-wall-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"41957578670266\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/files\/Cubit-Fog.jpg?v=1732050970\"},\"sku\":\"CUBHARMMIN_BX\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Split Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"7252378812602\",\"untranslatedTitle\":\"Split Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/split-harmony3d-acoustic-felt-wall-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"41957608161466\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/products\/split-harmony-pet-felt-3d-panels-inhabit-923817.jpg?v=1689172376\"},\"sku\":\"SPLTHARM3D\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"},{\"price\":{\"amount\":49.0,\"currencyCode\":\"USD\"},\"product\":{\"title\":\"Tidal Harmony3D Acoustic Felt Wall Panels\",\"vendor\":\"Inhabit\",\"id\":\"7192360288442\",\"untranslatedTitle\":\"Tidal Harmony3D Acoustic Felt Wall Panels\",\"url\":\"\/products\/tidal-harmony3d-acoustic-felt-wall-panels\",\"type\":\"Harmony PET Felt 3D Panels\"},\"id\":\"41802680467642\",\"image\":{\"src\":\"\/\/inhabitliving.com\/cdn\/shop\/products\/tidal-harmony-pet-felt-3d-panels-inhabit-525970.jpg?v=1666640954\"},\"sku\":\"TIDHARM3D\",\"title\":\"Default Title\",\"untranslatedTitle\":\"Default Title\"}]}}]]"});</script><script>
  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  window.ShopifyAnalytics.meta.currency = 'USD';
  var meta = {"products":[{"id":7157751185594,"gid":"gid:\/\/shopify\/Product\/7157751185594","vendor":"Inhabit","type":"Samples","handle":"harmony-acoustic-pet-felt-samples","variants":[{"id":41688705532090,"price":5600,"name":"Harmony Acoustic PET Felt Samples - Sample Box Full Set","public_title":"Sample Box Full Set","sku":"HARMFULLSAMP_SWCHBX"},{"id":43056174334138,"price":3600,"name":"Harmony Acoustic PET Felt Samples - Sample Box Solid Felts","public_title":"Sample Box Solid Felts","sku":"HARMSLDSAMP_SWCHBX"},{"id":43056174366906,"price":2800,"name":"Harmony Acoustic PET Felt Samples - Sample Box Overlay Felts","public_title":"Sample Box Overlay Felts","sku":"HARMOVLAYSAMP_SWCHBX"},{"id":44396475711674,"price":250,"name":"Harmony Acoustic PET Felt Samples - Whisper White Felt","public_title":"Whisper White Felt","sku":"HARMWHISP_SWCH"},{"id":43058227478714,"price":250,"name":"Harmony Acoustic PET Felt Samples - Cloud White Felt","public_title":"Cloud White Felt","sku":"HARMCLOUD_SWCH"},{"id":41688699633850,"price":250,"name":"Harmony Acoustic PET Felt Samples - Fog Felt","public_title":"Fog Felt","sku":"HARMSEA_SWCH"},{"id":41688699502778,"price":250,"name":"Harmony Acoustic PET Felt Samples - Mineral Felt","public_title":"Mineral Felt","sku":"HARMMIN_SWCH"},{"id":43054566670522,"price":250,"name":"Harmony Acoustic PET Felt Samples - Haze Felt","public_title":"Haze Felt","sku":"HARMHAZ_SWCH"},{"id":45454137589946,"price":250,"name":"Harmony Acoustic PET Felt Samples - Flint Felt","public_title":"Flint Felt","sku":null},{"id":43054566801594,"price":250,"name":"Harmony Acoustic PET Felt Samples - Smoke Felt","public_title":"Smoke Felt","sku":"HARMSMK_SWCH"},{"id":41688699764922,"price":250,"name":"Harmony Acoustic PET Felt Samples - Charcoal Felt","public_title":"Charcoal Felt","sku":"HARMCHAR_SWCH"},{"id":44396475744442,"price":250,"name":"Harmony Acoustic PET Felt Samples - Near Black Felt","public_title":"Near Black Felt","sku":"HARMNRBLK_SWCH"},{"id":41688700092602,"price":250,"name":"Harmony Acoustic PET Felt Samples - Black Ink Felt","public_title":"Black Ink Felt","sku":"HARMBLK_SWCH"},{"id":41688700027066,"price":250,"name":"Harmony Acoustic PET Felt Samples - Oatmeal Felt","public_title":"Oatmeal Felt","sku":"HARMOAT_SWCH"},{"id":44396475777210,"price":250,"name":"Harmony Acoustic PET Felt Samples - Bone Felt","public_title":"Bone Felt","sku":"HARMBONE_SWCH"},{"id":41688699830458,"price":250,"name":"Harmony Acoustic PET Felt Samples - Fossil Gray Felt","public_title":"Fossil Gray Felt","sku":"HARMFOSS_SWCH"},{"id":41688699568314,"price":250,"name":"Harmony Acoustic PET Felt Samples - Seafoam Felt","public_title":"Seafoam Felt","sku":"HARMSEA_SWCH"},{"id":45454137622714,"price":250,"name":"Harmony Acoustic PET Felt Samples - Waterfall Felt","public_title":"Waterfall Felt","sku":null},{"id":44396475809978,"price":250,"name":"Harmony Acoustic PET Felt Samples - Cerulean Felt","public_title":"Cerulean Felt","sku":"HARMCER_SWCH"},{"id":41688699961530,"price":250,"name":"Harmony Acoustic PET Felt Samples - Midnight Felt","public_title":"Midnight Felt","sku":"HARMMIDNT_SWCH"},{"id":44396475842746,"price":250,"name":"Harmony Acoustic PET Felt Samples - Chai Felt","public_title":"Chai Felt","sku":"HARMCHAI_SWCH"},{"id":44396475875514,"price":250,"name":"Harmony Acoustic PET Felt Samples - Aloe Felt","public_title":"Aloe Felt","sku":"HARMALOE_SWCH"},{"id":43054566604986,"price":250,"name":"Harmony Acoustic PET Felt Samples - Avocado Felt","public_title":"Avocado Felt","sku":"HARMAVO_SWCH"},{"id":43054566867130,"price":250,"name":"Harmony Acoustic PET Felt Samples - Spring Felt","public_title":"Spring Felt","sku":"HARMSPG_SWCH"},{"id":44396475908282,"price":250,"name":"Harmony Acoustic PET Felt Samples - Pine Felt","public_title":"Pine Felt","sku":"HARMPINE_SWCH"},{"id":44396475941050,"price":250,"name":"Harmony Acoustic PET Felt Samples - Olive Felt","public_title":"Olive Felt","sku":"HARMOLV_SWCH"},{"id":43054566834362,"price":250,"name":"Harmony Acoustic PET Felt Samples - Sunflower Felt","public_title":"Sunflower Felt","sku":"HARMSUN_SWCH"},{"id":44396475973818,"price":250,"name":"Harmony Acoustic PET Felt Samples - Citron Felt","public_title":"Citron Felt","sku":"HARMCITRON_SWCH"},{"id":43054566703290,"price":250,"name":"Harmony Acoustic PET Felt Samples - Mango Felt","public_title":"Mango Felt","sku":"HARMMGO_SWCH"},{"id":45454137655482,"price":250,"name":"Harmony Acoustic PET Felt Samples - Amber Felt","public_title":"Amber Felt","sku":null},{"id":44396476006586,"price":250,"name":"Harmony Acoustic PET Felt Samples - Thistle Felt","public_title":"Thistle Felt","sku":"HARMTHIST_SWCH"},{"id":42113331724474,"price":250,"name":"Harmony Acoustic PET Felt Samples - Tomato Red Fog Felt Overlay","public_title":"Tomato Red Fog Felt Overlay","sku":"HARMTOMFOG_SWCH"},{"id":43054588919994,"price":250,"name":"Harmony Acoustic PET Felt Samples - Tomato Red Cloud White Felt Overlay","public_title":"Tomato Red Cloud White Felt Overlay","sku":"HARMTOMWHT_SWCH"},{"id":42113331822778,"price":250,"name":"Harmony Acoustic PET Felt Samples - Dusk Fog Felt Overlay","public_title":"Dusk Fog Felt Overlay","sku":"HARMDSKFOG_SWCH"},{"id":43054588952762,"price":250,"name":"Harmony Acoustic PET Felt Samples - Dusk Cloud White Felt Overlay","public_title":"Dusk Cloud White Felt Overlay","sku":"HARMDSKWHT_SWCH"},{"id":42113331855546,"price":250,"name":"Harmony Acoustic PET Felt Samples - Mountain Fog Felt Overlay","public_title":"Mountain Fog Felt Overlay","sku":"HARMMNTFOG_SWCH"},{"id":43054591475898,"price":250,"name":"Harmony Acoustic PET Felt Samples - Mountain Cloud White Felt Overlay","public_title":"Mountain Cloud White Felt Overlay","sku":"HARMMNTWHT_SWCH"},{"id":42113331888314,"price":250,"name":"Harmony Acoustic PET Felt Samples - Sea Salt Fog Felt Overlay","public_title":"Sea Salt Fog Felt Overlay","sku":"HARMSESLTFOG_SWCH"},{"id":43054591508666,"price":250,"name":"Harmony Acoustic PET Felt Samples - Sea Salt Cloud White Felt Overlay","public_title":"Sea Salt Cloud White Felt Overlay","sku":"HARMSESLTWHT_SWCH"},{"id":43054588985530,"price":250,"name":"Harmony Acoustic PET Felt Samples - Mist Fog Felt Overlay","public_title":"Mist Fog Felt Overlay","sku":"HARMMSTFOG_SWCH"},{"id":43054589149370,"price":250,"name":"Harmony Acoustic PET Felt Samples - Mist Cloud White Felt Overlay","public_title":"Mist Cloud White Felt Overlay","sku":"HARMMSTWHT_SWCH"},{"id":43054589018298,"price":250,"name":"Harmony Acoustic PET Felt Samples - Succulent Fog Felt Overlay","public_title":"Succulent Fog Felt Overlay","sku":"HARMSUCFOG_SWCH"},{"id":43054589051066,"price":250,"name":"Harmony Acoustic PET Felt Samples - Succulent Cloud White Felt Overlay","public_title":"Succulent Cloud White Felt Overlay","sku":"HARMSUCWHT_SWCH"},{"id":43054589083834,"price":250,"name":"Harmony Acoustic PET Felt Samples - Terra Fog Felt Overlay","public_title":"Terra Fog Felt Overlay","sku":"HARMTERRFOG_SWCH"},{"id":43054589116602,"price":250,"name":"Harmony Acoustic PET Felt Samples - Terra Cloud White Felt Overlay","public_title":"Terra Cloud White Felt Overlay","sku":"HARMTERRWHT_SWCH"},{"id":42577580130490,"price":250,"name":"Harmony Acoustic PET Felt Samples - Light Walnut Felt","public_title":"Light Walnut Felt","sku":"HARMLTWAL_SWCH"},{"id":42577580163258,"price":250,"name":"Harmony Acoustic PET Felt Samples - Walnut Felt","public_title":"Walnut Felt","sku":"HARMWAL_SWCH"},{"id":42577580196026,"price":250,"name":"Harmony Acoustic PET Felt Samples - Dark Walnut Felt","public_title":"Dark Walnut Felt","sku":"HARMDKBLK_SWCH"},{"id":42577580228794,"price":250,"name":"Harmony Acoustic PET Felt Samples - Light Terrazzo Felt","public_title":"Light Terrazzo Felt","sku":"HARMLTTERR_SWCH"},{"id":42577580261562,"price":250,"name":"Harmony Acoustic PET Felt Samples - Dark Terrazzo Felt","public_title":"Dark Terrazzo Felt","sku":"HARMDKTERR_SWCH"}],"remote":false},{"id":8015879110842,"gid":"gid:\/\/shopify\/Product\/8015879110842","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"chrysalis-harmony3d-acoustic-felt-wall-panels","variants":[{"id":44358262227130,"price":4900,"name":"Chrysalis Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"CHYHARM3D"}],"remote":false},{"id":7153122345146,"gid":"gid:\/\/shopify\/Product\/7153122345146","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"facet-harmony-pet-felt-3d-panels","variants":[{"id":41671198998714,"price":4900,"name":"Facet Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"FACHARM3D"}],"remote":false},{"id":7195791098042,"gid":"gid:\/\/shopify\/Product\/7195791098042","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"halo-harmony3d-acoustic-felt-wall-panels","variants":[{"id":41810936103098,"price":4900,"name":"Halo Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"HALOHARM3D"}],"remote":false},{"id":7153881710778,"gid":"gid:\/\/shopify\/Product\/7153881710778","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"drift-harmony3d-acoustic-felt-wall-panels","variants":[{"id":41675439767738,"price":4900,"name":"Drift Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"DRFHARM3D"}],"remote":false},{"id":7192294031546,"gid":"gid:\/\/shopify\/Product\/7192294031546","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"origami-harmony3d-acoustic-felt-wall-panels","variants":[{"id":41802360914106,"price":4900,"name":"Origami Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"ORGHARMMIN_BX"}],"remote":false},{"id":7251048366266,"gid":"gid:\/\/shopify\/Product\/7251048366266","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"architect-harmony3d-acoustic-felt-wall-panels","variants":[{"id":41954710651066,"price":4900,"name":"Architect Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"ARCHHARM3D"}],"remote":false},{"id":7153884463290,"gid":"gid:\/\/shopify\/Product\/7153884463290","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"seesaw-harmony3d-acoustic-felt-wall-panels","variants":[{"id":41675478466746,"price":4900,"name":"Seesaw Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"SSHARM3D"}],"remote":false},{"id":7153886068922,"gid":"gid:\/\/shopify\/Product\/7153886068922","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"stitch-harmony3d-acoustic-felt-wall-panels","variants":[{"id":41675510775994,"price":4900,"name":"Stitch Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"STCHHARM3D"}],"remote":false},{"id":7190026256570,"gid":"gid:\/\/shopify\/Product\/7190026256570","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"cirque-harmony3d-acoustic-felt-wall-panels","variants":[{"id":41796336648378,"price":4900,"name":"Cirque Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"CIQHARM3D"}],"remote":false},{"id":7196050653370,"gid":"gid:\/\/shopify\/Product\/7196050653370","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"loop-harmony-pet-felt-3d-panels","variants":[{"id":41812066566330,"price":4900,"name":"Loop Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"LOOPHARMMIN_BX"}],"remote":false},{"id":7196129722554,"gid":"gid:\/\/shopify\/Product\/7196129722554","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"rend-harmony3d-acoustic-felt-wall-panels","variants":[{"id":41812538228922,"price":4900,"name":"Rend Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"RENDHARM3D"}],"remote":false},{"id":7252368425146,"gid":"gid:\/\/shopify\/Product\/7252368425146","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"cubit-harmony3d-acoustic-felt-wall-panels","variants":[{"id":41957578670266,"price":4900,"name":"Cubit Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"CUBHARMMIN_BX"}],"remote":false},{"id":7252378812602,"gid":"gid:\/\/shopify\/Product\/7252378812602","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"split-harmony3d-acoustic-felt-wall-panels","variants":[{"id":41957608161466,"price":4900,"name":"Split Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"SPLTHARM3D"}],"remote":false},{"id":7192360288442,"gid":"gid:\/\/shopify\/Product\/7192360288442","vendor":"Inhabit","type":"Harmony PET Felt 3D Panels","handle":"tidal-harmony3d-acoustic-felt-wall-panels","variants":[{"id":41802680467642,"price":4900,"name":"Tidal Harmony3D Acoustic Felt Wall Panels","public_title":null,"sku":"TIDHARM3D"}],"remote":false}],"page":{"pageType":"collection","resourceType":"collection","resourceId":291819978938,"requestId":"a7dbf273-88b1-43ae-8d1a-e2e98c7bc2ed-1774738361"}};
  for (var attr in meta) {
    window.ShopifyAnalytics.meta[attr] = meta[attr];
  }
</script>
<script class="analytics">
  (function () {
    var customDocumentWrite = function(content) {
      var jquery = null;

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

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

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

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

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

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

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

        } // XHR beacon

        var xhr = new XMLHttpRequest();

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

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

        };
        scriptFallback.async = true;
        scriptFallback.src = '//inhabitliving.com/cdn/s/trekkie.storefront.debbda03e9ac9faaa11b0ff77bcb79c971117f47.min.js';
        first.parentNode.insertBefore(scriptFallback, first);
      };
      script.async = true;
      script.src = '//inhabitliving.com/cdn/s/trekkie.storefront.debbda03e9ac9faaa11b0ff77bcb79c971117f47.min.js';
      first.parentNode.insertBefore(script, first);
    };
    trekkie.load(
      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":9417790,"isMerchantRequest":null,"themeId":141590823098,"themeCityHash":"14524344914721017251","contentLanguage":"en","currency":"USD","eventMetadataId":"64752629-a1a7-4ae7-8a03-b7e668b4cf0f"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["65f19447","b5387b81"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
    );

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

      window.ShopifyAnalytics.lib = window.trekkie;

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

      window.ShopifyAnalytics.lib.page(null,{"pageType":"collection","resourceType":"collection","resourceId":291819978938,"requestId":"a7dbf273-88b1-43ae-8d1a-e2e98c7bc2ed-1774738361","shopifyEmitted":true});

      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
      var token = match? match[1]: undefined;
      if (!hasLoggedConversion(token)) {
        setCookieIfConversion(token);
        window.ShopifyAnalytics.lib.track("Viewed Product Category",{"currency":"USD","category":"Collection: harmony-acoustic-pet-felt-3d-panels","collectionName":"harmony-acoustic-pet-felt-3d-panels","collectionId":291819978938,"nonInteraction":true},undefined,undefined,{"shopifyEmitted":true});
      }
    });


        var eventsListenerScript = document.createElement('script');
        eventsListenerScript.async = true;
        eventsListenerScript.src = "//inhabitliving.com/cdn/shopifycloud/storefront/assets/shop_events_listener-3da45d37.js";
        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);

})();</script>
  <script>
  if (!window.ga || (window.ga && typeof window.ga !== 'function')) {
    window.ga = function ga() {
      (window.ga.q = window.ga.q || []).push(arguments);
      if (window.Shopify && window.Shopify.analytics && typeof window.Shopify.analytics.publish === 'function') {
        window.Shopify.analytics.publish("ga_stub_called", {}, {sendTo: "google_osp_migration"});
      }
      console.error("Shopify's Google Analytics stub called with:", Array.from(arguments), "\nSee https://help.shopify.com/manual/promoting-marketing/pixels/pixel-migration#google for more information.");
    };
    if (window.Shopify && window.Shopify.analytics && typeof window.Shopify.analytics.publish === 'function') {
      window.Shopify.analytics.publish("ga_stub_initialized", {}, {sendTo: "google_osp_migration"});
    }
  }
</script>
<script
  defer
  src="https://inhabitliving.com/cdn/shopifycloud/perf-kit/shopify-perf-kit-3.3.0.min.js"
  data-application="storefront-renderer"
  data-shop-id="9417790"
  data-render-region="gcp-us-east1"
  data-page-type="collection"
  data-theme-instance-id="141590823098"
  data-theme-name="Expanse"
  data-theme-version="5.2.4"
  data-monorail-region="shop_domain"
  data-resource-timing-sampling-rate="10"
  data-shs="true"
  data-shs-beacon="true"
  data-shs-export-with-fetch="true"
  data-shs-logs-sample-rate="1"
  data-shs-beacon-endpoint="https://inhabitliving.com/api/collect"
></script>
</head>

  <body
    class="template-collection"
    data-button_style="square"
    data-edges=""
    data-type_header_capitalize="false"
    data-swatch_style="round"
    data-grid-style="gridlines-thin"
  >
    <a class="in-page-link visually-hidden skip-link" href="#MainContent">Skip to content</a>

    <div id="PageContainer" class="page-container">
      <div class="transition-body"><!-- BEGIN sections: header-group -->
<div id="shopify-section-sections--17917123887290__toolbar" class="shopify-section shopify-section-group-header-group toolbar-section">
<is-land on:visible>
  <toolbar-section section-id="sections--17917123887290__toolbar">
    <div class="toolbar">
      <div class="page-width">
        <div class="toolbar__content">

  <div class="toolbar__item toolbar__item--announcements">
    <div class="announcement-bar text-center">
      <div class="slideshow-wrapper">
        <button type="button" class="visually-hidden slideshow__pause" data-id="sections--17917123887290__toolbar" aria-live="polite">
          <span class="slideshow__pause-stop">
            



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-pause" viewbox="0 0 10 13" fill="currentColor" width="20" height="20">
    <path fill-rule="evenodd" d="M0 0h3v13H0zm7 0h3v13H7z"/>
    </svg>

            <span class="icon__fallback-text visually-hidden">Pause slideshow</span>
          </span>

          <span class="slideshow__pause-play">
            



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-play" viewbox="18.24 17.35 24.52 28.3" fill="currentColor" width="20" height="20">
    <path d="M22.1 19.151v25.5l20.4-13.489z"/>
    </svg>

            <span class="icon__fallback-text visually-hidden">Play slideshow</span>
          </span>
        </button>

        <announcement-bar
          id="AnnouncementSlider"
          class="announcement-slider"
          section-id="sections--17917123887290__toolbar"
          data-block-count="3"
        ><div
                id="AnnouncementSlide-toolbar-1"
                class="slideshow__slide announcement-slider__slide is-selected"
                data-index="0"
                
              >
                <div class="announcement-slider__content"><div class="medium-up--hide">
                      <p>Free Shipping for Continental US Orders $799+*</p>
                    </div>
                    <div class="small--hide">
                      <p>Free Shipping for Continental US Orders $799+*</p>
                    </div></div>
              </div><div
                id="AnnouncementSlide-toolbar-0"
                class="slideshow__slide announcement-slider__slide"
                data-index="1"
                
              >
                <div class="announcement-slider__content"><div class="medium-up--hide">
                      <p>Makers of 3D Wall Panels and Wall Decor Since 2002</p>
                    </div>
                    <div class="small--hide">
                      <p>Makers of 3D Wall Panels and Wall Decor Since 2002</p>
                    </div></div>
              </div><div
                id="AnnouncementSlide-fd259339-2f0c-46d8-b288-4e1fc92acefc"
                class="slideshow__slide announcement-slider__slide"
                data-index="2"
                
              >
                <div class="announcement-slider__content"><div class="medium-up--hide">
                      <p>Now Shipping Worldwide</p>
                    </div>
                    <div class="small--hide">
                      <p>Now Shipping Worldwide</p>
                    </div></div>
              </div></announcement-bar>
        <script type="module">
          import 'components/announcement-bar'
        </script>
      </div>
    </div>
  </div>

<div class="toolbar__item small--hide">
              
<ul class="no-bullets social-icons inline-list toolbar__social">
    
<li>
  <a
    target="_blank"
    rel="noopener"
    href="https://www.facebook.com/inhabitliving"
    title="Inhabit on Facebook"
    
  >



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-facebook" viewbox="0 0 14222 14222" fill="currentColor" width="20" height="20">
    <path d="M14222 7112c0 3549.352-2600.418 6491.344-6000 7024.72V9168h1657l315-2056H8222V5778c0-562 275-1111 1159-1111h897V2917s-814-139-1592-139c-1624 0-2686 984-2686 2767v1567H4194v2056h1806v4968.72C2600.418 13603.344 0 10661.352 0 7112 0 3184.703 3183.703 1 7111 1s7111 3183.703 7111 7111m-8222 7025c362 57 733 86 1111 86-377.945 0-749.003-29.485-1111-86.28Zm2222 0v-.28a7107.458 7107.458 0 0 1-167.717 24.267A7407.158 7407.158 0 0 0 8222 14137m-167.717 23.987C7745.664 14201.89 7430.797 14223 7111 14223c319.843 0 634.675-21.479 943.283-62.013"/>
    </svg>
<span class="icon__fallback-text visually-hidden">Facebook</span>
  </a>
</li>

<li>
  <a
    target="_blank"
    rel="noopener"
    href="https://www.pinterest.com/inhabitliving"
    title="Inhabit on Pinterest"
    
  >



<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-pinterest" viewbox="0 0 256 256" fill="currentColor" width="20" height="20">
    <path d="M0 128.002c0 52.414 31.518 97.442 76.619 117.239-.36-8.938-.064-19.668 2.228-29.393 2.461-10.391 16.47-69.748 16.47-69.748s-4.089-8.173-4.089-20.252c0-18.969 10.994-33.136 24.686-33.136 11.643 0 17.268 8.745 17.268 19.217 0 11.704-7.465 29.211-11.304 45.426-3.207 13.578 6.808 24.653 20.203 24.653 24.252 0 40.586-31.149 40.586-68.055 0-28.054-18.895-49.052-53.262-49.052-38.828 0-63.017 28.956-63.017 61.3 0 11.152 3.288 19.016 8.438 25.106 2.368 2.797 2.697 3.922 1.84 7.134-.614 2.355-2.024 8.025-2.608 10.272-.852 3.242-3.479 4.401-6.409 3.204-17.884-7.301-26.213-26.886-26.213-48.902 0-36.361 30.666-79.961 91.482-79.961 48.87 0 81.035 35.364 81.035 73.325 0 50.213-27.916 87.726-69.066 87.726-13.819 0-26.818-7.47-31.271-15.955 0 0-7.431 29.492-9.005 35.187-2.714 9.869-8.026 19.733-12.883 27.421a127.897 127.897 0 0 0 36.277 5.249c70.684 0 127.996-57.309 127.996-128.005C256.001 57.309 198.689 0 128.005 0 57.314 0 0 57.309 0 128.002"/>
    </svg>
<span class="icon__fallback-text visually-hidden">Pinterest</span>
  </a>
</li>

<li>
  <a
    target="_blank"
    rel="noopener"
    href="https://instagram.com/inhabitliving"
    title="Inhabit on Instagram"
    
  >



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-instagram" viewbox="0 0 32 32" fill="currentColor" width="20" height="20">
    <path d="M16 3.094c4.206 0 4.7.019 6.363.094 1.538.069 2.369.325 2.925.544.738.287 1.262.625 1.813 1.175s.894 1.075 1.175 1.813c.212.556.475 1.387.544 2.925.075 1.662.094 2.156.094 6.363s-.019 4.7-.094 6.363c-.069 1.538-.325 2.369-.544 2.925-.288.738-.625 1.262-1.175 1.813s-1.075.894-1.813 1.175c-.556.212-1.387.475-2.925.544-1.663.075-2.156.094-6.363.094s-4.7-.019-6.363-.094c-1.537-.069-2.369-.325-2.925-.544-.737-.288-1.263-.625-1.813-1.175s-.894-1.075-1.175-1.813c-.212-.556-.475-1.387-.544-2.925-.075-1.663-.094-2.156-.094-6.363s.019-4.7.094-6.363c.069-1.537.325-2.369.544-2.925.287-.737.625-1.263 1.175-1.813s1.075-.894 1.813-1.175c.556-.212 1.388-.475 2.925-.544 1.662-.081 2.156-.094 6.363-.094zm0-2.838c-4.275 0-4.813.019-6.494.094-1.675.075-2.819.344-3.819.731-1.037.4-1.913.944-2.788 1.819S1.486 4.656 1.08 5.688c-.387 1-.656 2.144-.731 3.825-.075 1.675-.094 2.213-.094 6.488s.019 4.813.094 6.494c.075 1.675.344 2.819.731 3.825.4 1.038.944 1.913 1.819 2.788s1.756 1.413 2.788 1.819c1 .387 2.144.656 3.825.731s2.213.094 6.494.094 4.813-.019 6.494-.094c1.675-.075 2.819-.344 3.825-.731 1.038-.4 1.913-.944 2.788-1.819s1.413-1.756 1.819-2.788c.387-1 .656-2.144.731-3.825s.094-2.212.094-6.494-.019-4.813-.094-6.494c-.075-1.675-.344-2.819-.731-3.825-.4-1.038-.944-1.913-1.819-2.788s-1.756-1.413-2.788-1.819c-1-.387-2.144-.656-3.825-.731C20.812.275 20.275.256 16 .256z"/>
    <path d="M16 7.912a8.088 8.088 0 0 0 0 16.175c4.463 0 8.087-3.625 8.087-8.088s-3.625-8.088-8.088-8.088zm0 13.338a5.25 5.25 0 1 1 0-10.5 5.25 5.25 0 1 1 0 10.5M26.294 7.594a1.887 1.887 0 1 1-3.774.002 1.887 1.887 0 0 1 3.774-.003z"/>
    </svg>
<span class="icon__fallback-text visually-hidden">Instagram</span>
  </a>
</li>

  </ul>
            </div></div>
      </div>
    </div>
  </toolbar-section>

  <template data-island>
    <script type="module">
      import 'components/section-toolbar'
    </script>
  </template>
</is-land>

</div><div id="shopify-section-sections--17917123887290__header" class="shopify-section shopify-section-group-header-group header-section">
<style>
  .site-nav__link {
    font-size: 12px;
  }
  
    .site-nav__link {
      text-transform: uppercase;
      letter-spacing: 0.2em;
    }
  

  
</style>

<is-land on:idle>
  <header-section data-section-id="sections--17917123887290__header" data-section-type="header">
    <header-nav
      id="HeaderWrapper"
      class="header-wrapper"
    >
      <header
        id="SiteHeader"
        class="site-header"
        data-sticky="true"
        data-overlay="false"
      >
        <div class="site-header__element site-header__element--top">
          <div class="page-width">
            <div
              class="header-layout"
              data-layout="center"
              data-nav="below"
              data-logo-align="center"
            ><div class="header-item header-item--search small--hide"><button
                      type="button"
                      class="site-nav__link site-nav__link--icon site-nav__compress-menu"
                    >
                      



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-hamburger icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="M7 15h51" fill="none" stroke="currentColor">.</path>
    <path d="M7 32h43" fill="none" stroke="currentColor">.</path>
    <path d="M7 49h51" fill="none" stroke="currentColor">.</path>
    </svg>

                      <span class="icon__fallback-text visually-hidden">Site navigation</span>
                    </button>
<is-land on:idle>
  <predictive-search
    data-context="header"
    data-enabled="true"
    data-dark="false"
  >
    <div class="predictive__screen" data-screen></div>
    <form action="/search" method="get" role="search">
      <label for="Search" class="visually-hidden">Search</label>
      <div class="search__input-wrap">
        <input
          class="search__input"
          id="Search"
          type="search"
          name="q"
          value=""
          role="combobox"
          aria-expanded="false"
          aria-owns="predictive-search-results"
          aria-controls="predictive-search-results"
          aria-haspopup="listbox"
          aria-autocomplete="list"
          autocorrect="off"
          autocomplete="off"
          autocapitalize="off"
          spellcheck="false"
          placeholder="Search"
          tabindex="0"
        >
        <input name="options[prefix]" type="hidden" value="last">
        <button class="btn--search" type="submit">
          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-search icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="M47.16 28.58A18.58 18.58 0 1 1 28.58 10a18.58 18.58 0 0 1 18.58 18.58M54 54 41.94 42" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

          <span class="icon__fallback-text visually-hidden">Search</span>
        </button>
      </div>

      <button class="btn--close-search">
        



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-close icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="m19 17.61 27.12 27.13m0-27.13L19 44.74" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

      </button>
      <div id="predictive-search" class="search__results" tabindex="-1"></div>
    </form>
  </predictive-search>

  <template data-island>
    <script type="module">
      import 'components/predictive-search'
    </script>
  </template>
</is-land>
</div><div class="header-item header-item--logo">
<style data-shopify>.header-item--logo,
      [data-layout="left-center"] .header-item--logo,
      [data-layout="left-center"] .header-item--icons {
        flex: 0 1 140px;
      }

      @media only screen and (min-width: 769px) {
        .header-item--logo,
        [data-layout="left-center"] .header-item--logo,
        [data-layout="left-center"] .header-item--icons {
          flex: 0 0 170px;
        }
      }

      .site-header__logo a {
        width: 140px;
      }

      .is-light .site-header__logo .logo--inverted {
        width: 140px;
      }

      @media only screen and (min-width: 769px) {
        .site-header__logo a {
          width: 170px;
        }

        .is-light .site-header__logo .logo--inverted {
          width: 170px;
        }
      }</style><div class="h1 site-header__logo" ><span class="visually-hidden">Inhabit</span>
      
      <a
        href="/"
        class="site-header__logo-link logo--has-inverted"
      >
        




<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Inhabit_logo512ptrans.png?v=1691602744&amp;width=340" alt="Inhabit" srcset="//inhabitliving.com/cdn/shop/files/Inhabit_logo512ptrans.png?v=1691602744&amp;width=170 170w, //inhabitliving.com/cdn/shop/files/Inhabit_logo512ptrans.png?v=1691602744&amp;width=340 340w" width="170" height="61.75781249999999" loading="eager" class="small--hide image-element" sizes="170px" style="object-position:50.3906% 56.9892%;" data-animate="fadein">
  

  
  
</is-land>



<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Inhabit_logo512ptrans.png?v=1691602744&amp;width=280" alt="Inhabit" srcset="//inhabitliving.com/cdn/shop/files/Inhabit_logo512ptrans.png?v=1691602744&amp;width=140 140w, //inhabitliving.com/cdn/shop/files/Inhabit_logo512ptrans.png?v=1691602744&amp;width=280 280w" width="140" height="50.85937499999999" loading="eager" class="medium-up--hide image-element" sizes="140px" style="object-position:50.3906% 56.9892%;" data-animate="fadein">
  

  
  
</is-land>
</a><a
          href="/"
          class="site-header__logo-link logo--inverted"
        >
          




<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Inhabit_whitelogo512ptrans.png?v=1692302887&amp;width=340" alt="Inhabit" srcset="//inhabitliving.com/cdn/shop/files/Inhabit_whitelogo512ptrans.png?v=1692302887&amp;width=170 170w, //inhabitliving.com/cdn/shop/files/Inhabit_whitelogo512ptrans.png?v=1692302887&amp;width=340 340w" width="170" height="61.75781249999999" loading="eager" class="small--hide image-element" sizes="170px" data-animate="fadein">
  

  
  
</is-land>



<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Inhabit_whitelogo512ptrans.png?v=1692302887&amp;width=280" alt="Inhabit" srcset="//inhabitliving.com/cdn/shop/files/Inhabit_whitelogo512ptrans.png?v=1692302887&amp;width=140 140w, //inhabitliving.com/cdn/shop/files/Inhabit_whitelogo512ptrans.png?v=1692302887&amp;width=280 280w" width="140" height="50.85937499999999" loading="eager" class="medium-up--hide image-element" sizes="140px" data-animate="fadein">
  

  
  
</is-land>
</a></div></div><div class="header-item header-item--icons">
<div class="site-nav">
  <div class="site-nav__icons">
    <a
      href="/search"
      class="site-nav__link site-nav__link--icon js-search-header medium-up--hide js-no-transition"
    >
      



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-search icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="M47.16 28.58A18.58 18.58 0 1 1 28.58 10a18.58 18.58 0 0 1 18.58 18.58M54 54 41.94 42" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

      <span class="icon__fallback-text visually-hidden">Search</span>
    </a><a class="site-nav__link site-nav__link--icon small--hide" href="/account">
        



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-user icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="M35 39.84v-2.53c3.3-1.91 6-6.66 6-11.42 0-7.63 0-13.82-9-13.82s-9 6.19-9 13.82c0 4.76 2.7 9.51 6 11.42v2.53c-10.18.85-18 6-18 12.16h42c0-6.19-7.82-11.31-18-12.16" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

        <span class="site-nav__icon-label small--hide">
          Account
        </span>
      </a><a
      href="/cart"
      id="HeaderCartTrigger"
      aria-controls="HeaderCart"
      class="site-nav__link site-nav__link--icon js-no-transition"
      data-icon="bag-minimal"
      aria-label="Cart"
    >
      <span class="cart-link">
        



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-bag-minimal icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="M22.53 16.61c0-7.1 4.35-9 9.75-9s9.75 1.9 9.75 9" data-name="svg 2" fill="none" stroke="currentColor"/>
    <path d="M11.66 16.65h41.25V53.4H11.66z" data-name="svg 4" fill="none" stroke="currentColor"/>
    </svg>

        <span class="cart-link__bubble">
          <span class="cart-link__bubble-num">0</span>
        </span>
      </span>
      <span class="site-nav__icon-label small--hide">
        Cart
      </span>
    </a>

    <button
      type="button"
      aria-controls="MobileNav"
      class="site-nav__link site-nav__link--icon medium-up--hide mobile-nav-trigger"
    >
      



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-hamburger icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="M7 15h51" fill="none" stroke="currentColor">.</path>
    <path d="M7 32h43" fill="none" stroke="currentColor">.</path>
    <path d="M7 49h51" fill="none" stroke="currentColor">.</path>
    </svg>

      <span class="icon__fallback-text visually-hidden">Site navigation</span>
    </button>
  </div>

  <div class="site-nav__close-cart">
    <button type="button" class="site-nav__link site-nav__link--icon js-close-header-cart">
      <span>Close</span>
      



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-close icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="m19 17.61 27.12 27.13m0-27.13L19 44.74" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

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

          <div class="site-header__search-container">
            <div class="page-width">
              <div class="site-header__search">
<is-land on:idle>
  <predictive-search
    data-context="header"
    data-enabled="true"
    data-dark="false"
  >
    <div class="predictive__screen" data-screen></div>
    <form action="/search" method="get" role="search">
      <label for="Search" class="visually-hidden">Search</label>
      <div class="search__input-wrap">
        <input
          class="search__input"
          id="Search"
          type="search"
          name="q"
          value=""
          role="combobox"
          aria-expanded="false"
          aria-owns="predictive-search-results"
          aria-controls="predictive-search-results"
          aria-haspopup="listbox"
          aria-autocomplete="list"
          autocorrect="off"
          autocomplete="off"
          autocapitalize="off"
          spellcheck="false"
          placeholder="Search"
          tabindex="0"
        >
        <input name="options[prefix]" type="hidden" value="last">
        <button class="btn--search" type="submit">
          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-search icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="M47.16 28.58A18.58 18.58 0 1 1 28.58 10a18.58 18.58 0 0 1 18.58 18.58M54 54 41.94 42" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

          <span class="icon__fallback-text visually-hidden">Search</span>
        </button>
      </div>

      <button class="btn--close-search">
        



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-close icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="m19 17.61 27.12 27.13m0-27.13L19 44.74" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

      </button>
      <div id="predictive-search" class="search__results" tabindex="-1"></div>
    </form>
  </predictive-search>

  <template data-island>
    <script type="module">
      import 'components/predictive-search'
    </script>
  </template>
</is-land>
</div>
            </div>
          </div>
        </div><div class="site-header__element site-header__element--sub" data-type="nav">
            <div
              class="page-width text-center"
              
                role="navigation" aria-label="Primary"
              
            >
<ul class="site-nav site-navigation site-navigation--below small--hide"><li class="site-nav__item site-nav__expanded-item site-nav--has-dropdown site-nav--is-megamenu">
      
        <details
          id="site-nav-item--1"
          class="site-nav__details"
          data-hover="true"
        >
      
      
        <summary
          data-link="#"
          aria-expanded="false"
          aria-controls="site-nav-item--1"
          class="site-nav__link site-nav__link--underline site-nav__link--has-dropdown"
        >
          Shop By Product
          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down icon--line" viewbox="0 0 28 16" width="20" height="20">
    <path fill="none" stroke="currentColor" d="m1.57 1.59 12.76 12.77L27.1 1.59"/>
    </svg>

        </summary>
      
      
<div class="site-nav__dropdown megamenu text-left">
          <div class="page-width">
            <div class="site-nav__dropdown-animate megamenu__wrapper">
              <div class="megamenu__cols">
                <div class="megamenu__col"><div class="megamenu__col-title">
                      <a href="#" class="site-nav__dropdown-link site-nav__dropdown-link--top-level">Harmony Acoustic Wall Panels</a>
                    </div><a href="/collections/harmony-acoustic-pet-felt-3d-panels" class="site-nav__dropdown-link">
                        Harmony3D Acoustic Felt Wall Panels
                      </a><a href="/collections/harmonycarv-acoustic-felt-wall-panels" class="site-nav__dropdown-link">
                        HarmonyCarv Acoustic Felt Wall Panels
                      </a><a href="/collections/harmonycarv-wall-tiles" class="site-nav__dropdown-link">
                        HarmonyCarv Acoustic Felt Wall Tiles
                      </a><a href="/collections/harmony-felt-acoustic-hanging-3d-panels-room-dividers" class="site-nav__dropdown-link">
                        Harmony3D Acoustic Felt Hanging Panels
                      </a></div><div class="megamenu__col"><div class="megamenu__col-title">
                      <a href="#" class="site-nav__dropdown-link site-nav__dropdown-link--top-level">Harmony Acoustic Room Dividers</a>
                    </div><a href="/collections/harmony-felt-acoustic-room-dividers" class="site-nav__dropdown-link">
                        HarmonyDIVDR Acoustic Felt Room Divider Screens
                      </a><a href="/collections/harmonybloks-acoustic-felt-room-dividers" class="site-nav__dropdown-link">
                        HarmonyBLOKS Acoustic Felt Divider Partitions
                      </a><a href="/collections/harmony-felt-acoustic-hanging-3d-panels-room-dividers" class="site-nav__dropdown-link">
                        Harmony3D Acoustic Felt Hanging Panels
                      </a></div><div class="megamenu__col"><div class="megamenu__col-title">
                      <a href="#" class="site-nav__dropdown-link site-nav__dropdown-link--top-level">Harmony Acoustic Lighting</a>
                    </div><a href="/collections/harmony-acoustic-felt-corrulights" class="site-nav__dropdown-link">
                        Harmony Corrulights 
                      </a></div><div class="megamenu__col"><div class="megamenu__col-title">
                      <a href="/collections/wall-flats-decorative-3d-wall-panels" class="site-nav__dropdown-link site-nav__dropdown-link--top-level">Wall Flats - 3D Wall Panels</a>
                    </div><div class="megamenu__col-title">
                      <a href="https://inhabitliving.com/collections/bedding" class="site-nav__dropdown-link site-nav__dropdown-link--top-level">Modern Bedding Collection</a>
                    </div><div class="megamenu__col-title">
                      <a href="/collections/modern-decorative-studio-throw-pillows" class="site-nav__dropdown-link site-nav__dropdown-link--top-level">Modern Studio Pillows</a>
                    </div></div>
              </div></div>
          </div>
        </div>
        </details>
      
    </li><li class="site-nav__item site-nav__expanded-item site-nav--has-dropdown">
      
        <details
          id="site-nav-item--2"
          class="site-nav__details"
          data-hover="true"
        >
      
      
        <summary
          data-link="#"
          aria-expanded="false"
          aria-controls="site-nav-item--2"
          class="site-nav__link site-nav__link--underline site-nav__link--has-dropdown"
        >
          Shop By Application
          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-chevron-down icon--line" viewbox="0 0 28 16" width="20" height="20">
    <path fill="none" stroke="currentColor" d="m1.57 1.59 12.76 12.77L27.1 1.59"/>
    </svg>

        </summary>
      
      
<div class="site-nav__dropdown">
          <ul class="site-nav__dropdown-animate site-nav__dropdown-list text-left"><li class="">
                <a
                  href="/collections/harmony-acoustic-pet-felt-3d-panels"
                  class="site-nav__dropdown-link site-nav__dropdown-link--second-level"
                >
                  Acoustic 3D Panels
</a></li><li class="">
                <a
                  href="/collections/harmonycarv-acoustic-felt-wall-panels"
                  class="site-nav__dropdown-link site-nav__dropdown-link--second-level"
                >
                  Acoustic Felt Wall Panels
</a></li><li class="">
                <a
                  href="/collections/harmonycarv-wall-tiles"
                  class="site-nav__dropdown-link site-nav__dropdown-link--second-level"
                >
                  Acoustic Wall Tiles
</a></li><li class="">
                <a
                  href="/collections/harmony-felt-acoustic-hanging-3d-panels-room-dividers"
                  class="site-nav__dropdown-link site-nav__dropdown-link--second-level"
                >
                  Acoustic Hanging Panels
</a></li><li class="">
                <a
                  href="/collections/harmonybloks-acoustic-felt-room-dividers"
                  class="site-nav__dropdown-link site-nav__dropdown-link--second-level"
                >
                  Acoustic Partitions
</a></li><li class="">
                <a
                  href="/collections/harmony-felt-acoustic-room-dividers"
                  class="site-nav__dropdown-link site-nav__dropdown-link--second-level"
                >
                  Acoustic Room Dividers
</a></li><li class="">
                <a
                  href="/collections/harmony-acoustic-felt-corrulights"
                  class="site-nav__dropdown-link site-nav__dropdown-link--second-level"
                >
                  Acoustic Lighting
</a></li></ul>
        </div>
        </details>
      
    </li><li class="site-nav__item site-nav__expanded-item">
      
      
      
        <a
          href="/collections/closeouts"
          class="site-nav__link site-nav__link--underline"
        >
          Sale & Closeouts
        </a>
      

    </li></ul>
</div>
          </div>

          <div class="site-header__element site-header__element--sub" data-type="search">
            <div class="page-width medium-up--hide">
<is-land on:idle>
  <predictive-search
    data-context="header"
    data-enabled="true"
    data-dark="false"
  >
    <div class="predictive__screen" data-screen></div>
    <form action="/search" method="get" role="search">
      <label for="Search" class="visually-hidden">Search</label>
      <div class="search__input-wrap">
        <input
          class="search__input"
          id="Search"
          type="search"
          name="q"
          value=""
          role="combobox"
          aria-expanded="false"
          aria-owns="predictive-search-results"
          aria-controls="predictive-search-results"
          aria-haspopup="listbox"
          aria-autocomplete="list"
          autocorrect="off"
          autocomplete="off"
          autocapitalize="off"
          spellcheck="false"
          placeholder="Search"
          tabindex="0"
        >
        <input name="options[prefix]" type="hidden" value="last">
        <button class="btn--search" type="submit">
          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-search icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="M47.16 28.58A18.58 18.58 0 1 1 28.58 10a18.58 18.58 0 0 1 18.58 18.58M54 54 41.94 42" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

          <span class="icon__fallback-text visually-hidden">Search</span>
        </button>
      </div>

      <button class="btn--close-search">
        



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-close icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="m19 17.61 27.12 27.13m0-27.13L19 44.74" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

      </button>
      <div id="predictive-search" class="search__results" tabindex="-1"></div>
    </form>
  </predictive-search>

  <template data-island>
    <script type="module">
      import 'components/predictive-search'
    </script>
  </template>
</is-land>
</div>
          </div><div class="page-width site-header__drawers">
          <div class="site-header__drawers-container">
            <div class="site-header__drawer site-header__cart" id="HeaderCart">
              <div class="site-header__drawer-animate">
<form
  action="/cart"
  method="post"
  novalidate
  data-location="header"
  class="cart__drawer-form"
  data-money-format="${{amount}}"
  data-cart-type="page"
  data-super-script="false"
  id="cart__drawer-form"
>
  <div class="cart__scrollable">
    <div data-products></div>
<div class="cart__item-row cart-recommendations" data-location="drawer">
    <div class="h3 h3--mobile cart__recommended-title">Goes great with</div>
    <div
      class="new-grid product-grid scrollable-grid"
      data-view="small"
    >



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="harmony-acoustic-pet-felt-samples"
    data-product-id="7157751185594"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&amp;width=1080" alt="Samples - Harmony Acoustic PET Felt Samples - 1 - Inhabit" srcset="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&amp;width=900 900w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="150px" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-513031.jpg?v=1739237089&amp;width=1000" alt="Samples - Harmony Acoustic PET Felt Samples - 2 - Inhabit" srcset="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-513031.jpg?v=1739237089&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-513031.jpg?v=1739237089&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-513031.jpg?v=1739237089&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-513031.jpg?v=1739237089&amp;width=1000 1000w" width="1000" height="999.51171875" loading="lazy" class="image-style--square
 image-element" sizes="150px" data-animate="fadein">
  

  
  
</is-land>
</div>
<div
                        class="grid-product__color-image grid-product__color-image--41688705532090"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43056174334138"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43056174366906"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475711674"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43058227478714"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688699633850"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688699502778"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054566670522"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--45454137589946"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054566801594"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688699764922"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475744442"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688700092602"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688700027066"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475777210"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688699830458"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688699568314"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--45454137622714"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475809978"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688699961530"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475842746"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475875514"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054566604986"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054566867130"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475908282"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475941050"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054566834362"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475973818"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054566703290"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--45454137655482"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396476006586"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42113331724474"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054588919994"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42113331822778"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054588952762"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42113331855546"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054591475898"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42113331888314"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054591508666"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054588985530"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054589149370"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054589018298"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054589051066"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054589083834"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054589116602"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42577580130490"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42577580163258"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42577580196026"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42577580228794"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42577580261562"
                      ></div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">
<is-land on:idle>
      <color-swatches class="grid-product__colors">
<span
                class="color-swatch color-swatch--small color-swatch--sample-box-full-set color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=41688705532090"
                
                  data-variant-id="41688705532090"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&width=400"
                
                style="background-color: set;  background-image: url(https://inhabitliving.com/cdn/shop/files/sample-box-full-set_50x50.png);"
              >
                <span class="visually-hidden">Sample Box Full Set</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--sample-box-solid-felts color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=43056174334138"
                
                  data-variant-id="43056174334138"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-513031.jpg?v=1739237089&width=400"
                
                style="background-color: felts;  background-image: url(https://inhabitliving.com/cdn/shop/files/sample-box-solid-felts_50x50.png);"
              >
                <span class="visually-hidden">Sample Box Solid Felts</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--sample-box-overlay-felts color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=43056174366906"
                
                  data-variant-id="43056174366906"
                  data-variant-image="//inhabitliving.com/cdn/shop/products/harmony-acoustic-pet-felt-samples-inhabit-692396.jpg?v=1739222914&width=400"
                
                style="background-color: felts;  background-image: url(https://inhabitliving.com/cdn/shop/files/sample-box-overlay-felts_50x50.png);"
              >
                <span class="visually-hidden">Sample Box Overlay Felts</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--whisper-white-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=44396475711674"
                
                  data-variant-id="44396475711674"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-357984.jpg?v=1739222914&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/whisper-white-felt_50x50.png);"
              >
                <span class="visually-hidden">Whisper White Felt</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--cloud-white-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=43058227478714"
                
                  data-variant-id="43058227478714"
                  data-variant-image="//inhabitliving.com/cdn/shop/products/harmony-acoustic-pet-felt-samples-inhabit-234848.jpg?v=1739222914&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/cloud-white-felt_50x50.png);"
              >
                <span class="visually-hidden">Cloud White Felt</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--fog-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=41688699633850"
                
                  data-variant-id="41688699633850"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-334779.jpg?v=1739222914&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/fog-felt_50x50.png);"
              >
                <span class="visually-hidden">Fog Felt</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--mineral-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=41688699502778"
                
                  data-variant-id="41688699502778"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-275573.jpg?v=1739222914&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/mineral-felt_50x50.png);"
              >
                <span class="visually-hidden">Mineral Felt</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--haze-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=43054566670522"
                
                  data-variant-id="43054566670522"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-3120408.jpg?v=1765952049&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/haze-felt_50x50.png);"
              >
                <span class="visually-hidden">Haze Felt</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--flint-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=45454137589946"
                
                  data-variant-id="45454137589946"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-3794058.jpg?v=1765952049&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/flint-felt_50x50.png);"
              >
                <span class="visually-hidden">Flint Felt</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--smoke-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=43054566801594"
                
                  data-variant-id="43054566801594"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-584462.jpg?v=1739222914&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/smoke-felt_50x50.png);"
              >
                <span class="visually-hidden">Smoke Felt</span>
              </span>







































<small class="color-swatch__more">+40</small><template data-island>
          <script type="module">
            import '@archetype-themes/scripts/modules/swatches'
          </script>
        </template>
      </color-swatches>
    </is-land>

            <div class="grid-product__title">Harmony Acoustic PET Felt Samples</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
    $2.50 - $56.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  




  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  



  
  


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




<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="chrysalis-harmony3d-acoustic-felt-wall-panels"
    data-product-id="8015879110842"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/chrysalis-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Chrysalis-Fog.jpg?v=1731704811&amp;width=1080" alt="" srcset="//inhabitliving.com/cdn/shop/files/Chrysalis-Fog.jpg?v=1731704811&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Chrysalis-Fog.jpg?v=1731704811&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Chrysalis-Fog.jpg?v=1731704811&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Chrysalis-Fog.jpg?v=1731704811&amp;width=900 900w, //inhabitliving.com/cdn/shop/files/Chrysalis-Fog.jpg?v=1731704811&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="150px" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/chrysalis-harmony3d-acoustic-felt-wall-panelzepto-inhabit-988158.jpg?v=1731534414&amp;width=1000" alt="Harmony PET Felt 3D Panels - Chrysalis Harmony3D Acoustic Felt Wall PanelZepto - 2 - Inhabit" srcset="//inhabitliving.com/cdn/shop/files/chrysalis-harmony3d-acoustic-felt-wall-panelzepto-inhabit-988158.jpg?v=1731534414&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/chrysalis-harmony3d-acoustic-felt-wall-panelzepto-inhabit-988158.jpg?v=1731534414&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/chrysalis-harmony3d-acoustic-felt-wall-panelzepto-inhabit-988158.jpg?v=1731534414&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/chrysalis-harmony3d-acoustic-felt-wall-panelzepto-inhabit-988158.jpg?v=1731534414&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="150px" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Chrysalis Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Chrysalis Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="8015879110842"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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




<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="facet-harmony-pet-felt-3d-panels"
    data-product-id="7153122345146"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/facet-harmony-pet-felt-3d-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/products/facet-harmony-pet-felt-3d-panels-inhabit-553132.jpg?v=1690918475&amp;width=1080" alt="Harmony PET Felt 3D Panels - Facet Harmony PET Felt 3D Panels - 3 - Inhabit" srcset="//inhabitliving.com/cdn/shop/products/facet-harmony-pet-felt-3d-panels-inhabit-553132.jpg?v=1690918475&amp;width=360 360w, //inhabitliving.com/cdn/shop/products/facet-harmony-pet-felt-3d-panels-inhabit-553132.jpg?v=1690918475&amp;width=540 540w, //inhabitliving.com/cdn/shop/products/facet-harmony-pet-felt-3d-panels-inhabit-553132.jpg?v=1690918475&amp;width=720 720w, //inhabitliving.com/cdn/shop/products/facet-harmony-pet-felt-3d-panels-inhabit-553132.jpg?v=1690918475&amp;width=900 900w, //inhabitliving.com/cdn/shop/products/facet-harmony-pet-felt-3d-panels-inhabit-553132.jpg?v=1690918475&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="150px" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Facet--HarmonyGrayOmbre.jpg?v=1690918475&amp;width=1000" alt="" srcset="//inhabitliving.com/cdn/shop/files/Facet--HarmonyGrayOmbre.jpg?v=1690918475&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Facet--HarmonyGrayOmbre.jpg?v=1690918475&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Facet--HarmonyGrayOmbre.jpg?v=1690918475&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Facet--HarmonyGrayOmbre.jpg?v=1690918475&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="150px" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Facet Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Facet Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7153122345146"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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




<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="halo-harmony3d-acoustic-felt-wall-panels"
    data-product-id="7195791098042"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/halo-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/products/halo-harmony-pet-felt-3d-panels-inhabit-472722.jpg?v=1672853618&amp;width=1080" alt="Harmony PET Felt 3D Panels - Halo Harmony PET Felt 3D Panels - 4 - Inhabit" srcset="//inhabitliving.com/cdn/shop/products/halo-harmony-pet-felt-3d-panels-inhabit-472722.jpg?v=1672853618&amp;width=360 360w, //inhabitliving.com/cdn/shop/products/halo-harmony-pet-felt-3d-panels-inhabit-472722.jpg?v=1672853618&amp;width=540 540w, //inhabitliving.com/cdn/shop/products/halo-harmony-pet-felt-3d-panels-inhabit-472722.jpg?v=1672853618&amp;width=720 720w, //inhabitliving.com/cdn/shop/products/halo-harmony-pet-felt-3d-panels-inhabit-472722.jpg?v=1672853618&amp;width=900 900w, //inhabitliving.com/cdn/shop/products/halo-harmony-pet-felt-3d-panels-inhabit-472722.jpg?v=1672853618&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="150px" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/halo-harmony3d-acoustic-felt-wall-panels-inhabit-115318.jpg?v=1712055640&amp;width=1000" alt="Harmony PET Felt 3D Panels - Halo Harmony3D Acoustic Felt Wall Panels - 2 - Inhabit" srcset="//inhabitliving.com/cdn/shop/files/halo-harmony3d-acoustic-felt-wall-panels-inhabit-115318.jpg?v=1712055640&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/halo-harmony3d-acoustic-felt-wall-panels-inhabit-115318.jpg?v=1712055640&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/halo-harmony3d-acoustic-felt-wall-panels-inhabit-115318.jpg?v=1712055640&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/halo-harmony3d-acoustic-felt-wall-panels-inhabit-115318.jpg?v=1712055640&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="150px" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Halo Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Halo Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7195791098042"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




                       
          </div></div>
      </a></div>
  </div>
</div>
</div>
  </div>
      <div class="cart__item-row">
        <label for="CartHeaderNote" class="add-note">
          Add order note
          <span class="note-icon note-icon--open" aria-hidden="true">
            



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-pencil icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="M52 33.96V58H8V14h23.7" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    <path d="m18 47 13-5 24-24-8-8-24 24zm5-13 8 8" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    <path d="m47 10 1-1a5.44 5.44 0 0 1 7.82.18A5.52 5.52 0 0 1 56 17l-1 1" fill="none" stroke="currentColor"/>
    </svg>

          </span>
          <span class="note-icon note-icon--close">
            



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-close icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="m19 17.61 27.12 27.13m0-27.13L19 44.74" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

            <span class="icon__fallback-text visually-hidden">Close</span>
          </span>
        </label>

        <textarea name="note" class="input-full cart__note hide" id="CartHeaderNote"></textarea>
      </div>
    
  </div>

  <div class="cart__footer">
    <div class="cart__item-sub cart__item-row cart__item--subtotal">
      <div>Subtotal</div>
      <div data-subtotal class="data-subtotal">$0.00</div>
    </div>

    <div data-discounts></div>

      
    
    <div class="nvd-mini"></div>

    <div class="cart__item-row cart__checkout-wrapper payment-buttons">
      <button
        disabled
        type="submit"
        name="checkout"
        data-terms-required="false"
        class="btn cart__checkout"
      >
        Check out
      </button>

      
    </div>

    <div class="cart__item-row--footer text-center">
      <small>Shipping, taxes, and discount codes calculated at checkout.
</small>
    </div>
  </div>
  <script type="application/json" data-locales>
    {
      "cartTermsConfirmation": "You must agree with the terms and conditions of sales to check out",
      "cartSavings": "Save [savings]"
    }
  </script>
</form>

<div class="site-header__cart-empty">Your cart is currently empty.</div>

<script type="module">
  import '@archetype-themes/scripts/modules/quantity-selector'
</script>

</div>
            </div>

            <div class="site-header__drawer site-header__mobile-nav medium-up--hide" id="MobileNav">
              <div class="site-header__drawer-animate">
<mobile-nav
  class="slide-nav__wrapper overlay"
  data-level="1"
  container="MobileNav"
  inHeader="true"
  defer-hydrate
>
  <ul class="slide-nav"><li class="slide-nav__item"><button
            type="button"
            class="slide-nav__button js-toggle-submenu"
            data-target="tier-2-shop-by-product1"
            
              data-active="true"
            
          >
            <span class="slide-nav__link"><span>Shop By Product</span>
              



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

              <span class="icon__fallback-text visually-hidden">Expand submenu</span>
            </span>
          </button>

          <ul
            class="slide-nav__dropdown"
            data-parent="tier-2-shop-by-product1"
            data-level="2"
          >
            <li class="slide-nav__item">
              <button
                type="button"
                class="slide-nav__button js-toggle-submenu"
              >
                <span class="slide-nav__link slide-nav__link--back">
                  



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                  <span>Shop By Product</span>
                </span>
              </button>
            </li>

            
<li class="slide-nav__item"><button
                    type="button"
                    class="slide-nav__button js-toggle-submenu"
                    data-target="tier-3-harmony-acoustic-wall-panels1"
                    
                      data-active="true"
                    
                  >
                    <span class="slide-nav__link slide-nav__sublist-link">
                      <span>Harmony Acoustic Wall Panels</span>
                      



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                      <span class="icon__fallback-text visually-hidden">Expand submenu</span>
                    </span>
                  </button>
                  <ul
                    class="slide-nav__dropdown"
                    data-parent="tier-3-harmony-acoustic-wall-panels1"
                    data-level="3"
                  >
                    <li class="slide-nav__item">
                      <button
                        type="button"
                        class="slide-nav__button js-toggle-submenu"
                        data-target="tier-2-shop-by-product1"
                      >
                        <span class="slide-nav__link slide-nav__link--back">
                          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                          <span>Harmony Acoustic Wall Panels</span>
                        </span>
                      </button>
                    </li>

                    
<li class="slide-nav__item">
                        <a href="/collections/harmony-acoustic-pet-felt-3d-panels" class="slide-nav__link">
                          <span>Harmony3D Acoustic Felt Wall Panels</span>
                          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                        </a>
                      </li><li class="slide-nav__item">
                        <a href="/collections/harmonycarv-acoustic-felt-wall-panels" class="slide-nav__link">
                          <span>HarmonyCarv Acoustic Felt Wall Panels</span>
                          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                        </a>
                      </li><li class="slide-nav__item">
                        <a href="/collections/harmonycarv-wall-tiles" class="slide-nav__link">
                          <span>HarmonyCarv Acoustic Felt Wall Tiles</span>
                          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                        </a>
                      </li><li class="slide-nav__item">
                        <a href="/collections/harmony-felt-acoustic-hanging-3d-panels-room-dividers" class="slide-nav__link">
                          <span>Harmony3D Acoustic Felt Hanging Panels</span>
                          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                        </a>
                      </li></ul></li><li class="slide-nav__item"><button
                    type="button"
                    class="slide-nav__button js-toggle-submenu"
                    data-target="tier-3-harmony-acoustic-room-dividers1"
                    
                      data-active="true"
                    
                  >
                    <span class="slide-nav__link slide-nav__sublist-link">
                      <span>Harmony Acoustic Room Dividers</span>
                      



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                      <span class="icon__fallback-text visually-hidden">Expand submenu</span>
                    </span>
                  </button>
                  <ul
                    class="slide-nav__dropdown"
                    data-parent="tier-3-harmony-acoustic-room-dividers1"
                    data-level="3"
                  >
                    <li class="slide-nav__item">
                      <button
                        type="button"
                        class="slide-nav__button js-toggle-submenu"
                        data-target="tier-2-shop-by-product1"
                      >
                        <span class="slide-nav__link slide-nav__link--back">
                          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                          <span>Harmony Acoustic Room Dividers</span>
                        </span>
                      </button>
                    </li>

                    
<li class="slide-nav__item">
                        <a href="/collections/harmony-felt-acoustic-room-dividers" class="slide-nav__link">
                          <span>HarmonyDIVDR Acoustic Felt Room Divider Screens</span>
                          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                        </a>
                      </li><li class="slide-nav__item">
                        <a href="/collections/harmonybloks-acoustic-felt-room-dividers" class="slide-nav__link">
                          <span>HarmonyBLOKS Acoustic Felt Divider Partitions</span>
                          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                        </a>
                      </li><li class="slide-nav__item">
                        <a href="/collections/harmony-felt-acoustic-hanging-3d-panels-room-dividers" class="slide-nav__link">
                          <span>Harmony3D Acoustic Felt Hanging Panels</span>
                          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                        </a>
                      </li></ul></li><li class="slide-nav__item"><button
                    type="button"
                    class="slide-nav__button js-toggle-submenu"
                    data-target="tier-3-harmony-acoustic-lighting1"
                    
                      data-active="true"
                    
                  >
                    <span class="slide-nav__link slide-nav__sublist-link">
                      <span>Harmony Acoustic Lighting</span>
                      



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                      <span class="icon__fallback-text visually-hidden">Expand submenu</span>
                    </span>
                  </button>
                  <ul
                    class="slide-nav__dropdown"
                    data-parent="tier-3-harmony-acoustic-lighting1"
                    data-level="3"
                  >
                    <li class="slide-nav__item">
                      <button
                        type="button"
                        class="slide-nav__button js-toggle-submenu"
                        data-target="tier-2-shop-by-product1"
                      >
                        <span class="slide-nav__link slide-nav__link--back">
                          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                          <span>Harmony Acoustic Lighting</span>
                        </span>
                      </button>
                    </li>

                    
<li class="slide-nav__item">
                        <a href="/collections/harmony-acoustic-felt-corrulights" class="slide-nav__link">
                          <span>Harmony Corrulights </span>
                          



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                        </a>
                      </li></ul></li><li class="slide-nav__item"><a href="/collections/wall-flats-decorative-3d-wall-panels" class="slide-nav__link">
                    <span>Wall Flats - 3D Wall Panels</span>
                    



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                  </a></li><li class="slide-nav__item"><a href="https://inhabitliving.com/collections/bedding" class="slide-nav__link">
                    <span>Modern Bedding Collection</span>
                    



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                  </a></li><li class="slide-nav__item"><a href="/collections/modern-decorative-studio-throw-pillows" class="slide-nav__link">
                    <span>Modern Studio Pillows</span>
                    



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                  </a></li></ul></li><li class="slide-nav__item"><button
            type="button"
            class="slide-nav__button js-toggle-submenu"
            data-target="tier-2-shop-by-application2"
            
              data-active="true"
            
          >
            <span class="slide-nav__link"><span>Shop By Application</span>
              



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

              <span class="icon__fallback-text visually-hidden">Expand submenu</span>
            </span>
          </button>

          <ul
            class="slide-nav__dropdown"
            data-parent="tier-2-shop-by-application2"
            data-level="2"
          >
            <li class="slide-nav__item">
              <button
                type="button"
                class="slide-nav__button js-toggle-submenu"
              >
                <span class="slide-nav__link slide-nav__link--back">
                  



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                  <span>Shop By Application</span>
                </span>
              </button>
            </li>

            
<li class="slide-nav__item"><a href="/collections/harmony-acoustic-pet-felt-3d-panels" class="slide-nav__link">
                    <span>Acoustic 3D Panels</span>
                    



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                  </a></li><li class="slide-nav__item"><a href="/collections/harmonycarv-acoustic-felt-wall-panels" class="slide-nav__link">
                    <span>Acoustic Felt Wall Panels</span>
                    



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                  </a></li><li class="slide-nav__item"><a href="/collections/harmonycarv-wall-tiles" class="slide-nav__link">
                    <span>Acoustic Wall Tiles</span>
                    



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                  </a></li><li class="slide-nav__item"><a href="/collections/harmony-felt-acoustic-hanging-3d-panels-room-dividers" class="slide-nav__link">
                    <span>Acoustic Hanging Panels</span>
                    



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                  </a></li><li class="slide-nav__item"><a href="/collections/harmonybloks-acoustic-felt-room-dividers" class="slide-nav__link">
                    <span>Acoustic Partitions</span>
                    



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                  </a></li><li class="slide-nav__item"><a href="/collections/harmony-felt-acoustic-room-dividers" class="slide-nav__link">
                    <span>Acoustic Room Dividers</span>
                    



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                  </a></li><li class="slide-nav__item"><a href="/collections/harmony-acoustic-felt-corrulights" class="slide-nav__link">
                    <span>Acoustic Lighting</span>
                    



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

                  </a></li></ul></li><li class="slide-nav__item"><a href="/collections/closeouts" class="slide-nav__link"><div class="slide-nav__image">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/products/current-paint-ready-wall-flats-3d-wall-panels-688770.jpg?v=1611190127&amp;width=2190" alt="Closeouts" srcset="//inhabitliving.com/cdn/shop/products/current-paint-ready-wall-flats-3d-wall-panels-688770.jpg?v=1611190127&amp;width=352 352w, //inhabitliving.com/cdn/shop/products/current-paint-ready-wall-flats-3d-wall-panels-688770.jpg?v=1611190127&amp;width=832 832w, //inhabitliving.com/cdn/shop/products/current-paint-ready-wall-flats-3d-wall-panels-688770.jpg?v=1611190127&amp;width=1200 1200w, //inhabitliving.com/cdn/shop/products/current-paint-ready-wall-flats-3d-wall-panels-688770.jpg?v=1611190127&amp;width=1920 1920w, //inhabitliving.com/cdn/shop/products/current-paint-ready-wall-flats-3d-wall-panels-688770.jpg?v=1611190127&amp;width=2190 2190w" width="2190" height="2190.0" loading="eager" class=" image-element" sizes="40px" data-animate="fadein">
  

  
  
</is-land>
</div>
<span>Sale &amp; Closeouts</span>
            



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

          </a></li></ul>
</mobile-nav>

<script type="module">
  import 'components/header-mobile-nav'
</script>
<div id="MobileNavFooter"></div></div>
            </div>
          </div>
        </div>
      </header>
    </header-nav>
    <script type="module">
      import '@archetype-themes/scripts/modules/header-nav'
    </script>
  </header-section>

  <template data-island>
    <script type="module">
      import 'components/section-header'
    </script>
  </template>
</is-land>

</div>
<!-- END sections: header-group --><!-- BEGIN sections: popup-group -->

<!-- END sections: popup-group --><main class="main-content" id="MainContent">
          <div id="shopify-section-template--17917130768570__collection-header" class="shopify-section">
<is-land on:idle>
      <collection-header
        id="CollectionHeaderSection"
        
      >
        <div class="collection-hero loading">



<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/collections/harmony-acoustic-pet-felt-3d-panels-987087.jpg?v=1664239229&amp;width=2400" alt="Harmony Acoustic PET Felt 3D Panels - Inhabit" srcset="//inhabitliving.com/cdn/shop/collections/harmony-acoustic-pet-felt-3d-panels-987087.jpg?v=1664239229&amp;width=352 352w, //inhabitliving.com/cdn/shop/collections/harmony-acoustic-pet-felt-3d-panels-987087.jpg?v=1664239229&amp;width=832 832w, //inhabitliving.com/cdn/shop/collections/harmony-acoustic-pet-felt-3d-panels-987087.jpg?v=1664239229&amp;width=1200 1200w, //inhabitliving.com/cdn/shop/collections/harmony-acoustic-pet-felt-3d-panels-987087.jpg?v=1664239229&amp;width=1920 1920w, //inhabitliving.com/cdn/shop/collections/harmony-acoustic-pet-felt-3d-panels-987087.jpg?v=1664239229&amp;width=2400 2400w" width="2400" height="360.0" loading="eager" class="collection-hero__image image-fit image-element" sizes="100vw" data-animate="fadein">
  

  
  
</is-land>
<div class="collection-hero__content overlay">
            <div class="page-width">
              <header class="section-header section-header--flush">

  
    <nav class="breadcrumb" role="navigation" aria-label="breadcrumbs">
      <a href="/" title="Back to the frontpage">Home</a>

      
        
          <span class="breadcrumb__divider" aria-hidden="true">/</span>
          <a href="/collections">Collections</a>
        

        <span class="breadcrumb__divider" aria-hidden="true">/</span>

        

      
    </nav>
  

<h1 class="section-header__title">
                  Harmony3D Acoustic Felt Wall Panels
                </h1>
              </header>
            </div>
          </div>
        </div>
      </collection-header>

      <template data-island>
        <script type="module">
          import 'components/section-collection-header'
        </script>
      </template>
    </is-land>

    <div class="page-width medium-up--hide" data-collection-count style="padding-top: 15px;">
      15 products
    </div>
<style> #shopify-section-template--17917130768570__collection-header .collection-hero {height: 110px !important;} #shopify-section-template--17917130768570__collection-header .collection-hero__content:before {background: linear-gradient( 45deg, rgba(0, 0, 0, 0.25), transparent 40% ) !important;} #shopify-section-template--17917130768570__collection-header .collection-hero__content {backdrop-filter: blur(15px);} </style></div><section id="shopify-section-template--17917130768570__1692388310a8eb8424" class="shopify-section">
<!-- Failed to render app block "84f07a93-ff0e-4791-89f6-78298bb1b9df": app block path "shopify://apps/shopacado-volume-discounts/blocks/collection-notification-bar/5950831a-4e4e-40a4-82b0-674110b50a14" does not exist -->

</section><div id="shopify-section-template--17917130768570__main-collection" class="shopify-section">



<section-main-content>
  <div class="page-width">
<is-land on:visible>
  <item-grid
    class="item-grid"
    data-section-id="template--17917130768570__main-collection"
    data-section-type="collection-template"
  >
    <div id="AjaxContent" class="grid clearfix"><div class="grid__item">
      <div class="collection-grid__wrapper">


<div class="collection-filter">
  <div class="collection-filter__inner"><div class="collection-filter__item ">
        <div class="collection-filter__sort">
          <label for="SortBy" class="visually-hidden">Sort</label>
          <select name="SortBy" id="SortBy" data-default-sortby="manual">
            <option
              value="title-ascending"
              
                selected="selected"
              
            >
              Sort
            </option><option
                value="manual"
                
                  selected="selected"
                
              >
                Featured
              </option><option
                value="best-selling"
                
              >
                Best selling
              </option><option
                value="title-ascending"
                
              >
                Alphabetically, A-Z
              </option><option
                value="title-descending"
                
              >
                Alphabetically, Z-A
              </option><option
                value="price-ascending"
                
              >
                Price, low to high
              </option><option
                value="price-descending"
                
              >
                Price, high to low
              </option><option
                value="created-ascending"
                
              >
                Date, old to new
              </option><option
                value="created-descending"
                
              >
                Date, new to old
              </option></select>
        </div>
      </div><div class="collection-filter__item collection-filter__item--right">
      <ul class="no-bullets inline-list inline-list--no-wrap text-right">
        <li>
          <button
            type="button"
            class="grid-view-btn"
            data-view="large"
            title="Large"
          >
            



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-view-large" viewbox="0 0 35 35" fill="currentColor" width="20" height="20">
    <path d="M0 0h35v35H0z"/>
    </svg>

            <span class="icon__fallback-text visually-hidden">Large</span>
          </button>
        </li>
        <li>
          <button
            type="button"
            class="grid-view-btn is-active"
            data-view="medium"
            title="Small"
          >
            



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-view-small" viewbox="0 0 35 35" fill="currentColor" width="20" height="20">
    <path d="M0 0h15v15H0zm20 0h15v15H20zM0 20h15v15H0zm20 0h15v15H20z"/>
    </svg>

            <span class="icon__fallback-text visually-hidden">Small</span>
          </button>
        </li>
        <li>
          <button
            type="button"
            class="grid-view-btn"
            data-view="list"
            title="List"
          >
            



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-view-list" viewbox="0 0 35 35" fill="currentColor" width="20" height="20">
    <path d="M0 0h35v8H0zm0 13h35v8H0zm0 14h35v8H0z" data-name="Layer 2"/>
    </svg>

            <span class="icon__fallback-text visually-hidden">List</span>
          </button>
        </li>
      </ul>
    </div>
  </div>

  <div class="collection-mobile-filters medium-up--hide">
    <div class="collection-mobile-filters__holder" id="CollectionInlineFilterWrap"></div>
  </div>
</div>


<style data-shopify>.collection-filter__item--count {
    text-align: left;
  }
  html[dir="rtl"] .collection-filter__item--count {
    text-align: right;
  }</style><style data-shopify>@media screen and (min-width: 769px) {
    .collection-filter__item--drawer {
      display: none;
    }
    .collection-filter__item--count {
      text-align: left;
    }
    html[dir='rtl'] .collection-filter__item--count {
      text-align: right;
    }
  }</style><div >
<at-rte class="at-rte rte clearfix rte--collection-desc enlarge-text">
  <p><span>Harmony3D Acoustic Felt Wall Panels </span><span>from Inhabit® are lightweight acoustic 3D wall panels that work through pattern repeats creating large-scale dimensional walls. A cinch to install, customize and made from PET felt with a minimum of 60% recycled content.</span><br></p>
<p><span>Developed to provide a beautiful aesthetic solution to tamping down ambient noise reverberation in a variety of environments.</span> </p>
</at-rte>

<script type="module">
  import 'components/rte'
</script>
</div><div >
<div class="new-grid scrollable-grid--small" data-view="custom-grid-item-width" data-type="subcollections"></div></div><div class="product-grid collection-grid" data-view="medium" data-scroll-to>
 
     
        <div class="new-grid product-grid-wrapper">
        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="harmony-acoustic-pet-felt-samples"
    data-product-id="7157751185594"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&amp;width=1080" alt="Samples - Harmony Acoustic PET Felt Samples - 1 - Inhabit" srcset="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&amp;width=900 900w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-513031.jpg?v=1739237089&amp;width=1000" alt="Samples - Harmony Acoustic PET Felt Samples - 2 - Inhabit" srcset="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-513031.jpg?v=1739237089&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-513031.jpg?v=1739237089&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-513031.jpg?v=1739237089&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-513031.jpg?v=1739237089&amp;width=1000 1000w" width="1000" height="999.51171875" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div>
<div
                        class="grid-product__color-image grid-product__color-image--41688705532090"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43056174334138"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43056174366906"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475711674"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43058227478714"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688699633850"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688699502778"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054566670522"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--45454137589946"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054566801594"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688699764922"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475744442"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688700092602"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688700027066"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475777210"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688699830458"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688699568314"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--45454137622714"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475809978"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--41688699961530"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475842746"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475875514"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054566604986"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054566867130"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475908282"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475941050"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054566834362"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396475973818"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054566703290"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--45454137655482"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--44396476006586"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42113331724474"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054588919994"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42113331822778"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054588952762"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42113331855546"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054591475898"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42113331888314"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054591508666"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054588985530"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054589149370"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054589018298"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054589051066"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054589083834"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--43054589116602"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42577580130490"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42577580163258"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42577580196026"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42577580228794"
                      ></div>
<div
                        class="grid-product__color-image grid-product__color-image--42577580261562"
                      ></div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">
<is-land on:idle>
      <color-swatches class="grid-product__colors">
<span
                class="color-swatch color-swatch--small color-swatch--sample-box-full-set color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=41688705532090"
                
                  data-variant-id="41688705532090"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-702447.jpg?v=1739237089&width=400"
                
                style="background-color: set;  background-image: url(https://inhabitliving.com/cdn/shop/files/sample-box-full-set_50x50.png);"
              >
                <span class="visually-hidden">Sample Box Full Set</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--sample-box-solid-felts color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=43056174334138"
                
                  data-variant-id="43056174334138"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-513031.jpg?v=1739237089&width=400"
                
                style="background-color: felts;  background-image: url(https://inhabitliving.com/cdn/shop/files/sample-box-solid-felts_50x50.png);"
              >
                <span class="visually-hidden">Sample Box Solid Felts</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--sample-box-overlay-felts color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=43056174366906"
                
                  data-variant-id="43056174366906"
                  data-variant-image="//inhabitliving.com/cdn/shop/products/harmony-acoustic-pet-felt-samples-inhabit-692396.jpg?v=1739222914&width=400"
                
                style="background-color: felts;  background-image: url(https://inhabitliving.com/cdn/shop/files/sample-box-overlay-felts_50x50.png);"
              >
                <span class="visually-hidden">Sample Box Overlay Felts</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--whisper-white-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=44396475711674"
                
                  data-variant-id="44396475711674"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-357984.jpg?v=1739222914&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/whisper-white-felt_50x50.png);"
              >
                <span class="visually-hidden">Whisper White Felt</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--cloud-white-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=43058227478714"
                
                  data-variant-id="43058227478714"
                  data-variant-image="//inhabitliving.com/cdn/shop/products/harmony-acoustic-pet-felt-samples-inhabit-234848.jpg?v=1739222914&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/cloud-white-felt_50x50.png);"
              >
                <span class="visually-hidden">Cloud White Felt</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--fog-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=41688699633850"
                
                  data-variant-id="41688699633850"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-334779.jpg?v=1739222914&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/fog-felt_50x50.png);"
              >
                <span class="visually-hidden">Fog Felt</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--mineral-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=41688699502778"
                
                  data-variant-id="41688699502778"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-275573.jpg?v=1739222914&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/mineral-felt_50x50.png);"
              >
                <span class="visually-hidden">Mineral Felt</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--haze-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=43054566670522"
                
                  data-variant-id="43054566670522"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-3120408.jpg?v=1765952049&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/haze-felt_50x50.png);"
              >
                <span class="visually-hidden">Haze Felt</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--flint-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=45454137589946"
                
                  data-variant-id="45454137589946"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-3794058.jpg?v=1765952049&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/flint-felt_50x50.png);"
              >
                <span class="visually-hidden">Flint Felt</span>
              </span>
<span
                class="color-swatch color-swatch--small color-swatch--smoke-felt color-swatch--with-image"
                data-url="/collections/harmony-acoustic-pet-felt-3d-panels/products/harmony-acoustic-pet-felt-samples?variant=43054566801594"
                
                  data-variant-id="43054566801594"
                  data-variant-image="//inhabitliving.com/cdn/shop/files/harmony-acoustic-pet-felt-samples-inhabit-584462.jpg?v=1739222914&width=400"
                
                style="background-color: felt;  background-image: url(https://inhabitliving.com/cdn/shop/files/smoke-felt_50x50.png);"
              >
                <span class="visually-hidden">Smoke Felt</span>
              </span>







































<small class="color-swatch__more">+40</small><template data-island>
          <script type="module">
            import '@archetype-themes/scripts/modules/swatches'
          </script>
        </template>
      </color-swatches>
    </is-land>

            <div class="grid-product__title">Harmony Acoustic PET Felt Samples</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
    $2.50 - $56.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  




  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  



  
  


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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="chrysalis-harmony3d-acoustic-felt-wall-panels"
    data-product-id="8015879110842"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/chrysalis-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Chrysalis-Fog.jpg?v=1731704811&amp;width=1080" alt="" srcset="//inhabitliving.com/cdn/shop/files/Chrysalis-Fog.jpg?v=1731704811&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Chrysalis-Fog.jpg?v=1731704811&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Chrysalis-Fog.jpg?v=1731704811&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Chrysalis-Fog.jpg?v=1731704811&amp;width=900 900w, //inhabitliving.com/cdn/shop/files/Chrysalis-Fog.jpg?v=1731704811&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/chrysalis-harmony3d-acoustic-felt-wall-panelzepto-inhabit-988158.jpg?v=1731534414&amp;width=1000" alt="Harmony PET Felt 3D Panels - Chrysalis Harmony3D Acoustic Felt Wall PanelZepto - 2 - Inhabit" srcset="//inhabitliving.com/cdn/shop/files/chrysalis-harmony3d-acoustic-felt-wall-panelzepto-inhabit-988158.jpg?v=1731534414&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/chrysalis-harmony3d-acoustic-felt-wall-panelzepto-inhabit-988158.jpg?v=1731534414&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/chrysalis-harmony3d-acoustic-felt-wall-panelzepto-inhabit-988158.jpg?v=1731534414&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/chrysalis-harmony3d-acoustic-felt-wall-panelzepto-inhabit-988158.jpg?v=1731534414&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Chrysalis Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Chrysalis Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="8015879110842"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="facet-harmony-pet-felt-3d-panels"
    data-product-id="7153122345146"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/facet-harmony-pet-felt-3d-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/products/facet-harmony-pet-felt-3d-panels-inhabit-553132.jpg?v=1690918475&amp;width=1080" alt="Harmony PET Felt 3D Panels - Facet Harmony PET Felt 3D Panels - 3 - Inhabit" srcset="//inhabitliving.com/cdn/shop/products/facet-harmony-pet-felt-3d-panels-inhabit-553132.jpg?v=1690918475&amp;width=360 360w, //inhabitliving.com/cdn/shop/products/facet-harmony-pet-felt-3d-panels-inhabit-553132.jpg?v=1690918475&amp;width=540 540w, //inhabitliving.com/cdn/shop/products/facet-harmony-pet-felt-3d-panels-inhabit-553132.jpg?v=1690918475&amp;width=720 720w, //inhabitliving.com/cdn/shop/products/facet-harmony-pet-felt-3d-panels-inhabit-553132.jpg?v=1690918475&amp;width=900 900w, //inhabitliving.com/cdn/shop/products/facet-harmony-pet-felt-3d-panels-inhabit-553132.jpg?v=1690918475&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Facet--HarmonyGrayOmbre.jpg?v=1690918475&amp;width=1000" alt="" srcset="//inhabitliving.com/cdn/shop/files/Facet--HarmonyGrayOmbre.jpg?v=1690918475&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Facet--HarmonyGrayOmbre.jpg?v=1690918475&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Facet--HarmonyGrayOmbre.jpg?v=1690918475&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Facet--HarmonyGrayOmbre.jpg?v=1690918475&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Facet Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Facet Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7153122345146"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="halo-harmony3d-acoustic-felt-wall-panels"
    data-product-id="7195791098042"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/halo-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/products/halo-harmony-pet-felt-3d-panels-inhabit-472722.jpg?v=1672853618&amp;width=1080" alt="Harmony PET Felt 3D Panels - Halo Harmony PET Felt 3D Panels - 4 - Inhabit" srcset="//inhabitliving.com/cdn/shop/products/halo-harmony-pet-felt-3d-panels-inhabit-472722.jpg?v=1672853618&amp;width=360 360w, //inhabitliving.com/cdn/shop/products/halo-harmony-pet-felt-3d-panels-inhabit-472722.jpg?v=1672853618&amp;width=540 540w, //inhabitliving.com/cdn/shop/products/halo-harmony-pet-felt-3d-panels-inhabit-472722.jpg?v=1672853618&amp;width=720 720w, //inhabitliving.com/cdn/shop/products/halo-harmony-pet-felt-3d-panels-inhabit-472722.jpg?v=1672853618&amp;width=900 900w, //inhabitliving.com/cdn/shop/products/halo-harmony-pet-felt-3d-panels-inhabit-472722.jpg?v=1672853618&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/halo-harmony3d-acoustic-felt-wall-panels-inhabit-115318.jpg?v=1712055640&amp;width=1000" alt="Harmony PET Felt 3D Panels - Halo Harmony3D Acoustic Felt Wall Panels - 2 - Inhabit" srcset="//inhabitliving.com/cdn/shop/files/halo-harmony3d-acoustic-felt-wall-panels-inhabit-115318.jpg?v=1712055640&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/halo-harmony3d-acoustic-felt-wall-panels-inhabit-115318.jpg?v=1712055640&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/halo-harmony3d-acoustic-felt-wall-panels-inhabit-115318.jpg?v=1712055640&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/halo-harmony3d-acoustic-felt-wall-panels-inhabit-115318.jpg?v=1712055640&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Halo Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Halo Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7195791098042"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="drift-harmony3d-acoustic-felt-wall-panels"
    data-product-id="7153881710778"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/drift-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Drift-Fog.jpg?v=1731959330&amp;width=1080" alt="" srcset="//inhabitliving.com/cdn/shop/files/Drift-Fog.jpg?v=1731959330&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Drift-Fog.jpg?v=1731959330&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Drift-Fog.jpg?v=1731959330&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Drift-Fog.jpg?v=1731959330&amp;width=900 900w, //inhabitliving.com/cdn/shop/files/Drift-Fog.jpg?v=1731959330&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Drift-Close-Up-GraphiteFelt.jpg?v=1690918456&amp;width=1000" alt="" srcset="//inhabitliving.com/cdn/shop/files/Drift-Close-Up-GraphiteFelt.jpg?v=1690918456&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Drift-Close-Up-GraphiteFelt.jpg?v=1690918456&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Drift-Close-Up-GraphiteFelt.jpg?v=1690918456&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Drift-Close-Up-GraphiteFelt.jpg?v=1690918456&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Drift Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Drift Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7153881710778"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="origami-harmony3d-acoustic-felt-wall-panels"
    data-product-id="7192294031546"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/origami-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/products/origami-harmony-pet-felt-3d-panels-inhabit-796921.jpg?v=1690918588&amp;width=1080" alt="Harmony PET Felt 3D Panels - Origami Harmony PET Felt 3D Panels - 4 - Inhabit" srcset="//inhabitliving.com/cdn/shop/products/origami-harmony-pet-felt-3d-panels-inhabit-796921.jpg?v=1690918588&amp;width=360 360w, //inhabitliving.com/cdn/shop/products/origami-harmony-pet-felt-3d-panels-inhabit-796921.jpg?v=1690918588&amp;width=540 540w, //inhabitliving.com/cdn/shop/products/origami-harmony-pet-felt-3d-panels-inhabit-796921.jpg?v=1690918588&amp;width=720 720w, //inhabitliving.com/cdn/shop/products/origami-harmony-pet-felt-3d-panels-inhabit-796921.jpg?v=1690918588&amp;width=900 900w, //inhabitliving.com/cdn/shop/products/origami-harmony-pet-felt-3d-panels-inhabit-796921.jpg?v=1690918588&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Origami-Office-Scene-in-Graphite.jpg?v=1690918588&amp;width=1000" alt="" srcset="//inhabitliving.com/cdn/shop/files/Origami-Office-Scene-in-Graphite.jpg?v=1690918588&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Origami-Office-Scene-in-Graphite.jpg?v=1690918588&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Origami-Office-Scene-in-Graphite.jpg?v=1690918588&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Origami-Office-Scene-in-Graphite.jpg?v=1690918588&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Origami Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Origami Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7192294031546"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="architect-harmony3d-acoustic-felt-wall-panels"
    data-product-id="7251048366266"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/architect-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/products/architect-harmony-pet-felt-3d-panels-inhabit-984829.jpg?v=1690918294&amp;width=1080" alt="Harmony PET Felt 3D Panels - Architect Harmony PET Felt 3D Panels - 5 - Inhabit" srcset="//inhabitliving.com/cdn/shop/products/architect-harmony-pet-felt-3d-panels-inhabit-984829.jpg?v=1690918294&amp;width=360 360w, //inhabitliving.com/cdn/shop/products/architect-harmony-pet-felt-3d-panels-inhabit-984829.jpg?v=1690918294&amp;width=540 540w, //inhabitliving.com/cdn/shop/products/architect-harmony-pet-felt-3d-panels-inhabit-984829.jpg?v=1690918294&amp;width=720 720w, //inhabitliving.com/cdn/shop/products/architect-harmony-pet-felt-3d-panels-inhabit-984829.jpg?v=1690918294&amp;width=900 900w, //inhabitliving.com/cdn/shop/products/architect-harmony-pet-felt-3d-panels-inhabit-984829.jpg?v=1690918294&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Architect-office_fog-felt_020323.jpg?v=1690918294&amp;width=1000" alt="" srcset="//inhabitliving.com/cdn/shop/files/Architect-office_fog-felt_020323.jpg?v=1690918294&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Architect-office_fog-felt_020323.jpg?v=1690918294&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Architect-office_fog-felt_020323.jpg?v=1690918294&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Architect-office_fog-felt_020323.jpg?v=1690918294&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Architect Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Architect Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7251048366266"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="seesaw-harmony3d-acoustic-felt-wall-panels"
    data-product-id="7153884463290"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/seesaw-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Seesaw-Fog.jpg?v=1731963176&amp;width=1080" alt="" srcset="//inhabitliving.com/cdn/shop/files/Seesaw-Fog.jpg?v=1731963176&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Seesaw-Fog.jpg?v=1731963176&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Seesaw-Fog.jpg?v=1731963176&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Seesaw-Fog.jpg?v=1731963176&amp;width=900 900w, //inhabitliving.com/cdn/shop/files/Seesaw-Fog.jpg?v=1731963176&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Seesaw--Harmony-Restaurant.jpg?v=1690918660&amp;width=1000" alt="" srcset="//inhabitliving.com/cdn/shop/files/Seesaw--Harmony-Restaurant.jpg?v=1690918660&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Seesaw--Harmony-Restaurant.jpg?v=1690918660&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Seesaw--Harmony-Restaurant.jpg?v=1690918660&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Seesaw--Harmony-Restaurant.jpg?v=1690918660&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Seesaw Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Seesaw Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7153884463290"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="stitch-harmony3d-acoustic-felt-wall-panels"
    data-product-id="7153886068922"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/stitch-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Stitch-Fog.jpg?v=1732037196&amp;width=1080" alt="" srcset="//inhabitliving.com/cdn/shop/files/Stitch-Fog.jpg?v=1732037196&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Stitch-Fog.jpg?v=1732037196&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Stitch-Fog.jpg?v=1732037196&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Stitch-Fog.jpg?v=1732037196&amp;width=900 900w, //inhabitliving.com/cdn/shop/files/Stitch-Fog.jpg?v=1732037196&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/products/stitch-harmony3d-acoustic-felt-wall-panels-inhabit-898960.jpg?v=1690992918&amp;width=1000" alt="Harmony PET Felt 3D Panels - Stitch Harmony3D Acoustic Felt Wall Panels - 2 - Inhabit" srcset="//inhabitliving.com/cdn/shop/products/stitch-harmony3d-acoustic-felt-wall-panels-inhabit-898960.jpg?v=1690992918&amp;width=360 360w, //inhabitliving.com/cdn/shop/products/stitch-harmony3d-acoustic-felt-wall-panels-inhabit-898960.jpg?v=1690992918&amp;width=540 540w, //inhabitliving.com/cdn/shop/products/stitch-harmony3d-acoustic-felt-wall-panels-inhabit-898960.jpg?v=1690992918&amp;width=720 720w, //inhabitliving.com/cdn/shop/products/stitch-harmony3d-acoustic-felt-wall-panels-inhabit-898960.jpg?v=1690992918&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Stitch Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Stitch Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7153886068922"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="cirque-harmony3d-acoustic-felt-wall-panels"
    data-product-id="7190026256570"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/cirque-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/products/cirque-harmony-pet-felt-3d-panels-inhabit-754224.jpg?v=1689171361&amp;width=1080" alt="Harmony PET Felt 3D Panels - Cirque Harmony PET Felt 3D Panels - 4 - Inhabit" srcset="//inhabitliving.com/cdn/shop/products/cirque-harmony-pet-felt-3d-panels-inhabit-754224.jpg?v=1689171361&amp;width=360 360w, //inhabitliving.com/cdn/shop/products/cirque-harmony-pet-felt-3d-panels-inhabit-754224.jpg?v=1689171361&amp;width=540 540w, //inhabitliving.com/cdn/shop/products/cirque-harmony-pet-felt-3d-panels-inhabit-754224.jpg?v=1689171361&amp;width=720 720w, //inhabitliving.com/cdn/shop/products/cirque-harmony-pet-felt-3d-panels-inhabit-754224.jpg?v=1689171361&amp;width=900 900w, //inhabitliving.com/cdn/shop/products/cirque-harmony-pet-felt-3d-panels-inhabit-754224.jpg?v=1689171361&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/cirque-harmony3d-acoustic-felt-wall-panels-inhabit-951745.jpg?v=1738077174&amp;width=1000" alt="Harmony PET Felt 3D Panels - Cirque Harmony3D Acoustic Felt Wall Panels - 2 - Inhabit" srcset="//inhabitliving.com/cdn/shop/files/cirque-harmony3d-acoustic-felt-wall-panels-inhabit-951745.jpg?v=1738077174&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/cirque-harmony3d-acoustic-felt-wall-panels-inhabit-951745.jpg?v=1738077174&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/cirque-harmony3d-acoustic-felt-wall-panels-inhabit-951745.jpg?v=1738077174&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/cirque-harmony3d-acoustic-felt-wall-panels-inhabit-951745.jpg?v=1738077174&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Cirque Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Cirque Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7190026256570"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="loop-harmony-pet-felt-3d-panels"
    data-product-id="7196050653370"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/loop-harmony-pet-felt-3d-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/products/loop-harmony-pet-felt-3d-panels-inhabit-307571.jpg?v=1690918514&amp;width=1080" alt="Harmony PET Felt 3D Panels - Loop Harmony PET Felt 3D Panels - 4 - Inhabit" srcset="//inhabitliving.com/cdn/shop/products/loop-harmony-pet-felt-3d-panels-inhabit-307571.jpg?v=1690918514&amp;width=360 360w, //inhabitliving.com/cdn/shop/products/loop-harmony-pet-felt-3d-panels-inhabit-307571.jpg?v=1690918514&amp;width=540 540w, //inhabitliving.com/cdn/shop/products/loop-harmony-pet-felt-3d-panels-inhabit-307571.jpg?v=1690918514&amp;width=720 720w, //inhabitliving.com/cdn/shop/products/loop-harmony-pet-felt-3d-panels-inhabit-307571.jpg?v=1690918514&amp;width=900 900w, //inhabitliving.com/cdn/shop/products/loop-harmony-pet-felt-3d-panels-inhabit-307571.jpg?v=1690918514&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Loop-Commercial-Scene-Seafoam.jpg?v=1690918514&amp;width=1000" alt="" srcset="//inhabitliving.com/cdn/shop/files/Loop-Commercial-Scene-Seafoam.jpg?v=1690918514&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Loop-Commercial-Scene-Seafoam.jpg?v=1690918514&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Loop-Commercial-Scene-Seafoam.jpg?v=1690918514&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Loop-Commercial-Scene-Seafoam.jpg?v=1690918514&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Loop Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Loop Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7196050653370"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="rend-harmony3d-acoustic-felt-wall-panels"
    data-product-id="7196129722554"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/rend-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/products/rend-harmony-pet-felt-3d-panels-inhabit-200858.jpg?v=1690918630&amp;width=1080" alt="Harmony PET Felt 3D Panels - Rend Harmony PET Felt 3D Panels - 4 - Inhabit" srcset="//inhabitliving.com/cdn/shop/products/rend-harmony-pet-felt-3d-panels-inhabit-200858.jpg?v=1690918630&amp;width=360 360w, //inhabitliving.com/cdn/shop/products/rend-harmony-pet-felt-3d-panels-inhabit-200858.jpg?v=1690918630&amp;width=540 540w, //inhabitliving.com/cdn/shop/products/rend-harmony-pet-felt-3d-panels-inhabit-200858.jpg?v=1690918630&amp;width=720 720w, //inhabitliving.com/cdn/shop/products/rend-harmony-pet-felt-3d-panels-inhabit-200858.jpg?v=1690918630&amp;width=900 900w, //inhabitliving.com/cdn/shop/products/rend-harmony-pet-felt-3d-panels-inhabit-200858.jpg?v=1690918630&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Rend-Office-Graphite.jpg?v=1690918630&amp;width=1000" alt="" srcset="//inhabitliving.com/cdn/shop/files/Rend-Office-Graphite.jpg?v=1690918630&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Rend-Office-Graphite.jpg?v=1690918630&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Rend-Office-Graphite.jpg?v=1690918630&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Rend-Office-Graphite.jpg?v=1690918630&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Rend Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Rend Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7196129722554"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="cubit-harmony3d-acoustic-felt-wall-panels"
    data-product-id="7252368425146"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/cubit-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Cubit-Fog.jpg?v=1732050970&amp;width=1080" alt="" srcset="//inhabitliving.com/cdn/shop/files/Cubit-Fog.jpg?v=1732050970&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Cubit-Fog.jpg?v=1732050970&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Cubit-Fog.jpg?v=1732050970&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Cubit-Fog.jpg?v=1732050970&amp;width=900 900w, //inhabitliving.com/cdn/shop/files/Cubit-Fog.jpg?v=1732050970&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Cubit_HarmonyFelt-Office.jpg?v=1690918376&amp;width=1000" alt="" srcset="//inhabitliving.com/cdn/shop/files/Cubit_HarmonyFelt-Office.jpg?v=1690918376&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Cubit_HarmonyFelt-Office.jpg?v=1690918376&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Cubit_HarmonyFelt-Office.jpg?v=1690918376&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Cubit_HarmonyFelt-Office.jpg?v=1690918376&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Cubit Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Cubit Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7252368425146"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="split-harmony3d-acoustic-felt-wall-panels"
    data-product-id="7252378812602"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/split-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/products/split-harmony-pet-felt-3d-panels-inhabit-923817.jpg?v=1689172376&amp;width=1080" alt="Harmony PET Felt 3D Panels - Split Harmony PET Felt 3D Panels - 4 - Inhabit" srcset="//inhabitliving.com/cdn/shop/products/split-harmony-pet-felt-3d-panels-inhabit-923817.jpg?v=1689172376&amp;width=360 360w, //inhabitliving.com/cdn/shop/products/split-harmony-pet-felt-3d-panels-inhabit-923817.jpg?v=1689172376&amp;width=540 540w, //inhabitliving.com/cdn/shop/products/split-harmony-pet-felt-3d-panels-inhabit-923817.jpg?v=1689172376&amp;width=720 720w, //inhabitliving.com/cdn/shop/products/split-harmony-pet-felt-3d-panels-inhabit-923817.jpg?v=1689172376&amp;width=900 900w, //inhabitliving.com/cdn/shop/products/split-harmony-pet-felt-3d-panels-inhabit-923817.jpg?v=1689172376&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/split-harmony3d-acoustic-felt-wall-panels-inhabit-355399.jpg?v=1732111684&amp;width=1000" alt="Harmony PET Felt 3D Panels - Split Harmony3D Acoustic Felt Wall Panels - 2 - Inhabit" srcset="//inhabitliving.com/cdn/shop/files/split-harmony3d-acoustic-felt-wall-panels-inhabit-355399.jpg?v=1732111684&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/split-harmony3d-acoustic-felt-wall-panels-inhabit-355399.jpg?v=1732111684&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/split-harmony3d-acoustic-felt-wall-panels-inhabit-355399.jpg?v=1732111684&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/split-harmony3d-acoustic-felt-wall-panels-inhabit-355399.jpg?v=1732111684&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Split Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Split Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7252378812602"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
          



<div
  class="
    grid-item grid-product  grid-product-image-breathing-room--false
    
    
      grid-product--gridlines overlay
    
  "
>
  <div
    class="product-grid-item"
    data-product-handle="tidal-harmony3d-acoustic-felt-wall-panels"
    data-product-id="7192360288442"
    data-product-grid-item
  >
    <div class="grid-item__content"><a href="/collections/harmony-acoustic-pet-felt-3d-panels/products/tidal-harmony3d-acoustic-felt-wall-panels" class="grid-item__link">
        <div class="grid-product__image-wrap">
          <div class="grid-product__tags"><div class="grid-product__tag grid-product__tag--custom">
                  New Colors
                </div></div><div
              
                style="height: 0; padding-bottom: 100.0%;"
              
            >


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/products/tidal-harmony-pet-felt-3d-panels-inhabit-525970.jpg?v=1666640954&amp;width=1080" alt="Harmony PET Felt 3D Panels - Tidal Harmony PET Felt 3D Panels - 4 - Inhabit" srcset="//inhabitliving.com/cdn/shop/products/tidal-harmony-pet-felt-3d-panels-inhabit-525970.jpg?v=1666640954&amp;width=360 360w, //inhabitliving.com/cdn/shop/products/tidal-harmony-pet-felt-3d-panels-inhabit-525970.jpg?v=1666640954&amp;width=540 540w, //inhabitliving.com/cdn/shop/products/tidal-harmony-pet-felt-3d-panels-inhabit-525970.jpg?v=1666640954&amp;width=720 720w, //inhabitliving.com/cdn/shop/products/tidal-harmony-pet-felt-3d-panels-inhabit-525970.jpg?v=1666640954&amp;width=900 900w, //inhabitliving.com/cdn/shop/products/tidal-harmony-pet-felt-3d-panels-inhabit-525970.jpg?v=1666640954&amp;width=1080 1080w" width="1080" height="1080.0" loading="lazy" class="grid-product__image image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div><div class="grid-product__secondary-image small--hide">


<is-land on:visible data-image-type=""><img src="//inhabitliving.com/cdn/shop/files/Tidal--Harmony-Graphite.jpg?v=1690918716&amp;width=1000" alt="" srcset="//inhabitliving.com/cdn/shop/files/Tidal--Harmony-Graphite.jpg?v=1690918716&amp;width=360 360w, //inhabitliving.com/cdn/shop/files/Tidal--Harmony-Graphite.jpg?v=1690918716&amp;width=540 540w, //inhabitliving.com/cdn/shop/files/Tidal--Harmony-Graphite.jpg?v=1690918716&amp;width=720 720w, //inhabitliving.com/cdn/shop/files/Tidal--Harmony-Graphite.jpg?v=1690918716&amp;width=1000 1000w" width="1000" height="1000.0" loading="lazy" class="image-style--square
 image-element" sizes="30vw" data-animate="fadein">
  

  
  
</is-land>
</div></div>

        <div class="grid-item__meta">
          <div class="grid-item__meta-main">

                 <div class="grid-product__colors">
                  <img style="max-width: 320px;" src="//inhabitliving.com/cdn/shop/files/Zepto_Collectionart.jpg?v=3276728842289656550" alt="Tidal Harmony3D Acoustic Felt Wall Panels" width="" height="">
                 </div>
              

            <div class="grid-product__title">Tidal Harmony3D Acoustic Felt Wall Panels</div></div>
          <div class="grid-item__meta-secondary">
             






<!-- Display the prices -->
<span class="product__price">
 <b>From</b>
  
   $49.00
  
  <s
    
      style="display: none;"
    
  > - </s>
</span>


  
    <span
      class="product__unit-price zepto_final_price" 
      current-variant-id="" 
      data-variant-id=""
      data-product-id="7192360288442"
      data-product-sqft="3.36"
    >
      From: $14.58/PER SQ.FT</span>
  




  
    
    
    
    

    
      <div
        data-unit-price-wrapper
        class="product__unit-price hide  "
      >
        
        
<span data-unit-price>
<span aria-hidden="true">$1.83</span>
<span class="visually-hidden">$1.83</span>
</span>/PER SQ.FT
      </div>
    
  




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

        
        </div>
       
      
   
</div>
      </div>
    </div></div>
  </item-grid>

  <template data-island>
    <script type="module">
      import 'components/item-grid'
    </script>
  </template>
</is-land></div>
</section-main-content>

<script type="application/ld+json">
  {
    "@context": "http://schema.org",
    "@type": "CollectionPage",
    
      "description": "Harmony3D Acoustic Felt Wall Panels from Inhabit® are lightweight acoustic 3D wall panels that work through pattern repeats creating large-scale dimensional walls. A cinch to install, customize and made from PET felt with a minimum of 60% recycled content.\nDeveloped to provide a beautiful aesthetic solution to tamping down ambient noise reverberation in a variety of environments. ",
    
    
      
      "image": {
        "@type": "ImageObject",
        "height": 300,
        "url": "https:\/\/inhabitliving.com\/cdn\/shop\/collections\/harmony-acoustic-pet-felt-3d-panels-987087.jpg?v=1664239229\u0026width=2000",
        "width": 2000
      },
    
    "name": "Harmony3D Acoustic Felt Wall Panels"
  }
</script>

</div><div id="shopify-section-template--17917130768570__recently-viewed" class="shopify-section recently-viewed__section">
<is-land on:idle>
  <recently-viewed
    data-subsection
    data-section-id="template--17917130768570__recently-viewed"
    data-section-type="recently-viewed"
    data-product-id=""
    data-max-products="4"
  >
    <div class="index-section index-section--sub-product">
      <div class="page-width">
        <header class="section-header">
          <div class="h3 section-header__title">Recently viewed</div>
        </header>
      </div>

      <div class="page-width page-width--flush-small">
        <div id="RecentlyViewed-template--17917130768570__recently-viewed"></div>
      </div>
    </div>
  </recently-viewed>

  <template data-island>
    <script type="module">
      import 'components/section-recently-viewed'
    </script>
  </template>
</is-land>

</div>
        </main><!-- BEGIN sections: footer-group -->
<div id="shopify-section-sections--17917123756218__footer" class="shopify-section shopify-section-group-footer-group">
<div class="footer__section footer__section--border">
    <div class="page-width">
      <div class="footer__newsletter"><div class="footer__subscribe rte rte--nomargin clearfix">
            <p>Subscribe today to hear first about our new products and sales</p>
          </div>
<form method="post" action="/contact#newsletter-sections--17917123756218__footer" id="newsletter-sections--17917123756218__footer" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer" /><input type="hidden" name="utf8" value="✓" />
<label for="Email-sections--17917123756218__footer" class="visually-hidden">Enter your email</label>
    <label for="newsletter-form-submit-sections--17917123756218__footer" class="visually-hidden">Subscribe</label>
    <input type="hidden" name="contact[tags]" value="prospect,newsletter">
    <input type="hidden" name="contact[context]" value="footer">
    <div class="input-group newsletter__input-group">
      <input
        type="email"
        value=""
        placeholder="Enter your email"
        name="contact[email]"
        id="Email-sections--17917123756218__footer"
        class="input-group-field newsletter__input"
        autocorrect="off"
        autocapitalize="off"
        required
      >
      <div class="input-group-btn">
        <button
          type="submit"
          id="newsletter-form-submit-sections--17917123756218__footer"
          class="btn"
          name="commit"
          aria-label="Subscribe"
        >
          <span class="form__submit--large">Subscribe</span>
          <span class="form__submit--small">
            



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-arrow-right" viewbox="0 0 50 15" fill="currentColor" width="20" height="20">
    <path d="M0 9.63V5.38h35V0l15 7.5L35 15V9.63Z"/>
    </svg>

          </span>
        </button>
      </div>
    </div></form>
</div>
    </div>
  </div>
<div id="FooterMobileNavWrap" class="footer__section footer__section--border medium-up--hide">
    <div id="FooterMobileNav" class="page-width"></div>
  </div><is-land on:visible>
  <footer-section class="site-footer" data-section-id="sections--17917123756218__footer" data-section-type="footer-section">
    <div
      id="FooterMenus"
      class="footer__section footer__section--menus "
    >
      <div class="page-width">
        <div class="footer__blocks"><div
              class="footer__block footer__block--menu"
              data-type="menu"
              
            >
<h2 class="footer__title h4">
  Company
</h2>

<ul class="footer__menu"><li>
      <a href="/pages/about-us">Our Story</a>
    </li><li>
      <a href="/pages/how-to-install-3d-wall-panels-paint-ready-wall-flats">How to Install Wall Flat 3D Wall Panels</a>
    </li><li>
      <a href="/pages/privacy-policy">Privacy Policy</a>
    </li><li>
      <a href="/pages/ccpa-opt-out">Do not sell or share my personal information<img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAxNCI+IDxzdHlsZT4uc3Qwe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO2ZpbGw6I0ZGRn0uc3Qxe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO2ZpbGw6IzA2Rn0uc3Qye2ZpbGw6I0ZGRn0uc3Qze2ZpbGw6IzA2Rn08L3N0eWxlPiA8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNy40IDEyLjhoNi44bDMuMS0xMS42SDcuNEM0LjIgMS4yIDEuNiAzLjggMS42IDdzMi42IDUuOCA1LjggNS44eiIvPiA8cGF0aCBjbGFzcz0ic3QxIiBkPSJNMjIuNiAwSDcuNEMzLjUgMCAuNCAzLjEuNCA3czMuMSA3IDcgN2gxNS4yYzMuOSAwIDctMy4xIDctN3MtMy4xLTctNy03ek0xLjYgN2MwLTMuMiAyLjYtNS44IDUuOC01LjhoOS45bC0zLjEgMTEuNkg3LjRDNC4yIDEyLjggMS42IDEwLjIgMS42IDd6Ii8+IDxwYXRoIGNsYXNzPSJzdDIiIGQ9Ik0yNC42IDRjLjIuMi4yLjYgMCAuOEwyMi41IDdsMi4yIDIuMmMuMi4yLjIuNiAwIC44LS4yLjItLjYuMi0uOCAwbC0yLjItMi4yTDE5LjUgMTBjLS4yLjItLjYuMi0uOCAwLS4yLS4yLS4yLS42IDAtLjhMMjAuOCA3bC0yLjItMi4yYy0uMi0uMi0uMi0uNiAwLS44LjItLjIuNi0uMi44IDBsMi4yIDIuMkwyMy44IDRjLjItLjIuNi0uMi44IDB6Ii8+IDxwYXRoIGNsYXNzPSJzdDMiIGQ9Ik0xMi43IDQuMWMuMi4yLjMuNi4xLjhMOC42IDkuOGMtLjEuMS0uMi4yLS4zLjItLjIuMS0uNS4xLS43LS4xTDUuNCA3LjdjLS4yLS4yLS4yLS42IDAtLjguMi0uMi42LS4yLjggMEw4IDguNmwzLjgtNC41Yy4yLS4yLjYtLjIuOSAweiIvPiA8L3N2Zz4=" alt="California Consumer Privacy Act (CCPA) Opt-Out Icon" role="presentation" class="shopify-dns-link-icon" style="margin-left:.25em;height:.7em;vertical-align:middle;display: inline; width: auto;"></a>
    </li></ul>
</div><div
              class="footer__block footer__block--menu"
              data-type="menu"
              
            >
<h2 class="footer__title h4">
  Customer Service
</h2>

<ul class="footer__menu"><li>
      <a href="/pages/contactus">Contact Us</a>
    </li><li>
      <a href="/pages/faqs">Customer Service Questions</a>
    </li><li>
      <a href="/pages/faqs-harmony-pet-felt">Harmony PET Felt FAQs</a>
    </li><li>
      <a href="/pages/trade-application">Trade Program</a>
    </li><li>
      <a href="/apps/tracktor/track">Order Tracking</a>
    </li></ul>
</div><div
              class="footer__block footer__block--contact"
              data-type="contact"
              
            >
<div class="footer__mobile-section">
  <div class="footer__blocks--mobile">
    <div class="footer__block--mobile">
      <h2 class="footer__title h4">
        Get in touch
      </h2>

      <ul class="footer__menu footer__menu--underline"><li>
            <a href="/pages/contactus">
              <span class="icon-and-text">
                



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-email icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="M63 52H1V12h62ZM1 12l25.68 24h9.72L63 12M21.82 31.68 1.56 51.16m60.78.78L41.27 31.68" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

                <span>Email us</span>
              </span>
            </a>
          </li></ul>
    </div><div class="footer__block--mobile">
        <div class="footer__title">
          Follow us
        </div>

        
<ul class="no-bullets social-icons footer__social">
    
<li>
  <a
    target="_blank"
    rel="noopener"
    href="https://www.facebook.com/inhabitliving"
    title="Inhabit on Facebook"
    
  >



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-facebook" viewbox="0 0 14222 14222" fill="currentColor" width="20" height="20">
    <path d="M14222 7112c0 3549.352-2600.418 6491.344-6000 7024.72V9168h1657l315-2056H8222V5778c0-562 275-1111 1159-1111h897V2917s-814-139-1592-139c-1624 0-2686 984-2686 2767v1567H4194v2056h1806v4968.72C2600.418 13603.344 0 10661.352 0 7112 0 3184.703 3183.703 1 7111 1s7111 3183.703 7111 7111m-8222 7025c362 57 733 86 1111 86-377.945 0-749.003-29.485-1111-86.28Zm2222 0v-.28a7107.458 7107.458 0 0 1-167.717 24.267A7407.158 7407.158 0 0 0 8222 14137m-167.717 23.987C7745.664 14201.89 7430.797 14223 7111 14223c319.843 0 634.675-21.479 943.283-62.013"/>
    </svg>
<span class="icon__fallback-text visually-hidden">Facebook</span>
  </a>
</li>

<li>
  <a
    target="_blank"
    rel="noopener"
    href="https://www.pinterest.com/inhabitliving"
    title="Inhabit on Pinterest"
    
  >



<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-pinterest" viewbox="0 0 256 256" fill="currentColor" width="20" height="20">
    <path d="M0 128.002c0 52.414 31.518 97.442 76.619 117.239-.36-8.938-.064-19.668 2.228-29.393 2.461-10.391 16.47-69.748 16.47-69.748s-4.089-8.173-4.089-20.252c0-18.969 10.994-33.136 24.686-33.136 11.643 0 17.268 8.745 17.268 19.217 0 11.704-7.465 29.211-11.304 45.426-3.207 13.578 6.808 24.653 20.203 24.653 24.252 0 40.586-31.149 40.586-68.055 0-28.054-18.895-49.052-53.262-49.052-38.828 0-63.017 28.956-63.017 61.3 0 11.152 3.288 19.016 8.438 25.106 2.368 2.797 2.697 3.922 1.84 7.134-.614 2.355-2.024 8.025-2.608 10.272-.852 3.242-3.479 4.401-6.409 3.204-17.884-7.301-26.213-26.886-26.213-48.902 0-36.361 30.666-79.961 91.482-79.961 48.87 0 81.035 35.364 81.035 73.325 0 50.213-27.916 87.726-69.066 87.726-13.819 0-26.818-7.47-31.271-15.955 0 0-7.431 29.492-9.005 35.187-2.714 9.869-8.026 19.733-12.883 27.421a127.897 127.897 0 0 0 36.277 5.249c70.684 0 127.996-57.309 127.996-128.005C256.001 57.309 198.689 0 128.005 0 57.314 0 0 57.309 0 128.002"/>
    </svg>
<span class="icon__fallback-text visually-hidden">Pinterest</span>
  </a>
</li>

<li>
  <a
    target="_blank"
    rel="noopener"
    href="https://instagram.com/inhabitliving"
    title="Inhabit on Instagram"
    
  >



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-instagram" viewbox="0 0 32 32" fill="currentColor" width="20" height="20">
    <path d="M16 3.094c4.206 0 4.7.019 6.363.094 1.538.069 2.369.325 2.925.544.738.287 1.262.625 1.813 1.175s.894 1.075 1.175 1.813c.212.556.475 1.387.544 2.925.075 1.662.094 2.156.094 6.363s-.019 4.7-.094 6.363c-.069 1.538-.325 2.369-.544 2.925-.288.738-.625 1.262-1.175 1.813s-1.075.894-1.813 1.175c-.556.212-1.387.475-2.925.544-1.663.075-2.156.094-6.363.094s-4.7-.019-6.363-.094c-1.537-.069-2.369-.325-2.925-.544-.737-.288-1.263-.625-1.813-1.175s-.894-1.075-1.175-1.813c-.212-.556-.475-1.387-.544-2.925-.075-1.663-.094-2.156-.094-6.363s.019-4.7.094-6.363c.069-1.537.325-2.369.544-2.925.287-.737.625-1.263 1.175-1.813s1.075-.894 1.813-1.175c.556-.212 1.388-.475 2.925-.544 1.662-.081 2.156-.094 6.363-.094zm0-2.838c-4.275 0-4.813.019-6.494.094-1.675.075-2.819.344-3.819.731-1.037.4-1.913.944-2.788 1.819S1.486 4.656 1.08 5.688c-.387 1-.656 2.144-.731 3.825-.075 1.675-.094 2.213-.094 6.488s.019 4.813.094 6.494c.075 1.675.344 2.819.731 3.825.4 1.038.944 1.913 1.819 2.788s1.756 1.413 2.788 1.819c1 .387 2.144.656 3.825.731s2.213.094 6.494.094 4.813-.019 6.494-.094c1.675-.075 2.819-.344 3.825-.731 1.038-.4 1.913-.944 2.788-1.819s1.413-1.756 1.819-2.788c.387-1 .656-2.144.731-3.825s.094-2.212.094-6.494-.019-4.813-.094-6.494c-.075-1.675-.344-2.819-.731-3.825-.4-1.038-.944-1.913-1.819-2.788s-1.756-1.413-2.788-1.819c-1-.387-2.144-.656-3.825-.731C20.812.275 20.275.256 16 .256z"/>
    <path d="M16 7.912a8.088 8.088 0 0 0 0 16.175c4.463 0 8.087-3.625 8.087-8.088s-3.625-8.088-8.088-8.088zm0 13.338a5.25 5.25 0 1 1 0-10.5 5.25 5.25 0 1 1 0 10.5M26.294 7.594a1.887 1.887 0 1 1-3.774.002 1.887 1.887 0 0 1 3.774-.003z"/>
    </svg>
<span class="icon__fallback-text visually-hidden">Instagram</span>
  </a>
</li>

  </ul>
      </div></div>
</div>
</div><div
              class="footer__block footer__block--payment"
              data-type="payment"
              
            >
<div class="footer__mobile-section">
  <div class="footer__blocks--mobile"><div class="footer__block--mobile">
          <h2 class="footer__title h4">
            We accept
          </h2>

          <ul class="inline-list payment-icons"><li class="icon--payment">
                <svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-amazon"><title id="pi-amazon">Amazon</title><path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000" fill-rule="nonzero" opacity=".07"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#FFF" fill-rule="nonzero"/><path d="M25.26 16.23c-1.697 1.48-4.157 2.27-6.275 2.27-2.97 0-5.644-1.3-7.666-3.463-.16-.17-.018-.402.173-.27 2.183 1.504 4.882 2.408 7.67 2.408 1.88 0 3.95-.46 5.85-1.416.288-.145.53.222.248.47v.001zm.706-.957c-.216-.328-1.434-.155-1.98-.078-.167.024-.193-.148-.043-.27.97-.81 2.562-.576 2.748-.305.187.272-.047 2.16-.96 3.063-.14.138-.272.064-.21-.12.205-.604.664-1.96.446-2.29h-.001z" fill="#F90" fill-rule="nonzero"/><path d="M21.814 15.291c-.574-.498-.676-.73-.993-1.205-.947 1.012-1.618 1.315-2.85 1.315-1.453 0-2.587-.938-2.587-2.818 0-1.467.762-2.467 1.844-2.955.94-.433 2.25-.51 3.25-.628v-.235c0-.43.033-.94-.208-1.31-.212-.333-.616-.47-.97-.47-.66 0-1.25.353-1.392 1.085-.03.163-.144.323-.3.33l-1.677-.187c-.14-.033-.296-.153-.257-.38.386-2.125 2.223-2.766 3.867-2.766.84 0 1.94.234 2.604.9.842.82.762 1.918.762 3.11v2.818c0 .847.335 1.22.65 1.676.113.164.138.36-.003.482-.353.308-.98.88-1.326 1.2a.367.367 0 0 1-.414.038zm-1.659-2.533c.34-.626.323-1.214.323-1.918v-.392c-1.25 0-2.57.28-2.57 1.82 0 .782.386 1.31 1.05 1.31.487 0 .922-.312 1.197-.82z" fill="#221F1F"/></svg>

              </li><li class="icon--payment">
                <svg xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-american_express" viewBox="0 0 38 24" width="38" height="24"><title id="pi-american_express">American Express</title><path fill="#000" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3Z" opacity=".07"/><path fill="#006FCF" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32Z"/><path fill="#FFF" d="M22.012 19.936v-8.421L37 11.528v2.326l-1.732 1.852L37 17.573v2.375h-2.766l-1.47-1.622-1.46 1.628-9.292-.02Z"/><path fill="#006FCF" d="M23.013 19.012v-6.57h5.572v1.513h-3.768v1.028h3.678v1.488h-3.678v1.01h3.768v1.531h-5.572Z"/><path fill="#006FCF" d="m28.557 19.012 3.083-3.289-3.083-3.282h2.386l1.884 2.083 1.89-2.082H37v.051l-3.017 3.23L37 18.92v.093h-2.307l-1.917-2.103-1.898 2.104h-2.321Z"/><path fill="#FFF" d="M22.71 4.04h3.614l1.269 2.881V4.04h4.46l.77 2.159.771-2.159H37v8.421H19l3.71-8.421Z"/><path fill="#006FCF" d="m23.395 4.955-2.916 6.566h2l.55-1.315h2.98l.55 1.315h2.05l-2.904-6.566h-2.31Zm.25 3.777.875-2.09.873 2.09h-1.748Z"/><path fill="#006FCF" d="M28.581 11.52V4.953l2.811.01L32.84 9l1.456-4.046H37v6.565l-1.74.016v-4.51l-1.644 4.494h-1.59L30.35 7.01v4.51h-1.768Z"/></svg>

              </li><li class="icon--payment">
                <svg version="1.1" xmlns="http://www.w3.org/2000/svg" role="img" x="0" y="0" width="38" height="24" viewBox="0 0 165.521 105.965" xml:space="preserve" aria-labelledby="pi-apple_pay"><title id="pi-apple_pay">Apple Pay</title><path fill="#000" d="M150.698 0H14.823c-.566 0-1.133 0-1.698.003-.477.004-.953.009-1.43.022-1.039.028-2.087.09-3.113.274a10.51 10.51 0 0 0-2.958.975 9.932 9.932 0 0 0-4.35 4.35 10.463 10.463 0 0 0-.975 2.96C.113 9.611.052 10.658.024 11.696a70.22 70.22 0 0 0-.022 1.43C0 13.69 0 14.256 0 14.823v76.318c0 .567 0 1.132.002 1.699.003.476.009.953.022 1.43.028 1.036.09 2.084.275 3.11a10.46 10.46 0 0 0 .974 2.96 9.897 9.897 0 0 0 1.83 2.52 9.874 9.874 0 0 0 2.52 1.83c.947.483 1.917.79 2.96.977 1.025.183 2.073.245 3.112.273.477.011.953.017 1.43.02.565.004 1.132.004 1.698.004h135.875c.565 0 1.132 0 1.697-.004.476-.002.952-.009 1.431-.02 1.037-.028 2.085-.09 3.113-.273a10.478 10.478 0 0 0 2.958-.977 9.955 9.955 0 0 0 4.35-4.35c.483-.947.789-1.917.974-2.96.186-1.026.246-2.074.274-3.11.013-.477.02-.954.022-1.43.004-.567.004-1.132.004-1.699V14.824c0-.567 0-1.133-.004-1.699a63.067 63.067 0 0 0-.022-1.429c-.028-1.038-.088-2.085-.274-3.112a10.4 10.4 0 0 0-.974-2.96 9.94 9.94 0 0 0-4.35-4.35A10.52 10.52 0 0 0 156.939.3c-1.028-.185-2.076-.246-3.113-.274a71.417 71.417 0 0 0-1.431-.022C151.83 0 151.263 0 150.698 0z" /><path fill="#FFF" d="M150.698 3.532l1.672.003c.452.003.905.008 1.36.02.793.022 1.719.065 2.583.22.75.135 1.38.34 1.984.648a6.392 6.392 0 0 1 2.804 2.807c.306.6.51 1.226.645 1.983.154.854.197 1.783.218 2.58.013.45.019.9.02 1.36.005.557.005 1.113.005 1.671v76.318c0 .558 0 1.114-.004 1.682-.002.45-.008.9-.02 1.35-.022.796-.065 1.725-.221 2.589a6.855 6.855 0 0 1-.645 1.975 6.397 6.397 0 0 1-2.808 2.807c-.6.306-1.228.511-1.971.645-.881.157-1.847.2-2.574.22-.457.01-.912.017-1.379.019-.555.004-1.113.004-1.669.004H14.801c-.55 0-1.1 0-1.66-.004a74.993 74.993 0 0 1-1.35-.018c-.744-.02-1.71-.064-2.584-.22a6.938 6.938 0 0 1-1.986-.65 6.337 6.337 0 0 1-1.622-1.18 6.355 6.355 0 0 1-1.178-1.623 6.935 6.935 0 0 1-.646-1.985c-.156-.863-.2-1.788-.22-2.578a66.088 66.088 0 0 1-.02-1.355l-.003-1.327V14.474l.002-1.325a66.7 66.7 0 0 1 .02-1.357c.022-.792.065-1.717.222-2.587a6.924 6.924 0 0 1 .646-1.981c.304-.598.7-1.144 1.18-1.623a6.386 6.386 0 0 1 1.624-1.18 6.96 6.96 0 0 1 1.98-.646c.865-.155 1.792-.198 2.586-.22.452-.012.905-.017 1.354-.02l1.677-.003h135.875" /><g><g><path fill="#000" d="M43.508 35.77c1.404-1.755 2.356-4.112 2.105-6.52-2.054.102-4.56 1.355-6.012 3.112-1.303 1.504-2.456 3.959-2.156 6.266 2.306.2 4.61-1.152 6.063-2.858" /><path fill="#000" d="M45.587 39.079c-3.35-.2-6.196 1.9-7.795 1.9-1.6 0-4.049-1.8-6.698-1.751-3.447.05-6.645 2-8.395 5.1-3.598 6.2-.95 15.4 2.55 20.45 1.699 2.5 3.747 5.25 6.445 5.151 2.55-.1 3.549-1.65 6.647-1.65 3.097 0 3.997 1.65 6.696 1.6 2.798-.05 4.548-2.5 6.247-5 1.95-2.85 2.747-5.6 2.797-5.75-.05-.05-5.396-2.101-5.446-8.251-.05-5.15 4.198-7.6 4.398-7.751-2.399-3.548-6.147-3.948-7.447-4.048" /></g><g><path fill="#000" d="M78.973 32.11c7.278 0 12.347 5.017 12.347 12.321 0 7.33-5.173 12.373-12.529 12.373h-8.058V69.62h-5.822V32.11h14.062zm-8.24 19.807h6.68c5.07 0 7.954-2.729 7.954-7.46 0-4.73-2.885-7.434-7.928-7.434h-6.706v14.894z" /><path fill="#000" d="M92.764 61.847c0-4.809 3.665-7.564 10.423-7.98l7.252-.442v-2.08c0-3.04-2.001-4.704-5.562-4.704-2.938 0-5.07 1.507-5.51 3.82h-5.252c.157-4.86 4.731-8.395 10.918-8.395 6.654 0 10.995 3.483 10.995 8.89v18.663h-5.38v-4.497h-.13c-1.534 2.937-4.914 4.782-8.579 4.782-5.406 0-9.175-3.222-9.175-8.057zm17.675-2.417v-2.106l-6.472.416c-3.64.234-5.536 1.585-5.536 3.95 0 2.288 1.975 3.77 5.068 3.77 3.95 0 6.94-2.522 6.94-6.03z" /><path fill="#000" d="M120.975 79.652v-4.496c.364.051 1.247.103 1.715.103 2.573 0 4.029-1.09 4.913-3.899l.52-1.663-9.852-27.293h6.082l6.863 22.146h.13l6.862-22.146h5.927l-10.216 28.67c-2.34 6.577-5.017 8.735-10.683 8.735-.442 0-1.872-.052-2.261-.157z" /></g></g></svg>

              </li><li class="icon--payment">
                <svg viewBox="0 0 38 24" width="38" height="24" role="img" aria-labelledby="pi-discover" fill="none" xmlns="http://www.w3.org/2000/svg"><title id="pi-discover">Discover</title><path fill="#000" opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32z" fill="#fff"/><path d="M3.57 7.16H2v5.5h1.57c.83 0 1.43-.2 1.96-.63.63-.52 1-1.3 1-2.11-.01-1.63-1.22-2.76-2.96-2.76zm1.26 4.14c-.34.3-.77.44-1.47.44h-.29V8.1h.29c.69 0 1.11.12 1.47.44.37.33.59.84.59 1.37 0 .53-.22 1.06-.59 1.39zm2.19-4.14h1.07v5.5H7.02v-5.5zm3.69 2.11c-.64-.24-.83-.4-.83-.69 0-.35.34-.61.8-.61.32 0 .59.13.86.45l.56-.73c-.46-.4-1.01-.61-1.62-.61-.97 0-1.72.68-1.72 1.58 0 .76.35 1.15 1.35 1.51.42.15.63.25.74.31.21.14.32.34.32.57 0 .45-.35.78-.83.78-.51 0-.92-.26-1.17-.73l-.69.67c.49.73 1.09 1.05 1.9 1.05 1.11 0 1.9-.74 1.9-1.81.02-.89-.35-1.29-1.57-1.74zm1.92.65c0 1.62 1.27 2.87 2.9 2.87.46 0 .86-.09 1.34-.32v-1.26c-.43.43-.81.6-1.29.6-1.08 0-1.85-.78-1.85-1.9 0-1.06.79-1.89 1.8-1.89.51 0 .9.18 1.34.62V7.38c-.47-.24-.86-.34-1.32-.34-1.61 0-2.92 1.28-2.92 2.88zm12.76.94l-1.47-3.7h-1.17l2.33 5.64h.58l2.37-5.64h-1.16l-1.48 3.7zm3.13 1.8h3.04v-.93h-1.97v-1.48h1.9v-.93h-1.9V8.1h1.97v-.94h-3.04v5.5zm7.29-3.87c0-1.03-.71-1.62-1.95-1.62h-1.59v5.5h1.07v-2.21h.14l1.48 2.21h1.32l-1.73-2.32c.81-.17 1.26-.72 1.26-1.56zm-2.16.91h-.31V8.03h.33c.67 0 1.03.28 1.03.82 0 .55-.36.85-1.05.85z" fill="#231F20"/><path d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint0_linear)"/><path opacity=".65" d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint1_linear)"/><path d="M36.57 7.506c0-.1-.07-.15-.18-.15h-.16v.48h.12v-.19l.14.19h.14l-.16-.2c.06-.01.1-.06.1-.13zm-.2.07h-.02v-.13h.02c.06 0 .09.02.09.06 0 .05-.03.07-.09.07z" fill="#231F20"/><path d="M36.41 7.176c-.23 0-.42.19-.42.42 0 .23.19.42.42.42.23 0 .42-.19.42-.42 0-.23-.19-.42-.42-.42zm0 .77c-.18 0-.34-.15-.34-.35 0-.19.15-.35.34-.35.18 0 .33.16.33.35 0 .19-.15.35-.33.35z" fill="#231F20"/><path d="M37 12.984S27.09 19.873 8.976 23h26.023a2 2 0 002-1.984l.024-3.02L37 12.985z" fill="#F48120"/><defs><linearGradient id="pi-paint0_linear" x1="21.657" y1="12.275" x2="19.632" y2="9.104" gradientUnits="userSpaceOnUse"><stop stop-color="#F89F20"/><stop offset=".25" stop-color="#F79A20"/><stop offset=".533" stop-color="#F68D20"/><stop offset=".62" stop-color="#F58720"/><stop offset=".723" stop-color="#F48120"/><stop offset="1" stop-color="#F37521"/></linearGradient><linearGradient id="pi-paint1_linear" x1="21.338" y1="12.232" x2="18.378" y2="6.446" gradientUnits="userSpaceOnUse"><stop stop-color="#F58720"/><stop offset=".359" stop-color="#E16F27"/><stop offset=".703" stop-color="#D4602C"/><stop offset=".982" stop-color="#D05B2E"/></linearGradient></defs></svg>
              </li><li class="icon--payment">
                <svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-google_pay"><title id="pi-google_pay">Google Pay</title><path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000" opacity=".07"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#FFF"/><path d="M18.093 11.976v3.2h-1.018v-7.9h2.691a2.447 2.447 0 0 1 1.747.692 2.28 2.28 0 0 1 .11 3.224l-.11.116c-.47.447-1.098.69-1.747.674l-1.673-.006zm0-3.732v2.788h1.698c.377.012.741-.135 1.005-.404a1.391 1.391 0 0 0-1.005-2.354l-1.698-.03zm6.484 1.348c.65-.03 1.286.188 1.778.613.445.43.682 1.03.65 1.649v3.334h-.969v-.766h-.049a1.93 1.93 0 0 1-1.673.931 2.17 2.17 0 0 1-1.496-.533 1.667 1.667 0 0 1-.613-1.324 1.606 1.606 0 0 1 .613-1.336 2.746 2.746 0 0 1 1.698-.515c.517-.02 1.03.093 1.49.331v-.208a1.134 1.134 0 0 0-.417-.901 1.416 1.416 0 0 0-.98-.368 1.545 1.545 0 0 0-1.319.717l-.895-.564a2.488 2.488 0 0 1 2.182-1.06zM23.29 13.52a.79.79 0 0 0 .337.662c.223.176.5.269.785.263.429-.001.84-.17 1.146-.472.305-.286.478-.685.478-1.103a2.047 2.047 0 0 0-1.324-.374 1.716 1.716 0 0 0-1.03.294.883.883 0 0 0-.392.73zm9.286-3.75l-3.39 7.79h-1.048l1.281-2.728-2.224-5.062h1.103l1.612 3.885 1.569-3.885h1.097z" fill="#5F6368"/><path d="M13.986 11.284c0-.308-.024-.616-.073-.92h-4.29v1.747h2.451a2.096 2.096 0 0 1-.9 1.373v1.134h1.464a4.433 4.433 0 0 0 1.348-3.334z" fill="#4285F4"/><path d="M9.629 15.721a4.352 4.352 0 0 0 3.01-1.097l-1.466-1.14a2.752 2.752 0 0 1-4.094-1.44H5.577v1.17a4.53 4.53 0 0 0 4.052 2.507z" fill="#34A853"/><path d="M7.079 12.05a2.709 2.709 0 0 1 0-1.735v-1.17H5.577a4.505 4.505 0 0 0 0 4.075l1.502-1.17z" fill="#FBBC04"/><path d="M9.629 8.44a2.452 2.452 0 0 1 1.74.68l1.3-1.293a4.37 4.37 0 0 0-3.065-1.183 4.53 4.53 0 0 0-4.027 2.5l1.502 1.171a2.715 2.715 0 0 1 2.55-1.875z" fill="#EA4335"/></svg>

              </li><li class="icon--payment">
                <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-master"><title id="pi-master">Mastercard</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><circle fill="#EB001B" cx="15" cy="12" r="7"/><circle fill="#F79E1B" cx="23" cy="12" r="7"/><path fill="#FF5F00" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/></svg>
              </li><li class="icon--payment">
                <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-paypal"><title id="pi-paypal">PayPal</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path fill="#003087" d="M23.9 8.3c.2-1 0-1.7-.6-2.3-.6-.7-1.7-1-3.1-1h-4.1c-.3 0-.5.2-.6.5L14 15.6c0 .2.1.4.3.4H17l.4-3.4 1.8-2.2 4.7-2.1z"/><path fill="#3086C8" d="M23.9 8.3l-.2.2c-.5 2.8-2.2 3.8-4.6 3.8H18c-.3 0-.5.2-.6.5l-.6 3.9-.2 1c0 .2.1.4.3.4H19c.3 0 .5-.2.5-.4v-.1l.4-2.4v-.1c0-.2.3-.4.5-.4h.3c2.1 0 3.7-.8 4.1-3.2.2-1 .1-1.8-.4-2.4-.1-.5-.3-.7-.5-.8z"/><path fill="#012169" d="M23.3 8.1c-.1-.1-.2-.1-.3-.1-.1 0-.2 0-.3-.1-.3-.1-.7-.1-1.1-.1h-3c-.1 0-.2 0-.2.1-.2.1-.3.2-.3.4l-.7 4.4v.1c0-.3.3-.5.6-.5h1.3c2.5 0 4.1-1 4.6-3.8v-.2c-.1-.1-.3-.2-.5-.2h-.1z"/></svg>
              </li><li class="icon--payment">
                <svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-shopify_pay"><title id="pi-shopify_pay">Shop Pay</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000"/><path d="M35.889 0C37.05 0 38 .982 38 2.182v19.636c0 1.2-.95 2.182-2.111 2.182H2.11C.95 24 0 23.018 0 21.818V2.182C0 .982.95 0 2.111 0H35.89z" fill="#5A31F4"/><path d="M9.35 11.368c-1.017-.223-1.47-.31-1.47-.705 0-.372.306-.558.92-.558.54 0 .934.238 1.225.704a.079.079 0 00.104.03l1.146-.584a.082.082 0 00.032-.114c-.475-.831-1.353-1.286-2.51-1.286-1.52 0-2.464.755-2.464 1.956 0 1.275 1.15 1.597 2.17 1.82 1.02.222 1.474.31 1.474.705 0 .396-.332.582-.993.582-.612 0-1.065-.282-1.34-.83a.08.08 0 00-.107-.035l-1.143.57a.083.083 0 00-.036.111c.454.92 1.384 1.437 2.627 1.437 1.583 0 2.539-.742 2.539-1.98s-1.155-1.598-2.173-1.82v-.003zM15.49 8.855c-.65 0-1.224.232-1.636.646a.04.04 0 01-.069-.03v-2.64a.08.08 0 00-.08-.081H12.27a.08.08 0 00-.08.082v8.194a.08.08 0 00.08.082h1.433a.08.08 0 00.081-.082v-3.594c0-.695.528-1.227 1.239-1.227.71 0 1.226.521 1.226 1.227v3.594a.08.08 0 00.081.082h1.433a.08.08 0 00.081-.082v-3.594c0-1.51-.981-2.577-2.355-2.577zM20.753 8.62c-.778 0-1.507.24-2.03.588a.082.082 0 00-.027.109l.632 1.088a.08.08 0 00.11.03 2.5 2.5 0 011.318-.366c1.25 0 2.17.891 2.17 2.068 0 1.003-.736 1.745-1.669 1.745-.76 0-1.288-.446-1.288-1.077 0-.361.152-.657.548-.866a.08.08 0 00.032-.113l-.596-1.018a.08.08 0 00-.098-.035c-.799.299-1.359 1.018-1.359 1.984 0 1.46 1.152 2.55 2.76 2.55 1.877 0 3.227-1.313 3.227-3.195 0-2.018-1.57-3.492-3.73-3.492zM28.675 8.843c-.724 0-1.373.27-1.845.746-.026.027-.069.007-.069-.029v-.572a.08.08 0 00-.08-.082h-1.397a.08.08 0 00-.08.082v8.182a.08.08 0 00.08.081h1.433a.08.08 0 00.081-.081v-2.683c0-.036.043-.054.069-.03a2.6 2.6 0 001.808.7c1.682 0 2.993-1.373 2.993-3.157s-1.313-3.157-2.993-3.157zm-.271 4.929c-.956 0-1.681-.768-1.681-1.783s.723-1.783 1.681-1.783c.958 0 1.68.755 1.68 1.783 0 1.027-.713 1.783-1.681 1.783h.001z" fill="#fff"/></svg>

              </li><li class="icon--payment">
                <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-visa"><title id="pi-visa">Visa</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M28.3 10.1H28c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5L27 8.7c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zm-13.4-.3l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zm-3.5.3c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3H18c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0H9.7c-.1 0-.2 0-.2-.2L7.9 9.5c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5L5 8.2z" fill="#142688"/></svg>
              </li></ul>
        </div></div>
</div>
</div></div>
      </div>
    </div>

    <div class="footer__section">
      <div class="page-width text-center small--text-left">
        <div class="footer__base-links"><span>
              &copy; 2026
              Inhabit
| US & Foreign Patents & Pending Patents  | All images © Inhabit, Inc.   Inhabit, Harmony Felt, Wall Flats and Corrulights are registered trademarks of Inhabit, Inc | Headquartered at 211 S. Ritter Ave, Indianapolis, IN 46219 USA
</span></div>
      </div>
    </div>
  </footer-section>

  <template data-island>
    <script type="module">
      import 'components/section-footer'
    </script>
  </template>
</is-land>
<script>var d=document;if(d.getElementById("globex_script")==null){var vsitl=new Date().getTime();var t=d.createElement("script");t.setAttribute("id","globex_script");t.setAttribute("src","https://shopify.globalshopex.com/cdn/script/merchant/2458833.js?v="+vsitl.toString());d.head.appendChild(t);}</script>


</div>
<!-- END sections: footer-group --></div>
    </div>
<div id="VideoModal" class="modal">
  <div class="modal__inner">
    <div class="modal__centered page-width text-center">
      <div class="modal__centered-content">
        <div class="video-wrapper video-wrapper--modal">
          <div id="VideoHolder"></div>
        </div>
      </div>
    </div>

    <button type="button" class="btn btn--circle btn--icon modal__close js-modal-close">
      



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-close icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="m19 17.61 27.12 27.13m0-27.13L19 44.74" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

      <span class="icon__fallback-text visually-hidden">"Close (esc)"</span>
    </button>
  </div>
</div>

<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
  <div class="pswp__bg"></div>
  <div class="pswp__scroll-wrap">
    <div class="pswp__container">
      <div class="pswp__item"></div>
      <div class="pswp__item"></div>
      <div class="pswp__item"></div>
    </div>

    <div class="pswp__ui pswp__ui--hidden">
      <button
        class="btn btn--secondary btn--circle pswp__button pswp__button--arrow--left"
        title="Previous"
      >
        



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-left" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M249.49 0a35 35 0 0 1 24.75 59.75L84.49 249.49l189.75 189.74a35.002 35.002 0 1 1-49.5 49.5L10.25 274.24a35 35 0 0 1 0-49.5L224.74 10.25A34.89 34.89 0 0 1 249.49 0"/>
    </svg>

      </button>

      <button
        class="btn btn--secondary btn--circle btn--large pswp__button pswp__button--close"
        title="Close (esc)"
      >
        



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-close icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="m19 17.61 27.12 27.13m0-27.13L19 44.74" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

      </button>

      <button
        class="btn btn--secondary btn--circle pswp__button pswp__button--arrow--right"
        title="Next"
      >
        



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-chevron-right" viewbox="0 0 284.49 498.98" fill="currentColor" width="20" height="20">
    <path d="M35 498.98a35 35 0 0 1-24.75-59.75l189.74-189.74L10.25 59.75a35.002 35.002 0 0 1 49.5-49.5l214.49 214.49a35 35 0 0 1 0 49.5L59.75 488.73A34.89 34.89 0 0 1 35 498.98"/>
    </svg>

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

<tool-tip data-tool-tip="">
  <div class="tool-tip__inner" data-tool-tip-inner>
    <button class="tool-tip__close btn btn--circle btn--icon" data-tool-tip-close="">
      



<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-close icon--line" viewbox="0 0 64 64" width="20" height="20">
    <path d="m19 17.61 27.12 27.13m0-27.13L19 44.74" stroke-miterlimit="10" fill="none" stroke="currentColor"/>
    </svg>

    </button>
    <div data-tool-tip-title>Acoustic Felt Wall Panels - Harmony3D by Inhabit</div>
    <div class="tool-tip__content" data-tool-tip-content></div>
  </div>
</tool-tip>

<script type="module">
  import 'components/tool-tip'
</script>


<link href="//inhabitliving.com/cdn/shop/t/98/assets/shopacado-styles.css?v=30480499108073718451732803582" rel="stylesheet" type="text/css" media="all" />


<script id="adp-discount-tiers-default" type="text/x-handlebars-template">
    <div class="adp-discount-tiers">
    <h4>{{{product_message}}}</h4>
    <table class="adp-discount-table">
        <thead>
        <tr>
            <th>Minimum Qty</th>
            <th>Discount</th>
        </tr>
        </thead>
        <tbody>
        {{#vol_rows}}
        <tr>
            <td>{{{quantity}}} +</td>
            <td>{{{price.title}}}</td>
        </tr>
        {{/vol_rows}}
        </tbody>
    </table>
</div>

</script>
<script id="adp-discount-tiers-detailed" type="text/x-handlebars-template">
    <div class="adp-discount-tiers"><h4>{{{product_message}}}</h4>
    <table class="adp-discount-table">
        <thead>
        <tr>
            <th>Qty</th>
            <th>Discount</th>
        </tr>
        </thead>
        <tbody> {{#vol_rows}}
        <tr>
            <td>Buy {{{quantity}}}</td>
            <td>{{{price.title}}} each</td>
        </tr>
        {{/vol_rows}}
        </tbody>
    </table>
</div>

</script>
<script id="adp-discount-tiers-grid" type="text/x-handlebars-template">
    <div class="adp-discount-tiers"><h4>{{{product_message}}}</h4>
    <table class="adp-discount-table">
        <thead>
        <tr>
            <th>Minimum Qty</th>
            <th>Maximum Qty</th>
            <th>Discount</th>
        </tr>
        </thead>
        <tbody> {{#vol_rows}}
        <tr>
            <td>{{{quantity}}}</td>
            <td>{{{next_range_qty}}}</td>
            <td>{{{price.title}}}</td>
        </tr>
        {{/vol_rows}}
        </tbody>
    </table>
</div>

</script>
<script id="adp-discount-tiers-grid-alt" type="text/x-handlebars-template">
    <div class="adp-discount-tiers"><h4>{{{product_message}}}</h4>
    <table class="adp-discount-table">
        <thead>
        <tr>
            <th>Qty</th>
            <th>Discount</th>
        </tr>
        </thead>
        <tbody> {{#vol_rows}}
        <tr>
            <td>{{{quantity}}} - {{{next_range_qty}}}</td>
            <td>{{{price.title}}}</td>
        </tr>
        {{/vol_rows}}
        </tbody>
    </table>
</div>

</script>
<script id="adp-buy-x-discount-tiers" type="text/x-handlebars-template">
    <div class="adp-discount-tiers"><h4>{{{product_message}}}</h4>
    <table class="adp-discount-table">
        <thead>
        <tr>
            <th>Qty</th>
            <th>Discount</th>
        </tr>
        </thead>
        <tbody> {{#vol_rows}}
        <tr>
            <td>Buy {{{quantity}}}</td>
            <td>{{{price.title}}}</td>
        </tr>
        {{/vol_rows}}
        </tbody>
    </table>
</div>

</script>


<script type="text/javascript">
    window.appikon = {
        customer: {}
    };

    

    

    

    


    

    
    window.appikon.cart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"USD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0};
    ["requires_shipping", "total_discount", "item_count", "total_weight"].map(function(a) {
        delete window.appikon.cart[a]
    })

    window.appikon.cart.items = [];
    window.appikon.cart_product_ids = [];
    window.appikon.cart_collection_ids = [];
    

    
    window.appikon.adp_page = "";
</script>

<script src="//inhabitliving.com/cdn/shop/t/98/assets/shopacado.js?v=32570734443598564211732803582" type="text/javascript"></script>

  


<!-- Navidium script start -->
		<script>
		const nvdShop = 'inhabitshopify.myshopify.com';
		const nvdShopCurrency = '${{amount}}';
		const nvdControls = {
			cartCounter: 'span.cart-link__bubble-num.pplr_cart_count', //cart item count
			subtotal: '[data-subtotal]', // cart subtotal amount
			lineAttribute: 'data-index', // cart item line
			cartItemNodes: 'cart_nodes', // Cart items loop
			quantityMinus: 'qty_minus', // Quantity decrase button
			quantityPlus: 'qty_plus', // Quantity incrase button
			removeItem: 'cart_remove_class', // Cart item remove btn class
			qtybtnAttribute: 'data-href', // Cart item btn line update
			qtyrmvAttribute: 'href', // Cart item remove line update
			clickTriggers: '.js-qty__adjust, .js-qty__adjust *, .cart__remove, .cart__remove *', // Onclick widget update
			changeTrigger: '.js-qty__num', // Onchange widget update
			cursorControl: '.nvd-mini', // Disabled/Enabled cursor pointer event
			onLoadTrigger: false, // window.onload nvd_init function call
			cartReload: false, // Cart reload for /cart page
			showConsoleMessage:false, // Console message show/hide
			trackWidget:false, // Track widget on realtime
			forceClick: true, // forceclick for onclickTrigger event
			autoHide: false, // Hide by JS according to cartItemNodes
			initiateTime: 2000, //milisecond
			nvdInject:{
				status:false, // Inject nvd-mini div
				parent:'parent_class', // parent class for nvd-mini div
				container:'checkout_button_div' // nvd-mini will added before this div/button
		  }
		}
		</script>
	<script src="https://d10pwglna6up6p.cloudfront.net/navidium-widgets/js/nvd-widget-stable-1.js" defer></script>
<!-- End of Navidium script -->

<style>
  .cart__item.pplr_cart_row:has([href*="navidium"]) {
    display: none;
}
</style>

  <style>  </style>
<div id="shopify-block-AT0pjN3NqM2lXQTdZU__9035537717662245677" class="shopify-block shopify-app-block"><!-- begin -->
  
  
  
  <!-- end check show -->
  <style type="text/css">body .storeify-formbuilder-button{display:none;} body .storeify-formbuilder-button.btn-storeify-show{display:block;}</style>
<!-- end -->

</div><div id="shopify-block-ATXJGNzJtbDBiVXdWN__6366116583096307484" class="shopify-block shopify-app-block"><script type="text/javascript">
  (function() {
    const checkoutButtons = document.querySelectorAll('form[action*="/cart"]:not([action*="/cart/"]) [type="submit"], [type="submit"][form="cart"]');
    checkoutButtons.forEach(button => button.disabled = true);

    window.addEventListener('parcelify_loaded', function(event) {
      checkoutButtons.forEach(button => button.disabled = false);
    });

    setTimeout(function() {
      checkoutButtons.forEach(button => button.disabled = false);
    }, 3000);
  })()
</script>


</div><div id="shopify-block-ATmdSTUZIVlRLejdna__1027443428159536739" class="shopify-block shopify-app-block"><script type="application/javascript">
    window.hextom_qab_meta = {
        p1: [
            
        ],
        p2: {
            
        },
        p3:null,
        p4:[],
        p5:291819978938,
    };
    
    window.hextom_qab_config = {};
    
</script>

</div></body>
</html>
