:root {
  --ink: #141414;
  --ink-soft: #4e4e49;
  --muted: #777770;
  --line: #deded8;
  --paper: #ffffff;
  --soft: #f5f5f2;
  --soft-warm: #eeece6;
  --soft-sage: #e2e9e0;
  --black: #111111;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.12);
  --font-sans: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

[hidden] {
  display: none !important;
}

.site-shell {
  min-width: 320px;
  overflow: clip;
}

.site-width {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
}

.eyebrow-line {
  width: 21px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
}

h1,
h2 {
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1.14;
}

h3 {
  margin-bottom: 7px;
  font-size: 17px;
  line-height: 1.35;
}

.announcement-bar {
  color: #f7f7f4;
  background: var(--black);
  font-size: 11px;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
}

.announcement-inner a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 160ms ease;
}

.announcement-inner a:hover {
  opacity: 0.66;
}

.announcement-inner .icon {
  width: 13px;
  height: 13px;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 600;
}

.brand-copy small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.header-actions,
.header-tool,
.locale-button,
.quote-trigger {
  display: inline-flex;
  align-items: center;
}

.header-actions {
  justify-content: flex-end;
  gap: 15px;
}

.header-tool,
.icon-button,
.locale-button {
  padding: 0;
  border: 0;
  background: transparent;
}

.header-tool {
  justify-self: start;
  gap: 7px;
  font-size: 11px;
}

.header-tool .icon,
.locale-button .icon {
  width: 17px;
  height: 17px;
}

.header-tool-label {
  color: var(--ink-soft);
}

.header-tool:hover,
.locale-button:hover,
.icon-button:hover {
  color: var(--muted);
}

.locale-button {
  gap: 3px;
  color: var(--ink-soft);
  font-size: 11px;
}

.quote-trigger {
  position: relative;
  gap: 7px;
}

.quote-count {
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  min-height: 45px;
  border-top: 1px solid #f1f1ed;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 45px;
  color: var(--ink-soft);
  font-size: 12px;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--black);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--black);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-menu-trigger,
.mobile-nav {
  display: none;
}

.shop-hero {
  padding: 22px 0 78px;
  background: var(--white);
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: 628px;
}

.hero-tile {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  background: var(--soft);
  border-radius: 6px;
}

.hero-tile-main {
  grid-row: 1 / span 2;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-product-tile {
  isolation: isolate;
}

.hero-product-tile img {
  position: absolute;
  z-index: 0;
  object-fit: contain;
  object-position: center bottom;
}

.hero-product-brand {
  background: #e1eae0;
}

.hero-product-brand img {
  right: -2%;
  bottom: -4%;
  width: 68%;
  height: 94%;
}

.hero-product-paper {
  background: #eeeae2;
}

.hero-product-paper img {
  right: -3%;
  bottom: -5%;
  width: 58%;
  height: 98%;
}

.hero-product-cooler {
  background: #e7eaed;
}

.hero-product-cooler img {
  right: -4%;
  bottom: -5%;
  width: 61%;
  height: 94%;
}

.hero-tile-main img {
  object-position: center 49%;
}

.hero-tile-drawstring img {
  object-position: center 48%;
}

.hero-tile-cooler img {
  object-position: center 49%;
}

.hero-tile:hover img {
  transform: scale(1.025);
}

.hero-tile-copy {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 30px;
  display: grid;
  gap: 5px;
  max-width: 240px;
}

.hero-tile-main .hero-tile-copy {
  top: 34px;
  left: 36px;
  max-width: 290px;
}

.hero-tile-copy-light {
  color: var(--black);
}

.hero-tile-copy-dark {
  color: var(--black);
}

.tile-label {
  margin-bottom: 5px;
  color: currentColor;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-tile-copy strong {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}

.hero-tile-main .hero-tile-copy strong {
  font-size: 45px;
}

.hero-tile-copy > span:not(.tile-label):not(.tile-link) {
  max-width: 220px;
  color: rgba(20, 20, 20, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 13px;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  line-height: 1.9;
}

.tile-link .icon {
  width: 13px;
  height: 13px;
}

.category-section,
.catalog-section,
.service-section,
.about-section,
.contact-section {
  padding: 88px 0;
}

.category-section {
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 36px;
}

.centered-heading {
  text-align: center;
}

.centered-heading .section-kicker {
  justify-content: center;
}

.section-heading > p:last-child,
.catalog-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.centered-heading > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  display: grid;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.category-card-image {
  display: grid;
  place-items: center;
  width: 100%;
  height: 190px;
  overflow: visible;
  padding: 14px 8px;
  background: transparent;
  border-radius: 0;
  transition: transform 180ms ease;
}

.category-card:nth-child(2) .category-card-image,
.category-card:nth-child(5) .category-card-image {
  background: transparent;
}

.category-card:nth-child(3) .category-card-image {
  background: transparent;
}

.category-card-image img {
  --category-scale: 1;
  --category-shift-x: 0px;
  --category-shift-y: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: translate(var(--category-shift-x), var(--category-shift-y)) scale(var(--category-scale));
  mix-blend-mode: normal;
  transition: transform 300ms ease;
}

.category-card:nth-child(1) .category-card-image img { --category-scale: 1.16; }
.category-card:nth-child(2) .category-card-image img { --category-scale: 1.1; }
.category-card:nth-child(3) .category-card-image img { --category-scale: 1.02; --category-shift-y: -12px; }
.category-card:nth-child(4) .category-card-image img { --category-scale: 1.1; }
.category-card:nth-child(5) .category-card-image img { --category-scale: 0.96; }
.category-card:nth-child(6) .category-card-image img { --category-scale: 1.08; }

/* Give the food-pouch silhouette a little more breathing room on its handle side. */
.category-card[data-category="食品袋"] .category-card-image img {
  --category-shift-x: 8px;
}

.category-card-image.is-studio img {
  mix-blend-mode: multiply;
}

.category-card:hover .category-card-image {
  transform: translateY(-3px);
}

.category-card:hover .category-card-image img {
  transform: translate(var(--category-shift-x), var(--category-shift-y)) scale(1.06);
}

.category-card-body {
  display: grid;
  gap: 1px;
}

.category-card-body > span:first-child {
  display: grid;
  justify-items: center;
  gap: 3px;
  min-width: 0;
}

.category-card-body strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.category-card-body small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-card-count {
  display: none;
}

.catalog-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.catalog-heading > p {
  padding-bottom: 4px;
  text-align: right;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.catalog-tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.catalog-tabs::-webkit-scrollbar {
  display: none;
}

.catalog-tab {
  position: relative;
  flex: 0 0 auto;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.catalog-tab::after {
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  height: 2px;
  background: var(--black);
  content: "";
  opacity: 0;
}

.catalog-tab:hover,
.catalog-tab.is-active {
  color: var(--black);
}

.catalog-tab.is-active::after {
  opacity: 1;
}

.catalog-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.search-field,
.sort-field {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  color: var(--muted);
  font-size: 11px;
}

.search-field {
  width: 205px;
  padding: 0 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.search-field:focus-within {
  border-color: var(--black);
}

.search-field .icon,
.sort-field .icon {
  width: 15px;
  height: 15px;
}

.search-field input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
}

.search-field input::placeholder {
  color: #9b9b94;
}

.sort-field {
  position: relative;
  gap: 5px;
}

.sort-field select {
  appearance: none;
  min-width: 58px;
  padding: 0 18px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
}

.sort-field > .icon {
  position: absolute;
  right: 0;
  pointer-events: none;
}

.catalog-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
}

.catalog-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.filter-reset {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.filter-reset .icon {
  width: 13px;
  height: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 42px 18px;
}

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

.product-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: var(--white);
  border-radius: 4px;
}

.product-card:nth-child(4n + 2) .product-image-wrap {
  background: var(--white);
}

.product-card:nth-child(4n + 3) .product-image-wrap {
  background: var(--white);
}

.product-card:nth-child(4n + 4) .product-image-wrap {
  background: var(--white);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-image-wrap.is-cutout img {
  width: 94%;
  height: 94%;
}

.product-card .product-image-wrap.is-cutout {
  background: var(--white);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 3px 7px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 2px;
  font-size: 9px;
  line-height: 1.3;
}

.product-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 50%;
}

.product-wishlist .icon {
  width: 15px;
  height: 15px;
}

.product-wishlist.is-active {
  color: var(--white);
  background: var(--black);
}

.product-wishlist.is-active .icon {
  fill: currentColor;
}

.product-quick-view {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 0;
  color: var(--white);
  background: rgba(17, 17, 17, 0.91);
  font-size: 11px;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-quick-view .icon {
  width: 14px;
  height: 14px;
}

.product-card:hover .product-quick-view,
.product-quick-view:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card-info {
  padding: 13px 2px 0;
}

.product-kicker {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.03em;
}

.product-card h3 {
  min-height: 44px;
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 600;
}

.product-card-use {
  min-height: 24px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.product-card-footer > span {
  color: var(--muted);
  font-size: 10px;
}

.add-quote-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
}

.add-quote-button:hover {
  color: var(--muted);
}

.add-quote-button .icon {
  width: 13px;
  height: 13px;
}

.empty-state {
  padding: 80px 20px;
  text-align: center;
}

.empty-state-icon {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--muted);
}

.empty-state h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.empty-state p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}

.promo-section {
  padding: 14px 0 88px;
  background: var(--soft);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.promo-tile {
  position: relative;
  display: block;
  aspect-ratio: 1.33 / 1;
  overflow: hidden;
  border-radius: 5px;
}

.promo-tile-image {
  background: #c9ddc4;
}

.promo-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.promo-tile:hover img {
  transform: scale(1.025);
}

.promo-tile-soft {
  background: #e8e6e0;
}

.promo-tile-soft img {
  position: absolute;
  right: -4%;
  bottom: -4%;
  width: 58%;
  height: 96%;
  object-fit: contain;
  object-position: center bottom;
}

.promo-tile-product {
  background: #ebe9e3;
}

.promo-tile-product img {
  position: absolute;
  z-index: 0;
  object-fit: contain;
  transition: transform 400ms ease;
}

.promo-paper {
  background: #e6edf0;
}

.promo-paper img {
  right: -6%;
  bottom: -13%;
  width: 62%;
  height: 112%;
}

.promo-snack {
  background: #eee8de;
}

.promo-snack img {
  right: -3%;
  bottom: -8%;
  width: 54%;
  height: 105%;
}

.promo-tile-product:hover img {
  transform: scale(1.025);
}

.promo-copy {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 32px;
  display: grid;
  gap: 6px;
  max-width: 245px;
}

.promo-tile-product .promo-copy {
  max-width: 43%;
}

.promo-copy-light {
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

.promo-copy-dark {
  color: var(--black);
}

.promo-copy strong {
  font-size: 31px;
  font-weight: 500;
  line-height: 1.14;
}

.promo-copy > span:not(.tile-label):not(.tile-link) {
  color: rgba(20, 20, 20, 0.68);
  font-size: 12px;
}

.promo-copy-light > span:not(.tile-label):not(.tile-link) {
  color: rgba(255, 255, 255, 0.82);
}

.service-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-step {
  min-height: 205px;
  padding: 24px 24px 26px;
  border-right: 1px solid var(--line);
}

.service-step:first-child {
  border-left: 1px solid var(--line);
}

.step-number {
  display: block;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.service-step h3 {
  margin-bottom: 7px;
  font-size: 19px;
  font-weight: 600;
}

.service-step p {
  max-width: 190px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 25px;
}

.service-cta p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.about-section {
  background: var(--soft-warm);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.64fr 0.9fr;
  grid-template-rows: 1fr auto;
  gap: 12px;
  align-items: stretch;
}

.about-image {
  overflow: hidden;
  background: #ddd;
  border-radius: 4px;
}

.about-image-large {
  grid-row: 1 / span 2;
  min-height: 560px;
}

.about-image-small {
  min-height: 270px;
}

.about-image img,
.about-image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  align-self: center;
  padding: 20px 12px 20px 28px;
}

.about-copy > p:not(.section-kicker):not(.eyebrow) {
  max-width: 370px;
  margin-bottom: 27px;
  color: var(--ink-soft);
  font-size: 14px;
}

.about-points {
  display: grid;
  gap: 15px;
  margin-bottom: 27px;
}

.about-points > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.point-index {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.9;
}

.about-points strong,
.about-points small {
  display: block;
}

.about-points strong {
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 600;
}

.about-points small {
  color: var(--muted);
  font-size: 11px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  line-height: 2;
}

.text-link:hover {
  color: var(--muted);
}

.text-link .icon {
  width: 14px;
  height: 14px;
}

.contact-section {
  padding: 72px 0;
  color: var(--white);
  background: var(--black);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 50px;
  align-items: end;
}

.contact-panel .section-kicker,
.contact-panel .eyebrow {
  color: #bdbdb5;
}

.contact-panel h2 {
  margin-bottom: 11px;
  font-size: 41px;
}

.contact-panel p:not(.section-kicker):not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 0;
  color: #bdbdb5;
  font-size: 13px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-details {
  grid-column: 1 / -1;
  display: flex;
  gap: 38px;
  padding-top: 23px;
  border-top: 1px solid #3d3d39;
}

.contact-details a {
  display: grid;
  gap: 2px;
}

.contact-details span {
  color: #96968f;
  font-size: 10px;
}

.contact-details strong {
  font-size: 14px;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 19px;
  border: 1px solid var(--black);
  border-radius: 2px;
  font-size: 12px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button .icon {
  width: 15px;
  height: 15px;
}

.button-primary {
  color: var(--white);
  background: var(--black);
}

.button-primary:hover {
  color: var(--black);
  background: transparent;
}

.button-secondary {
  color: var(--black);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--black);
}

.contact-section .button-primary {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.contact-section .button-primary:hover {
  color: var(--white);
  background: transparent;
}

.contact-section .button-secondary {
  color: var(--white);
  border-color: #777770;
}

.contact-section .button-secondary:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.site-footer {
  color: #bdbdb5;
  background: var(--black);
  border-top: 1px solid #3d3d39;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 36px;
  padding: 50px 0 42px;
}

.brand-footer {
  justify-self: start;
  color: var(--white);
}

.brand-footer .brand-mark {
  color: var(--black);
  background: var(--white);
}

.brand-footer .brand-copy small {
  color: #96968f;
}

.footer-brand p {
  max-width: 220px;
  margin: 16px 0 0;
  color: #96968f;
  font-size: 12px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-label {
  margin-bottom: 8px;
  color: #777770;
  font-size: 10px;
  letter-spacing: 0.13em;
}

.footer-contact span:last-child {
  margin-top: 6px;
  color: #777770;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 19px;
  border-top: 1px solid #3d3d39;
  color: #777770;
  font-size: 10px;
}

.scrim {
  position: fixed;
  z-index: 40;
  inset: 0;
  background: rgba(0, 0, 0, 0.57);
}

.modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  pointer-events: none;
}

.modal-dialog {
  position: relative;
  width: min(940px, 100%);
  max-height: min(720px, calc(100vh - 56px));
  overflow: auto;
  background: var(--white);
  border-radius: 5px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease;
}

.modal.is-open {
  pointer-events: auto;
}

.modal.is-open .modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 50%;
}

.modal-content-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  min-height: 500px;
}

.modal-product-image {
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: 28px;
  background: var(--soft);
}

.modal-product-image img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: contain;
}

.modal-product-image.is-cutout img {
  width: 86%;
  height: 86%;
}

.modal-product-copy {
  padding: 61px 52px 48px;
}

.modal-product-copy h2 {
  margin-bottom: 5px;
  font-size: 35px;
}

.product-english {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
}

.modal-product-copy > p:not(.eyebrow):not(.product-english) {
  color: var(--ink-soft);
  font-size: 13px;
}

.modal-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin: 26px 0;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.modal-specs span {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 10px;
}

.modal-specs strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.modal-features {
  display: grid;
  gap: 7px;
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
}

.modal-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
}

.modal-features .icon {
  width: 15px;
  height: 15px;
}

.quote-drawer {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(440px, 100%);
  background: var(--white);
  box-shadow: -16px 0 50px rgba(0, 0, 0, 0.14);
  transform: translateX(100%);
  transition: transform 230ms ease;
}

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

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 31px 30px 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 0;
  font-size: 30px;
}

.drawer-body {
  flex: 1;
  overflow: auto;
  padding: 22px 30px 30px;
}

.drawer-empty,
.quote-success {
  display: grid;
  place-items: center;
  min-height: 380px;
  text-align: center;
}

.drawer-empty > .icon,
.success-icon {
  width: 35px;
  height: 35px;
  margin-bottom: 15px;
  color: var(--muted);
}

.drawer-empty h3,
.quote-success h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

.drawer-empty p,
.quote-success p {
  max-width: 280px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
}

.quote-list {
  display: grid;
  gap: 15px;
}

.quote-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.quote-item-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--soft);
  border-radius: 3px;
}

.quote-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quote-item-copy {
  min-width: 0;
}

.quote-item-copy strong,
.quote-item-copy small {
  display: block;
}

.quote-item-copy strong {
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 600;
}

.quote-item-copy small {
  color: var(--muted);
  font-size: 10px;
}

.quote-quantity {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  font-size: 11px;
}

.quantity-button,
.quote-remove {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.quantity-button {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.quantity-button .icon {
  width: 12px;
  height: 12px;
}

.quote-remove .icon {
  width: 15px;
  height: 15px;
  color: var(--muted);
}

.drawer-summary {
  margin-top: 24px;
}

.drawer-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
}

.drawer-summary-note {
  margin: 9px 0 18px;
  color: var(--muted);
  font-size: 11px;
}

.quote-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.quote-form label {
  display: grid;
  gap: 5px;
  color: var(--ink-soft);
  font-size: 11px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: 0;
  background: var(--soft);
  color: var(--ink);
  font-size: 12px;
}

.quote-form textarea {
  min-height: 90px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--black);
}

.toast {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 12px 15px;
  color: var(--white);
  background: var(--black);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-width {
    width: min(100% - 44px, 900px);
  }

  .hero-mosaic {
    height: 560px;
  }

  .hero-tile-main .hero-tile-copy strong {
    font-size: 40px;
  }

  .category-grid {
    gap: 15px;
  }

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

  .about-grid {
    grid-template-columns: 1fr 0.68fr 0.95fr;
  }

  .about-image-large {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .site-width {
    width: calc(100% - 32px);
  }

  h2 {
    font-size: 31px;
  }

  .announcement-inner {
    min-height: 30px;
    font-size: 10px;
  }

  .announcement-inner > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-main {
    min-height: 66px;
  }

  .header-tool-label,
  .locale-button,
  .primary-nav {
    display: none;
  }

  .header-main > .header-tool {
    justify-self: start;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .header-actions {
    gap: 12px;
  }

  .mobile-menu-trigger,
  .mobile-nav {
    display: block;
  }

  .mobile-menu-trigger {
    display: grid;
    place-items: center;
  }

  .mobile-nav {
    padding: 10px 0 17px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav a {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid #eeeeea;
    font-size: 13px;
  }

  .shop-hero {
    padding: 12px 0 53px;
  }

  .hero-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 8px;
  }

  .hero-tile-main {
    grid-row: auto;
    aspect-ratio: 1 / 1.02;
  }

  .hero-tile-side {
    aspect-ratio: 1.35 / 1;
  }

  .hero-tile-copy,
  .hero-tile-main .hero-tile-copy {
    top: 20px;
    left: 20px;
    max-width: 220px;
  }

  .hero-tile-main .hero-tile-copy strong {
    font-size: 34px;
  }

  .hero-tile-copy strong {
    font-size: 25px;
  }

  .category-section,
  .catalog-section,
  .service-section,
  .about-section,
  .contact-section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading > p:last-child,
  .catalog-heading > p {
    font-size: 12px;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 12px;
  }

  .category-card-image {
    height: 112px;
    padding: 7px;
  }

  .category-card:nth-child(n) .category-card-image img {
    --category-scale: 1;
  }

  .category-card:nth-child(3) .category-card-image img {
    --category-shift-y: -6px;
  }

  .category-card-body strong {
    font-size: 12px;
  }

  .catalog-heading {
    display: block;
  }

  .catalog-heading > p {
    margin-top: 9px;
    text-align: left;
  }

  .catalog-toolbar {
    display: grid;
    gap: 13px;
    padding-bottom: 12px;
  }

  .catalog-tabs {
    gap: 19px;
    order: 2;
  }

  .catalog-tab::after {
    bottom: -13px;
  }

  .catalog-tools {
    justify-content: space-between;
    order: 1;
  }

  .search-field {
    flex: 1;
    width: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px 10px;
  }

  .product-image-wrap {
    aspect-ratio: 1 / 1.05;
  }

  .product-badge {
    top: 8px;
    left: 8px;
    padding: 3px 5px;
    font-size: 8px;
  }

  .product-wishlist {
    top: 7px;
    right: 7px;
    width: 27px;
    height: 27px;
  }

  .product-quick-view {
    right: 7px;
    bottom: 7px;
    left: 7px;
    padding: 8px 9px;
    font-size: 10px;
  }

  .product-card-info {
    padding-top: 10px;
  }

  .product-card h3 {
    min-height: 38px;
    font-size: 14px;
  }

  .product-card-use {
    min-height: 0;
    margin-bottom: 9px;
    font-size: 10px;
  }

  .product-card-footer {
    display: block;
  }

  .product-card-footer > span {
    display: none;
  }

  .add-quote-button {
    margin-top: 2px;
    font-size: 10px;
  }

  .promo-section {
    padding: 8px 0 58px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .promo-tile {
    aspect-ratio: 1.15 / 1;
  }

  .promo-copy {
    top: 22px;
    left: 22px;
    max-width: 205px;
  }

  .promo-copy strong {
    font-size: 26px;
  }

  .service-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-step {
    min-height: 175px;
    padding: 18px 15px 20px;
  }

  .service-step:nth-child(2) {
    border-right: 0;
  }

  .service-step:nth-child(3),
  .service-step:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .step-number {
    margin-bottom: 24px;
  }

  .service-step h3 {
    font-size: 16px;
  }

  .service-step p {
    font-size: 11px;
  }

  .service-cta {
    display: grid;
    gap: 15px;
  }

  .service-cta .button {
    width: fit-content;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 210px 145px auto;
    gap: 8px;
  }

  .about-image-large {
    grid-row: 1;
    grid-column: 1 / -1;
    min-height: 0;
  }

  .about-image-small {
    min-height: 0;
  }

  .about-copy {
    grid-column: 1 / -1;
    padding: 19px 0 0;
  }

  .about-copy h2 {
    font-size: 30px;
  }

  .about-copy > p:not(.section-kicker):not(.eyebrow) {
    font-size: 13px;
  }

  .contact-panel {
    display: block;
  }

  .contact-panel h2 {
    font-size: 31px;
  }

  .contact-actions {
    margin-top: 25px;
  }

  .contact-details {
    display: grid;
    gap: 14px;
    margin-top: 28px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
    padding: 38px 0 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 4px;
  }

  .modal {
    padding: 12px;
  }

  .modal-dialog {
    max-height: calc(100vh - 24px);
  }

  .modal-content-grid {
    grid-template-columns: 1fr;
  }

  .modal-product-image {
    min-height: 270px;
    max-height: 360px;
    padding: 18px;
  }

  .modal-product-copy {
    padding: 34px 23px 28px;
  }

  .modal-product-copy h2 {
    font-size: 28px;
  }

  .drawer-header,
  .drawer-body {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 430px) {
  .site-width {
    width: calc(100% - 24px);
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .hero-tile-main .hero-tile-copy strong {
    font-size: 31px;
  }

  .hero-tile-copy > span:not(.tile-label):not(.tile-link) {
    max-width: 190px;
    font-size: 11px;
  }

  .category-grid {
    gap: 21px 7px;
  }

  .catalog-tools {
    gap: 8px;
  }

  .search-field {
    padding-right: 8px;
    padding-left: 8px;
  }

  .sort-field > span:first-child {
    display: none;
  }

  .contact-actions {
    display: grid;
  }

  .contact-actions .button {
    width: 100%;
  }
}
