/** Shopify CDN: Minification failed

Line 23:0 Unexpected "<"
Line 29:2 Unexpected "{"
Line 29:3 Expected identifier but found "%"
Line 33:2 Unexpected "{"
Line 33:3 Expected identifier but found "%"
Line 35:2 Unexpected "{"
Line 35:3 Expected identifier but found "%"
Line 41:2 Unexpected "{"
Line 41:3 Expected identifier but found "%"
Line 81:0 Unexpected "<"

**/
/*

.header__icon--search {
  display: none !important;
}

 */

<style>
  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;
  }

  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));
  }

  .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;
    }
  }
</style>


.top-collection-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 0;
  background-color: #f8f8f8; /* Optional background strip */
}

.top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px; /* Tall + wide */
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.premium-btn {
  background-color: #000;
  color: #fff;
}

.free-btn {
  background-color: #d4af37; /* Gold tone */
  color: #000;
}

.top-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}


.header__icon--search {
  display: none !important;
}

/* headrer special */
.special-btn {
  display: inline-block;
  padding: 3px 35px;
  background: #DDD9C6;
  color: #fff;
  font-size: 12px;         /* smaller text */
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;   /* maximum rounding = pill */
  margin: 2px;
  transition: background 0.3s, color 0.3s;
}

.special-btn:hover {
  background: #B7AC7D;
  color: #fff;
 border: 1px solid #DDD9C6;
}










/* sEARCH BAR TOP */

.header__search-row {
  width: 100% !important;
  display: flex;
  justify-content: center;
  padding: 8px 16px;
  box-sizing: border-box;
  background-color: #fff;
  z-index: 10;
}

.header__search-row .search-form {
  display: flex;
  align-items: center;
  width: 100% !important;
  max-width: 700px; /* adjust as needed */
  position: relative;
}

.header__search-row .search__input {
  flex: 1;
  padding: 10px 44px 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.header__search-row .search__button {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__search-row .icon-search {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.header {
  display: grid;
  grid-template-columns: auto 1fr auto;
}
.header__search-row {
  grid-column: 1 / -1;
}
