@media (max-width: 980px) {
  body.product-detail-body header .mobile-menu-panel {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: #f7f7f5;
    color: #171717;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition:
      visibility 220ms linear,
      opacity 220ms ease,
      transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  body.product-detail-body header .mobile-menu-panel::before {
    display: none;
  }

  body.product-detail-body.mobile-menu-open .mobile-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  body.product-detail-body .mobile-menu-head {
    min-height: 68px;
    flex: 0 0 auto;
    padding: max(12px, env(safe-area-inset-top)) 18px 10px;
    border-bottom: 1px solid rgba(17, 18, 20, 0.1);
    background: rgba(247, 247, 245, 0.96);
  }

  body.product-detail-body .mobile-menu-brand img {
    width: 116px;
    filter: none !important;
  }

  body.product-detail-body .mobile-menu-close {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #171717;
  }

  body.product-detail-body .mobile-menu-close:hover,
  body.product-detail-body .mobile-menu-close:focus-visible {
    background: rgba(17, 18, 20, 0.05);
    outline: none;
  }

  body.product-detail-body .mobile-menu-close span {
    width: 19px;
    height: 1.5px;
  }

  body.product-detail-body .mobile-menu-stage {
    position: relative;
    min-height: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  body.product-detail-body .mobile-menu-view {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: start;
    padding: 26px 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      opacity 220ms ease,
      transform 340ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  body.product-detail-body .mobile-menu-view[data-mobile-menu-view="root"] {
    opacity: 1;
    transform: translateX(0);
  }

  body.product-detail-body .mobile-menu-stage.is-child-open .mobile-menu-view[data-mobile-menu-view="root"] {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-28%);
  }

  body.product-detail-body .mobile-menu-stage.is-child-open .mobile-menu-view.is-active:not([data-mobile-menu-view="root"]) {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  body.product-detail-body .mobile-menu-view.is-active[data-mobile-menu-view="root"] {
    pointer-events: auto;
  }

  body.product-detail-body .mobile-menu-view > a,
  body.product-detail-body .mobile-menu-view > .mobile-menu-parent {
    width: 100%;
    min-height: 60px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20px;
    align-items: center;
    gap: 12px;
    padding: 0 2px;
    border: 0;
    border-bottom: 1px solid rgba(17, 18, 20, 0.12);
    border-radius: 0;
    background: transparent;
    color: #171717;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }

  body.product-detail-body .mobile-menu-view > a {
    grid-template-columns: minmax(0, 1fr);
  }

  body.product-detail-body .mobile-menu-view > a::after {
    display: none;
  }

  body.product-detail-body .mobile-menu-view > a > span,
  body.product-detail-body .mobile-menu-view > .mobile-menu-parent > span {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.15;
  }

  body.product-detail-body .mobile-menu-view > a > small {
    grid-column: 1;
    display: block;
    margin-top: -12px;
    color: rgba(17, 18, 20, 0.54);
    font-size: 12px;
    font-weight: 450;
    line-height: 1.35;
  }

  body.product-detail-body .mobile-menu-view > .mobile-menu-featured {
    min-height: 72px;
    grid-template-rows: auto auto;
    align-content: center;
  }

  body.product-detail-body .mobile-menu-view > .mobile-menu-featured > span {
    font-size: 21px;
    font-weight: 630;
  }

  body.product-detail-body .mobile-menu-parent::after {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    justify-self: end;
    margin-right: 4px;
    border-top: 1.4px solid currentColor;
    border-right: 1.4px solid currentColor;
    opacity: 0.68;
    transform: rotate(45deg);
  }

  body.product-detail-body .mobile-menu-divider {
    height: 22px;
    display: block;
    border-bottom: 1px solid rgba(17, 18, 20, 0.12);
  }

  body.product-detail-body .mobile-menu-back {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    justify-self: start;
    margin: -8px 0 20px;
    padding: 0 4px;
    border: 0;
    background: transparent;
    color: rgba(17, 18, 20, 0.68);
    font-size: 14px;
    font-weight: 540;
    cursor: pointer;
  }

  body.product-detail-body .mobile-menu-back::before {
    content: "";
    width: 8px;
    height: 8px;
    border-bottom: 1.4px solid currentColor;
    border-left: 1.4px solid currentColor;
    transform: rotate(45deg);
  }

  body.product-detail-body .mobile-menu-back:hover,
  body.product-detail-body .mobile-menu-back:focus-visible {
    color: #067daf;
    outline: none;
  }

  body.product-detail-body .mobile-menu-view h2 {
    margin: 0 0 18px;
    color: #101114;
    font-size: 32px;
    font-weight: 650;
    line-height: 1.05;
  }

  body.product-detail-body .mobile-menu-account {
    min-height: 66px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    margin: 0 20px;
    padding: 10px 2px max(12px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(17, 18, 20, 0.12);
    color: #171717;
    text-decoration: none;
  }

  body.product-detail-body .mobile-menu-account svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  body.product-detail-body .mobile-menu-account > span {
    display: grid;
    gap: 2px;
  }

  body.product-detail-body .mobile-menu-account strong {
    font-size: 14px;
    font-weight: 620;
  }

  body.product-detail-body .mobile-menu-account small {
    color: rgba(17, 18, 20, 0.54);
    font-size: 11px;
    font-weight: 450;
  }
}

@media (max-width: 430px) {
  body.product-detail-body .mobile-menu-view {
    padding: 20px 18px;
  }

  body.product-detail-body .mobile-menu-view > a,
  body.product-detail-body .mobile-menu-view > .mobile-menu-parent {
    min-height: 56px;
  }

  body.product-detail-body .mobile-menu-view > .mobile-menu-featured {
    min-height: 68px;
  }

  body.product-detail-body .mobile-menu-view > a > span,
  body.product-detail-body .mobile-menu-view > .mobile-menu-parent > span {
    font-size: 18px;
  }

  body.product-detail-body .mobile-menu-view > .mobile-menu-featured > span {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.product-detail-body .mobile-menu-panel,
  body.product-detail-body .mobile-menu-view {
    transition: none !important;
  }
}

.header-mini-cart__quantity {
  width: 94px;
  display: grid;
  grid-template-columns: 30px 32px 30px;
  align-items: center;
  overflow: hidden;
  margin-top: 4px;
  border: 1px solid #d5dade;
  border-radius: 5px;
  background: #fff;
}

.header-mini-cart__quantity button,
.header-mini-cart__quantity output {
  width: 100%;
  height: 30px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #20262b;
  font: inherit;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

.header-mini-cart__quantity button {
  cursor: pointer;
}

.header-mini-cart__quantity button:first-child {
  border-right: 1px solid #e1e4e6;
}

.header-mini-cart__quantity button:last-child {
  border-left: 1px solid #e1e4e6;
}

.header-mini-cart__quantity output {
  font-size: 12px;
  font-weight: 700;
}

.header-mini-cart__quantity button:hover:not(:disabled) {
  background: #f2f4f5;
}

.header-mini-cart__quantity button:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid #00a9e8;
  outline-offset: -2px;
}

.header-mini-cart__quantity button:disabled {
  color: #a4abb0;
  cursor: not-allowed;
}

.header-mini-cart__quantity[aria-busy="true"] {
  opacity: 0.62;
}

.header-mini-cart [data-mini-cart-quantity-status] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap !important;
}
