/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 26:2 Unexpected "{"
Line 26:3 Expected identifier but found "%"
Line 26:27 Unexpected "{"
Line 26:28 Expected identifier but found "%"
Line 29:3 Unexpected "{"
Line 29:4 Expected identifier but found "%"
Line 29:60 Unexpected "{"
Line 29:61 Expected identifier but found "%"
Line 30:2 Unexpected "{"
... and 4 more hidden warnings

**/
<style>
/* ============ Header Base ============ */
.custom-header__inner {
    padding: 0 40px !important;
}

.custom-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  {% comment %} gap: 15px; {% endcomment %}
  flex-wrap: wrap;
  position: relative;
   {% comment %} max-width: 1500px;   /* Added max-width */ {% endcomment %}
  {% comment %} margin: 0 auto; {% endcomment %}
}

.custom-header__search-form {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}

.custom-header__search-input {
  padding: 10px 15px;
  border: 1px solid #ddd;
  outline: none;
  width: 240px;
  font-size: 14px;
}

.custom-header__search-button {
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s ease;
}
.custom-header__search-button:hover {
  opacity: 0.85;
}

.custom-header__logo-img {
    max-width: 250px;
    height: auto;
    display: block;
}

.custom-header__call-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.custom-header__call-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.custom-header__call-label {
  font-size: 13px;
  display: block;
  line-height: 1.2;
}

.custom-header__call-number {
  font-weight: 700;
  color: #000;
}

/* ============ Navigation ============ */
.custom-header__menu {
  background: #fff;
  border-top: 1px solid #eee;
  display: block;
}

.custom-header__menu-list {
    display: flex;
    justify-content: space-evenly;
    gap: 38px;
    list-style: none;
    margin: 0;
    padding: 10px 14px;
}

.custom-header__menu-link {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover & Active color */
.custom-header__menu-link:hover,
.custom-header__menu-link.active,
.custom-header__menu-link[aria-current="page"] {
  color: #F37A1F;
}

/* Underline effect */
.custom-header__menu-link[aria-current="page"]::after,
.custom-header__menu-link.active::after,
.custom-header__menu-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
      bottom: -14px;
    height: 4px;
  background: #F37A1F;
  border-radius: 2px;
}

.custom-header__submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
  position: absolute;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  min-width: 160px;
  z-index: 99;
}

.custom-header__submenu-link {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #222;
  transition: color 0.3s ease;
}

.custom-header__submenu-link:hover {
  color: #F37A1F;
}

.custom-header__menu-item.has-dropdown:hover > .custom-header__submenu {
  display: block;
}

/* ============ Hamburger ============ */
.custom-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.custom-header__hamburger span {
  height: 3px;
  width: 100%;
  background: #222;
  border-radius: 3px;
  transition: 0.3s;
}

.custom-header__hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.custom-header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.custom-header__hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============ Responsive ============ */
@media screen and (max-width: 768px) {
  .custom-header__inner {
    padding: 0px 21px !important;
}
   .custom-header__inner {
    flex-direction: row-reverse;
  }
  .custom-header__search {
    display: none;
  }
  .custom-header__call-text {
    display: none;
  }
  .custom-header__logo {
    position: absolute;
    left: 41% !important;
  }
  .custom-header__search {
    order: 3;
    width: 100%;
  }

    .custom-header__search-icon {
    display: block !important;
    cursor: pointer;
    margin-right: 10px;
    position: absolute;
    left: 14%;
    top: 12%;
}
  .custom-header__inner {
    justify-content: space-between;
  }

  .custom-header__menu {
    display: none;
    border-top: none;
    background: #fff;
    width: 100%;
    flex-direction: column;
  }

  .custom-header__menu.active {
    display: flex;
    animation: dropdown 0.3s ease;
  }

  .custom-header__menu-list {
    flex-direction: column;
    gap: 0;
    text-align: center;
    padding: 10px 0;
  }

  .custom-header__menu-link {
    display: block;
    padding: 10px;
    color: #222;
  }

  .custom-header__submenu {
    position: static;
    border: none;
    display: none;
  }

  .custom-header__menu-item.active > .custom-header__submenu {
    display: block;
  }

  .custom-header__hamburger {
    display: flex;
  }
  .custom-header__logo-img {
    max-width: 90px;
}
.custom-header__inner {
    gap: 15px;
}
  @keyframes dropdown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/* Show search bar when icon is clicked (mobile) */
@media screen and (max-width: 768px) {
  .custom-header__search.is-active {
    display: block !important;
    width: 100%;
    background: #fff;
    padding: 10px;
    position: absolute;
    top: 60px; /* adjust based on your header height */
    left: 0;
    z-index: 999;
  }

  .custom-header__search-form {
    width: 100%;
  }

  .custom-header__search-input {
    width: 75%;
  }

  .custom-header__search-button {
    width: 25%;
  }
}

</style>