/** Shopify CDN: Minification failed

Line 6:21 Unexpected "-->"

**/
<!-- HEADER-2 ACTIVE -->
.header__logo {
  width: fit-content;
}
.header__secondary-links {
  flex: 1;
  padding-left: 50px;
}

.header-search {
  flex: 1;
}

.predictive-search__form {
  max-width: 630px;
  position: relative;
  width: 100%;
  margin-right: 34px;
  margin-left: auto;
}

.search-icon-text .predictive-search__input {
  height: 46px;
  background-color: #F4FAFF;
  border-radius: 100px;
  padding: 0 30px;
  font-size: 13px;
  line-height: 20px;
  color: #404040;
}

.search-icon-text .predictive-search__input::placeholder {
  color: #A3ADC1;
}

.btn-search-header {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}
.btn-search-header span {
  display: none;
}
.user-links {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--g-font-other);
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
}
.user_link-icon {
  margin-right: 7px;
}
.header__secondary-links {
  gap: 20px;
}
.header-icon.icon-cart {
  display: flex;
  align-items: center;
  gap: 0 11px;
  font-size: 15px;
  line-height: 16px;
  font-family: var(--g-font-other);
}

.icon-cart {
  position: relative;
}

.header_wrapper {
  flex-wrap: wrap;
}

.header__wrapper--top, .header__wrapper--bottom {
  width: 100%;
}

.header__wrapper--top {
  padding: 30px 0;
  position: relative;
}

.header__wrapper--top::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 100vw;
  background-color: #e8e8e8;
}

.header__menu--vertical {
  position: relative;
}

#verticalDropdownBtn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-size: 16px;
  line-height: 1;
  font-family: var(--g-font-other);
  color: rgb(var(--heading-color));
}

#verticalDropdownBtn:hover {
  color: var(--primary_hover);
}

#verticalDropdownContent {
  position: absolute;
  top: calc(100% + 30px);
  left: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
  padding: 12px 20px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  font-family: var(--g-font-other);
  min-width: 250px;
}

#verticalDropdownContent.show {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.header__inline-wrapper {
  padding-left: 30px;
  margin-left: 60px;
  position: relative;
  flex: 1;
}

.header__custom--text {
  font-family: var(--g-font-other);
  font-size: 14px;
  line-height: 22px;
  color: #7D879C;
}

.header__custom--text span {
  color: rgb(var(--heading-color));
}

@media (min-width: 768px) {
  .header__inline-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 22px;
    background-color: #E8E8E8;
  }
}

@media (max-width: 1199px) {
  .header__wrapper--top {
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  .header__wrapper--bottom {
    height: 46px;
  }
  .header__inline-wrapper {
    margin-left: 0;
    padding-left: 0;
  }
  .header-search {
    text-align: right;
  }

  .header-search .header-icon svg {
    width: 20px;
    height: 20px;
  }
} 

@media (max-width: 400px) {
  .header__logo-image {
    width: 120px;
  }
  .header-icon.icon-cart {
    font-size: 0;
    gap: 0;
  }
  .header-wishlist, .header__custom--text {
    display: none;
  }
  .header__wrapper--bottom {
    width: fit-content;
    padding-left: 20px;
  }
  .header__wrapper--top {
    flex: 1;
  }
}

/* 🔥 FORCE Samsung devices NOT to wrap the bottom header */
.header__wrapper--bottom {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    overflow: visible !important;
}

/* Make sure items shrink instead of wrapping */
.header__wrapper--bottom > * {
    flex-shrink: 1 !important;
    min-width: 0 !important;
}
