/** Shopify CDN: Minification failed

Line 18:2 Unexpected "{"
Line 18:3 Expected identifier but found "%"
Line 22:2 Unexpected "{"
Line 22:3 Expected identifier but found "%"
Line 24:2 Unexpected "{"
Line 24:3 Expected identifier but found "%"
Line 30:2 Unexpected "{"
Line 30:3 Expected identifier but found "%"

**/
  .header-drawer {
    justify-self: start;
    margin-left: -1.2rem;
  }

  {%- if section.settings.sticky_header_type == 'reduce-logo-size' -%}
    .scrolled-past-header .header__heading-logo-wrapper {
      width: 75%;
    }
  {%- endif -%}

  {%- if section.settings.menu_type_desktop != "drawer" -%}
    @media screen and (min-width: 990px) {
      header-drawer {
        display: none;
      }
    }
  {%- endif -%}

  .menu-drawer-container {
    display: flex;
  }

  .list-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .list-menu--inline {
    display: inline-flex;
    flex-wrap: wrap;
  }
@media screen and (min-width: 750px) {
  .list-menu--inline {
    justify-content: center;
  }
}

  summary.list-menu__item {
    padding-right: 2.7rem;
  }

  .list-menu__item {
    display: flex;
    align-items: center;
    line-height: calc(1 + 0.3 / var(--font-body-scale));
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 15px;
  }

  .list-menu__item--link {
    text-decoration: none;
    padding-bottom: 1rem;
    padding-top: 1rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
  }

  @media screen and (min-width: 750px) {
    .list-menu__item--link {
      padding-bottom: 0.5rem;
      padding-top: 0.5rem;
    }
  }
.header {
  display: flex;
  flex-direction: column;
  width: 100%; /* Ensure the header takes up full page width */
  box-sizing: border-box;
}

.header__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 5px;
  padding: 0 1rem;
}
@media screen and (min-width: 990px) {
  .header__grid {
    padding: 0 5rem;
  }
}
.header__heading {
  flex: 0 1 auto; /* Keep the logo at its natural size */
  width: 25%;
}

.header__search {
  display: flex;
  flex: 1; /* Allow the search bar to take up available space */
  flex-direction: column;
  justify-content: center;
  width: 50%;
}

.search__input {
  width: 100%; /* Make the search input fill the container */
  flex: 1; /* Allow it to grow and shrink as needed */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.header__icons {
  flex: 0 1 auto; /* Keep icons at their natural size */
  display: flex;
  justify-content: flex-end;
  width: 25%;
}

.header__menu-wrapper {
  width: 100%; /* Full width for the inline menu */
  text-align: center;
  display: block;
}
.header__heading,
.header__icons {
  transition: opacity 0.3s ease, visibility 0s 0.3s; /* Visibility changes after opacity */
  opacity: 1;
  visibility: visible;
  display: flex; /* Ensure it's part of the layout initially */
  align-items: flex-end;
}

.header__heading.hidden,
.header__icons.hidden {
  opacity: 0;
  visibility: hidden;
}

.header__heading.hidden:not(.invisible),
.header__icons.hidden:not(.invisible) {
  visibility: hidden; /* Delay the removal from visibility after fade-out */
}

.header__heading.invisible,
.header__icons.invisible {
  opacity: 0;
  visibility: hidden;
  display: none; /* Completely hide after opacity transition */
}

  
@media screen and (max-width: 990px) {
  .header__grid {
    flex-wrap: wrap;
  }
  .header__search {
    order: 3;
    width: 100%;
    padding-top: 5px;
  }
  .header__heading {
    order: 1;
    width: 50%;
    height: 44px;
  }
  .header__icons {
    order: 2;
    width: 50%;
  }
  .list-menu--inline {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;
  }
  .header__submenu {
    position: fixed !important;
    top: auto;         
    left: 0;
    right: auto;
    margin-bottom: 15px;
    width: 100vw !important;
  }
  .list-menu__item {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}