@charset "UTF-8";

:root {
  --yamm-header-height: 88px;
  --yamm-header-inline: clamp(28px, 3vw, 52px);
  --yamm-header-overlay-fg: #111;
}

body.yamm-header-overlay-route {
  --yamm-header-overlay-fg: #fff;
}

body.single-product,
body.yamm-route-product {
  --yamm-header-overlay-fg: #111;
}

.yamm-header {
  position: fixed;
  z-index: 500;
  inset: 0 0 auto;
  height: var(--yamm-header-height);
  color: #111;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .065);
  transform: translate3d(0, 0, 0);
  transition: transform 260ms cubic-bezier(.22, 1, .36, 1), background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.yamm-header.is-hidden {
  transform: translate3d(0, -105%, 0);
  box-shadow: none;
}

@media (min-width: 821px) {
  body:has(.yamm-cart-sheet.is-added-mode.is-open) .yamm-header {
    transform: translate3d(0, 0, 0);
    color: #111;
    background: #fff;
    border-color: rgba(0, 0, 0, .06);
    box-shadow: 0 7px 22px rgba(0, 0, 0, .055);
  }
}

.yamm-header.is-overlay {
  color: var(--yamm-header-overlay-fg);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.yamm-header.is-overlay:hover,
.yamm-header.is-returning,
.yamm-header.is-solid,
.yamm-header.is-transaction {
  color: #111;
  background: #fff;
  border-color: rgba(0, 0, 0, .06);
}

.yamm-header.is-returning {
  box-shadow: 0 7px 22px rgba(0, 0, 0, .055);
}

.yamm-header.is-transaction,
body.yamm-route-cart .yamm-header,
body.yamm-route-checkout .yamm-header,
body.woocommerce-cart .yamm-header,
body.woocommerce-checkout .yamm-header {
  transform: none !important;
  box-shadow: none;
}

.yamm-header__bar {
  position: relative;
  width: 100%;
  height: 100%;
  padding-inline: var(--yamm-header-inline);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.yamm-header__left,
.yamm-header__actions,
.yamm-header__checkout-tools {
  display: flex;
  align-items: center;
}

.yamm-header__left {
  justify-self: start;
  gap: clamp(22px, 2vw, 34px);
}

.yamm-header__actions {
  justify-self: end;
  gap: 18px;
}

.yamm-header__checkout-tools {
  display: none;
  justify-self: end;
  gap: 28px;
}

.yamm-header__brand {
  justify-self: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
  line-height: 1;
  transform: translateY(8px);
}

.yamm-header__brand-name {
  font-family: var(--yamm-font-brand);
  font-size: clamp(26px, 2.1vw, 35px);
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: .055em;
  white-space: nowrap;
}

.yamm-header__brand-city {
  margin-top: 6px;
  transform: translateY(-2px);
  font-family: var(--yamm-font-brand);
  font-size: 11px;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: .27em;
}

.yamm-header__action,
.yamm-header__icon-link,
.yamm-header__checkout-tool,
.yamm-header__panel-close {
  font-family: var(--yamm-font-ui);
  color: inherit;
}

.yamm-header__action {
  min-width: 30px;
  min-height: 38px;
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .005em;
}

.yamm-header__action svg,
.yamm-header__icon-link svg,
.yamm-header__checkout-tool svg,
.yamm-header__panel-close svg {
  width: 19px;
  height: 19px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yamm-header__icon-link {
  position: relative;
  min-width: 31px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.yamm-header__cart-count {
  position: absolute;
  top: 1px;
  right: -5px;
  min-width: 14px;
  height: 14px;
  padding-inline: 2px;
  display: inline-grid;
  place-items: center;
  font-family: var(--yamm-font-ui);
  font-size: 9px;
  line-height: 1;
}

.yamm-header__checkout-tool {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #111;
  text-decoration: none;
  font-size: 12px;
}

.yamm-header__checkout-tool svg {
  width: 16px;
  height: 16px;
}

body.yamm-route-checkout .yamm-header__left,
body.yamm-route-checkout .yamm-header__actions,
body.woocommerce-checkout .yamm-header__left,
body.woocommerce-checkout .yamm-header__actions {
  visibility: hidden;
  pointer-events: none;
}

body.yamm-route-checkout .yamm-header__checkout-tools,
body.woocommerce-checkout .yamm-header__checkout-tools {
  display: flex;
}

.yamm-header__drawer,
.yamm-header__search-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100dvh - var(--yamm-header-height));
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid rgba(0, 0, 0, .065);
  background: #fff;
  color: #111;
}

.yamm-header__drawer[hidden],
.yamm-header__search-panel[hidden] {
  display: none;
}

.yamm-header__drawer-inner,
.yamm-header__search-panel {
  width: 100%;
  padding: 26px max(var(--yamm-page-inline), 34px) clamp(48px, 7vw, 92px);
}

.yamm-header__panel-top {
  min-height: 40px;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
}

.yamm-header__panel-close {
  min-height: 38px;
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.yamm-header__drawer-list,
.yamm-header__drawer-list .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.yamm-header__drawer-list {
  width: min(100%, 1380px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 72px);
}

.yamm-header__drawer-list > li > a {
  display: inline-block;
  margin-bottom: 18px;
  color: #111;
  text-decoration: none;
  font-family: var(--yamm-font-ui);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.04;
}

.yamm-header__drawer-list .sub-menu {
  display: grid;
  gap: 10px;
}

.yamm-header__drawer-list .sub-menu a,
.yamm-header__drawer-meta a {
  color: rgba(0, 0, 0, .67);
  text-decoration: none;
  font-family: var(--yamm-font-ui);
  font-size: 13px;
}

.yamm-header__drawer-meta {
  width: min(100%, 1380px);
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .1);
  display: flex;
  gap: 28px;
}

.yamm-header__search-form {
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
}

.yamm-header__search-input {
  width: 100%;
  min-height: 64px;
  padding: 0 26px;
  border: 1px solid #111;
  border-radius: 999px;
  outline: 0;
  background: #fff;
  color: #111;
  font-family: var(--yamm-font-body);
  font-size: 15px;
  font-weight: 300;
}

.yamm-header__search-input::placeholder {
  color: rgba(0, 0, 0, .43);
}

.yamm-header__search-submit {
  min-width: 132px;
  min-height: 52px;
  align-self: center;
  padding: 0 22px;
  border: 1px solid #050505;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  cursor: pointer;
  font-family: var(--yamm-font-ui);
}

.yamm-header__drawer-list a:focus-visible,
.yamm-header__drawer-meta a:focus-visible,
.yamm-header__action:focus-visible,
.yamm-header__icon-link:focus-visible,
.yamm-header__checkout-tool:focus-visible,
.yamm-header__panel-close:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

body.yamm-header-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body:not(.yamm-header-overlay-route) .yamm-main {
  padding-top: var(--yamm-header-height);
}

@media (max-width: 980px) {
  :root {
    --yamm-header-height: 74px;
    --yamm-header-inline: max(18px, env(safe-area-inset-left));
  }

  .yamm-header__bar {
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }

  .yamm-header__left {
    gap: 11px;
  }

  .yamm-header__search-toggle > span {
    display: none;
  }

  .yamm-header__brand-name {
    font-size: clamp(19px, 3.95vw, 27px);
  }

  .yamm-header__brand-city {
    margin-top: 5px;
    font-size: 8.5px;
  }

  .yamm-header__drawer,
  .yamm-header__search-panel {
    height: calc(100dvh - var(--yamm-header-height));
    max-height: none;
  }

  .yamm-header__drawer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yamm-header__drawer-inner,
  .yamm-header__search-panel {
    padding-bottom: max(48px, calc(24px + env(safe-area-inset-bottom)));
  }

  .yamm-header__checkout-tools {
    gap: 13px;
  }

  .yamm-header__checkout-tool span {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --yamm-header-height: 66px;
  }

  .yamm-header__bar {
    grid-template-columns: 1fr auto 1fr;
    gap: 7px;
  }

  .yamm-header__left {
    gap: 2px;
  }

  .yamm-header__menu-toggle > span,
  .yamm-header__search-toggle > span {
    display: none;
  }

  .yamm-header__action,
  .yamm-header__icon-link {
    min-width: 38px;
    min-height: 44px;
  }

  .yamm-header__actions {
    gap: 1px;
  }

  .yamm-header__brand {
    transform: translateY(7px);
  }

  .yamm-header__brand-name {
    font-size: var(--yamm-brand-mobile-name-size);
    letter-spacing: var(--yamm-brand-mobile-name-tracking);
  }

  .yamm-header__brand-city {
    font-size: var(--yamm-brand-mobile-city-size);
    letter-spacing: var(--yamm-brand-mobile-city-tracking);
  }

  .yamm-header__drawer-inner,
  .yamm-header__search-panel {
    min-height: 100%;
    padding: 24px 20px max(42px, calc(24px + env(safe-area-inset-bottom)));
  }

  .yamm-header__panel-top {
    margin-bottom: 22px;
  }

  .yamm-header__drawer-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .yamm-header__drawer-list > li {
    padding: 20px 0 22px;
    border-bottom: 1px solid rgba(0, 0, 0, .09);
  }

  .yamm-header__drawer-list > li:first-child {
    padding-top: 0;
  }

  .yamm-header__drawer-list > li > a {
    margin-bottom: 14px;
    font-size: clamp(27px, 8vw, 38px);
  }

  .yamm-header__drawer-list .sub-menu a {
    min-height: 38px;
    display: flex;
    align-items: center;
  }

  .yamm-header__drawer-meta {
    margin-top: 28px;
    padding-top: 18px;
    flex-wrap: wrap;
    gap: 22px;
  }

  .yamm-header__search-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .yamm-header__search-input {
    min-height: 54px;
    padding-inline: 20px;
  }

  .yamm-header__search-submit {
    justify-self: start;
    min-width: 124px;
    min-height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .yamm-header {
    transition: none;
  }
}
