body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #f3f3f0;
  color: #2b2b2b;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

input,
textarea,
select,
button {
  font: inherit;
}

.h5-input-reset {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: var(--h5-form-value-size);
  line-height: 1.25;
}

.h5-input-reset::placeholder {
  color: var(--h5-form-placeholder);
}

.h5-button-primary,
.h5-button-secondary,
.h5-button-dialog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  font-weight: var(--h5-primary-button-weight);
  line-height: 1.2;
  text-align: center;
}

.h5-button-primary {
  min-height: var(--h5-primary-button-height);
  border-radius: var(--h5-primary-button-radius);
  background: #006843;
  color: #fff;
  font-size: var(--h5-primary-button-size);
}

.h5-button-secondary {
  min-height: var(--h5-secondary-button-height);
  border: 1.5px solid #cfd2d7;
  border-radius: var(--h5-secondary-button-radius);
  background: #fff;
  color: #2f2f30;
  font-size: var(--h5-secondary-button-size);
}

.h5-button-dialog {
  min-height: var(--h5-dialog-action-height);
  border-radius: var(--h5-dialog-action-radius);
  font-size: 16px;
}

.mobile-shell {
  min-height: 100vh;
  min-height: 100dvh;
  background: #f3f3f0;
  overflow-x: clip;
}

.mobile-shell--simple {
  padding-bottom: 24px;
}

.mobile-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(32, 32, 32, 0.06);
}

.mobile-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 60px;
  padding: 0 var(--page-side);
}

.mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 500;
}

.mobile-brand img {
  width: 111px;
  height: 22px;
  object-fit: contain;
}

.mobile-header__actions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
}

.icon-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.icon-button--menu {
  flex-direction: column;
  gap: 4px;
}

.icon-button--menu span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #323232;
}

.icon-button:focus-visible,
.site-footer__row:focus-visible,
.footer-accordion__trigger:focus-visible,
.mobile-drawer__nav a:focus-visible,
.account-popover a:focus-visible,
.account-popover button:focus-visible,
.category-overlay__item-trigger:focus-visible,
.category-overlay__utility:focus-visible,
.category-overlay__search:focus-visible,
.category-overlay__back:focus-visible,
.category-overlay__brand:focus-visible {
  outline: 2px solid rgba(0, 104, 67, 0.28);
  outline-offset: 2px;
}

.account-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: var(--page-side);
  width: 150px;
  padding: 12px 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(22, 22, 22, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.account-popover::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 18px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
}

.account-popover.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-popover a,
.account-popover button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #2f2f2f;
  font-size: 15px;
  text-align: left;
}

.account-popover a::after,
.account-popover button::after {
  content: ">";
  font-size: 14px;
  line-height: 1;
  color: #474747;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.mobile-drawer.is-open {
  pointer-events: auto;
}

.mobile-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.42);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(82vw, 320px);
  padding: calc(20px + env(safe-area-inset-top, 0px)) 20px calc(24px + var(--safe-bottom));
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.24s ease;
}

.mobile-drawer.is-open .mobile-drawer__scrim {
  opacity: 1;
}

.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mobile-drawer__head strong {
  font-size: 20px;
  font-weight: 600;
}

.mobile-drawer__close,
.mobile-drawer__close::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #333;
}

.mobile-drawer__close {
  transform: rotate(45deg);
}

.mobile-drawer__close::before {
  transform: rotate(90deg);
}

.mobile-drawer__nav {
  display: grid;
  gap: 10px;
}

.mobile-drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 12px;
  background: #f3f5f7;
  color: #2f2f2f;
  font-size: 15px;
}

.mobile-drawer__nav a::after {
  content: ">";
  font-size: 14px;
  color: #6d7580;
}

.sub-header {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  min-height: calc(56px + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) var(--page-side) 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.08);
}

.sub-header strong {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.sub-header__back,
.sub-header__action {
  font-size: 13px;
  color: var(--text-secondary);
}

.placeholder-page {
  display: grid;
  gap: 12px;
  padding: 28px var(--page-side);
}

.placeholder-page h1 {
  font-size: 28px;
  line-height: 1.25;
}

.placeholder-page p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 24px;
}

.site-footer {
  margin-top: 26px;
  background: #262626;
  color: #fff;
}

.site-footer__row,
.footer-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #fff;
  font-size: 16px;
  text-align: left;
}

.site-footer__row::after {
  content: ">";
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
}

.footer-accordion__trigger {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-accordion__trigger::after {
  content: "+";
  font-size: 24px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
}

.footer-accordion__trigger.is-open::after {
  content: "-";
}

.footer-accordion__panel {
  display: none;
  padding: 0 0 20px;
}

.footer-accordion__panel.is-open {
  display: grid;
}

.footer-accordion__panel a {
  padding: 9px 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 22px 8px;
}

.site-footer__social img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-footer__legal {
  display: grid;
  gap: 10px;
  padding: 6px 22px calc(24px + var(--safe-bottom));
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.category-overlay {
  position: fixed;
  inset: 0;
  z-index: 220;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.category-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.category-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 15, 18, 0.18);
}

.category-overlay__surface {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  transform: translateX(-18px);
  transition: transform 0.22s ease;
}

.category-overlay.is-open .category-overlay__surface {
  transform: translateX(0);
}

.category-overlay__header {
  background: #ececec;
}

.category-overlay__header-inner {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  column-gap: 14px;
  min-height: calc(58px + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) 31px 0;
}

.category-overlay__back,
.category-overlay__search {
  position: relative;
  width: 28px;
  height: 28px;
  border: 0;
  padding: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
}

.category-overlay__back::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-left: 2px solid #2f3135;
  border-bottom: 2px solid #2f3135;
  transform: rotate(45deg);
}

.category-overlay__search::before,
.category-overlay__search::after {
  content: "";
  position: absolute;
}

.category-overlay__search::before {
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid #2f3135;
  border-radius: 50%;
}

.category-overlay__search::after {
  right: 2px;
  bottom: 4px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: #2f3135;
  transform: rotate(45deg);
  transform-origin: right center;
}

.category-overlay__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #2f3135;
}

.category-overlay__brand img {
  width: 110px;
  height: auto;
  flex: 0 0 auto;
}

.category-overlay__brand strong {
  min-width: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
}

.category-overlay__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 4px 16px calc(24px + var(--safe-bottom));
  background: #fff;
}

.category-overlay__list {
  padding-top: 4px;
}

.category-overlay__item {
  border-bottom: 1px solid rgba(47, 49, 53, 0.1);
}

.category-overlay__item-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2f3135;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  text-align: left;
}

.category-overlay__item-chevron {
  width: 11px;
  height: 11px;
  border-right: 2px solid #2f3135;
  border-bottom: 2px solid #2f3135;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.category-overlay__item-trigger[aria-expanded="true"] .category-overlay__item-chevron {
  transform: rotate(-135deg);
}

.category-overlay__item-panel {
  display: grid;
  gap: 8px;
  padding: 0 0 14px;
}

.category-overlay__item-panel[hidden] {
  display: none;
}

.category-overlay__item-panel a {
  display: block;
  padding-left: 2px;
  color: #707780;
  font-size: 14px;
  line-height: 1.5;
}

.category-overlay__utility-area {
  margin-top: auto;
  padding-top: 22px;
}

.category-overlay__utility-list {
  display: grid;
  gap: 12px;
}

.category-overlay__utility-list--single {
  gap: 0;
}

.category-overlay__utility {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 10px;
  align-items: center;
  column-gap: 14px;
  min-height: 60px;
  padding: 0 16px 0 14px;
  border-radius: var(--h5-card-radius);
  background: #f6f7f9;
  color: #2f3135;
}

.category-overlay__utility-label {
  min-width: 0;
  font-size: 15px;
  line-height: 1.3;
}

.category-overlay__utility-arrow {
  width: 9px;
  height: 9px;
  border-top: 1.75px solid #2f3135;
  border-right: 1.75px solid #2f3135;
  transform: rotate(45deg);
}

.category-overlay__utility-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.category-overlay__utility--profile .category-overlay__utility-icon::before,
.category-overlay__utility--profile .category-overlay__utility-icon::after,
.category-overlay__utility--locale .category-overlay__utility-icon::before,
.category-overlay__utility--locale .category-overlay__utility-icon::after {
  content: "";
  position: absolute;
}

.category-overlay__utility--profile .category-overlay__utility-icon::before {
  left: 5px;
  top: 1px;
  width: 12px;
  height: 12px;
  border: 1.75px solid #2f3135;
  border-radius: 50%;
}

.category-overlay__utility--profile .category-overlay__utility-icon::after {
  left: 1px;
  bottom: 0;
  width: 22px;
  height: 12px;
  border: 1.75px solid #2f3135;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom: 0;
}

.category-overlay__utility--locale .category-overlay__utility-icon {
  border-left: 1.75px solid #2f3135;
  border-right: 1.75px solid #2f3135;
  border-radius: 50%;
}

.category-overlay__utility--locale .category-overlay__utility-icon::before {
  inset: 2px;
  border: 1.75px solid #2f3135;
  border-radius: 50%;
}

.category-overlay__utility--locale .category-overlay__utility-icon::after {
  left: 4px;
  top: 11px;
  width: 16px;
  height: 2px;
  background: #2f3135;
  box-shadow: 0 -6px 0 #2f3135, 0 6px 0 #2f3135;
}

.category-overlay__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: var(--h5-primary-button-height);
  margin-top: 18px;
  border-radius: var(--h5-primary-button-radius);
  background: #006843;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.category-overlay__login-icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.category-overlay__login-icon::before,
.category-overlay__login-icon::after {
  content: "";
  position: absolute;
}

.category-overlay__login-icon::before {
  left: 4px;
  top: 0;
  width: 8px;
  height: 8px;
  border: 1.75px solid #fff;
  border-radius: 50%;
}

.category-overlay__login-icon::after {
  left: 1px;
  bottom: 0;
  width: 14px;
  height: 8px;
  border: 1.75px solid #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 0;
}

@media (max-width: 430px) {
  .mobile-brand {
    font-size: 16px;
  }

  .mobile-brand img {
    width: 104px;
  }

  .category-overlay__brand {
    font-size: 16px;
  }

  .category-overlay__brand img {
    width: 104px;
  }
}

@media (max-width: 359px) {
  .category-overlay__header-inner,
  .category-overlay__main {
    padding-inline: 14px;
  }

  .category-overlay__brand img {
    width: 98px;
  }

  .category-overlay__brand strong {
    font-size: 17px;
  }

  .category-overlay__item-trigger {
    min-height: 60px;
    font-size: 17px;
  }

  .category-overlay__utility-list {
    gap: 10px;
  }

  .category-overlay__utility-area {
    padding-top: 18px;
  }

  .category-overlay__utility {
    min-height: 56px;
    padding-inline: 14px;
    column-gap: 12px;
  }

  .category-overlay__utility-label {
    font-size: 14px;
  }

  .category-overlay__login {
    margin-top: 14px;
    min-height: 52px;
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .mobile-shell {
    max-width: 430px;
    margin: 0 auto;
    background: #f3f3f0;
    box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.06), 0 24px 60px rgba(15, 23, 42, 0.12);
  }

  .mobile-drawer__panel {
    left: 50%;
    transform: translateX(calc(-50% - 100%));
  }

  .mobile-drawer.is-open .mobile-drawer__panel {
    transform: translateX(-50%);
  }

  .category-overlay__surface {
    max-width: 430px;
    margin: 0 auto;
    box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.06), 0 24px 60px rgba(15, 23, 42, 0.12);
  }
}
