/** Shopify CDN: Minification failed

Line 47:9 Expected identifier but found whitespace
Line 47:11 Unexpected "{"
Line 47:21 Expected ":"
Line 47:50 Expected ":"
Line 48:16 Expected identifier but found whitespace
Line 48:18 Unexpected "{"
Line 48:28 Expected ":"
Line 48:47 Expected ":"

**/
.header {
  position: relative;
}

/* ---- Search bar: centered on desktop, full-width row on mobile ---- */
.nemt-header-search-bar {
  grid-column: 1 / -1;
  width: 100%;
  margin: 1rem 0 0;
  min-width: 0;
}

@media screen and (min-width: 990px) {
  .nemt-header-search-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 58rem;
    margin: 0;
    pointer-events: none;
    z-index: 2;
  }

  .nemt-header-search-bar .nemt-search {
    pointer-events: auto;
  }
}

.nemt-search {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 4.4rem;
  border: {{ settings.inputs_border_thickness }}px solid rgba(var(--color-foreground), {{ settings.inputs_border_opacity | divided_by: 100.0 }});
  border-radius: {{ settings.inputs_radius }}px;
  overflow: hidden;
  background: rgb(var(--color-background));
}

@media screen and (min-width: 990px) {
  .nemt-search {
    min-height: 5.2rem;
  }
}

.nemt-search__category {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  border-right: 1px solid rgba(var(--color-foreground), 0.15);
  background: rgba(var(--color-foreground), 0.04);
}

.nemt-search__category-select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0 2.6rem 0 1.2rem;
  height: 100%;
  cursor: pointer;
  color: rgb(var(--color-foreground));
  max-width: 14rem;
}

@media screen and (min-width: 990px) {
  .nemt-search__category-select {
    font-size: 1.5rem;
    padding: 0 3.2rem 0 1.8rem;
    max-width: 17rem;
  }
}

.nemt-search__category-select:focus-visible {
  outline: 2px solid rgba(var(--color-foreground), 0.5);
}

.nemt-search__category-caret {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 1.1rem;
  height: 1.1rem;
}

@media screen and (min-width: 990px) {
  .nemt-search__category-caret {
    right: 1.1rem;
    width: 1.2rem;
    height: 1.2rem;
  }
}

.nemt-search__input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 1.4rem;
  padding: 0 1.2rem;
  color: rgb(var(--color-foreground));
}

@media screen and (min-width: 990px) {
  .nemt-search__input {
    font-size: 1.6rem;
    padding: 0 1.8rem;
  }
}

.nemt-search__input:focus,
.nemt-search__input:focus-visible {
  outline: none;
  box-shadow: none;
}

.nemt-search__button {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  border: none;
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  cursor: pointer;
}

@media screen and (min-width: 990px) {
  .nemt-search__button {
    width: 5.8rem;
  }
}

.nemt-search__button .icon {
  width: 2rem;
  height: 2rem;
}

@media screen and (min-width: 990px) {
  .nemt-search__button .icon {
    width: 2.2rem;
    height: 2.2rem;
  }
}

/* The stock Dawn search icon (modal) is removed everywhere: the search bar
   above is the only search on every screen size. */
.header .header__search {
  display: none !important;
}

/* ---- Icon row ---- */
.header__icons {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

@media screen and (min-width: 750px) {
  .header__icons {
    gap: 2.2rem;
  }
}

.header__icon--login {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: 0.2rem;
}

.header__icon--login .svg-wrapper svg {
  width: 2.6rem !important;
  height: 2.6rem !important;
}

/* icon-cart.svg has a 40x40 viewBox but the bag only fills ~16x22 of it, so it
   needs a bigger box than the account icon (18x19 viewBox, fills edge to edge)
   to look the same size. Negative margin keeps the layout footprint unchanged. */
.header__icon--cart {
  margin-left: 0.6rem;
  position: relative;
}

.header__icon--cart .svg-wrapper {
  width: 4.8rem !important;
  height: 4.8rem !important;
  margin: -1.2rem;
}

.header__icon--cart .svg-wrapper svg {
  width: 4.8rem !important;
  height: 4.8rem !important;
}

.header__icon--cart .cart-count-bubble {
  left: auto !important;
  bottom: auto !important;
  right: -0.6rem;
  top: 0.2rem;
  z-index: 1;
}

.nemt-header-login-label {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@media screen and (max-width: 989px) {
  .nemt-header-login-label {
    display: none;
  }
}

/* ---- Nav row ---- */
.nemt-header-nav {
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  width: 100%;
}

.nemt-header-nav__inner {
  display: flex;
  justify-content: center;
  width: 100%;
}

.nemt-header-nav .header__inline-menu {
  width: 100%;
  display: flex;
  justify-content: center;
}

.nemt-header-nav .list-menu--inline {
  justify-content: center;
  gap: 3.2rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
}

.nemt-header-nav .header__menu-item {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.4rem;
}

@media screen and (max-width: 989px) {
  .nemt-header-nav {
    display: none;
  }
}
