:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-text: #171d16;
  --color-muted: #687064;
  --color-line: #e6e9e3;
  --color-soft: #f5f6f3;
  --color-green: #20371d;
  --color-brown: #756253;
  --color-red: #c6382e;
  --container-wide: 1760px;
  --side-pad: clamp(20px, 4vw, 76px);
  --wp-admin-bar-offset: 0px;
}

* { box-sizing: border-box; }
html {
  background: #fff;
  min-height: 100%;
}
body {
  background: var(--color-bg);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  margin: 0;
  min-height: 100dvh;
}

body.admin-bar {
  --wp-admin-bar-offset: 32px;
}

@media (max-width: 782px) {
  body.admin-bar {
    --wp-admin-bar-offset: 46px;
  }
}

a { color: inherit; text-decoration: none; }
button,
input,
select,
textarea { font: inherit; }
img { display: block; max-width: 100%; height: auto; }
svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-line);
  position: sticky;
  top: var(--wp-admin-bar-offset);
  z-index: 50;
}

.site-header__inner {
  align-items: center;
  display: grid;
  gap: clamp(22px, 3vw, 44px);
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  height: 74px;
  padding: 0 var(--side-pad);
  width: 100%;
}

.site-header__inner--no-nav {
  grid-template-columns: minmax(0, 1fr) auto;
}

.site-menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--color-text);
  cursor: pointer;
  display: none;
  height: 38px;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 38px;
}

.site-brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  justify-self: start;
  line-height: 1;
  min-width: 0;
  white-space: nowrap;
}

.site-brand__mark {
  align-items: center;
  border: 1px solid var(--color-line);
  color: var(--color-green);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: Georgia, "Songti SC", serif;
  font-size: 20px;
  height: 38px;
  justify-content: center;
  overflow: hidden;
  width: 38px;
}

.site-brand__mark img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.site-brand__name {
  color: var(--color-text);
  display: block;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: .04em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  align-self: stretch;
  display: flex;
  justify-content: center;
  justify-self: center;
  min-width: 0;
}

.site-nav__list {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.2vw, 36px);
  list-style: none;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.site-nav__list a {
  align-items: center;
  color: #263024;
  display: inline-flex;
  font-size: 15px;
  height: 74px;
  position: relative;
  white-space: nowrap;
}

.site-nav__list a::after {
  background: var(--color-green);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
  width: 100%;
}

.site-nav__list a:hover::after,
.site-nav__item.is-current > a::after,
.site-submenu__item.is-current > a::after,
.site-nav__item--dropdown:hover > a::after,
.site-nav__item--dropdown:focus-within > a::after,
.site-nav__item--dropdown.is-open > a::after {
  transform: scaleX(1);
}

.site-nav__item--dropdown {
  align-items: center;
  display: flex;
  height: 100%;
  position: relative;
}

.site-nav__item--dropdown::before {
  bottom: -22px;
  content: "";
  height: 36px;
  left: -24px;
  position: absolute;
  right: -24px;
}

.product-menu {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 42px rgba(20, 26, 18, .11);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  left: 50%;
  opacity: 0;
  padding: 16px;
  pointer-events: none;
  position: fixed;
  top: calc(74px + var(--wp-admin-bar-offset));
  transform: translate(-50%, 10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  visibility: hidden;
  width: min(1180px, calc(100vw - (var(--side-pad) * 2)));
  z-index: 60;
}

.product-menu,
.site-submenu {
  list-style: none;
  margin: 0;
}

.site-submenu {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(230, 233, 227, .88);
  box-shadow: 0 20px 52px rgba(20, 26, 18, .14);
  left: 0;
  min-width: 210px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 1px);
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  visibility: hidden;
  z-index: 60;
}

@media (min-width: 1181px) {
  .site-nav__item--dropdown:hover .product-menu,
  .site-nav__item--dropdown:focus-within .product-menu,
  .site-nav__item--dropdown.is-open .product-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
  }
}

.site-nav__item--dropdown:hover > .site-submenu,
.site-nav__item--dropdown:focus-within > .site-submenu,
.site-nav__item--dropdown.is-open > .site-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.product-menu a,
.product-menu__empty {
  align-items: center;
  color: rgba(23, 29, 22, .72);
  display: flex;
  font-size: 12px;
  height: auto;
  flex-direction: column;
  justify-content: center;
  letter-spacing: .04em;
  line-height: 1.35;
  min-height: 92px;
  padding: 8px 5px;
  text-align: center;
  white-space: normal;
}

.product-menu a::after { display: none; }
.site-submenu a::after { display: none; }
.product-menu a:hover {
  background: var(--color-soft);
  color: var(--color-green);
}

.site-submenu a {
  color: rgba(23, 29, 22, .76);
  display: flex;
  font-size: 13px;
  height: auto;
  min-height: 40px;
  padding: 8px 10px;
}

.site-submenu a:hover {
  background: var(--color-soft);
  color: var(--color-green);
}

.product-menu__series {
  gap: 9px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.product-menu__series > span:last-child {
  transition: transform .18s ease;
}

.product-menu__series:hover > span:last-child {
  transform: translateY(-1px);
}

@media (min-width: 1181px) {
  .product-menu__item {
    min-width: 0;
  }

  .product-menu__item.is-current .product-menu__series {
    background: #f4f7f3;
    color: var(--color-green);
  }

  .product-menu__item.is-current .product-menu__thumb {
    border-color: rgba(32, 55, 29, .34);
  }

  .product-menu__item.is-current .product-menu__series > span:last-child {
    font-weight: 600;
    position: relative;
  }

  .product-menu__item.is-current .product-menu__series > span:last-child::after {
    background: var(--color-green);
    bottom: -7px;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 24px;
  }
}

.product-menu__thumb {
  align-items: center;
  background: rgba(255, 255, 255, .44);
  border: 1px solid rgba(32, 55, 29, .08);
  display: inline-flex;
  flex: 0 0 48px;
  height: 48px;
  justify-content: center;
  overflow: hidden;
  width: 48px;
}

.product-menu__thumb img {
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease;
  width: 100%;
}

.product-menu__series:hover .product-menu__thumb img {
  transform: scale(1.06);
}

.site-tools {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  justify-self: end;
}

.site-tools > a,
.site-tools > button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--color-text);
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 38px;
}

.site-tools > button[data-menu-toggle] { display: none; }
.site-menu-toggle svg,
.site-tools svg {
  height: 19px;
  width: 19px;
}

.site-search-trigger[aria-expanded="true"],
.site-menu-toggle:hover,
.site-tools > a:hover,
.site-tools > button:hover {
  color: var(--color-green);
}

body.is-search-open,
body.is-menu-open { overflow: hidden; }

.site-nav-backdrop {
  background: rgba(17, 23, 15, .18);
  backdrop-filter: blur(6px);
  border: 0;
  bottom: 0;
  cursor: pointer;
  left: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: calc(74px + var(--wp-admin-bar-offset));
  transition: opacity .22s ease, visibility .22s ease;
  visibility: hidden;
  z-index: 45;
}

body.is-menu-open .site-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.site-search-overlay {
  background: rgba(255, 255, 255, .82);
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: var(--wp-admin-bar-offset);
  transition: opacity .18s ease, visibility .18s ease;
  visibility: hidden;
  z-index: 80;
}

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

.site-search-overlay__panel {
  background: #fff;
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 22px 60px rgba(20, 26, 18, .1);
  min-height: 264px;
  padding: 38px var(--side-pad) 42px;
  position: relative;
  transform: translateY(-16px);
  transition: transform .2s ease;
}

.site-search-overlay.is-open .site-search-overlay__panel {
  transform: translateY(0);
}

.site-search-overlay__close {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--color-text);
  cursor: pointer;
  display: inline-flex;
  font-size: 32px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: var(--side-pad);
  top: 28px;
  width: 42px;
}

.site-search-overlay__form {
  margin: 0 auto;
  max-width: 980px;
}

.site-search-overlay__form label {
  color: var(--color-muted);
  display: block;
  font-size: 14px;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.site-search-overlay__field {
  align-items: center;
  border-bottom: 1px solid var(--color-text);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.site-search-overlay__field input {
  background: transparent;
  border: 0;
  color: var(--color-text);
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 400;
  min-width: 0;
  outline: 0;
  padding: 10px 0 18px;
}

.site-search-overlay__field button {
  background: var(--color-green);
  border: 1px solid var(--color-green);
  color: #fff;
  cursor: pointer;
  height: 46px;
  padding: 0 28px;
}

.site-search-overlay__quick {
  align-items: center;
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 24px auto 0;
  max-width: 980px;
}

.site-search-overlay__quick span {
  color: var(--color-text);
  font-weight: 600;
}

.site-search-overlay__quick a {
  border-bottom: 1px solid transparent;
  font-size: 14px;
}

.site-search-overlay__quick a:hover {
  border-bottom-color: currentColor;
  color: var(--color-green);
}

.site-main,
.home-main,
.product-archive,
.product-detail,
.product-search,
.plain-page {
  background: #fff;
  flex: 1 0 auto;
  margin: 0 auto;
  max-width: none;
  min-height: 60vh;
  min-width: 0;
  width: 100%;
}

.product-search {
  width: 100%;
}

.product-archive {
  display: flex;
  flex-direction: column;
}

.container {
  margin: 0 auto;
  width: min(var(--container-wide), calc(100% - (var(--side-pad) * 2)));
}

.home-hero {
  background: #fff;
  padding: 16px var(--side-pad) 0;
  width: 100%;
}

.home-hero__viewport {
  aspect-ratio: 16 / 7.4;
  background: var(--color-soft);
  min-height: 500px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.home-hero__slide {
  background-image:
    linear-gradient(90deg, rgba(17, 23, 15, .34), rgba(17, 23, 15, .04)),
    var(--hero-image, linear-gradient(90deg, #a6aaa2, #f0f1ee));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .55s ease;
}

.home-hero__slide.is-active { opacity: 1; }

.home-hero__content {
  color: #fff;
  left: 11%;
  max-width: 620px;
  position: absolute;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
  top: 31%;
}

.home-hero__content span {
  display: block;
  font-size: 13px;
  letter-spacing: .22em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.home-hero__content h1 {
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(44px, 5vw, 82px);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.08;
  margin: 0 0 20px;
}

.home-hero__content p {
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.5;
  margin: 0 0 28px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.home-hero__actions a {
  border-bottom: 1px solid rgba(255, 255, 255, .9);
  color: #fff;
  padding-bottom: 7px;
}

.home-hero__arrow {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, .34);
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 0;
  height: 54px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  z-index: 4;
}

.home-hero__arrow::before {
  display: block;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 11px;
  width: 11px;
}

.home-hero__arrow--prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.home-hero__arrow--next::before {
  transform: translateX(-2px) rotate(45deg);
}

.home-hero__arrow:hover {
  background: rgba(255, 255, 255, .48);
  border-color: rgba(255, 255, 255, .72);
  transform: translateY(-50%) scale(1.04);
}

.home-hero__arrow--prev { left: 20px; }
.home-hero__arrow--next { right: 20px; }

.home-hero__dots {
  align-items: center;
  bottom: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 5;
}

.home-hero__dots button {
  background: rgba(255, 255, 255, .72);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 7px;
  padding: 0;
  width: 7px;
}

.home-hero__dots button.is-active {
  background: #fff;
  width: 30px;
}

.product-showcase {
  background: #fff;
  margin: 0 auto 92px;
  padding: 0 var(--side-pad);
  width: 100%;
}

.home-block-content {
  background: #fff;
  margin: 0 auto 92px;
  overflow: clip;
  width: 100%;
}

.home-block-content__inner {
  width: 100%;
}

.home-block-content__inner > :where(:not(.alignleft):not(.alignright):not(.alignwide):not(.alignfull)) {
  margin-left: auto;
  margin-right: auto;
  max-width: min(1180px, calc(100% - (var(--side-pad) * 2)));
}

.home-block-content__inner > .alignwide {
  margin-left: auto;
  margin-right: auto;
  max-width: min(var(--container-wide), calc(100% - (var(--side-pad) * 2)));
}

.home-block-content__inner > .alignfull {
  max-width: none;
  width: 100%;
}

.home-block-content__inner img,
.home-block-content__inner video,
.home-block-content__inner iframe {
  height: auto;
  max-width: 100%;
}

.home-block-content__inner .wp-block-image,
.home-block-content__inner .wp-block-video,
.home-block-content__inner .wp-block-table,
.home-block-content__inner .wp-block-columns,
.home-block-content__inner .wp-block-group {
  margin-bottom: 24px;
  margin-top: 24px;
}

.home-block-content__inner .wp-block-table {
  max-width: 100%;
  overflow-x: auto;
}

.home-block-content__inner .wp-block-columns {
  gap: clamp(24px, 4vw, 64px);
}

.home-block-content__inner .wp-block-column {
  min-width: 0;
}

@media (max-width: 782px) {
  .home-block-content__inner .wp-block-columns {
    flex-wrap: wrap !important;
  }

  .home-block-content__inner .wp-block-column {
    flex-basis: 100% !important;
  }
}

.home-hero + .product-showcase { padding-top: 104px; }

.section-title {
  align-items: center;
  color: var(--color-brown);
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr auto 1fr;
  margin: 0 auto 62px;
  max-width: min(1180px, 100%);
  text-align: center;
}

.section-title span {
  background: currentColor;
  height: 1px;
  opacity: .55;
}

.section-title h2 {
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(40px, 4.8vw, 72px);
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1;
  margin: 0;
}

.section-title p {
  color: var(--color-muted);
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 500;
  letter-spacing: .18em;
  margin: 18px 0 0;
}

.section-head {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin: 0 0 32px;
}

.section-head h2 {
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 500;
  margin: 0;
}

.section-head p {
  color: var(--color-muted);
  letter-spacing: .16em;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  gap: clamp(34px, 3vw, 58px) clamp(22px, 2.3vw, 42px);
  grid-template-columns: repeat(var(--grid-columns, 4), minmax(210px, 1fr));
  width: 100%;
}

.product-showcase .product-grid {
  gap: 42px 30px;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  justify-content: stretch;
  margin: 0;
  max-width: none;
}

.product-showcase .product-card {
  width: 100%;
}

.product-grid--archive {
  --archive-card-min: 210px;
  gap: clamp(28px, 2.6vw, 38px) clamp(16px, 1.8vw, 24px);
  grid-template-columns: repeat(auto-fill, minmax(var(--archive-card-min), 1fr));
  justify-content: start;
}

.product-grid--related { grid-template-columns: repeat(4, minmax(210px, 1fr)); }

.product-card { min-width: 0; }

.product-card__image {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: var(--color-soft);
  display: flex;
  justify-content: center;
  min-height: 210px;
  overflow: hidden;
}

.product-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform .32s ease;
  width: 100%;
}

.product-card__image span {
  color: #a5aca1;
  font-size: 13px;
}

.product-card:hover .product-card__image img { transform: scale(1.025); }
.product-card h3 {
  color: #0d140e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.32;
  margin: 12px 0 6px;
}
.product-card p { color: var(--color-muted); margin: 0 0 8px; }
.product-card strong {
  color: var(--color-red);
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.product-showcase .product-card__image {
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  width: 100%;
}

.product-showcase .product-card__image span {
  font-size: 12px;
}

.category-dock {
  background: #fff;
  margin: 44px 0 78px;
  padding: 0 var(--side-pad);
  scroll-margin-top: 98px;
}

.home-category-grid {
  display: grid;
  gap: 24px clamp(14px, 1.6vw, 28px);
  grid-template-columns: repeat(10, minmax(0, 1fr));
  justify-content: stretch;
  margin: 0;
  max-width: none;
  scroll-margin-top: 98px;
  width: 100%;
}

.home-category-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: flex-start;
  min-width: 0;
  padding: 4px 4px 8px;
  text-align: center;
}

.home-category-card__image {
  align-items: center;
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  display: flex;
  height: clamp(72px, 6.2vw, 120px);
  justify-content: center;
  overflow: hidden;
  width: min(100%, clamp(72px, 6.2vw, 120px));
}

.home-category-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform .32s ease;
  width: 100%;
}

.home-category-card:hover .home-category-card__image img {
  transform: scale(1.035);
}

.home-category-card strong {
  color: var(--color-brown);
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.home-category-card:hover strong {
  color: var(--color-green);
}

.archive-head {
  background: #fff;
  padding: 30px var(--side-pad) 24px;
}

.breadcrumb {
  align-items: center;
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 22px;
}

.archive-head .breadcrumb {
  margin-bottom: 0;
}

.archive-head h1 {
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  margin: 0;
}

.archive-layout {
  align-items: start;
  background: #fff;
  display: grid;
  flex: 1 0 auto;
  grid-template-columns: minmax(0, 1fr);
  padding: 34px var(--side-pad) 92px;
}

.archive-layout--sparse {
  min-height: calc(100dvh - 74px - 108px);
  padding-bottom: 34px;
}

.archive-results {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.archive-footer {
  align-items: center;
  border-top: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
  padding-top: 24px;
}

.archive-summary {
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px 18px;
  justify-content: center;
  line-height: 1.5;
  text-align: center;
}

.archive-summary span:first-child {
  color: var(--color-text);
  font-weight: 500;
}

.stream-loader {
  align-items: center;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(192, 197, 187, .72);
  backdrop-filter: blur(14px);
  color: var(--color-muted);
  cursor: pointer;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 0;
  padding: 10px 18px;
  width: auto;
}

.stream-loader span {
  background: var(--color-green);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.product-detail {
  --detail-container: min(1440px, var(--container-wide));
  background: #fff;
  padding: clamp(28px, 4vw, 52px) var(--side-pad) 86px;
  width: 100%;
}

.detail-layout {
  align-items: start;
  display: grid;
  column-gap: clamp(56px, 5vw, 96px);
  row-gap: 44px;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, .9fr);
  margin: 0 auto clamp(54px, 6vw, 78px);
  max-width: var(--detail-container);
  width: 100%;
}

.detail-gallery {
  align-items: start;
  display: grid;
  gap: clamp(22px, 2vw, 30px);
  grid-template-columns: clamp(84px, 6.5vw, 96px) minmax(0, 1fr);
  max-width: none;
  position: relative;
  width: 100%;
  z-index: 3;
}

.detail-thumbs {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
}

.detail-thumbs button {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--color-line);
  cursor: pointer;
  flex: 0 0 auto;
  height: auto;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.detail-thumbs button.is-active { border-color: var(--color-green); }

.detail-thumbs img {
  aspect-ratio: 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.detail-main-image,
.detail-empty-image {
  aspect-ratio: 1 / 1;
  background-color: var(--color-soft);
  cursor: crosshair;
  height: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.detail-empty-image {
  grid-column: 1 / -1;
  justify-self: end;
}

.detail-main-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.detail-zoom-lens {
  background: rgba(255, 255, 255, .24);
  border: 1px solid rgba(32, 40, 32, .26);
  box-shadow: 0 10px 24px rgba(25, 32, 23, .14);
  height: 116px;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .12s ease;
  width: 116px;
  z-index: 4;
}

.detail-zoom-panel {
  background-color: #fff;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid rgba(218, 223, 214, .95);
  box-shadow: 0 24px 60px rgba(25, 32, 23, .16);
  height: min(520px, 100%);
  left: calc(100% + 18px);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: opacity .12s ease, visibility .12s ease;
  visibility: hidden;
  width: min(430px, 36vw);
  z-index: 20;
}

.detail-gallery.is-zooming .detail-zoom-lens,
.detail-gallery.is-zooming .detail-zoom-panel {
  opacity: 1;
  visibility: visible;
}

.detail-main-image span {
  background: rgba(23, 32, 22, .78);
  border-radius: 999px;
  bottom: 16px;
  color: #fff;
  padding: 6px 12px;
  position: absolute;
  right: 16px;
}

.detail-summary {
  align-self: start;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  width: 100%;
}

.detail-summary h1 {
  border-bottom: 1px solid #e1e4df;
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 28px;
  padding-bottom: 8px;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 14px;
}

.detail-badges span {
  background: #fff;
  border: 1px solid #e3e8df;
  border-radius: 999px;
  color: #56634f;
  font-size: 13px;
  padding: 6px 11px;
}

.sku-group {
  padding: 0;
}

.sku-group h2 {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
}

.sku-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  overscroll-behavior: contain;
  padding: 0;
  scrollbar-color: rgba(93, 104, 88, .45) transparent;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

.sku-list.is-scrollable {
  overflow-y: auto;
  padding-right: 6px;
}

.sku-list::-webkit-scrollbar {
  width: 6px;
}

.sku-list::-webkit-scrollbar-thumb {
  background: rgba(93, 104, 88, .45);
  border-radius: 6px;
}

.sku-list::-webkit-scrollbar-track {
  background: transparent;
}

.sku-list__row {
  align-items: center;
  background: #f7f8f6;
  border: 1px solid #e1e5de;
  border-radius: 6px;
  column-gap: 14px;
  display: flex;
  justify-content: space-between;
  min-height: 48px;
  padding: 10px 12px;
}

.sku-list__spec {
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.55;
  min-width: 0;
  overflow-wrap: anywhere;
}

.sku-list__price {
  background: #fff;
  border: 1px solid #d9ded5;
  border-radius: 4px;
  color: #6e4637;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  padding: 5px 8px;
  white-space: nowrap;
}

.button-primary {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
}

.button-primary {
  background: #a35c3a;
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #87472e;
}

.detail-content,
.related-products {
  margin: 0 auto 76px;
  max-width: min(1280px, var(--container-wide));
  width: 100%;
}

.detail-content {
  max-width: var(--detail-container);
  overflow-x: hidden;
}

.detail-content img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.detail-content > img,
.detail-content .wp-block-image,
.detail-content .wp-block-video,
.detail-content .wp-block-table,
.detail-content .wp-block-columns,
.detail-content .wp-block-group {
  margin-bottom: 24px;
  margin-top: 24px;
}

.detail-content .wp-block-image {
  max-width: 100%;
}

.detail-content .wp-block-image img {
  margin: 0;
}

.detail-content .wp-block-columns {
  align-items: center;
  display: flex;
  gap: clamp(24px, 4vw, 64px);
}

.detail-content .wp-block-column {
  min-width: 0;
}

.detail-content video,
.detail-content iframe {
  display: block;
  height: auto;
  max-width: 100%;
}

.detail-content .wp-block-table {
  max-width: 100%;
  overflow-x: auto;
}

.detail-content .wp-block-table table {
  border-collapse: collapse;
  min-width: 560px;
  width: 100%;
}

.detail-content .wp-block-table td,
.detail-content .wp-block-table th {
  border: 1px solid #dfe3de;
  padding: 12px 14px;
  text-align: left;
}

.detail-content h2,
.detail-content h3,
.detail-content p,
.detail-content li,
.detail-content td,
.detail-content th {
  letter-spacing: 0;
}

.detail-content p,
.detail-content li {
  color: #2f332d;
  font-size: 16px;
  line-height: 1.8;
}

.detail-content__text {
  color: #2f332d;
  font-size: 16px;
  line-height: 1.9;
  margin: 22px 0;
  max-width: 900px;
}

.detail-content__text p {
  margin: 0 0 12px;
}

@media (max-width: 782px) {
  .detail-content .wp-block-columns {
    flex-wrap: wrap !important;
  }

  .detail-content .wp-block-column {
    flex-basis: 100% !important;
  }

  .detail-content .wp-block-table table {
    min-width: 520px;
  }
}

.related-products h2 {
  font-family: Georgia, "Songti SC", serif;
  font-size: 38px;
  font-weight: 500;
}

.plain-page { padding: 58px var(--side-pad) 90px; }
.plain-content {
  margin: 0 auto;
  max-width: none;
  width: 100%;
}
.plain-content__header {
  margin: 0 auto 42px;
  max-width: 980px;
}
.plain-content__header h1 {
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 500;
  margin: 0;
}
.plain-content__header--left {
  text-align: left;
}
.plain-content__header--center {
  text-align: center;
}
.plain-content__body {
  width: 100%;
}
.plain-content__body > :where(:not(.alignwide):not(.alignfull)) {
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}
.plain-content__body > .alignwide {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--container-wide);
}
.plain-content__body > .alignfull {
  margin-left: calc(var(--side-pad) * -1);
  max-width: none;
  width: calc(100% + (var(--side-pad) * 2));
}
.plain-content__body img,
.plain-content__body video {
  height: auto;
  max-width: 100%;
}
.plain-content__body .wp-block-columns,
.plain-content__body .wp-block-group,
.plain-content__body .wp-block-image,
.plain-content__body .wp-block-video,
.plain-content__body .wp-block-cover,
.plain-content__body .wp-block-table {
  margin-bottom: clamp(24px, 3vw, 42px);
  margin-top: clamp(24px, 3vw, 42px);
}
.plain-content__body .wp-block-table {
  overflow-x: auto;
}
.mujian-new-products {
  margin-bottom: 24px;
  margin-top: 0;
}
.mujian-new-products .product-card__image img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  width: 100%;
}
.mujian-new-products__grid {
  --archive-card-min: 210px;
}
.product-search__layout {
  padding: clamp(40px, 4.5vw, 72px) var(--side-pad) 84px;
  width: 100%;
}
.product-search__header {
  margin-bottom: clamp(38px, 4vw, 58px);
  max-width: 760px;
}
.product-search__header h1 {
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 34px 0 0;
  overflow-wrap: anywhere;
}
.product-search__form label {
  color: var(--color-muted);
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}
.product-search__field {
  align-items: center;
  border-bottom: 1px solid var(--color-text);
  display: grid;
  gap: 12px;
  grid-template-columns: 22px minmax(0, 1fr) auto;
}
.product-search__icon {
  color: var(--color-muted);
  display: inline-flex;
}
.product-search__icon svg {
  height: 18px;
  width: 18px;
}
.product-search__field input {
  background: transparent;
  border: 0;
  color: var(--color-text);
  font-size: 19px;
  min-width: 0;
  outline: 0;
  padding: 13px 0 14px;
  width: 100%;
}
.product-search__field input:focus-visible {
  box-shadow: inset 0 -2px 0 var(--color-green);
}
.product-search__field button {
  background: var(--color-green);
  border: 1px solid var(--color-green);
  color: #fff;
  cursor: pointer;
  height: 40px;
  min-width: 76px;
  padding: 0 20px;
}
.product-search__field button:hover,
.product-search__field button:focus-visible {
  background: #31502c;
  border-color: #31502c;
}
.product-search__grid {
  --archive-card-min: 210px;
}
.product-search__footer {
  align-items: flex-end;
  border-top: 1px solid var(--color-line);
  display: flex;
  gap: 20px 32px;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 20px;
}
.product-search__summary {
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 8px 18px;
}
.product-search .navigation.pagination {
  margin: 0;
}
.product-search .nav-links {
  display: flex;
  gap: 6px;
}
.product-search .page-numbers {
  align-items: center;
  border: 1px solid var(--color-line);
  display: inline-flex;
  font-size: 13px;
  height: 36px;
  justify-content: center;
  min-width: 36px;
  padding: 0 9px;
}
.product-search .page-numbers.current,
.product-search .page-numbers:hover {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
}
.product-search__empty {
  padding: 18px 0 54px;
}
.product-search__empty h2 {
  font-family: Georgia, "Songti SC", serif;
  font-size: 25px;
  font-weight: 500;
  margin: 0 0 12px;
}
.product-search__empty p {
  color: var(--color-muted);
  font-size: 14px;
  margin: 0;
}
.product-search__empty-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 26px;
}
.product-search__empty-links a {
  border-bottom: 1px solid var(--color-line);
  font-size: 14px;
  padding-bottom: 4px;
}
.product-search__empty-links a:hover {
  border-bottom-color: var(--color-green);
  color: var(--color-green);
}
.post-list { display: grid; gap: 18px; }
.empty-state,
.empty-text {
  background: #fff;
  border: 1px dashed var(--color-line);
  color: var(--color-muted);
  padding: 24px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--color-line);
  flex: 0 0 auto;
  margin-top: 56px;
}

.site-footer__bottom {
  align-items: center;
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 12px;
  justify-content: space-between;
  padding: 16px clamp(16px, 3vw, 56px) 18px;
  width: 100%;
}

.floating-tools {
  align-items: flex-end;
  bottom: calc(18px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
  position: fixed;
  right: clamp(12px, 1vw, 16px);
  z-index: 40;
}

.floating-tool-wrap {
  pointer-events: auto;
  position: relative;
}

.floating-tool {
  align-items: center;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(214, 219, 209, .84);
  box-shadow: 0 14px 34px rgba(21, 27, 20, .13);
  color: var(--color-text);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  margin: 0;
  padding: 0;
  pointer-events: auto;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  width: 42px;
}

.floating-tool--item {
  border-radius: 10px;
}

.floating-tool--admin-edit {
  color: #31543a;
}

.floating-tool--top {
  border-radius: 999px;
  margin-top: 2px;
}

.floating-tool:hover,
.floating-tool:focus-visible {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(135, 149, 126, .6);
  box-shadow: 0 18px 42px rgba(21, 27, 20, .18);
  outline: 0;
  transform: translateY(-1px);
}

.floating-tool__icon {
  align-items: center;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.floating-tool__icon img {
  height: 20px;
  object-fit: contain;
  width: 20px;
}

.floating-tool__icon svg {
  height: 19px;
  width: 19px;
}

.floating-tool__popover {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(214, 219, 209, .9);
  bottom: 0;
  box-shadow: 0 20px 50px rgba(21, 27, 20, .16);
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  right: calc(100% + 8px);
  transform: translate3d(8px, 6px, 0) scale(.96);
  transform-origin: right bottom;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  visibility: hidden;
  width: max-content;
  max-width: 126px;
  min-width: 92px;
}

.floating-tool__popover::after {
  background: rgba(255, 255, 255, .9);
  border-right: 1px solid rgba(214, 219, 209, .9);
  border-top: 1px solid rgba(214, 219, 209, .9);
  bottom: 18px;
  content: "";
  height: 10px;
  position: absolute;
  right: -6px;
  transform: rotate(45deg);
  width: 10px;
}

.floating-tool__popover img {
  aspect-ratio: 1 / 1;
  background: #fff;
  object-fit: cover;
  width: 104px;
}

.floating-tool__popover span {
  color: var(--color-muted);
  display: block;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 0;
  text-align: center;
}

.floating-tool__popover img + span {
  margin-top: 8px;
}

.floating-tool-wrap:hover .floating-tool__popover,
.floating-tool-wrap:focus-within .floating-tool__popover,
.floating-tool-wrap.is-popover-open .floating-tool__popover {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  visibility: visible;
}

@media (min-width: 761px) {
  .site-footer__bottom {
    padding-left: clamp(72px, 8vw, 148px);
    padding-right: clamp(72px, 8vw, 148px);
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .home .product-showcase {
    padding-right: max(var(--side-pad), 56px);
  }
  .home .category-dock {
    padding-left: max(var(--side-pad), 56px);
    padding-right: max(var(--side-pad), 56px);
  }
}

@media (min-width: 1181px) {
  .home .product-showcase {
    padding-right: max(var(--side-pad), 66px);
  }
  .home .category-dock {
    padding-left: max(var(--side-pad), 66px);
    padding-right: max(var(--side-pad), 66px);
  }
}

@media (max-width: 1600px) {
  .detail-summary {
    padding-right: 44px;
  }
}

@media (max-width: 1320px) and (min-width: 1181px) {
  .site-header__inner {
    gap: 24px;
    padding-left: 42px;
    padding-right: 42px;
  }
  .site-nav__list { gap: 22px; }
}

@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    height: 72px;
  }
  .site-header__inner--no-nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .site-menu-toggle {
    display: inline-flex;
    justify-self: start;
  }
  .site-brand {
    justify-self: start;
  }
  .site-nav {
    background: var(--color-surface);
    border-right: 1px solid rgba(230, 233, 227, .86);
    box-shadow: 24px 0 58px rgba(20, 26, 18, .14);
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 72px - var(--wp-admin-bar-offset));
    justify-content: flex-start;
    left: 0;
    max-height: none;
    opacity: 0;
    overflow-y: auto;
    padding: 22px clamp(18px, 2.2vw, 22px) 28px;
    pointer-events: none;
    position: fixed;
    right: auto;
    text-align: left;
    top: calc(72px + var(--wp-admin-bar-offset));
    transform: translateX(-100%);
    transition: opacity .22s ease, transform .26s ease, visibility .22s ease;
    visibility: hidden;
    width: min(240px, calc(100vw - 32px));
    z-index: 70;
  }
  .site-nav {
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar {
    display: none;
  }
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }
  .site-nav-backdrop { top: calc(72px + var(--wp-admin-bar-offset)); }
  .site-nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    width: min(184px, 100%);
  }
  .site-nav__list a {
    height: auto;
    justify-content: flex-start;
    min-height: 44px;
    padding: 10px;
    text-align: left;
    width: 100%;
  }
  .site-nav__list > li { width: 100%; }
  .site-nav__item--dropdown {
    align-items: stretch;
    display: block;
    height: auto;
    width: 100%;
  }
  .site-nav__item--dropdown::before { display: none; }
  .product-menu,
  .site-submenu {
    background: var(--color-surface);
    border: 0;
    border-top: 1px solid var(--color-line);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    left: auto;
    max-height: none;
    min-width: 0;
    opacity: 1;
    overflow: visible;
    padding: 8px;
    pointer-events: auto;
    position: static;
    transform: none;
    transition: none;
    visibility: visible;
    width: 100%;
  }
  .site-nav__item--dropdown:hover .product-menu,
  .site-nav__item--dropdown:focus-within .product-menu,
  .site-nav__item--dropdown.is-open .product-menu { transform: none; }
  .site-nav__item--dropdown.is-open .site-submenu { transform: none; }
  .product-menu a,
  .site-submenu a,
  .product-menu__empty {
    flex-direction: row;
    justify-content: flex-start;
    min-height: 42px;
    padding: 7px 10px;
    text-align: left;
    width: 100%;
  }
  .product-menu__thumb {
    flex-basis: 32px;
    height: 32px;
    width: 32px;
  }
  .product-menu__item.is-current .product-menu__series {
    background: #f4f7f3;
    color: var(--color-green);
    font-weight: 600;
  }
  .product-menu__item.is-current .product-menu__series::before {
    background: var(--color-green);
    bottom: 8px;
    content: "";
    left: 0;
    position: absolute;
    top: 8px;
    width: 2px;
  }
  .product-menu__item.is-current .product-menu__thumb {
    border-color: rgba(32, 55, 29, .34);
  }
  .product-menu__item.is-current .product-menu__series > span:last-child::after {
    display: none;
  }
  .home-category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .product-grid--related { grid-template-columns: repeat(3, minmax(210px, 1fr)); }
  .home-hero__viewport {
    aspect-ratio: 16 / 7.8;
    min-height: 0;
    width: 100%;
  }
  .product-showcase .product-grid {
    gap: 36px 22px;
    grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  }
  .archive-layout {
    display: block;
  }
  .archive-layout--sparse {
    min-height: 0;
  }
  .detail-zoom-lens,
  .detail-zoom-panel {
    display: none;
  }
  .detail-layout {
    display: block;
    max-width: 860px;
  }
  .detail-gallery {
    margin: 0 auto 32px;
    max-width: 860px;
  }
  .detail-summary {
    margin: 0 auto;
    max-width: 860px;
  }
  .sku-list {
    max-height: none !important;
    overflow: visible;
    overscroll-behavior: auto;
    padding-right: 0;
    scrollbar-gutter: auto;
  }
  .floating-tools {
    bottom: calc(16px + env(safe-area-inset-bottom));
    gap: 5px;
    right: 8px;
  }
  .floating-tool {
    height: 40px;
    width: 40px;
  }
  .floating-tool__icon,
  .floating-tool__icon img {
    height: 20px;
    width: 20px;
  }
  .floating-tool__icon svg {
    height: 19px;
    width: 19px;
  }
}

@media (max-width: 960px) {
  .home-hero { padding: 0; }
  .home-hero__viewport {
    aspect-ratio: 16 / 7.8;
    min-height: 0;
    width: 100%;
  }
  .home-category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root { --side-pad: 18px; }
  .site-header__inner {
    gap: 10px;
    height: 64px;
  }
  .site-brand { gap: 9px; min-width: 0; }
  .site-brand__mark {
    font-size: 18px;
    height: 34px;
    width: 34px;
  }
  .site-brand__name {
    font-size: 20px;
    max-width: 38vw;
  }
  .site-menu-toggle,
  .site-tools > a,
  .site-tools > button {
    height: 36px;
    width: 34px;
  }
  .site-tools { gap: 4px; }
  .site-search-overlay__panel {
    min-height: 100vh;
    padding: 78px 18px 34px;
  }
  .site-search-overlay__close {
    right: 18px;
    top: 18px;
  }
  .site-search-overlay__form label {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .site-search-overlay__field {
    border-bottom: 0;
    gap: 12px;
    grid-template-columns: 1fr;
  }
  .site-search-overlay__field input {
    border-bottom: 1px solid var(--color-text);
    font-size: 30px;
    padding: 8px 0 14px;
  }
  .site-search-overlay__field button {
    font-size: 18px;
    height: 44px;
    justify-self: start;
    min-width: 156px;
  }
  .site-search-overlay__quick {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 28px;
  }
  .product-search__layout {
    padding: 34px 58px 68px 18px;
  }
  .product-search__header {
    margin-bottom: 34px;
  }
  .product-search__header h1 {
    font-size: 27px;
    margin-top: 28px;
  }
  .product-search__field {
    gap: 9px;
    grid-template-columns: 20px minmax(0, 1fr) auto;
  }
  .product-search__field input {
    font-size: 17px;
  }
  .product-search__field button {
    min-width: 62px;
    padding: 0 14px;
  }
  .product-grid.product-search__grid {
    gap: 30px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-search__grid .product-card__image {
    min-height: 0;
  }
  .product-search__footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 42px;
  }
  .product-search__empty {
    padding-top: 8px;
  }
  .site-nav {
    height: calc(100dvh - 64px - var(--wp-admin-bar-offset));
    top: calc(64px + var(--wp-admin-bar-offset));
    width: min(224px, calc(100vw - 28px));
  }
  .site-nav-backdrop { top: calc(64px + var(--wp-admin-bar-offset)); }
  .home-hero { padding: 0; }
  .home-hero__viewport {
    aspect-ratio: 16 / 7.8;
    min-height: 0;
    width: 100%;
  }
  .home-hero__slide {
    background-image:
      linear-gradient(90deg, rgba(17, 23, 15, .24), rgba(17, 23, 15, .04)),
      var(--hero-image, linear-gradient(90deg, #a6aaa2, #f0f1ee));
    background-position: center;
    background-size: cover;
  }
  .home-hero__content {
    left: 24px;
    max-width: calc(100% - 48px);
    top: 24%;
  }
  .home-hero__content h1 { font-size: 38px; }
  .home-hero__content p { font-size: 16px; }
  .home-hero__arrow { display: none; }
  .category-dock {
    margin: 38px 0 62px;
    padding: 0 16px;
  }
  .home-category-grid {
    gap: 22px 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .home-category-card {
    gap: 10px;
    padding: 4px 2px 8px;
  }
  .home-category-card strong {
    font-size: 15px;
  }
  .home-hero + .product-showcase { padding-top: 58px; }
  .section-title {
    gap: 16px;
    margin-bottom: 36px;
  }
  .section-title h2 {
    font-size: 38px;
    letter-spacing: .1em;
  }
  .section-title p { font-size: 16px; }
  .product-grid,
  .product-grid--archive,
  .product-grid--related {
    gap: 32px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-grid--archive {
    --archive-card-min: 154px;
    grid-template-columns: repeat(auto-fill, minmax(var(--archive-card-min), 1fr));
  }
  .product-card__image { min-height: 0; }
  .product-showcase .product-grid {
    gap: 32px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }
  .product-showcase .product-card__image {
    aspect-ratio: 1 / 1;
    height: auto;
  }
  .archive-layout {
    display: block;
    padding: 24px 16px 70px;
  }
  .detail-layout { display: block; }
  .detail-gallery {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
    max-width: 720px;
    width: 100%;
  }
  .detail-thumbs {
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
  }
  .detail-thumbs button {
    flex: 0 0 68px;
    height: 68px;
    width: 68px;
  }
  .detail-main-image,
  .detail-empty-image {
    height: auto;
    width: 100%;
  }
  .detail-empty-image {
    grid-column: auto;
    justify-self: stretch;
  }
  .detail-main-image { cursor: default; }
  .detail-summary { padding: 0 52px 0 0; }
  .detail-summary h1 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .sku-list__row {
    column-gap: 16px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .site-footer__bottom {
    display: grid;
    font-size: 11px;
    gap: 6px;
    grid-template-columns: 1fr;
    justify-items: center;
    line-height: 1.55;
    text-align: center;
  }
  .site-footer__bottom span {
    max-width: 100%;
    white-space: nowrap;
  }
  .floating-tools {
    bottom: calc(14px + env(safe-area-inset-bottom));
    gap: 5px;
    right: 8px;
  }
  .floating-tool {
    height: 40px;
    width: 40px;
  }
  .floating-tool__icon,
  .floating-tool__icon img {
    height: 20px;
    width: 20px;
  }
  .floating-tool__icon svg {
    height: 19px;
    width: 19px;
  }
  .floating-tool__popover {
    padding: 7px;
    right: calc(100% + 7px);
    max-width: 112px;
    min-width: 88px;
  }
  .floating-tool__popover img {
    width: 96px;
  }
}

@media (max-width: 350px) {
  .product-search__layout {
    padding-right: 52px;
  }
  .product-grid.product-search__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 340px) {
  .site-footer__bottom {
    font-size: 10px;
  }
}
