:root {
  --zht-paper: #f7f8f1;
  --zht-soft: #ecefe4;
  --zht-soft-2: #dfe5d8;
  --zht-ink: #050805;
  --zht-muted: #626a5f;
  --zht-line: rgba(14, 25, 14, 0.14);
  --zht-green: #1f3824;
  --zht-green-deep: #08110b;
  --zht-green-smoke: rgba(31, 56, 36, 0.72);
  --zht-accent: #ff5a2b;
  --zht-cream: #fff8ec;
  --zht-max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #d7dbd0;
  color: var(--zht-ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.drawer-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

.site-header,
.home-page,
.shop-archive,
.tea-finder-page,
.product-page,
.not-found-page,
.content-page,
.site-footer {
  width: min(var(--zht-max), 100vw);
  margin-inline: auto;
}

.site-header,
.site-footer {
  width: 100%;
  max-width: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 14px clamp(22px, 4vw, 80px);
  background: rgba(247, 248, 241, 0.94);
  border-bottom: 1px solid var(--zht-line);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 18px;
  font-weight: 900;
  text-transform: lowercase;
}

.brand-dot {
  width: 26px;
  height: 26px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.site-nav,
.site-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 16px;
  font-weight: 780;
}

.site-nav {
  justify-content: center;
}

.site-actions {
  justify-content: flex-end;
  gap: 18px;
  justify-self: end;
}

.site-actions .cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px 0 16px;
  border: 1px solid rgba(8, 14, 9, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--zht-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.site-actions .cart-link::before,
.drawer-actions .cart-link::before {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z'/%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z'/%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E") center / contain no-repeat;
}

.drawer-actions .cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(8, 14, 9, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.site-pick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(8, 14, 9, 0.18);
  border-radius: 999px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.site-pick-link:hover,
.site-pick-link:focus {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
  color: #fff;
}

.menu-toggle,
.drawer-close {
  display: none;
}

.drawer-overlay,
.mobile-drawer {
  display: none;
}

body.quick-buy-open {
  overflow: hidden;
}

.quick-buy-overlay {
  position: fixed;
  inset: 0;
  z-index: 1180;
  display: block;
  pointer-events: none;
  background: rgba(8, 12, 9, 0);
  opacity: 0;
  transition: opacity 180ms ease, background 180ms ease;
}

.quick-buy-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1190;
  width: min(600px, calc(100vw - 24px));
  height: 100vh;
  height: 100dvh;
  background:
    linear-gradient(180deg, rgba(250, 250, 246, 0.98), rgba(243, 246, 238, 0.98)),
    var(--zht-paper);
  border-left: 1px solid rgba(31, 56, 36, 0.14);
  box-shadow: -30px 0 90px rgba(7, 10, 7, 0.28);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

.quick-buy-scroll {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: 22px 22px 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.quick-buy-scroll > * {
  flex: 0 0 auto;
}

.quick-buy-open .quick-buy-overlay {
  pointer-events: auto;
  background: rgba(8, 12, 9, 0.48);
  opacity: 1;
}

body.quick-buy-open .quick-buy-drawer {
  transform: translateX(0) !important;
}

.zht-order-received-guest {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(31, 56, 36, 0.14);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 70px rgba(26, 44, 30, 0.1);
}

.zht-order-received-head {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.zht-order-received-head > span,
.zht-order-received-card > span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.zht-order-received-head h2 {
  margin: 0;
  color: var(--zht-ink);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zht-order-received-head p {
  margin: 0;
  color: var(--zht-muted);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.42;
}

.zht-order-received-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 14px;
}

.zht-order-received-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 26px;
  background: rgba(255, 248, 236, 0.5);
}

.zht-order-received-items {
  display: grid;
  gap: 10px;
}

.zht-order-received-items > div,
.zht-order-received-total,
.zht-order-received-meta > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(14, 25, 14, 0.1);
}

.zht-order-received-items > div:last-child,
.zht-order-received-meta > div:last-child {
  border-bottom: 0;
}

.zht-order-received-meta > div {
  grid-template-columns: minmax(116px, 0.34fr) minmax(0, 1fr);
  align-items: start;
}

.zht-order-received-items strong,
.zht-order-received-total strong,
.zht-order-received-meta dd {
  color: var(--zht-ink);
  font-size: 18px;
  font-weight: 920;
  line-height: 1.18;
}

.zht-order-received-items small,
.zht-order-received-total span,
.zht-order-received-meta dt {
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.zht-order-received-items b {
  color: var(--zht-green);
  font-size: 17px;
  font-weight: 950;
  white-space: nowrap;
}

.zht-order-received-total {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(14, 25, 14, 0.12);
  border-bottom: 0;
}

.zht-order-received-total strong {
  color: var(--zht-green);
  font-size: 24px;
  white-space: nowrap;
}

.zht-order-received-meta {
  display: grid;
  margin: 0;
}

.zht-order-received-meta dd,
.zht-order-received-meta dt {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.zht-order-received-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zht-order-received-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(31, 56, 36, 0.16);
  border-radius: 999px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 15px;
  font-weight: 920;
  line-height: 1.1;
  text-decoration: none;
}

.zht-order-received-actions a:last-child {
  background: rgba(255, 255, 255, 0.72);
  color: var(--zht-green);
}

@media (max-width: 760px) {
  .zht-order-received-guest {
    border-radius: 26px;
  }

  .zht-order-received-grid {
    grid-template-columns: 1fr;
  }

  .zht-order-received-items > div,
  .zht-order-received-total,
  .zht-order-received-meta > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .zht-order-received-actions {
    display: grid;
  }

  .zht-order-received-actions a {
    width: 100%;
  }
}

.quick-buy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.quick-buy-head div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.quick-buy-head span,
.quick-buy-section-head span,
.quick-buy-addons summary span {
  color: var(--zht-accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.quick-buy-head strong,
.quick-buy-section-head strong,
.quick-buy-addons summary strong {
  display: block;
  min-width: 0;
  color: var(--zht-ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.12;
}

.quick-buy-head button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(31, 56, 36, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--zht-ink);
  font-size: 26px;
  line-height: 1;
}

.quick-buy-summary,
.quick-buy-form-section,
.quick-buy-addons,
.quick-buy-consents,
.quick-buy-actions,
.quick-buy-success {
  border: 1px solid rgba(31, 56, 36, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 44px rgba(26, 44, 30, 0.08);
}

.quick-buy-summary {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.quick-buy-product {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.quick-buy-product figure {
  display: grid;
  width: 82px;
  aspect-ratio: 1 / 1;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--zht-cream);
}

.quick-buy-product img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quick-buy-product p,
.quick-buy-product small,
.quick-buy-product h2,
.quick-buy-product strong,
.quick-buy-cart-empty {
  margin: 0;
}

.quick-buy-product p {
  color: var(--zht-muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
}

.quick-buy-product h2 {
  margin-top: 3px;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.quick-buy-product small {
  display: block;
  margin-top: 6px;
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.quick-buy-product strong {
  display: block;
  margin-top: 8px;
  color: var(--zht-green);
  font-size: 15px;
  font-weight: 950;
}

.quick-buy-cart {
  display: grid;
  gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(31, 56, 36, 0.1);
  background: rgba(247, 248, 241, 0.64);
}

.quick-buy-cart-empty {
  color: var(--zht-muted);
  font-size: 14px;
  font-weight: 780;
}

.quick-buy-cart-list {
  display: grid;
  gap: 8px;
}

.quick-buy-cart-item,
.quick-buy-cart-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 12px;
  align-items: baseline;
}

.quick-buy-cart-item span,
.quick-buy-cart-total span {
  min-width: 0;
  color: var(--zht-ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.quick-buy-cart-item strong,
.quick-buy-cart-total strong {
  color: var(--zht-ink);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.18;
  text-align: right;
}

.quick-buy-cart-item small {
  grid-column: 1 / -1;
  color: var(--zht-muted);
  font-size: 12px;
  font-weight: 740;
  line-height: 1.25;
}

.quick-buy-cart-total {
  padding-top: 9px;
  border-top: 1px solid rgba(31, 56, 36, 0.12);
}

.quick-buy-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.quick-buy-route span {
  display: flex;
  min-width: 0;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 8px;
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 16px;
  background: rgba(255, 248, 236, 0.58);
  color: var(--zht-muted);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.quick-buy-route b {
  display: inline-grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--zht-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
}

.quick-buy-addons {
  display: block;
  overflow: visible;
}

.quick-buy-addons summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 4px 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
}

.quick-buy-addons summary::-webkit-details-marker {
  display: none;
}

.quick-buy-addons summary::after {
  content: "+";
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(31, 56, 36, 0.16);
  border-radius: 14px;
  background: rgba(247, 248, 241, 0.78);
  color: var(--zht-accent);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.quick-buy-addons[open] summary {
  border-bottom: 1px solid rgba(31, 56, 36, 0.1);
}

.quick-buy-addons[open] summary::after {
  content: "-";
}

.quick-buy-addons-note {
  margin: 0;
  padding: 12px 14px 0;
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.34;
}

.quick-buy-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 14px 14px;
}

.quick-buy-addons-grid article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 8px 10px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 20px;
  background: rgba(255, 248, 236, 0.5);
}

.quick-buy-addons-grid article[hidden] {
  display: none;
}

.quick-buy-addons-grid figure {
  grid-row: 1 / span 2;
  display: grid;
  width: 54px;
  aspect-ratio: 1 / 1;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--zht-cream);
}

.quick-buy-addons-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quick-buy-addons-grid article > div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.quick-buy-addons-grid span,
.quick-buy-addons-grid strong,
.quick-buy-addons-grid small {
  display: block;
}

.quick-buy-addons-grid span {
  color: var(--zht-accent);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.quick-buy-addons-grid strong {
  color: var(--zht-ink);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.08;
}

.quick-buy-addons-grid small {
  color: var(--zht-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.quick-buy-addon-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  grid-column: 2;
  grid-row: 2;
  justify-self: stretch;
  width: 100%;
  margin: 0;
  min-height: 40px;
  padding-inline: 12px;
  border-radius: 16px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 12px;
}

.quick-buy-addon-button:hover {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
}

.quick-buy-form {
  display: grid;
  gap: 14px;
}

.quick-buy-form[hidden],
.quick-buy-success[hidden] {
  display: none;
}

.quick-buy-form-section {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.quick-buy-section-head {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.quick-buy-form label,
.quick-buy-form fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.quick-buy-form label > span,
.quick-buy-form legend {
  color: var(--zht-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.18;
  text-transform: uppercase;
}

.quick-buy-form input,
.quick-buy-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(31, 56, 36, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--zht-ink);
  font: inherit;
  font-size: 16px;
}

.quick-buy-form textarea {
  min-height: 82px;
  padding-block: 13px;
  resize: vertical;
}

.quick-buy-promo input {
  text-transform: uppercase;
}

.quick-buy-field-with-suggest {
  position: relative;
}

.quick-buy-choice-control {
  position: relative;
  min-width: 0;
}

.quick-buy-choice-control input {
  padding-right: 50px;
}

.quick-buy-choice-control.is-selected input {
  border-color: rgba(47, 105, 75, 0.48);
  background: rgba(241, 247, 235, 0.9);
}

.quick-buy-choice-clear {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  width: 38px;
  height: 38px;
  min-height: 0;
  padding: 0;
  transform: translateY(-50%);
  place-items: center;
  border: 1px solid rgba(14, 25, 14, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--zht-ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.quick-buy-choice-clear[hidden] {
  display: none;
}

.quick-buy-choice-clear:hover,
.quick-buy-choice-clear:focus {
  border-color: var(--zht-green);
  color: var(--zht-green);
}

.quick-buy-suggest {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 8;
  display: grid;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid rgba(14, 25, 14, 0.2);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 12, 9, 0.16);
}

.quick-buy-suggest[hidden] {
  display: none;
}

.quick-buy-suggest-item {
  display: block;
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 0;
  border-bottom: 1px solid rgba(14, 25, 14, 0.08);
  background: #fff;
  color: var(--zht-ink);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.22;
  text-align: left;
}

.quick-buy-suggest-item:hover,
.quick-buy-suggest-item:focus {
  background: var(--zht-cream);
}

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

.quick-buy-receipt-grid {
  grid-template-columns: 1fr;
}

.quick-buy-form fieldset {
  border: 0;
  padding: 0;
}

.quick-buy-form fieldset legend {
  margin-bottom: 8px;
}

.quick-buy-delivery-methods,
.quick-buy-payment-methods {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quick-buy-payment-methods {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-buy-delivery-methods label,
.quick-buy-payment-methods label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 3px 10px;
  min-height: 58px;
  padding: 12px;
  align-content: center;
  align-items: center;
  border: 1px solid rgba(31, 56, 36, 0.14);
  border-radius: 18px;
  background: rgba(247, 248, 241, 0.68);
}

.quick-buy-delivery-methods input,
.quick-buy-payment-methods input {
  align-self: center;
  justify-self: center;
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
  accent-color: var(--zht-accent);
}

.quick-buy-payment-methods span,
.quick-buy-delivery-methods span {
  color: var(--zht-ink);
  font-weight: 950;
  line-height: 1.12;
}

.quick-buy-payment-methods small {
  grid-column: 2;
  color: var(--zht-muted);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.1;
}

.quick-buy-delivery-note {
  margin: -2px 0 0;
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.34;
}

.quick-buy-delivery-terms {
  display: grid;
  gap: 5px;
  padding: 11px 12px;
  border: 1px solid rgba(31, 56, 36, 0.1);
  border-radius: 18px;
  background: rgba(255, 248, 236, 0.56);
}

.quick-buy-delivery-terms span,
.quick-buy-delivery-terms small {
  display: block;
}

.quick-buy-delivery-terms span {
  color: var(--zht-ink);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.12;
}

.quick-buy-delivery-terms small {
  color: var(--zht-muted);
  font-size: 12px;
  font-weight: 740;
  line-height: 1.34;
}

.quick-buy-payment-toggle {
  background: rgba(241, 247, 235, 0.66);
}

.quick-buy-consents {
  display: grid;
  gap: 10px;
  padding: 13px 14px;
}

.quick-buy-consents label,
.quick-buy-marketing-consent {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0;
}

.quick-buy-form .quick-buy-consents label,
.quick-buy-form .quick-buy-marketing-consent {
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.quick-buy-consents input,
.quick-buy-marketing-consent input,
.quick-buy-form .quick-buy-consents label > input,
.quick-buy-form .quick-buy-marketing-consent > input {
  align-self: start;
  justify-self: center;
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 1px 0 0;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
  accent-color: var(--zht-accent);
}

.quick-buy-consents span,
.quick-buy-marketing-consent span,
.quick-buy-form .quick-buy-consents label > span,
.quick-buy-form .quick-buy-marketing-consent > span {
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.36;
  letter-spacing: 0;
  text-transform: none;
}

.quick-buy-consents a,
.quick-buy-support-note a,
.quick-buy-success-email {
  color: var(--zht-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quick-buy-error {
  margin: 0;
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(255, 90, 43, 0.12);
  color: #b4331b;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.28;
}

.quick-buy-error[hidden] {
  display: none;
}

.quick-buy-actions {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.quick-buy-support-note {
  margin: 0;
  color: var(--zht-muted);
  font-size: 12px;
  font-weight: 740;
  line-height: 1.3;
}

.quick-buy-submit,
.quick-buy-add-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 999px;
  font-weight: 950;
}

.quick-buy-submit {
  min-height: 60px;
  border: 1px solid var(--zht-accent);
  background: var(--zht-accent);
  color: #fff;
  font-size: 19px;
}

.quick-buy-add-more {
  min-height: 50px;
  border: 1px solid rgba(31, 56, 36, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--zht-ink);
  font-size: 15px;
}

.quick-buy-form.is-loading {
  opacity: 0.76;
  pointer-events: none;
}

.quick-buy-success {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.quick-buy-success strong {
  font-size: 24px;
  line-height: 1.1;
}

.quick-buy-success span {
  color: var(--zht-ink);
  font-size: 18px;
  font-weight: 950;
}

.quick-buy-success p {
  margin: 0;
  color: var(--zht-muted);
  font-size: 15px;
  font-weight: 780;
}

.quick-buy-success .is-ok {
  color: #1f6f43;
}

.quick-buy-success .is-warning {
  color: #9d4b1d;
}

.quick-buy-success > button,
.quick-buy-success > .quick-buy-success-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.quick-buy-success > button {
  border: 1px solid var(--zht-accent);
  background: var(--zht-accent);
  color: #fff;
}

.quick-buy-success > .quick-buy-success-details {
  border: 1px solid var(--zht-line);
  background: transparent;
  color: var(--zht-ink);
}

.home-page,
.shop-archive,
.product-page,
.not-found-page,
.content-page {
  overflow: hidden;
  background: var(--zht-paper);
}

.eyebrow,
.quiet-heading > span,
.guided-copy > span,
.soft-note > span,
.zht-product-card > a > span,
.archive-hero .eyebrow,
.product-info .tags span,
.recommend-copy > span,
.section-number,
.guided-steps span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concierge-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(440px, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
  min-height: calc(100vh - 72px);
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(247, 248, 241, 0.4), rgba(247, 248, 241, 0.76)),
    url("../images/zen-heart-hero-wide-v2.png") center / cover no-repeat;
  border-bottom: 1px solid var(--zht-line);
}

.concierge-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(247, 248, 241, 0.04) 0 44%, rgba(247, 248, 241, 0.62) 44% 100%);
  pointer-events: none;
}

.concierge-hero > * {
  position: relative;
  z-index: 1;
}

.need-panel {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  align-content: end;
  min-height: 520px;
  padding: clamp(34px, 5vw, 62px);
  background: rgba(247, 248, 241, 0.82);
  border: 1px solid rgba(14, 25, 14, 0.18);
  backdrop-filter: blur(10px);
}

.need-panel h1 {
  max-width: 780px;
  margin: 16px 0 0;
  font-size: clamp(64px, 8vw, 126px);
  line-height: 0.86;
  text-transform: uppercase;
}

.need-panel p {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--zht-muted);
  font-size: 24px;
  line-height: 1.42;
}

.hero-proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.hero-proof-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(31, 56, 36, 0.2);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.72);
  color: var(--zht-green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.need-options {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--zht-line);
}

.need-options button {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) max-content;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 18px 22px;
  border: 0;
  border-bottom: 1px solid var(--zht-line);
  background: transparent;
  color: var(--zht-ink);
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.need-options button strong {
  font-size: 28px;
  line-height: 1;
}

.need-options button small {
  color: var(--zht-muted);
  font-size: 16px;
}

.need-options button.is-active {
  background: var(--zht-ink);
  color: var(--zht-cream);
}

.need-options button.is-active small {
  color: rgba(255, 248, 236, 0.72);
}

.hero-product-visual {
  position: relative;
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background: #10120f;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-visual figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 6px;
  max-width: 430px;
  padding: 22px 24px;
  color: var(--zht-cream);
  background: rgba(7, 11, 8, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.hero-product-visual strong {
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-product-visual span {
  color: rgba(255, 248, 236, 0.76);
  font-size: 18px;
}

.recommend-card {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
  background: rgba(247, 248, 241, 0.84);
  border: 1px solid rgba(14, 25, 14, 0.18);
  backdrop-filter: blur(10px);
}

.recommend-card figure {
  margin: 0;
  background: var(--zht-cream);
}

.recommend-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.recommend-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
}

.recommend-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 17px;
  line-height: 1.45;
}

.recommend-insight {
  display: grid;
  gap: 0;
  margin: 2px 0 0;
  border: 1px solid rgba(14, 25, 14, 0.14);
  background: rgba(255, 248, 236, 0.56);
}

.recommend-insight div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(14, 25, 14, 0.12);
}

.recommend-insight div:last-child {
  border-bottom: 0;
}

.recommend-insight dt,
.recommend-insight dd {
  margin: 0;
}

.recommend-insight dt {
  color: var(--zht-accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1.18;
  text-transform: uppercase;
}

.recommend-insight dd {
  color: var(--zht-ink);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.24;
}

.recommend-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.recommend-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.68);
  color: var(--zht-muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.recommend-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.recommend-finder-link {
  color: var(--zht-green);
  background: transparent;
}

.recommend-copy a,
.button-primary,
.zht-button,
.zht-product-link-button,
.zht-quick-buy-button,
.zht-cart-add-button,
.single_add_to_cart_button,
.archive-cats a,
.quiet-heading > a,
.site-footer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-weight: 900;
}

.zht-quick-buy-button.is-loading,
.single_add_to_cart_button.is-loading {
  opacity: 0.68;
  pointer-events: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--zht-line);
  background: rgba(247, 248, 241, 0.94);
}

.trust-strip article {
  min-height: 156px;
  padding: 26px clamp(22px, 3vw, 42px);
  border-right: 1px solid var(--zht-line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip span,
.workday-copy > span,
.workday-grid article > span {
  display: block;
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip strong {
  display: block;
  max-width: 360px;
  margin-top: 16px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
}

.trust-strip p {
  max-width: 420px;
  margin: 12px 0 0;
  color: var(--zht-muted);
  font-size: 16px;
  line-height: 1.42;
}

.quick-picks-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  padding: 74px clamp(28px, 5vw, 86px);
  border-bottom: 1px solid var(--zht-line);
  background: rgba(255, 248, 236, 0.42);
}

.quick-picks-head {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 20px;
  align-content: start;
}

.quick-picks-head span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-picks-head h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.9;
  text-transform: uppercase;
}

.quick-picks-head p {
  max-width: 560px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 19px;
  line-height: 1.45;
}

.quick-picks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--zht-line);
  border-left: 1px solid var(--zht-line);
}

.quick-picks-grid article {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  min-width: 0;
  min-height: 350px;
  padding: 24px;
  border-right: 1px solid var(--zht-line);
  border-bottom: 1px solid var(--zht-line);
  background: rgba(247, 248, 241, 0.64);
}

.quick-picks-grid article > span {
  color: var(--zht-accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.quick-picks-grid strong {
  display: block;
  margin-top: 30px;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 0.98;
}

.quick-picks-grid p {
  margin: 14px 0 0;
  color: var(--zht-muted);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.34;
}

.quick-pick-proof {
  display: grid;
  gap: 8px;
  align-self: end;
  margin: 18px 0 0;
  padding: 14px;
  border: 1px solid rgba(14, 25, 14, 0.12);
  background: rgba(255, 248, 236, 0.54);
}

.quick-pick-proof div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.quick-pick-proof dt,
.quick-pick-proof dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
}

.quick-pick-proof dt {
  color: var(--zht-accent);
  font-weight: 950;
  text-transform: uppercase;
}

.quick-pick-proof dd {
  color: var(--zht-ink);
  font-weight: 820;
}

.quick-picks-grid small {
  display: block;
  margin-top: 20px;
  color: var(--zht-muted);
  font-size: 17px;
  font-weight: 900;
}

.quick-picks-grid .quick-pick-link {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 16px;
}

.quick-picks-grid .quick-pick-link:hover,
.quick-picks-grid .quick-pick-link:focus {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
}

.order-size-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  padding: 74px clamp(28px, 5vw, 86px);
  border-bottom: 1px solid var(--zht-line);
  background: var(--zht-paper);
}

.order-size-head {
  display: grid;
  gap: 20px;
  align-content: start;
}

.order-size-head span,
.order-size-grid article > span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-size-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: 54px;
  line-height: 0.94;
  text-transform: uppercase;
}

.order-size-head p {
  max-width: 580px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 19px;
  line-height: 1.45;
}

.order-size-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--zht-line);
  border-left: 1px solid var(--zht-line);
}

.order-size-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  min-width: 0;
  min-height: 360px;
  padding: 24px;
  border-right: 1px solid var(--zht-line);
  border-bottom: 1px solid var(--zht-line);
  background: rgba(255, 248, 236, 0.5);
}

.order-size-grid strong {
  display: block;
  margin-top: 42px;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.order-size-grid p {
  margin: 16px 0 0;
  color: var(--zht-muted);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.38;
}

.order-size-grid small {
  display: block;
  margin-top: 18px;
  color: var(--zht-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.24;
}

.order-size-link {
  width: 100%;
  min-height: 48px;
  margin-top: 16px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 15px;
  text-align: center;
}

.order-size-link:hover,
.order-size-link:focus {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
}

.single_add_to_cart_button {
  min-height: 62px;
  padding: 0 38px;
  background: var(--zht-accent);
  border-color: var(--zht-accent);
  color: #fff;
  font-size: 20px;
}

.quiet-section {
  padding: 84px 24px;
  border-bottom: 1px solid var(--zht-line);
}

.not-found-page {
  min-height: calc(100vh - 72px);
}

.not-found-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  min-height: 560px;
  padding: clamp(42px, 7vw, 96px) clamp(24px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(247, 248, 241, 0.86), rgba(247, 248, 241, 0.58)),
    url("../images/zen-heart-hero-wide-v2.png") center / cover no-repeat;
  border-bottom: 1px solid var(--zht-line);
}

.not-found-copy {
  max-width: 820px;
}

.not-found-copy h1 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.88;
  text-transform: uppercase;
}

.not-found-copy p {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--zht-muted);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.42;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.not-found-actions a,
.not-found-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--zht-line);
  color: var(--zht-ink);
  font-weight: 900;
}

.not-found-actions .primary-action,
.not-found-search button {
  background: var(--zht-ink);
  color: var(--zht-cream);
  border-color: var(--zht-ink);
}

.not-found-search {
  align-self: end;
  padding: 24px;
  background: rgba(247, 248, 241, 0.84);
  border: 1px solid rgba(14, 25, 14, 0.18);
  backdrop-filter: blur(10px);
}

.not-found-search label {
  display: block;
  margin-bottom: 12px;
  color: var(--zht-muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.not-found-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.not-found-search input {
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--zht-line);
  background: rgba(255, 248, 236, 0.92);
  color: var(--zht-ink);
}

.not-found-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--zht-line);
}

.not-found-links a {
  min-height: 168px;
  padding: 28px;
  border-right: 1px solid var(--zht-line);
}

.not-found-links a:last-child {
  border-right: 0;
}

.not-found-links span {
  display: block;
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.not-found-links strong {
  display: block;
  max-width: 320px;
  margin-top: 18px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.not-found-products {
  padding: 72px clamp(24px, 5vw, 78px);
}

.quiet-heading {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}

.quiet-heading h2,
.guided-copy h2,
.choice-guide-head h2,
.delivery-flow-copy h2,
.bundle-path-copy h2,
.objection-copy h2,
.soft-note h2,
.archive-hero h1,
.tea-passport-lead h2,
.scenario-compare-head h2,
.product-pairing-copy h2,
.product-about h2,
.recommended h2,
.brew-section h2 {
  margin: 0;
  font-size: clamp(56px, 7vw, 108px);
  line-height: 0.86;
  text-transform: uppercase;
}

.quiet-heading p,
.guided-copy p,
.choice-guide-head p,
.delivery-flow-copy p,
.bundle-path-copy p,
.objection-copy p,
.soft-note p,
.archive-hero p,
.tea-passport-lead p,
.scenario-compare-head p,
.product-pairing-copy p,
.product-about p,
.brew-section p {
  margin: 0;
  color: var(--zht-muted);
  font-size: 22px;
  line-height: 1.5;
}

.mood-grid,
.fresh-row,
.small-products,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--zht-line);
  border-left: 1px solid var(--zht-line);
}

.zht-product-card {
  min-width: 0;
  background: var(--zht-paper);
  border-right: 1px solid var(--zht-line);
  border-bottom: 1px solid var(--zht-line);
}

.zht-product-card > a {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.zht-product-card figure {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 0 8px;
  overflow: hidden;
  background: var(--zht-cream);
}

.zht-product-card.is-featured figure {
  border: 3px solid var(--zht-accent);
  box-shadow: 0 18px 42px rgba(255, 90, 43, 0.18);
}

.zht-product-card.is-gift figure {
  border: 3px solid var(--zht-accent);
  box-shadow: 0 18px 50px rgba(255, 90, 43, 0.14);
}

.zht-product-card img,
.zht-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.zht-product-card h3 {
  margin: 0;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.zht-product-card p {
  margin: 0;
}

.zht-card-subtitle {
  color: var(--zht-muted);
  font-size: 15px;
  font-weight: 740;
  line-height: 1.35;
}

.zht-card-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.zht-card-signals small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(8, 14, 9, 0.16);
  border-radius: 999px;
  color: var(--zht-ink);
  background: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 860;
  line-height: 1.1;
  text-transform: uppercase;
}

.zht-card-buy-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.zht-card-buy-proof small {
  display: grid;
  min-width: 0;
  min-height: 34px;
  place-items: center;
  padding: 6px;
  border: 1px solid rgba(31, 56, 36, 0.14);
  background: rgba(247, 248, 241, 0.7);
  color: var(--zht-muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.zht-card-fit {
  display: grid;
  gap: 6px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(31, 56, 36, 0.14);
  background: rgba(255, 248, 236, 0.62);
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.3;
}

.zht-card-fit span {
  display: block;
  color: var(--zht-accent);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.zht-card-decision {
  display: -webkit-box;
  overflow: hidden;
  color: var(--zht-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.zht-card-price {
  color: var(--zht-muted);
  font-size: 17px;
  font-weight: 760;
}

.zht-card-actions {
  padding: 0 18px 20px;
}

.zht-card-actions .zht-quick-buy-button,
.zht-card-actions .zht-product-link-button,
.zht-card-actions .zht-cart-add-button {
  min-height: 50px;
  width: 100%;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 18px;
}

.zht-card-actions .zht-quick-buy-button:hover,
.zht-card-actions .zht-product-link-button:hover,
.zht-card-actions .zht-cart-add-button:hover {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
}

.zht-product-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: radial-gradient(circle, #31452f, #0b120b);
}

.zht-product-placeholder span {
  width: 46%;
  height: 46%;
  border: 8px solid rgba(255, 248, 236, 0.76);
  border-radius: 50%;
}

.guided-choice {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.38fr);
  gap: 64px;
  align-items: center;
  min-height: 560px;
  padding: 96px clamp(28px, 5vw, 96px);
  background: var(--zht-soft);
  border-bottom: 1px solid var(--zht-line);
}

.guided-copy {
  display: grid;
  gap: 24px;
}

.guided-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  min-height: 330px;
}

.guided-steps article {
  display: grid;
  grid-template-rows: 62px 24px minmax(72px, auto) minmax(74px, auto);
  align-content: end;
  min-height: 290px;
  row-gap: 14px;
  padding: 0 36px 30px;
  border-left: 1px solid var(--zht-line);
}

.step-icon {
  display: block;
  align-self: end;
  width: 62px;
  height: 62px;
  margin: 0;
  overflow: visible;
  color: var(--zht-accent);
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.step-icon * {
  vector-effect: non-scaling-stroke;
}

.guided-steps strong {
  display: block;
  min-height: 0;
  margin: 0;
  font-size: 27px;
  line-height: 1.05;
  text-transform: uppercase;
}

.guided-steps p {
  margin: 0;
  color: var(--zht-muted);
  font-size: 18px;
  line-height: 1.35;
}

.delivery-flow-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding: 96px clamp(28px, 5vw, 96px);
  border-bottom: 1px solid var(--zht-line);
  background: var(--zht-green-deep);
  color: var(--zht-cream);
}

.delivery-flow-copy {
  display: grid;
  gap: 24px;
  align-content: start;
}

.delivery-flow-copy > span,
.delivery-flow-grid article > span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-flow-copy h2 {
  max-width: 700px;
}

.delivery-flow-copy p {
  max-width: 640px;
  color: rgba(255, 248, 236, 0.74);
}

.delivery-flow-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 248, 236, 0.5);
  border-radius: 999px;
  color: var(--zht-cream);
  font-weight: 950;
}

.delivery-flow-copy a:hover {
  border-color: var(--zht-accent);
  background: var(--zht-accent);
}

.delivery-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 248, 236, 0.18);
  border-left: 1px solid rgba(255, 248, 236, 0.18);
}

.delivery-flow-grid article {
  min-height: 340px;
  padding: 26px;
  border-right: 1px solid rgba(255, 248, 236, 0.18);
  border-bottom: 1px solid rgba(255, 248, 236, 0.18);
  background: rgba(255, 248, 236, 0.05);
}

.delivery-flow-grid strong {
  display: block;
  margin-top: 86px;
  color: var(--zht-cream);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.delivery-flow-grid p {
  margin: 18px 0 0;
  color: rgba(255, 248, 236, 0.68);
  font-size: 16px;
  line-height: 1.42;
}

.workday-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 96px clamp(28px, 5vw, 96px);
  background: var(--zht-paper);
  border-bottom: 1px solid var(--zht-line);
}

.workday-copy {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 24px;
}

.workday-copy h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(54px, 6vw, 96px);
  line-height: 0.88;
  text-transform: uppercase;
}

.workday-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 22px;
  line-height: 1.5;
}

.workday-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--zht-line);
  border-left: 1px solid var(--zht-line);
}

.workday-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 0;
  min-height: 360px;
  padding: 28px;
  border-right: 1px solid var(--zht-line);
  border-bottom: 1px solid var(--zht-line);
  background: rgba(255, 248, 236, 0.42);
}

.workday-grid strong {
  display: block;
  margin-top: 88px;
  font-size: clamp(26px, 2.3vw, 38px);
  line-height: 0.98;
}

.workday-grid p {
  margin: 18px 0 0;
  color: var(--zht-muted);
  font-size: 17px;
  line-height: 1.42;
}

.workday-product {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(14, 25, 14, 0.14);
}

.workday-product small,
.workday-product b {
  display: block;
}

.workday-product small {
  color: var(--zht-ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.15;
}

.workday-product b {
  color: var(--zht-muted);
  font-size: 18px;
  line-height: 1;
}

.workday-link {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 15px;
}

.workday-link:hover,
.workday-link:focus {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
}

.choice-guide-section {
  padding: 96px clamp(28px, 5vw, 96px);
  border-bottom: 1px solid var(--zht-line);
  background: var(--zht-soft);
}

.choice-guide-head {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}

.choice-guide-head > span {
  align-self: start;
  color: var(--zht-accent);
  font-size: 14px;
  font-weight: 900;
}

.choice-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--zht-line);
  border-left: 1px solid var(--zht-line);
}

.choice-guide-grid article {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  min-width: 0;
  min-height: 560px;
  padding: 28px;
  border-right: 1px solid var(--zht-line);
  border-bottom: 1px solid var(--zht-line);
  background: rgba(255, 248, 236, 0.54);
}

.choice-guide-grid article > span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 900;
}

.choice-guide-grid h3 {
  margin: 34px 0 0;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 0.95;
  text-transform: uppercase;
}

.choice-guide-grid article > p {
  margin: 16px 0 0;
  color: var(--zht-muted);
  font-size: 17px;
  line-height: 1.42;
}

.choice-guide-grid dl {
  display: grid;
  gap: 0;
  align-self: end;
  margin: 26px 0 22px;
  border-top: 1px solid rgba(14, 25, 14, 0.14);
}

.choice-guide-grid dl div {
  display: grid;
  gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(14, 25, 14, 0.14);
}

.choice-guide-grid dt {
  color: var(--zht-accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.choice-guide-grid dd {
  margin: 0;
  color: var(--zht-muted);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.32;
}

.choice-guide-product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 72px;
  margin-bottom: 18px;
}

.choice-guide-product figure {
  display: grid;
  width: 72px;
  aspect-ratio: 1 / 1;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: var(--zht-cream);
}

.choice-guide-product strong,
.choice-guide-product small {
  display: block;
}

.choice-guide-product strong {
  font-size: 18px;
  line-height: 1.08;
}

.choice-guide-product small {
  margin-top: 8px;
  color: var(--zht-muted);
  font-size: 15px;
  font-weight: 800;
}

.choice-guide-grid .zht-product-link-button {
  width: 100%;
  min-height: 50px;
  background: var(--zht-ink);
  color: var(--zht-paper);
}

.choice-guide-grid .zht-product-link-button:hover {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
}

.bundle-path-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 96px clamp(28px, 5vw, 96px);
  border-bottom: 1px solid var(--zht-line);
  background: var(--zht-paper);
}

.bundle-path-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.bundle-path-copy > span,
.bundle-path-grid article > span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bundle-path-copy h2 {
  max-width: 720px;
}

.bundle-path-copy p {
  max-width: 620px;
}

.bundle-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(14, 25, 14, 0.16);
  border-left: 1px solid rgba(14, 25, 14, 0.16);
}

.bundle-path-grid article {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-width: 0;
  min-height: 540px;
  padding: 24px;
  border-right: 1px solid rgba(14, 25, 14, 0.16);
  border-bottom: 1px solid rgba(14, 25, 14, 0.16);
  background: rgba(255, 248, 236, 0.52);
}

.bundle-path-grid h3 {
  margin: 48px 0 0;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 0.96;
  text-transform: uppercase;
}

.bundle-path-grid article > p {
  margin: 18px 0 0;
  color: var(--zht-muted);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.42;
}

.bundle-path-products {
  display: grid;
  gap: 12px;
  align-self: end;
  margin-top: 28px;
}

.bundle-path-products div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(14, 25, 14, 0.12);
  background: rgba(247, 248, 241, 0.78);
}

.bundle-path-products figure {
  grid-row: span 3;
  display: grid;
  width: 64px;
  aspect-ratio: 1 / 1;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: var(--zht-cream);
}

.bundle-path-products strong,
.bundle-path-products small {
  display: block;
}

.bundle-path-products strong {
  font-size: 16px;
  line-height: 1.08;
}

.bundle-path-products small {
  color: var(--zht-muted);
  font-size: 14px;
  font-weight: 800;
}

.bundle-path-start {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(14, 25, 14, 0.14);
}

.bundle-path-start small {
  display: block;
  color: var(--zht-ink);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.12;
}

.bundle-path-start p {
  margin: 0;
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.32;
}

.bundle-path-link {
  width: 100%;
  min-height: 46px;
  padding-inline: 14px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 14px;
}

.bundle-path-link:hover {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
}

.objection-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 96px clamp(28px, 5vw, 96px);
  border-bottom: 1px solid var(--zht-line);
  background: var(--zht-soft);
}

.product-objection-section {
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 76px clamp(28px, 5vw, 96px);
  background: var(--zht-paper);
}

.product-objection-section .objection-copy {
  max-width: 940px;
  min-width: 0;
}

.product-objection-section .objection-copy p {
  max-width: 720px;
}

.objection-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.objection-copy > span,
.objection-grid article > span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.objection-copy h2 {
  max-width: 760px;
}

.objection-copy p {
  max-width: 620px;
}

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

.objection-grid article {
  min-width: 0;
  min-height: 340px;
  padding: 24px;
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 28px;
  background: rgba(255, 248, 236, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.objection-grid strong {
  display: block;
  margin-top: 72px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.02;
  text-transform: uppercase;
}

.objection-grid p {
  margin: 18px 0 0;
  color: var(--zht-muted);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.42;
}

.gift-path-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
  padding: 96px clamp(28px, 5vw, 96px);
  border-bottom: 1px solid var(--zht-line);
  background:
    linear-gradient(90deg, rgba(8, 17, 11, 0.92), rgba(8, 17, 11, 0.74)),
    url("../images/zen-heart-hero-wide-v2.png") center / cover no-repeat;
  color: var(--zht-cream);
}

.gift-path-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.gift-path-copy > span {
  color: var(--zht-accent);
  font-size: 14px;
  font-weight: 950;
}

.gift-path-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(54px, 6vw, 100px);
  line-height: 0.88;
  text-transform: uppercase;
}

.gift-path-copy > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 248, 236, 0.78);
  font-size: 22px;
  line-height: 1.5;
}

.gift-path-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  border-top: 1px solid rgba(255, 248, 236, 0.18);
  border-left: 1px solid rgba(255, 248, 236, 0.18);
}

.gift-path-points article {
  min-height: 190px;
  padding: 22px;
  border-right: 1px solid rgba(255, 248, 236, 0.18);
  border-bottom: 1px solid rgba(255, 248, 236, 0.18);
  background: rgba(255, 248, 236, 0.05);
}

.gift-path-points strong {
  display: block;
  font-size: 22px;
  line-height: 1.04;
  text-transform: uppercase;
}

.gift-path-points p {
  margin: 18px 0 0;
  color: rgba(255, 248, 236, 0.7);
  font-size: 16px;
  line-height: 1.4;
}

.gift-path-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 248, 236, 0.22);
  background: rgba(247, 248, 241, 0.1);
  backdrop-filter: blur(12px);
}

.gift-path-card figure {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 248, 236, 0.82);
}

.gift-path-card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gift-path-card span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.gift-path-card h3 {
  margin: 18px 0 0;
  color: var(--zht-cream);
  font-size: clamp(34px, 4vw, 66px);
  line-height: 0.92;
  text-transform: uppercase;
}

.gift-path-card p {
  margin: 18px 0 0;
  color: rgba(255, 248, 236, 0.72);
  font-size: 18px;
  line-height: 1.45;
}

.gift-path-card div > strong {
  display: block;
  margin-top: 18px;
  color: var(--zht-cream);
  font-size: 22px;
}

.gift-path-card .zht-product-link-button {
  min-height: 54px;
  margin-top: 24px;
  background: var(--zht-accent);
  border-color: var(--zht-accent);
  color: #fff;
}

.gift-path-card .zht-product-link-button:hover {
  background: var(--zht-cream);
  border-color: var(--zht-cream);
  color: var(--zht-ink);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collection-grid a {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 248, 236, 0.72);
  border: 1px solid var(--zht-line);
}

.collection-grid img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  background: var(--zht-cream);
}

.collection-grid strong {
  font-size: 28px;
  line-height: 1;
}

.collection-grid span {
  color: var(--zht-muted);
  font-size: 16px;
}

.soft-note {
  padding: 110px clamp(28px, 8vw, 150px);
  background: var(--zht-green-deep);
  color: var(--zht-cream);
}

.soft-note p {
  max-width: 740px;
  color: rgba(255, 248, 236, 0.74);
}

.slider-affordance {
  display: none;
}

.archive-hero {
  padding: 92px clamp(28px, 7vw, 120px) 58px;
  background:
    linear-gradient(90deg, rgba(8, 17, 11, 0.88), rgba(8, 17, 11, 0.62)),
    url("../images/zen-heart-hero-wide-v2.png") center / cover no-repeat;
  color: var(--zht-cream);
}

.archive-hero p {
  max-width: 680px;
  color: rgba(255, 248, 236, 0.78);
}

.shop-scenarios {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--zht-line);
  border-left: 1px solid var(--zht-line);
  background: rgba(247, 248, 241, 0.96);
}

.shop-scenarios a {
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--zht-line);
}

.shop-scenarios span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 900;
}

.shop-scenarios strong {
  margin-top: 34px;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 0.95;
  text-transform: uppercase;
}

.shop-scenarios b {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.18;
}

.shop-scenarios p {
  margin: 14px 0 0;
  color: var(--zht-muted);
  font-size: 16px;
  line-height: 1.4;
}

.shop-scenarios small {
  display: block;
  margin-top: 24px;
  color: var(--zht-green);
  font-size: 13px;
  font-weight: 900;
}

.shop-scenario-product {
  display: grid;
  gap: 6px;
  align-self: end;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(14, 25, 14, 0.12);
}

.shop-scenario-product small,
.shop-scenario-product em,
.shop-scenario-product i {
  display: block;
  margin: 0;
  line-height: 1.18;
}

.shop-scenario-product em {
  color: var(--zht-ink);
  font-size: 18px;
  font-style: normal;
  font-weight: 950;
}

.shop-scenario-product i {
  color: var(--zht-accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-buy-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--zht-line);
  border-left: 1px solid var(--zht-line);
  background: rgba(255, 248, 236, 0.48);
}

.shop-buy-path article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px 18px;
  align-content: start;
  min-height: 148px;
  padding: 24px clamp(20px, 3vw, 36px);
  border-right: 1px solid var(--zht-line);
}

.shop-buy-path span {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 79, 44, 0.44);
  border-radius: 999px;
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
}

.shop-buy-path strong {
  display: block;
  color: var(--zht-ink);
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1;
  text-transform: uppercase;
}

.shop-buy-path p {
  max-width: 430px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.36;
}

.shop-decision-matrix {
  display: grid;
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 74px clamp(24px, 5vw, 86px);
  border-bottom: 1px solid var(--zht-line);
  background: rgba(247, 248, 241, 0.9);
}

.shop-decision-head {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.shop-decision-head span,
.shop-decision-grid article > a > span,
.shop-decision-grid dt {
  color: var(--zht-accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.shop-decision-head h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(44px, 5.5vw, 82px);
  line-height: 0.86;
  text-transform: uppercase;
}

.shop-decision-head p {
  max-width: 560px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 18px;
  font-weight: 740;
  line-height: 1.42;
}

.shop-decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--zht-line);
  border-left: 1px solid var(--zht-line);
}

.shop-decision-grid article {
  min-width: 0;
  border-right: 1px solid var(--zht-line);
  border-bottom: 1px solid var(--zht-line);
  background: rgba(255, 248, 236, 0.44);
}

.shop-decision-grid a {
  display: grid;
  min-height: 392px;
  padding: 24px;
  color: inherit;
}

.shop-decision-grid h3 {
  margin: 30px 0 0;
  font-size: clamp(28px, 2.7vw, 44px);
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.shop-decision-grid p {
  margin: 14px 0 0;
  color: var(--zht-muted);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.34;
}

.shop-decision-grid dl {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  border: 1px solid rgba(14, 25, 14, 0.14);
  background: rgba(255, 255, 255, 0.4);
}

.shop-decision-grid dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(14, 25, 14, 0.12);
}

.shop-decision-grid dl div:last-child {
  border-bottom: 0;
}

.shop-decision-grid dt,
.shop-decision-grid dd {
  margin: 0;
}

.shop-decision-grid dd {
  color: var(--zht-ink);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.22;
}

.shop-decision-grid strong {
  display: block;
  margin-top: 22px;
  color: var(--zht-muted);
  font-size: 20px;
  line-height: 1;
}

.shop-decision-grid b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
}

.shop-decision-grid a:hover b,
.shop-decision-grid a:focus b {
  background: var(--zht-accent);
}

.archive-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--zht-line);
}

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

.empty-shop {
  padding: 80px clamp(28px, 5vw, 100px);
}

.shop-page {
  min-height: calc(100vh - 72px);
  padding: 72px clamp(22px, 6vw, 96px);
  background:
    linear-gradient(90deg, rgba(247, 248, 241, 0.9), rgba(247, 248, 241, 0.72)),
    url("../images/zen-heart-hero-wide-v2.png") center / cover no-repeat;
}

.shop-page > .woocommerce {
  max-width: 1320px;
  margin-inline: auto;
  padding: clamp(24px, 5vw, 54px);
  background: rgba(247, 248, 241, 0.84);
  border: 1px solid rgba(14, 25, 14, 0.16);
  backdrop-filter: blur(12px);
}

.shop-page h1,
.shop-page .wp-block-heading {
  margin: 0 0 42px;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.88;
  text-transform: uppercase;
}

.shop-page .wc-block-checkout,
.shop-page .wc-block-cart {
  margin: 0;
}

.shop-page .wc-block-components-sidebar-layout {
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
}

.shop-page .wc-block-components-main,
.shop-page .wc-block-checkout__main,
.shop-page .wc-block-cart__main {
  width: auto;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 248, 236, 0.58);
  border: 1px solid var(--zht-line);
}

.shop-page .wc-block-components-sidebar,
.shop-page .wc-block-checkout__sidebar,
.shop-page .wc-block-cart__sidebar {
  width: auto;
  padding: clamp(20px, 3vw, 34px);
  background: rgba(247, 248, 241, 0.92);
  border: 1px solid rgba(14, 25, 14, 0.18);
  box-shadow: 0 24px 70px rgba(8, 17, 11, 0.1);
  backdrop-filter: blur(12px);
}

.shop-page .wc-block-components-sidebar h2,
.shop-page .wc-block-components-title,
.shop-page .wc-block-components-checkout-step__title,
.shop-page .wc-block-cart-items__header,
.shop-page .wc-block-components-order-summary__button-text,
.shop-page .wc-block-components-totals-item__label {
  color: var(--zht-ink);
  font-weight: 900;
}

.shop-page .wc-block-components-checkout-step {
  margin: 0 0 28px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--zht-line);
}

.shop-page .wc-block-components-checkout-step:last-child {
  border-bottom: 0;
}

.shop-page .wc-block-components-checkout-step__title,
.shop-page .wc-block-components-title {
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.05;
}

.shop-page .wc-block-components-checkout-step__description,
.shop-page .wc-block-components-checkout-step__content,
.shop-page .wc-block-components-totals-item__description,
.shop-page .wc-block-components-order-summary-item__description,
.shop-page .wc-block-components-checkbox__label,
.shop-page .wc-block-components-address-card,
.shop-page .wc-block-components-address-form__address_2-toggle {
  color: var(--zht-muted);
  font-size: 16px;
  line-height: 1.45;
}

.shop-page .wc-block-components-form .wc-block-components-text-input input,
.shop-page .wc-block-components-form .wc-block-components-combobox-control input,
.shop-page .wc-block-components-form .wc-block-components-textarea,
.shop-page .wc-block-components-text-input input,
.shop-page .wc-block-components-combobox-control input,
.shop-page .wc-block-components-textarea,
.shop-page .wc-block-components-select .wc-block-components-select__select,
.shop-page .components-combobox-control__input,
.shop-page .components-form-token-field__input {
  min-height: 58px;
  border: 1px solid rgba(14, 25, 14, 0.24);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  color: var(--zht-ink);
  font-size: 17px;
  box-shadow: none;
}

.shop-page .wc-block-components-form .wc-block-components-text-input label,
.shop-page .wc-block-components-text-input label,
.shop-page .wc-block-components-combobox-control label,
.shop-page .wc-block-components-select label {
  color: var(--zht-muted);
  font-weight: 760;
}

.shop-page .wc-block-components-button,
.shop-page .wc-block-cart__submit-button,
.shop-page .wc-block-components-checkout-place-order-button {
  min-height: 62px;
  border: 1px solid var(--zht-ink);
  border-radius: 999px;
  background: var(--zht-ink);
  color: var(--zht-cream);
  font-size: 18px;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.shop-page .wc-block-components-button:hover,
.shop-page .wc-block-cart__submit-button:hover,
.shop-page .wc-block-components-checkout-place-order-button:hover {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
  color: #fff;
  transform: translateY(-1px);
}

.shop-page .wc-block-components-order-summary,
.shop-page .wc-block-components-totals-wrapper,
.shop-page .wc-block-components-panel {
  border-color: var(--zht-line);
}

.shop-page .wc-block-components-order-summary-item {
  align-items: center;
}

.shop-page .wc-block-components-order-summary-item__image {
  overflow: hidden;
  background: var(--zht-cream);
  border: 1px solid var(--zht-line);
}

.shop-page .wc-block-components-order-summary-item__quantity {
  background: var(--zht-ink);
  color: var(--zht-cream);
  font-weight: 900;
}

.shop-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.shop-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 900;
}

.shop-page .wc-block-components-notice-banner,
.shop-page .wc-block-components-validation-error {
  border: 1px solid rgba(255, 90, 43, 0.32);
  border-radius: 0;
  background: rgba(255, 90, 43, 0.08);
  color: var(--zht-ink);
}

.shop-page .wc-block-components-notice-banner svg {
  background: var(--zht-accent);
}

.shop-page .wc-block-components-checkbox .wc-block-components-checkbox__input {
  width: 24px;
  height: 24px;
  border-color: rgba(14, 25, 14, 0.34);
  border-radius: 0;
}

.woocommerce table.shop_table {
  border-color: var(--zht-line);
  border-radius: 0;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: var(--zht-line);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--zht-ink);
  border-radius: 999px;
  background: var(--zht-ink);
  color: var(--zht-cream);
  font-weight: 900;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .checkout-button:hover {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
  color: #fff;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce .select2-container .select2-selection--single {
  min-height: 52px;
  border: 1px solid var(--zht-line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--zht-green);
  background: rgba(247, 248, 241, 0.92);
}

.woocommerce-cart .content-page,
.woocommerce-checkout .content-page,
.woocommerce-account .content-page {
  min-height: calc(100vh - 72px);
  padding: 72px clamp(22px, 6vw, 96px);
  background:
    linear-gradient(90deg, rgba(247, 248, 241, 0.92), rgba(247, 248, 241, 0.76)),
    url("../images/zen-heart-hero-wide-v2.png") center / cover no-repeat;
}

.woocommerce-cart .content-article,
.woocommerce-checkout .content-article,
.woocommerce-account .content-article {
  max-width: 1320px;
  margin-inline: auto;
  padding: clamp(24px, 5vw, 54px);
  background: rgba(247, 248, 241, 0.86);
  border: 1px solid rgba(14, 25, 14, 0.16);
  backdrop-filter: blur(12px);
}

.woocommerce-cart .content-page h1,
.woocommerce-checkout .content-page h1,
.woocommerce-account .content-page h1 {
  margin: 0 0 42px;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.88;
  text-transform: uppercase;
}

.content-page .wc-block-components-sidebar-layout {
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
}

.content-page .wc-block-components-main,
.content-page .wc-block-checkout__main,
.content-page .wc-block-cart__main {
  width: auto;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 248, 236, 0.58);
  border: 1px solid var(--zht-line);
}

.content-page .wc-block-components-sidebar,
.content-page .wc-block-checkout__sidebar,
.content-page .wc-block-cart__sidebar {
  width: auto;
  padding: clamp(20px, 3vw, 34px);
  background: rgba(247, 248, 241, 0.92);
  border: 1px solid rgba(14, 25, 14, 0.18);
  box-shadow: 0 24px 70px rgba(8, 17, 11, 0.1);
  backdrop-filter: blur(12px);
}

.content-page .wc-block-components-checkout-step {
  margin: 0 0 28px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--zht-line);
}

.content-page .wc-block-components-checkout-step:last-child {
  border-bottom: 0;
}

.content-page .wc-block-components-sidebar h2,
.content-page .wc-block-components-title,
.content-page .wc-block-components-checkout-step__title,
.content-page .wc-block-components-order-summary__button-text,
.content-page .wc-block-components-totals-item__label {
  color: var(--zht-ink);
  font-weight: 900;
}

.content-page .wc-block-components-checkout-step__title,
.content-page .wc-block-components-title {
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.05;
}

.content-page .wc-block-components-checkout-step__description,
.content-page .wc-block-components-checkout-step__content,
.content-page .wc-block-components-totals-item__description,
.content-page .wc-block-components-order-summary-item__description,
.content-page .wc-block-components-checkbox__label,
.content-page .wc-block-components-address-card,
.content-page .wc-block-components-address-form__address_2-toggle {
  color: var(--zht-muted);
  font-size: 16px;
  line-height: 1.45;
}

.content-page .wc-block-components-form .wc-block-components-text-input input,
.content-page .wc-block-components-form .wc-block-components-combobox-control input,
.content-page .wc-block-components-form .wc-block-components-textarea,
.content-page .wc-block-components-text-input input,
.content-page .wc-block-components-combobox-control input,
.content-page .wc-block-components-textarea,
.content-page .wc-block-components-select .wc-block-components-select__select,
.content-page .components-combobox-control__input,
.content-page .components-form-token-field__input {
  min-height: 58px;
  border: 1px solid rgba(14, 25, 14, 0.24);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  color: var(--zht-ink);
  font-size: 17px;
  box-shadow: none;
}

.content-page .wc-block-components-form .wc-block-components-text-input label,
.content-page .wc-block-components-text-input label,
.content-page .wc-block-components-combobox-control label,
.content-page .wc-block-components-select label {
  color: var(--zht-muted);
  font-weight: 760;
}

.content-page .wc-block-components-button,
.content-page .wc-block-cart__submit-button,
.content-page .wc-block-components-checkout-place-order-button {
  min-height: 62px;
  border: 1px solid var(--zht-ink);
  border-radius: 999px;
  background: var(--zht-ink);
  color: var(--zht-cream);
  font-size: 18px;
  font-weight: 900;
}

.content-page .wc-block-components-button:hover,
.content-page .wc-block-cart__submit-button:hover,
.content-page .wc-block-components-checkout-place-order-button:hover {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
  color: #fff;
}

.content-page .wc-block-components-order-summary,
.content-page .wc-block-components-totals-wrapper,
.content-page .wc-block-components-panel {
  border-color: var(--zht-line);
}

.content-page .wc-block-components-order-summary-item__image {
  overflow: hidden;
  background: var(--zht-cream);
  border: 1px solid var(--zht-line);
}

.content-page .wc-block-components-order-summary-item__quantity {
  background: var(--zht-ink);
  color: var(--zht-cream);
  font-weight: 900;
}

.content-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.content-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 900;
}

.content-page .wc-block-components-notice-banner,
.content-page .wc-block-components-validation-error {
  border: 1px solid rgba(255, 90, 43, 0.32);
  border-radius: 0;
  background: rgba(255, 90, 43, 0.08);
  color: var(--zht-ink);
}

.content-page .wc-block-components-notice-banner svg {
  background: var(--zht-accent);
}

.woocommerce-cart .entry-content > .woocommerce,
.woocommerce-checkout .entry-content > .woocommerce,
.woocommerce-account .entry-content > .woocommerce {
  margin: 0;
}

.woocommerce-checkout .woocommerce-form-login-toggle,
.woocommerce-checkout .woocommerce-form-coupon-toggle {
  margin-bottom: 18px;
}

.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .checkout_coupon {
  margin: 0 0 24px;
  padding: 24px;
  background: rgba(255, 248, 236, 0.62);
  border: 1px solid var(--zht-line);
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.45fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}

.woocommerce-checkout form.checkout .col2-set {
  grid-column: 1;
  width: auto;
}

.woocommerce-checkout form.checkout .col2-set .col-1,
.woocommerce-checkout form.checkout .col2-set .col-2 {
  float: none;
  width: auto;
}

.woocommerce-checkout form.checkout .col2-set .col-2 {
  margin-top: 24px;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  grid-column: 2;
}

.woocommerce-checkout #order_review_heading {
  margin: 0 0 14px;
  color: var(--zht-ink);
  font-size: clamp(26px, 2.2vw, 38px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.woocommerce-checkout #order_review {
  position: sticky;
  top: 104px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(247, 248, 241, 0.94);
  border: 1px solid rgba(14, 25, 14, 0.18);
  box-shadow: 0 24px 70px rgba(8, 17, 11, 0.12);
  backdrop-filter: blur(12px);
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 248, 236, 0.62);
  border: 1px solid var(--zht-line);
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
  margin: 0 0 24px;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1;
  text-transform: uppercase;
}

.woocommerce-checkout .form-row,
.woocommerce-account .form-row {
  margin: 0 0 18px;
  padding: 0;
}

.woocommerce-checkout .form-row label,
.woocommerce-account .form-row label,
.woocommerce-cart .coupon label {
  margin-bottom: 8px;
  color: var(--zht-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.woocommerce-checkout .form-row .required {
  color: var(--zht-accent);
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
  min-height: 56px;
  border: 1px solid rgba(14, 25, 14, 0.24);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 14px 18px;
  color: var(--zht-ink);
  line-height: 26px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 56px;
}

.woocommerce-checkout table.shop_table,
.woocommerce-cart table.shop_table {
  table-layout: fixed;
  overflow: hidden;
  background: rgba(255, 248, 236, 0.42);
  border: 1px solid var(--zht-line);
  border-collapse: collapse;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td,
.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
  padding: 18px;
  border-color: var(--zht-line);
  overflow-wrap: anywhere;
}

.woocommerce-checkout table.shop_table thead th,
.woocommerce-cart table.shop_table thead th {
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.woocommerce-checkout .woocommerce-checkout-payment {
  background: transparent;
}

.woocommerce-checkout #payment {
  background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 22px 0;
  border-bottom: 1px solid var(--zht-line);
}

.woocommerce-checkout #payment ul.payment_methods li {
  display: grid;
  gap: 8px;
  padding: 14px 0;
}

.woocommerce-checkout #payment div.payment_box {
  margin: 8px 0 0;
  background: rgba(255, 248, 236, 0.7);
  color: var(--zht-muted);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: rgba(255, 248, 236, 0.7);
}

.woocommerce-checkout #payment #place_order {
  width: 100%;
  min-height: 64px;
  margin-top: 18px;
  font-size: 18px;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  color: var(--zht-muted);
  font-size: 15px;
  line-height: 1.45;
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals .cart_totals {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 248, 236, 0.62);
  border: 1px solid var(--zht-line);
}

.woocommerce-cart .woocommerce-cart-form table.cart {
  margin: 0;
}

.woocommerce-cart .woocommerce-cart-form table.cart img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  background: var(--zht-cream);
}

.woocommerce-cart table.cart td.actions {
  padding-top: 24px;
}

.woocommerce-cart table.cart td.actions .coupon {
  display: flex;
  gap: 12px;
  align-items: center;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  min-width: 260px;
}

.woocommerce-cart .cart-collaterals {
  display: grid;
  justify-content: end;
  margin-top: 28px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  float: none;
  width: min(100%, 480px);
}

.woocommerce-cart .cart_totals h2 {
  margin: 0 0 20px;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 248, 236, 0.62);
  border: 1px solid var(--zht-line);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--zht-line);
}

.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
  border-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 16px 0;
  font-weight: 900;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  color: var(--zht-accent);
}

.woocommerce-account .woocommerce-MyAccount-content p:first-child {
  margin-top: 0;
}

.woocommerce .quantity .qty {
  min-height: 50px;
  border: 1px solid var(--zht-line);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.product-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  min-height: clamp(640px, 82vh, 820px);
  background:
    linear-gradient(90deg, rgba(8, 17, 11, 0.12), rgba(247, 248, 241, 0.82)),
    url("../images/zen-heart-hero-wide-v2.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.product-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 17, 11, 0.08), rgba(247, 248, 241, 0.74));
  pointer-events: none;
}

.product-hero > * {
  position: relative;
  z-index: 1;
}

.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: clamp(26px, 4vw, 58px);
}

.product-main-image,
.product-side-image {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(247, 248, 241, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
}

.product-main-image {
  aspect-ratio: 1 / 1;
  padding: clamp(18px, 2.2vw, 28px);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-side-image {
  aspect-ratio: 0.62 / 1;
  display: none;
}

.product-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leaf-strip {
  grid-column: 1 / -1;
  display: flex;
  gap: 18px;
  opacity: 0.32;
}

.leaf-strip span {
  width: 46px;
  height: 120px;
  border-right: 9px solid #b8a16b;
  border-radius: 100% 10% 100% 10%;
  transform: rotate(18deg);
}

.product-info {
  position: relative;
  z-index: 45;
  display: grid;
  align-content: start;
  justify-items: start;
  min-width: 0;
  max-width: 100%;
  padding: clamp(52px, 5vw, 82px) clamp(34px, 4.2vw, 68px) clamp(34px, 4.2vw, 68px);
  background: rgba(247, 248, 241, 0.66);
  backdrop-filter: blur(12px);
}

.product-info .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.product-info .tags span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.86);
  color: var(--zht-muted);
  letter-spacing: 0;
  text-transform: none;
}

.product-info h1 {
  max-width: min(100%, 740px);
  margin: 0;
  font-size: clamp(44px, 5vw, 82px);
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-info .chinese,
.product-info .latin,
.product-info .price-line {
  margin: 12px 0 0;
  color: var(--zht-muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.25;
}

.product-info .price-line {
  color: var(--zht-ink);
  font-weight: 900;
}

.product-taste-line {
  max-width: min(100%, 620px);
  margin: 12px 0 0;
  color: var(--zht-muted);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 760;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.product-hero-summary {
  display: grid;
  gap: 14px;
  width: min(100%, 680px);
  margin-top: 22px;
}

.product-hero-summary > p {
  max-width: 560px;
  margin: 0;
  color: var(--zht-ink);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 820;
  line-height: 1.28;
}

.product-fit-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 680px);
}

.product-fit-chips span {
  display: inline-grid;
  gap: 3px;
  min-width: 0;
  max-width: none;
  min-height: 56px;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(14, 25, 14, 0.12);
  border-radius: 16px;
  background: rgba(255, 248, 236, 0.64);
  color: var(--zht-muted);
  font-size: 12px;
  font-weight: 740;
  line-height: 1.18;
}

.product-fit-chips b {
  display: block;
  color: var(--zht-ink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-decision-card {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(14, 25, 14, 0.16);
  border-radius: 34px;
  background: rgba(255, 248, 236, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.product-decision-card > span {
  color: var(--zht-accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-decision-card > strong {
  display: block;
  max-width: 560px;
  color: var(--zht-ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.96;
  text-transform: uppercase;
}

.product-decision-card div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
}

.product-decision-card p {
  display: grid;
  align-content: start;
  gap: 10px;
  height: 100%;
  min-height: 150px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(14, 25, 14, 0.1);
  border-radius: 24px;
  background: var(--zht-paper);
  color: var(--zht-muted);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

.product-decision-card b {
  display: block;
  color: var(--zht-ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-cart-box {
  display: grid;
  justify-items: start;
  width: min(100%, 520px);
  max-width: 100%;
  margin-top: 24px;
  margin-bottom: 96px;
}

.product-cart-box .product-hero-buy {
  justify-self: start;
  width: min(100%, 330px);
  margin-inline: 0 auto;
  min-height: 58px;
  padding: 0 30px;
  background: var(--zht-accent);
  border-color: var(--zht-accent);
  color: #fff;
  font-size: 18px;
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-align: center;
}

.product-cart-box .product-hero-buy:hover,
.product-cart-box .product-hero-buy:focus {
  background: var(--zht-ink);
  border-color: var(--zht-ink);
  color: var(--zht-paper);
}

.product-cart-box form.cart {
  display: grid;
  gap: 16px;
  width: 100%;
}

.product-cart-box .quantity {
  display: grid;
  grid-template-columns: 1fr;
}

.product-cart-box .qty {
  width: 100%;
  min-height: 62px;
  padding: 0 18px;
  border: 0;
  background: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  text-align: center;
}

.mobile-product-buy-bar {
  position: fixed;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 2.5vw, 34px);
  left: clamp(18px, 3vw, 42px);
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(166px, auto);
  gap: 14px;
  align-items: center;
  width: min(860px, calc(100vw - 36px));
  margin-inline: auto;
  padding: 12px 12px 12px 18px;
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.96), rgba(247, 248, 241, 0.93)),
    var(--zht-paper);
  box-shadow: 0 16px 54px rgba(8, 17, 11, 0.18);
  backdrop-filter: blur(18px);
  transform: translateY(0) scale(1);
  transform-origin: bottom center;
  opacity: 1;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

body.quick-buy-open .mobile-product-buy-bar {
  display: none;
}

.product-page {
  padding-bottom: 116px;
}

.mobile-product-buy-bar::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  content: "";
  pointer-events: none;
}

.product-buy-bar-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.product-buy-bar-copy > span,
.product-buy-bar-copy > strong,
.product-buy-bar-details,
.product-buy-bar-details > small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-buy-bar-moment {
  color: var(--zht-accent);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-product-buy-bar strong {
  color: var(--zht-ink);
  font-size: clamp(19px, 1.5vw, 24px);
  font-weight: 950;
  line-height: 1;
}

.product-buy-bar-details {
  display: block;
}

.product-buy-bar-details small {
  color: var(--zht-green);
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
}

.product-buy-bar-details small bdi,
.product-buy-bar-details small span {
  display: inline;
  min-width: 0;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}

.mobile-product-buy-bar .zht-quick-buy-button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 180px;
  min-height: 52px;
  padding-inline: 24px;
  border-color: var(--zht-accent);
  background: var(--zht-accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 90, 43, 0.24);
  font-size: 16px;
  line-height: 1;
}

.mobile-product-buy-bar .zht-quick-buy-button:hover,
.mobile-product-buy-bar .zht-quick-buy-button:focus {
  background: #f04f24;
  color: #fff;
  transform: translateY(-1px);
}

@media (min-width: 681px) {
  body.product-buy-bar-is-scrolling .mobile-product-buy-bar {
    opacity: 0.58;
    background:
      linear-gradient(135deg, rgba(255, 248, 236, 0.74), rgba(247, 248, 241, 0.68)),
      rgba(247, 248, 241, 0.68);
    box-shadow: 0 10px 34px rgba(8, 17, 11, 0.12);
    transform: translateY(8px) scale(0.985);
  }

  body.product-buy-bar-is-scrolling .mobile-product-buy-bar:hover,
  body.product-buy-bar-is-scrolling .mobile-product-buy-bar:focus-within {
    opacity: 1;
    background:
      linear-gradient(135deg, rgba(255, 248, 236, 0.96), rgba(247, 248, 241, 0.93)),
      var(--zht-paper);
    box-shadow: 0 16px 54px rgba(8, 17, 11, 0.18);
    transform: translateY(0) scale(1);
  }

  body.product-buy-bar-over-hero .mobile-product-buy-bar,
  body.product-buy-bar-over-hero.product-buy-bar-is-scrolling .mobile-product-buy-bar {
    opacity: 0;
    pointer-events: none;
  }
}

.product-order-guide {
  display: grid;
  gap: 18px;
  width: min(100%, 760px);
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(14, 25, 14, 0.16);
  border-radius: 34px;
  background: rgba(247, 248, 241, 0.76);
}

.product-order-guide-head {
  display: grid;
  gap: 8px;
}

.product-order-guide-head span,
.product-order-guide-grid article > span {
  color: var(--zht-accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-order-guide-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.02;
  text-transform: uppercase;
}

.product-order-guide-head p {
  max-width: 620px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.38;
}

.product-order-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
}

.product-order-guide-grid article {
  display: grid;
  grid-template-rows: auto auto minmax(92px, 1fr) auto auto;
  min-width: 0;
  height: 100%;
  min-height: 270px;
  padding: 18px;
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 26px;
  background: rgba(255, 248, 236, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.product-order-guide-grid strong {
  display: block;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.02;
  text-transform: uppercase;
}

.product-order-guide-grid p {
  margin: 10px 0 0;
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.34;
}

.product-order-guide-grid small {
  display: block;
  margin-top: 12px;
  color: var(--zht-ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.22;
}

.product-order-guide-action {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  padding-inline: 12px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 13px;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-align: center;
}

.product-order-guide-action:hover,
.product-order-guide-action:focus {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
}

.product-confidence {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  padding: 56px clamp(28px, 5vw, 96px);
  border-bottom: 1px solid var(--zht-line);
  background: var(--zht-paper);
}

.product-confidence-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  max-width: 520px;
  min-width: 0;
}

.product-confidence-copy span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-confidence-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-confidence-copy h2,
.taste-fit-copy h2,
.tea-passport-lead h2,
.scenario-compare-head h2,
.product-pairing-copy h2,
.product-objection-section .objection-copy h2 {
  max-width: 900px;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.product-confidence-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 17px;
  line-height: 1.48;
}

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

.product-confidence-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 20px;
  background: rgba(255, 248, 236, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.product-confidence-grid span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
}

.product-confidence-grid strong {
  display: block;
  margin-top: 26px;
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1;
  text-transform: uppercase;
}

.product-confidence-grid p {
  margin: 16px 0 0;
  color: var(--zht-muted);
  font-size: 16px;
  line-height: 1.42;
}

.taste-fit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  padding: 56px clamp(28px, 5vw, 96px);
  border-bottom: 1px solid var(--zht-line);
  background: var(--zht-soft);
}

.taste-fit-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  max-width: 520px;
  min-width: 0;
}

.taste-fit-copy span,
.taste-fit-grid article > span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.taste-fit-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.taste-fit-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 17px;
  line-height: 1.46;
}

.taste-fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
}

.taste-fit-grid article {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 20px;
  background: rgba(255, 248, 236, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.taste-fit-grid strong {
  display: block;
  margin-top: 28px;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.03;
  text-transform: uppercase;
}

.taste-fit-grid p {
  margin: 16px 0 0;
  color: var(--zht-muted);
  font-size: 15px;
  font-weight: 740;
  line-height: 1.38;
}

.taste-fit-meter {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-top: 16px;
}

.taste-fit-meter i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(14, 25, 14, 0.14);
}

.taste-fit-meter i.is-active {
  background: var(--zht-green);
}

.tea-passport {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 76px clamp(28px, 5vw, 96px);
  border-bottom: 1px solid var(--zht-line);
  background:
    linear-gradient(135deg, rgba(247, 248, 241, 0.94), rgba(232, 235, 224, 0.92)),
    var(--zht-paper);
}

.tea-passport-lead {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 940px;
  min-width: 0;
}

.tea-passport-lead span,
.tea-passport-grid article > span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tea-passport-lead h2 {
  max-width: 900px;
  overflow-wrap: anywhere;
}

.tea-passport-lead p {
  max-width: 560px;
}

.tea-passport-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
}

.tea-passport-grid article {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 28px;
  background: rgba(255, 248, 236, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.tea-passport-main {
  grid-column: auto;
}

.tea-passport-main strong,
.tea-passport-card strong {
  display: block;
  margin-top: 34px;
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.04;
  text-transform: uppercase;
}

.tea-passport-main p,
.tea-passport-card p {
  margin: 16px 0 0;
  color: var(--zht-muted);
  font-size: 16px;
  line-height: 1.42;
}

.tea-meter {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-top: 18px;
}

.tea-meter i {
  display: block;
  height: 9px;
  background: rgba(14, 25, 14, 0.14);
}

.tea-meter i.is-active {
  background: var(--zht-green);
}

.tea-passport-steps {
  grid-column: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-self: start;
  max-width: 920px;
  margin-top: 0;
}

.tea-passport-steps span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 999px;
  background: rgba(247, 248, 241, 0.88);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.18;
}

.product-detail-drawer {
  display: block;
  padding: 0 clamp(28px, 5vw, 96px);
  border-bottom: 1px solid var(--zht-line);
  background: var(--zht-paper);
}

.product-detail-drawer details {
  display: block;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0;
}

.product-detail-drawer summary {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 108px;
  padding: 28px 0;
  color: var(--zht-ink);
  cursor: pointer;
  list-style: none;
}

.product-detail-drawer summary::-webkit-details-marker {
  display: none;
}

.product-detail-drawer summary::after {
  justify-self: end;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 999px;
  color: var(--zht-accent);
  content: "+";
  font-size: 24px;
  font-weight: 760;
  line-height: 1;
}

.product-detail-drawer details[open] summary::after {
  content: "-";
}

.product-detail-drawer summary span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-drawer summary strong {
  min-width: 0;
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-detail-drawer details > :not(summary) {
  margin-bottom: 34px;
}

.product-detail-drawer .tea-passport-lead,
.product-detail-drawer .scenario-compare-head {
  max-width: 620px;
  margin: 0 0 18px auto;
}

.product-detail-drawer .tea-passport-lead p,
.product-detail-drawer .scenario-compare-head p {
  margin: 0;
  color: var(--zht-muted);
  font-size: 17px;
  line-height: 1.46;
}

.product-about.product-detail-drawer {
  display: block;
  grid-template-columns: none;
  gap: 0;
  padding: 0 clamp(28px, 5vw, 96px);
  background: rgba(255, 248, 236, 0.28);
}

.product-about.product-detail-drawer .about-facts {
  padding: 0;
  border-top: 0;
  border-bottom: 0;
}

.product-about.product-detail-drawer .story-columns {
  grid-column: auto;
  padding: 26px 0 0;
}

.scenario-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 76px clamp(28px, 5vw, 96px);
  border-bottom: 1px solid var(--zht-line);
  background: var(--zht-paper);
}

.scenario-compare.product-detail-drawer {
  display: block;
  gap: 0;
  padding: 0 clamp(28px, 5vw, 96px);
}

.scenario-compare-head {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 940px;
  min-width: 0;
}

.scenario-compare-head span,
.scenario-compare-card > span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-compare-head h2 {
  max-width: 900px;
  overflow-wrap: anywhere;
}

.scenario-compare-head p {
  max-width: 560px;
}

.scenario-compare-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
}

.scenario-compare-card {
  display: grid;
  grid-template-rows: auto auto minmax(92px, 1fr) auto auto;
  height: 100%;
  min-height: 390px;
  padding: 22px;
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 28px;
  background: rgba(255, 248, 236, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.scenario-compare-card.is-current {
  background: rgba(255, 90, 43, 0.08);
}

.scenario-compare-card h3 {
  margin: 44px 0 0;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 0.96;
  text-transform: uppercase;
}

.scenario-compare-card p {
  margin: 18px 0 0;
  color: var(--zht-muted);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.42;
}

.scenario-compare-product {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 8px;
  align-content: end;
  margin-top: 22px;
}

.scenario-compare-product strong {
  display: block;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.06;
}

.scenario-compare-product small {
  color: var(--zht-muted);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.32;
}

.scenario-compare-product b {
  color: var(--zht-muted);
  font-size: 16px;
  line-height: 1.2;
}

.scenario-compare-actions {
  display: grid;
  gap: 10px;
  align-self: end;
  margin-top: 18px;
}

.scenario-current-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 90, 43, 0.42);
  border-radius: 999px;
  background: rgba(255, 90, 43, 0.1);
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.scenario-compare .zht-product-link-button,
.scenario-compare .zht-quick-buy-button {
  width: 100%;
  min-height: 48px;
  padding-inline: 14px;
  border-radius: 999px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 15px;
  line-height: 1.12;
  text-align: center;
}

.scenario-compare .zht-product-link-button:hover,
.scenario-compare .zht-quick-buy-button:hover {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
}

.product-pairing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 76px clamp(28px, 5vw, 96px);
  border-bottom: 1px solid var(--zht-line);
  background: rgba(255, 248, 236, 0.42);
}

.product-pairing-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 940px;
  min-width: 0;
}

.product-pairing-copy span,
.product-pairing-grid article span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-pairing-copy h2 {
  max-width: 900px;
  overflow-wrap: anywhere;
}

.product-pairing-copy p {
  max-width: 560px;
}

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

.product-pairing-grid article {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(14, 25, 14, 0.16);
  border-radius: 28px;
  background: rgba(247, 248, 241, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.product-pairing-grid figure {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--zht-cream);
}

.product-pairing-grid article > div {
  display: grid;
  align-content: center;
  min-width: 0;
}

.product-pairing-grid h3 {
  margin: 14px 0 0;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 0.98;
  text-transform: uppercase;
}

.product-pairing-grid p {
  margin: 12px 0 0;
  color: var(--zht-muted);
  font-size: 15px;
  line-height: 1.38;
}

.product-pairing-grid strong {
  margin-top: 12px;
  color: var(--zht-muted);
  font-size: 16px;
  line-height: 1.2;
}

.product-pairing-link {
  width: 100%;
  min-height: 48px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 15px;
  text-align: center;
}

.product-pairing-link:hover {
  background: var(--zht-accent);
  border-color: var(--zht-accent);
}

.product-pairing-note {
  grid-column: auto;
  max-width: 680px;
  margin: -8px 0 0;
  color: var(--zht-muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.product-about,
.brew-section,
.recommended {
  padding: 90px clamp(24px, 5vw, 96px);
  border-bottom: 1px solid var(--zht-line);
}

.about-facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 48px;
  margin-top: 34px;
}

.about-facts dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.about-facts dl div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 22px;
  background: rgba(255, 248, 236, 0.46);
}

.about-facts dt {
  font-weight: 900;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  color: var(--zht-muted);
}

.teagram {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 28px;
  background: rgba(247, 248, 241, 0.72);
}

.teagram span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: var(--zht-green);
}

.teagram span:nth-child(2) {
  width: 78%;
}

.teagram span:nth-child(3) {
  width: 62%;
}

.teagram span:nth-child(4) {
  width: 46%;
}

.teagram span:nth-child(5) {
  width: 30%;
}

.story-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 56px;
}

.story-columns article {
  padding: 22px;
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 28px;
  background: rgba(255, 248, 236, 0.42);
}

.story-columns h3 {
  margin: 0 0 14px;
  font-size: 26px;
  text-transform: uppercase;
}

.story-columns p {
  font-size: 18px;
}

.brew-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  background: var(--zht-soft);
}

.cup-row {
  display: flex;
  gap: 16px;
}

.cup-row span {
  width: 74px;
  height: 74px;
  border: 7px solid var(--zht-green);
  border-radius: 50%;
}

.recommended .small-products {
  margin-top: 34px;
}

.tea-finder-page {
  overflow: hidden;
  background: var(--zht-paper);
}

.tea-finder-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 36px;
  align-items: end;
  padding: 82px 64px 62px;
  border-bottom: 1px solid var(--zht-line);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 90, 43, 0.12), transparent 27%),
    linear-gradient(120deg, var(--zht-paper), var(--zht-soft));
}

.tea-finder-hero > div {
  max-width: 970px;
}

.tea-finder-hero span,
.tea-finder-result > span,
.tea-finder-step-head span,
.tea-finder-alternatives span,
.tea-finder-budget > span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tea-finder-hero h1 {
  max-width: 1020px;
  margin: 14px 0 22px;
  font-size: clamp(64px, 8vw, 126px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tea-finder-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.35;
}

.tea-finder-hero aside {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--zht-line);
  background: rgba(255, 248, 236, 0.64);
}

.tea-finder-hero aside strong {
  color: var(--zht-ink);
  font-size: 36px;
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.tea-finder-hero aside span {
  min-height: 34px;
  padding: 8px 10px;
  color: var(--zht-green);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--zht-line);
  font-size: 13px;
}

.tea-finder-workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.52fr);
  gap: 28px;
  align-items: start;
  padding: 42px 64px 84px;
}

.tea-finder-controls {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.tea-finder-controls > section,
.tea-finder-details {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--zht-line);
  background: rgba(255, 255, 255, 0.32);
}

.tea-finder-step-head {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 18px;
}

.tea-finder-step-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tea-finder-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.tea-finder-options button {
  min-height: 48px;
  padding: 11px 16px;
  color: var(--zht-green);
  background: var(--zht-paper);
  border: 1px solid var(--zht-line);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.tea-finder-options button:hover,
.tea-finder-options button:focus,
.tea-finder-options button.is-active {
  color: #fff;
  background: var(--zht-green);
  border-color: var(--zht-green);
}

.tea-finder-details {
  display: grid;
  gap: 20px;
}

.tea-finder-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--zht-ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.tea-finder-details summary::-webkit-details-marker {
  display: none;
}

.tea-finder-details summary::after {
  content: "+";
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--zht-accent);
  border: 1px solid var(--zht-line);
  border-radius: 999px;
}

.tea-finder-details[open] summary::after {
  content: "-";
}

.tea-finder-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tea-finder-detail-grid label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 56px;
  padding: 14px;
  color: var(--zht-green);
  background: var(--zht-paper);
  border: 1px solid var(--zht-line);
  font-weight: 850;
  line-height: 1.2;
}

.tea-finder-detail-grid input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--zht-accent);
}

.tea-finder-budget {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.tea-finder-budget > span {
  display: block;
  margin: 0;
}

.tea-finder-result {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--zht-line);
  background: rgba(255, 248, 236, 0.75);
}

.tea-finder-result figure {
  margin: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(14, 25, 14, 0.08);
  aspect-ratio: 1 / 0.72;
}

.tea-finder-result img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tea-finder-result h2 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.tea-finder-result p {
  margin: 0;
  color: var(--zht-muted);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.35;
}

.tea-finder-match {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--zht-line);
  background: rgba(255, 255, 255, 0.48);
}

.tea-finder-match strong {
  color: var(--zht-ink);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.tea-finder-match ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tea-finder-match li {
  position: relative;
  min-height: 22px;
  padding-left: 22px;
  color: var(--zht-green);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.25;
}

.tea-finder-match li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--zht-accent);
  border-radius: 50%;
}

.tea-finder-result dl {
  display: grid;
  gap: 0;
  margin: 18px 0;
  border-top: 1px solid var(--zht-line);
  border-bottom: 1px solid var(--zht-line);
}

.tea-finder-result dl div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--zht-line);
}

.tea-finder-result dl div:last-child {
  border-bottom: 0;
}

.tea-finder-result dt,
.tea-finder-result dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

.tea-finder-result dt {
  color: var(--zht-muted);
  font-weight: 850;
  text-transform: uppercase;
}

.tea-finder-result dd {
  color: var(--zht-ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.tea-finder-actions {
  display: grid;
  gap: 10px;
}

.tea-finder-actions .zht-quick-buy-button,
.tea-finder-actions .zht-product-link-button {
  width: 100%;
  min-height: 54px;
}

.tea-finder-alternatives {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--zht-line);
}

.tea-finder-alternatives > strong {
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.tea-finder-alternatives > div {
  display: grid;
  gap: 8px;
}

.tea-finder-alternatives a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  border: 1px solid var(--zht-line);
  background: rgba(255, 255, 255, 0.46);
}

.tea-finder-alternatives a:hover,
.tea-finder-alternatives a:focus {
  border-color: var(--zht-accent);
}

.tea-finder-alternatives a span,
.tea-finder-alternatives a strong {
  grid-column: 1;
  min-width: 0;
}

.tea-finder-alternatives a strong {
  color: var(--zht-ink);
  font-size: 17px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.tea-finder-alternatives a small {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--zht-green);
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.tea-finder-help {
  padding-top: 12px;
  border-top: 1px solid var(--zht-line);
  font-size: 14px !important;
  font-weight: 780 !important;
}

.tea-finder-purchase-path {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 0 64px 86px;
}

.tea-finder-purchase-head {
  position: sticky;
  top: 104px;
}

.tea-finder-purchase-head span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.tea-finder-purchase-head h2 {
  margin: 12px 0 16px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.tea-finder-purchase-head p {
  max-width: 520px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 19px;
  font-weight: 740;
  line-height: 1.38;
}

.tea-finder-purchase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--zht-line);
  background: rgba(14, 25, 14, 0.08);
  gap: 1px;
}

.tea-finder-purchase-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  min-height: 390px;
  padding: 24px;
  background: rgba(255, 248, 236, 0.76);
}

.tea-finder-purchase-grid article > span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
}

.tea-finder-purchase-grid strong {
  color: var(--zht-ink);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tea-finder-purchase-grid p {
  margin: 0;
  color: var(--zht-muted);
  font-size: 16px;
  font-weight: 740;
  line-height: 1.35;
}

.tea-finder-purchase-grid small {
  display: block;
  min-height: 44px;
  color: var(--zht-green);
  font-size: 15px;
  font-weight: 920;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.tea-finder-purchase-grid .zht-quick-buy-button,
.tea-finder-purchase-grid .zht-product-link-button {
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  text-align: center;
}

.tea-finder-empty {
  padding: 72px 64px;
}

.tea-finder-empty h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
}

.tea-finder-empty p {
  max-width: 680px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 20px;
  line-height: 1.4;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.8fr) minmax(240px, 0.46fr);
  gap: 42px;
  padding: 52px clamp(24px, 5vw, 86px);
  background: var(--zht-green-deep);
  color: var(--zht-cream);
}

.site-footer nav {
  display: grid;
  gap: 12px;
}

.site-footer form {
  display: grid;
  gap: 12px;
}

.site-footer input {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: var(--zht-cream);
}

.site-footer address,
.site-footer p {
  margin: 0;
  color: rgba(255, 248, 236, 0.72);
  font-style: normal;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .tea-finder-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 64px 32px 46px;
  }

  .tea-finder-hero h1 {
    font-size: clamp(54px, 10vw, 96px);
  }

  .tea-finder-hero aside {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .tea-finder-hero aside strong {
    font-size: 28px;
  }

  .tea-finder-workspace {
    grid-template-columns: 1fr;
    padding: 32px 32px 64px;
  }

  .tea-finder-result {
    position: static;
    grid-template-columns: minmax(180px, 0.44fr) minmax(0, 1fr);
    align-items: start;
  }

  .tea-finder-result > span,
  .tea-finder-alternatives {
    grid-column: 1 / -1;
  }

  .tea-finder-purchase-path {
    grid-template-columns: 1fr;
    padding: 0 32px 68px;
  }

  .tea-finder-purchase-head {
    position: static;
  }

  .tea-finder-purchase-grid {
    grid-template-columns: 1fr;
  }

  .tea-finder-purchase-grid article {
    min-height: 0;
  }

  .site-nav,
  .site-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    width: 58px;
    height: 58px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--zht-line);
    border-radius: 50%;
    background: transparent;
    color: var(--zht-ink);
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: currentColor;
  }

  .drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: block;
    pointer-events: none;
    background: transparent;
    transition: background 180ms ease;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: block;
    width: min(86vw, 420px);
    height: 100vh;
    padding: 30px 26px;
    background: var(--zht-green-deep);
    color: var(--zht-cream);
    transform: translateX(104%);
    transition: transform 220ms ease;
  }

  body.drawer-open .drawer-overlay {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.46);
  }

  body.drawer-open .mobile-drawer {
    transform: translateX(0) !important;
  }

  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 34px;
  }

  .drawer-close {
    display: inline-grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: transparent;
    color: inherit;
    font-size: 32px;
  }

  .mobile-drawer nav,
  .drawer-actions {
    display: grid;
    gap: 0;
  }

  .mobile-drawer nav a,
  .drawer-actions a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 24px;
    font-weight: 900;
  }

  .drawer-actions {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
  }

  .drawer-actions a {
    display: inline-flex;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 18px;
  }

  .drawer-actions .drawer-pick-link {
    grid-column: 1 / -1;
    background: var(--zht-accent);
    border-color: var(--zht-accent);
    color: #fff;
    text-transform: uppercase;
  }

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

  .concierge-hero,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .need-panel,
  .hero-product-visual,
  .recommend-card {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-product-visual {
    grid-row: auto;
    min-height: 520px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-side-image {
    display: none;
  }

  .mood-grid,
  .fresh-row,
  .small-products,
  .archive-grid,
  .shop-scenarios,
  .shop-buy-path,
  .choice-guide-grid,
  .taste-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quiet-heading,
  .choice-guide-head,
  .guided-choice,
  .delivery-flow-section,
  .bundle-path-section,
  .objection-section,
  .quick-picks-section,
  .order-size-section,
  .shop-decision-matrix,
  .about-facts,
  .brew-section,
  .trust-strip,
  .tea-passport,
  .taste-fit-section,
  .product-confidence,
  .scenario-compare,
  .product-pairing,
  .gift-path-section,
  .workday-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .guided-steps,
  .delivery-flow-grid,
  .story-columns,
  .product-confidence-grid,
  .tea-passport-grid,
  .taste-fit-grid,
  .scenario-compare-grid,
  .product-pairing-grid,
  .product-order-guide-grid,
  .objection-grid,
  .gift-path-points,
  .workday-grid,
  .bundle-path-grid,
  .collection-grid,
  .quick-picks-grid,
  .order-size-grid,
  .not-found-hero,
  .not-found-links {
    grid-template-columns: 1fr;
  }

  .quick-picks-head {
    position: static;
  }

  .order-size-grid,
  .product-order-guide-grid {
    border-left: 0;
  }

  .order-size-grid article,
  .product-order-guide-grid article {
    min-height: 0;
    border-right: 0;
  }

  .shop-decision-head {
    position: static;
  }

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

  .not-found-links a {
    border-right: 0;
    border-bottom: 1px solid var(--zht-line);
  }

  .not-found-links a:last-child {
    border-bottom: 0;
  }

  .trust-strip article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--zht-line);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .guided-steps article {
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-content: start;
    column-gap: 18px;
    row-gap: 6px;
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid var(--zht-line);
  }

  .guided-steps article .step-icon {
    grid-row: 1 / 4;
    align-self: start;
    margin: 0;
  }

  .guided-steps article > span,
  .guided-steps article > strong,
  .guided-steps article > p {
    grid-column: 2;
  }

  .workday-copy {
    position: static;
  }

  .tea-passport-steps {
    grid-column: auto;
    margin-top: 18px;
  }

  .product-pairing-note {
    grid-column: auto;
    margin-top: 0;
  }

  .workday-grid article {
    min-height: 0;
  }

  .choice-guide-grid article,
  .bundle-path-grid article,
  .objection-grid article {
    min-height: 0;
  }

  .workday-grid strong {
    margin-top: 38px;
  }

  .shop-page .wc-block-components-sidebar-layout,
  .shop-page .wc-block-checkout,
  .shop-page .wc-block-cart {
    display: block;
  }

  .shop-page .wc-block-components-sidebar,
  .shop-page .wc-block-checkout__sidebar,
  .shop-page .wc-block-cart__sidebar,
  .content-page .wc-block-components-sidebar,
  .content-page .wc-block-checkout__sidebar,
  .content-page .wc-block-cart__sidebar {
    margin-top: 28px;
  }

  .woocommerce-checkout form.checkout,
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: 1;
  }

  .woocommerce-checkout #order_review {
    position: static;
  }

  .woocommerce-cart .cart-collaterals {
    justify-content: stretch;
  }

  .woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
  }
}

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .tea-finder-hero {
    gap: 22px;
    padding: 44px 20px 34px;
  }

  .tea-finder-hero h1 {
    margin-top: 12px;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .tea-finder-hero p {
    font-size: 18px;
    line-height: 1.4;
  }

  .tea-finder-hero aside {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .tea-finder-hero aside strong {
    font-size: 25px;
  }

  .tea-finder-workspace {
    gap: 18px;
    padding: 24px 20px 52px;
  }

  .tea-finder-controls > section,
  .tea-finder-details,
  .tea-finder-result {
    padding: 18px;
  }

  .tea-finder-step-head {
    gap: 10px;
    margin-bottom: 14px;
  }

  .tea-finder-step-head h2,
  .tea-finder-details summary {
    font-size: 23px;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .tea-finder-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tea-finder-options button {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border-radius: 0;
    font-size: 15px;
    text-align: left;
  }

  .tea-finder-detail-grid {
    grid-template-columns: 1fr;
  }

  .tea-finder-detail-grid label {
    min-height: 50px;
    padding: 12px;
    font-size: 14px;
  }

  .tea-finder-result {
    grid-template-columns: 1fr;
  }

  .tea-finder-result figure {
    aspect-ratio: 1 / 0.7;
  }

  .tea-finder-result h2 {
    font-size: clamp(30px, 8.6vw, 40px);
  }

  .tea-finder-result p {
    font-size: 15px;
  }

  .tea-finder-match {
    padding: 12px;
  }

  .tea-finder-match li {
    font-size: 13px;
  }

  .tea-finder-purchase-path {
    gap: 18px;
    padding: 0 20px 56px;
  }

  .tea-finder-purchase-head h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .tea-finder-purchase-head p {
    font-size: 16px;
  }

  .tea-finder-purchase-grid article {
    padding: 18px;
  }

  .tea-finder-purchase-grid strong {
    font-size: 25px;
  }

  .tea-finder-result dl div {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
  }

  .tea-finder-actions .zht-quick-buy-button,
  .tea-finder-actions .zht-product-link-button {
    min-height: 52px;
    font-size: 15px;
    line-height: 1.1;
  }

  .tea-finder-alternatives a {
    grid-template-columns: 1fr;
  }

  .tea-finder-alternatives a small {
    grid-column: 1;
    grid-row: auto;
    white-space: normal;
  }

  .tea-finder-empty {
    padding: 48px 20px;
  }

  .product-page {
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-product-buy-bar {
    right: auto;
    bottom: 0;
    left: 50%;
    grid-template-columns: minmax(0, 1fr) 106px;
    gap: 10px;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    margin-inline: 0;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px)) 12px;
    border-top: 1px solid rgba(14, 25, 14, 0.18);
    border-right: 1px solid rgba(14, 25, 14, 0.12);
    border-left: 1px solid rgba(14, 25, 14, 0.12);
    border-radius: 18px 18px 0 0;
    background: rgba(247, 248, 241, 0.96);
    box-shadow: 0 -16px 42px rgba(8, 17, 11, 0.18);
    backdrop-filter: blur(16px);
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .mobile-product-buy-bar::before {
    border-radius: inherit;
  }

  .product-buy-bar-copy {
    gap: 4px;
  }

  .product-buy-bar-moment {
    color: var(--zht-accent);
    font-size: 10px;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-product-buy-bar strong {
    color: var(--zht-ink);
    font-size: clamp(15px, 4.2vw, 18px);
    font-weight: 950;
    line-height: 1.02;
  }

  .product-buy-bar-details {
    display: block;
  }

  .product-buy-bar-details small {
    color: var(--zht-green);
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
  }

  .mobile-product-buy-bar .zht-quick-buy-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding-inline: 10px;
    background: var(--zht-accent);
    border-color: var(--zht-accent);
    border-radius: 999px;
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 90, 43, 0.24);
    font-size: 14px;
    line-height: 1.04;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
  }

  .quick-buy-drawer {
    width: 100vw;
  }

  .quick-buy-scroll {
    gap: 12px;
    padding: 14px 12px calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .quick-buy-head button {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .quick-buy-summary,
  .quick-buy-form-section,
  .quick-buy-addons,
  .quick-buy-consents,
  .quick-buy-actions,
  .quick-buy-success {
    border-radius: 22px;
  }

  .quick-buy-product {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 11px;
    padding: 12px;
  }

  .quick-buy-product figure {
    width: 68px;
    border-radius: 18px;
  }

  .quick-buy-product h2 {
    font-size: 21px;
    line-height: 1.02;
  }

  .quick-buy-product small {
    font-size: 12px;
    line-height: 1.24;
  }

  .quick-buy-cart {
    padding: 10px 12px 12px;
  }

  .quick-buy-cart-item,
  .quick-buy-cart-total {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3px 8px;
  }

  .quick-buy-route {
    gap: 5px;
  }

  .quick-buy-route span {
    min-height: 38px;
    padding: 6px 5px;
    font-size: 10px;
  }

  .quick-buy-addons summary {
    min-height: 58px;
    padding: 11px 12px;
  }

  .quick-buy-addons-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 12px 12px;
  }

  .quick-buy-addons-note {
    padding: 10px 12px 0;
    font-size: 12px;
    line-height: 1.28;
  }

  .quick-buy-form {
    gap: 12px;
  }

  .quick-buy-form-section {
    gap: 12px;
    padding: 12px;
  }

  .quick-buy-grid,
  .quick-buy-receipt-grid,
  .quick-buy-delivery-methods,
  .quick-buy-payment-methods {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quick-buy-form label,
  .quick-buy-form fieldset {
    gap: 6px;
  }

  .quick-buy-form label > span,
  .quick-buy-form legend {
    font-size: 11px;
    line-height: 1.18;
  }

  .quick-buy-form input,
  .quick-buy-form textarea {
    min-height: 50px;
    padding-inline: 12px;
    border-radius: 18px;
    font-size: 16px;
  }

  .quick-buy-form textarea {
    min-height: 72px;
    padding-block: 12px;
  }

  .quick-buy-choice-control input {
    padding-right: 46px;
  }

  .quick-buy-choice-clear {
    right: 6px;
    width: 34px;
    height: 34px;
  }

  .not-found-hero {
    min-height: 0;
    padding: 54px 24px;
  }

  .not-found-copy h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .not-found-actions,
  .not-found-search div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .not-found-links a {
    min-height: 138px;
    padding: 24px;
  }

  .not-found-products {
    padding: 56px 24px;
  }

  .quick-buy-consents {
    gap: 8px;
    padding: 11px 12px;
  }

  .quick-buy-consents span {
    font-size: 12px;
    line-height: 1.28;
  }

  .quick-buy-actions {
    position: static;
    gap: 8px;
    padding: 12px;
    border-radius: 22px;
  }

  .quick-buy-support-note {
    display: none;
  }

  .quick-buy-submit {
    min-height: 56px;
    font-size: 19px;
  }

  .quick-buy-add-more {
    min-height: 52px;
    font-size: 15px;
  }

  .site-header {
    min-height: 86px;
    padding: 16px 18px;
  }

  .brand-mark {
    font-size: 24px;
  }

  .brand-dot {
    width: 42px;
    height: 42px;
    border-width: 5px;
  }

  .concierge-hero {
    display: grid;
    min-height: 0;
    padding: 0;
    background: var(--zht-paper);
  }

  .concierge-hero::before {
    display: none;
  }

  .need-panel {
    order: 1;
    min-height: 0;
    padding: 44px 24px;
    border: 0;
    border-bottom: 1px solid var(--zht-line);
    background:
      linear-gradient(rgba(247, 248, 241, 0.7), rgba(247, 248, 241, 0.82)),
      url("../images/zen-heart-hero-wide-v2.png") center / cover no-repeat;
  }

  .need-panel h1 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .need-panel p {
    font-size: 22px;
  }

  .hero-proof-pills {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-proof-pills span {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .need-options button {
    grid-template-columns: 42px 1fr;
    min-height: 72px;
    padding: 14px 0;
  }

  .need-options button small {
    grid-column: 2;
  }

  .need-options button.is-active {
    padding-inline: 16px;
  }

  .hero-product-visual {
    order: 3;
    min-height: 300px;
    border: 0;
  }

  .recommend-card {
    order: 2;
    grid-template-columns: 1fr;
    border-inline: 0;
  }

  .recommend-card figure {
    width: min(280px, 72vw);
    margin-inline: auto;
  }

  .quiet-section,
  .guided-choice,
  .delivery-flow-section,
  .bundle-path-section,
  .objection-section,
  .workday-section,
  .tea-passport,
  .scenario-compare,
  .product-pairing,
  .product-about,
  .brew-section,
  .recommended,
  .shop-page {
    padding: 52px 20px;
  }

  .shop-page > .woocommerce {
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }

  .shop-page h1,
  .shop-page .wp-block-heading {
    margin-bottom: 28px;
    font-size: clamp(42px, 13vw, 62px);
  }

  .shop-page .wc-block-components-main,
  .shop-page .wc-block-checkout__main,
  .shop-page .wc-block-cart__main,
  .shop-page .wc-block-components-sidebar,
  .shop-page .wc-block-checkout__sidebar,
  .shop-page .wc-block-cart__sidebar {
    padding: 22px;
  }

  .shop-page .wc-block-components-checkout-step__title,
  .shop-page .wc-block-components-title,
  .content-page .wc-block-components-checkout-step__title,
  .content-page .wc-block-components-title {
    font-size: 25px;
  }

  .woocommerce-cart .content-page,
  .woocommerce-checkout .content-page,
  .woocommerce-account .content-page {
    padding: 56px 24px;
  }

  .woocommerce-cart .content-article,
  .woocommerce-checkout .content-article,
  .woocommerce-account .content-article {
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }

  .woocommerce-cart .content-page h1,
  .woocommerce-checkout .content-page h1,
  .woocommerce-account .content-page h1 {
    margin-bottom: 28px;
    font-size: clamp(42px, 13vw, 62px);
  }

  .content-page .wc-block-components-main,
  .content-page .wc-block-checkout__main,
  .content-page .wc-block-cart__main,
  .content-page .wc-block-components-sidebar,
  .content-page .wc-block-checkout__sidebar,
  .content-page .wc-block-cart__sidebar {
    padding: 22px;
  }

  .woocommerce-checkout .woocommerce-form-login,
  .woocommerce-checkout .checkout_coupon,
  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout .woocommerce-shipping-fields,
  .woocommerce-checkout .woocommerce-additional-fields,
  .woocommerce-checkout #order_review,
  .woocommerce-cart .woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals .cart_totals,
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account .woocommerce-form-login,
  .woocommerce-account .woocommerce-form-register {
    padding: 22px;
  }

  .woocommerce-checkout .woocommerce-billing-fields h3,
  .woocommerce-checkout .woocommerce-shipping-fields h3,
  .woocommerce-checkout .woocommerce-additional-fields h3,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-cart .cart_totals h2 {
    font-size: 25px;
  }

  .woocommerce-cart .woocommerce-cart-form {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .woocommerce-cart table.cart td.actions .coupon {
    display: grid;
    gap: 12px;
  }

  .woocommerce-cart table.cart td.actions .coupon .input-text,
  .woocommerce-cart table.cart td.actions .button {
    width: 100%;
    min-width: 0;
  }

  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last,
  .woocommerce-account .form-row-first,
  .woocommerce-account .form-row-last {
    float: none;
    width: 100%;
  }

  .quiet-heading h2,
  .guided-copy h2,
  .choice-guide-head h2,
  .delivery-flow-copy h2,
  .bundle-path-copy h2,
  .objection-copy h2,
  .product-confidence-copy h2,
  .tea-passport-lead h2,
  .taste-fit-copy h2,
  .scenario-compare-head h2,
  .product-pairing-copy h2,
  .workday-copy h2,
  .soft-note h2,
  .archive-hero h1,
  .product-about h2,
  .recommended h2,
  .brew-section h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.94;
    overflow-wrap: anywhere;
  }

  .recommended h2 {
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 0.98;
  }

  .product-about p,
  .choice-guide-head p,
  .delivery-flow-copy p,
  .bundle-path-copy p,
  .objection-copy p,
  .product-confidence-copy p,
  .tea-passport-lead p,
  .taste-fit-copy p,
  .scenario-compare-head p,
  .product-pairing-copy p,
  .workday-copy p,
  .brew-section p {
    font-size: 18px;
    line-height: 1.45;
  }

  .product-taste-line {
    font-size: 20px;
  }

  .product-hero-summary {
    max-width: calc(100vw - 40px);
    gap: 12px;
    width: 100%;
    min-width: 0;
    margin-top: 18px;
  }

  .product-hero-summary > p {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-word;
  }

  .product-fit-chips {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: calc(100vw - 40px);
    min-width: 0;
  }

  .product-fit-chips span {
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-word;
  }

  .product-fit-chips span:nth-child(n + 3) {
    display: none;
  }

  .product-cart-box {
    justify-items: center;
    margin-bottom: 18px;
  }

  .product-cart-box .product-hero-buy {
    justify-self: center;
    margin-inline: auto;
  }

  .product-detail-drawer,
  .scenario-compare.product-detail-drawer,
  .product-about.product-detail-drawer {
    padding: 0 20px;
  }

  .product-detail-drawer summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 82px;
    padding: 20px 0;
  }

  .product-detail-drawer summary span {
    grid-column: 1 / -1;
  }

  .product-detail-drawer summary strong {
    font-size: clamp(25px, 7.4vw, 34px);
  }

  .product-detail-drawer summary::after {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .product-detail-drawer details > :not(summary) {
    margin-bottom: 24px;
  }

  .product-decision-card {
    gap: 14px;
    margin-top: 22px;
    padding: 18px;
  }

  .product-decision-card > strong {
    font-size: clamp(25px, 7.6vw, 34px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .product-decision-card div {
    grid-template-columns: 1fr;
  }

  .product-decision-card p {
    min-height: 0;
    padding: 15px;
    font-size: 14px;
  }

  .product-order-guide {
    padding: 16px;
  }

  .product-order-guide-head h2 {
    font-size: 22px;
    overflow-wrap: anywhere;
  }

  .product-order-guide-grid article {
    padding: 16px;
  }

  .product-order-guide-grid strong {
    margin-top: 18px;
    font-size: 19px;
  }

  .product-order-guide-action {
    min-height: 46px;
    font-size: 14px;
  }

  .product-confidence {
    gap: 28px;
    padding: 58px 20px;
  }

  .product-confidence-copy h2 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 0.96;
  }

  .product-confidence-grid article {
    min-height: 0;
    padding: 22px 20px;
    border-right: 0;
  }

  .product-confidence-grid {
    grid-template-columns: 1fr;
  }

  .product-confidence-grid strong {
    margin-top: 28px;
    font-size: 26px;
  }

  .taste-fit-section {
    gap: 28px;
    padding: 58px 20px;
  }

  .taste-fit-copy h2 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 0.96;
  }

  .taste-fit-grid {
    border-left: 0;
  }

  .taste-fit-grid article {
    min-height: 0;
    padding: 22px 20px;
    border-right: 0;
  }

  .taste-fit-grid strong {
    margin-top: 28px;
    font-size: 25px;
  }

  .taste-fit-grid p {
    font-size: 16px;
  }

  .tea-passport {
    gap: 28px;
    padding: 58px 20px;
  }

  .tea-passport-lead h2 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 0.96;
  }

  .tea-passport-grid {
    border-left: 0;
  }

  .tea-passport-grid article {
    min-height: 0;
    padding: 22px 20px;
    border-right: 0;
  }

  .tea-passport-main {
    grid-column: auto;
  }

  .tea-passport-main strong,
  .tea-passport-card strong {
    margin-top: 24px;
    font-size: 25px;
  }

  .tea-passport-steps {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 6px;
  }

  .tea-passport-steps span {
    min-height: 42px;
    border-radius: 18px;
  }

  .scenario-compare {
    gap: 28px;
    padding: 58px 20px;
  }

  .scenario-compare-head h2 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 0.96;
  }

  .scenario-compare-grid {
    border-left: 0;
  }

  .scenario-compare-card {
    min-height: 0;
    grid-template-rows: auto;
    padding: 22px 20px;
    border-right: 0;
  }

  .scenario-compare-card h3 {
    margin-top: 26px;
    font-size: clamp(27px, 8vw, 34px);
  }

  .scenario-compare-card p {
    min-height: 0;
    font-size: 16px;
  }

  .scenario-compare-product {
    margin-top: 24px;
  }

  .scenario-compare .zht-product-link-button,
  .scenario-compare .zht-quick-buy-button {
    min-height: 50px;
    font-size: 16px;
  }

  .product-pairing {
    gap: 28px;
    padding: 58px 20px;
  }

  .product-pairing-copy h2 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 0.96;
  }

  .product-pairing-grid article {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .product-pairing-grid h3 {
    font-size: clamp(22px, 6.6vw, 30px);
  }

  .product-pairing-link {
    min-height: 46px;
    font-size: 14px;
  }

  .product-pairing-note {
    font-size: 14px;
  }

  .gift-path-section {
    gap: 32px;
    padding: 58px 20px;
  }

  .gift-path-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.96;
  }

  .gift-path-copy > p {
    font-size: 18px;
    line-height: 1.45;
  }

  .gift-path-points article {
    min-height: 0;
    padding: 20px;
    border-right: 0;
  }

  .gift-path-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .gift-path-card h3 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .trust-strip article {
    padding: 24px 20px;
  }

  .trust-strip strong {
    font-size: 24px;
  }

  .trust-strip p {
    font-size: 15px;
  }

  .quick-picks-section {
    gap: 28px;
    padding: 58px 20px;
  }

  .quick-picks-head h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.96;
  }

  .quick-picks-head p {
    font-size: 17px;
    line-height: 1.45;
  }

  .quick-picks-grid {
    border-left: 0;
  }

  .quick-picks-grid article {
    min-height: 0;
    padding: 22px 20px;
    border-right: 0;
  }

  .quick-picks-grid strong {
    margin-top: 24px;
    font-size: 30px;
  }

  .quick-pick-proof {
    padding: 12px;
  }

  .quick-pick-proof div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .order-size-section {
    gap: 28px;
    padding: 58px 20px;
  }

  .order-size-head h2 {
    font-size: 38px;
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .order-size-head p {
    font-size: 17px;
    line-height: 1.45;
  }

  .order-size-grid article {
    padding: 22px 20px;
  }

  .order-size-grid strong {
    margin-top: 24px;
    font-size: 28px;
  }

  .order-size-grid p {
    font-size: 16px;
  }

  .delivery-flow-section {
    gap: 32px;
    padding: 58px 20px;
  }

  .delivery-flow-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.96;
  }

  .delivery-flow-copy a {
    width: 100%;
  }

  .delivery-flow-grid {
    border-left: 0;
  }

  .delivery-flow-grid article {
    min-height: 0;
    padding: 24px 20px;
    border-right: 0;
  }

  .delivery-flow-grid strong {
    margin-top: 34px;
    font-size: 28px;
  }

  .delivery-flow-grid p {
    font-size: 16px;
  }

  .bundle-path-section {
    gap: 32px;
    padding: 58px 20px;
  }

  .bundle-path-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.96;
  }

  .bundle-path-grid {
    border-left: 0;
  }

  .bundle-path-grid article {
    padding: 22px 20px;
    border-right: 0;
  }

  .bundle-path-grid h3 {
    margin-top: 26px;
    font-size: clamp(27px, 8vw, 34px);
  }

  .bundle-path-products div {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 10px;
  }

  .bundle-path-products figure {
    width: 58px;
  }

  .objection-section {
    gap: 32px;
    padding: 58px 20px;
  }

  .objection-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.96;
  }

  .objection-grid {
    border-left: 0;
  }

  .objection-grid article {
    padding: 22px 20px;
    border-right: 0;
  }

  .objection-grid strong {
    margin-top: 28px;
    font-size: clamp(24px, 7.2vw, 31px);
  }

  .objection-grid p {
    font-size: 16px;
  }

  .workday-grid article {
    padding: 24px 20px;
  }

  .workday-grid strong {
    font-size: 28px;
  }

  .workday-link {
    min-height: 46px;
    font-size: 14px;
  }

  .choice-guide-section {
    padding: 58px 20px;
  }

  .choice-guide-head {
    margin-bottom: 28px;
  }

  .choice-guide-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .choice-guide-grid article {
    min-height: 0;
    padding: 24px 20px;
    border-right: 0;
  }

  .choice-guide-grid h3 {
    margin-top: 20px;
    font-size: 30px;
  }

  .choice-guide-grid dl {
    margin: 20px 0 18px;
  }

  .choice-guide-product {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .choice-guide-product figure {
    width: 62px;
  }

  .cup-row {
    gap: 10px;
    overflow: hidden;
  }

  .cup-row span {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-width: 6px;
  }

  .mood-grid,
  .fresh-row,
  .small-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: visible;
    border-left: 0;
  }

  .mood-grid > *,
  .fresh-row > *,
  .small-products > * {
    min-width: 0;
    width: 100%;
    border-right: 0;
  }

  .zht-product-card > a {
    padding: 14px;
  }

  .zht-product-card h3 {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .zht-card-subtitle {
    font-size: 14px;
  }

  .zht-card-signals small {
    min-height: 26px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .zht-card-buy-proof small {
    min-height: 32px;
    padding: 5px 4px;
    font-size: 9px;
    overflow-wrap: anywhere;
  }

  .zht-card-fit {
    min-height: 0;
    padding: 10px;
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .zht-card-decision {
    font-size: 13px;
  }

  .shop-scenarios {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .shop-scenarios a {
    min-height: 0;
    padding: 24px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--zht-line);
  }

  .shop-scenarios a:last-child {
    border-bottom: 0;
  }

  .shop-scenarios strong {
    margin-top: 18px;
    font-size: 30px;
  }

  .shop-scenarios small {
    margin-top: 16px;
  }

  .shop-buy-path {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .shop-buy-path article {
    min-height: 0;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--zht-line);
  }

  .shop-buy-path article:last-child {
    border-bottom: 0;
  }

  .shop-buy-path strong {
    font-size: 24px;
  }

  .shop-decision-matrix {
    padding: 46px 20px;
  }

  .shop-decision-head h2 {
    font-size: 42px;
  }

  .shop-decision-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .shop-decision-grid article {
    border-right: 0;
  }

  .shop-decision-grid a {
    min-height: 0;
    padding: 22px 20px;
  }

  .shop-decision-grid h3 {
    margin-top: 18px;
    font-size: 30px;
  }

  .shop-decision-grid dl div {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .mood-grid::-webkit-scrollbar,
  .fresh-row::-webkit-scrollbar,
  .small-products::-webkit-scrollbar {
    display: none;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .product-info {
    order: 2;
    min-width: 0;
    width: 100%;
    padding: 44px 20px;
    overflow: hidden;
  }

  .product-gallery {
    order: 1;
  }

  .product-info h1 {
    max-width: 100%;
    font-size: clamp(40px, 12.4vw, 54px);
    line-height: 0.95;
    overflow-wrap: anywhere;
  }

  .product-main-image {
    padding: 16px;
  }

  .about-facts dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Product-page design language for standard pages and WooCommerce utility pages. */
.content-page-product-code,
.woocommerce-cart .content-page,
.woocommerce-checkout .content-page,
.woocommerce-account .content-page {
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 6vw, 88px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(247, 248, 241, 0.94), rgba(247, 248, 241, 0.74)),
    url("../images/zen-heart-hero-wide-v2.png") center / cover no-repeat;
}

.content-page-product-code .content-article {
  max-width: 1160px;
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.content-page-product-code h1,
.woocommerce-cart .content-page h1,
.woocommerce-checkout .content-page h1,
.woocommerce-account .content-page h1 {
  max-width: min(100%, 980px);
  margin: 0 0 clamp(24px, 4vw, 44px);
  font-size: clamp(44px, 7.2vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.content-page-product-code .entry-content {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  max-width: 1120px;
}

.content-page-product-code .entry-content > h2,
.content-page-product-code .entry-content > h3 {
  max-width: 900px;
  margin: clamp(18px, 3vw, 34px) 0 0;
  color: var(--zht-ink);
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.content-page-product-code .entry-content > h3 {
  font-size: clamp(22px, 2.4vw, 34px);
}

.content-page-product-code .entry-content > p,
.content-page-product-code .entry-content > ul,
.content-page-product-code .entry-content > ol,
.content-page-product-code .entry-content > form,
.content-page-product-code .entry-content > table,
.content-page-product-code .entry-content > .wp-block-group,
.content-page-product-code .entry-content > .wp-block-columns,
.content-page-product-code .entry-content > .woocommerce {
  margin: 0;
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(14, 25, 14, 0.14);
  border-radius: 30px;
  background: rgba(255, 248, 236, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(12px);
}

.content-page-product-code .entry-content > p:first-child {
  max-width: 960px;
  color: var(--zht-ink);
  font-size: clamp(18px, 1.75vw, 25px);
  font-weight: 780;
  line-height: 1.28;
}

.content-page-product-code .entry-content p,
.content-page-product-code .entry-content li {
  color: var(--zht-ink);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.45;
}

.content-page-product-code .entry-content ul,
.content-page-product-code .entry-content ol {
  padding-left: clamp(38px, 4vw, 54px);
}

.content-page-product-code .entry-content li + li {
  margin-top: 8px;
}

.content-page-product-code .entry-content a {
  color: var(--zht-green);
  font-weight: 880;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.content-page-product-code .entry-content strong,
.content-page-product-code .entry-content b {
  font-weight: 950;
}

.content-page-product-code input:not([type="checkbox"]):not([type="radio"]),
.content-page-product-code textarea,
.content-page-product-code select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce .select2-container .select2-selection--single,
.shop-page .wc-block-components-form .wc-block-components-text-input input,
.shop-page .wc-block-components-form .wc-block-components-combobox-control input,
.shop-page .wc-block-components-form .wc-block-components-textarea,
.shop-page .wc-block-components-text-input input,
.shop-page .wc-block-components-combobox-control input,
.shop-page .wc-block-components-textarea,
.shop-page .wc-block-components-select .wc-block-components-select__select,
.shop-page .components-combobox-control__input,
.shop-page .components-form-token-field__input,
.content-page .wc-block-components-form .wc-block-components-text-input input,
.content-page .wc-block-components-form .wc-block-components-combobox-control input,
.content-page .wc-block-components-form .wc-block-components-textarea,
.content-page .wc-block-components-text-input input,
.content-page .wc-block-components-combobox-control input,
.content-page .wc-block-components-textarea,
.content-page .wc-block-components-select .wc-block-components-select__select {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
}

.content-page-product-code button,
.content-page-product-code input[type="submit"],
.content-page-product-code .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .checkout-button,
.shop-page .wc-block-components-button,
.shop-page .wc-block-cart__submit-button,
.shop-page .wc-block-components-checkout-place-order-button {
  border-radius: 999px;
}

.shop-page > .woocommerce,
.woocommerce-cart .content-article,
.woocommerce-checkout .content-article,
.woocommerce-account .content-article,
.content-page .wc-block-components-main,
.content-page .wc-block-checkout__main,
.content-page .wc-block-cart__main,
.content-page .wc-block-components-sidebar,
.content-page .wc-block-checkout__sidebar,
.content-page .wc-block-cart__sidebar,
.shop-page .wc-block-components-main,
.shop-page .wc-block-checkout__main,
.shop-page .wc-block-cart__main,
.shop-page .wc-block-components-sidebar,
.shop-page .wc-block-checkout__sidebar,
.shop-page .wc-block-cart__sidebar,
.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .checkout_coupon,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_review,
.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  border-radius: 34px;
}

.woocommerce table.shop_table,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.shop-page .wc-block-components-notice-banner,
.shop-page .wc-block-components-validation-error,
.content-page .wc-block-components-notice-banner,
.content-page .wc-block-components-validation-error {
  overflow: hidden;
  border-radius: 24px;
}

.home-page .need-panel,
.home-page .recommend-card,
.home-page .hero-product-visual,
.home-page .hero-product-visual figcaption,
.home-page .recommend-card figure,
.home-page .quick-picks-grid article,
.home-page .order-size-grid article,
.tea-finder-controls > section,
.tea-finder-details,
.tea-finder-detail-grid label,
.tea-finder-result,
.tea-finder-result figure,
.tea-finder-match,
.tea-finder-alternatives a,
.tea-finder-purchase-grid,
.tea-finder-purchase-grid article,
.tea-finder-empty {
  overflow: hidden;
  border-radius: 30px;
}

.tea-finder-options button,
.shop-page .wc-block-components-checkbox .wc-block-components-checkbox__input,
.content-page .wc-block-components-checkbox .wc-block-components-checkbox__input {
  border-radius: 14px;
}

@media (max-width: 760px) {
  .content-page-product-code,
  .woocommerce-cart .content-page,
  .woocommerce-checkout .content-page,
  .woocommerce-account .content-page {
    padding: 42px 18px 54px;
  }

  .content-page-product-code h1,
  .woocommerce-cart .content-page h1,
  .woocommerce-checkout .content-page h1,
  .woocommerce-account .content-page h1 {
    font-size: clamp(40px, 12vw, 56px);
    line-height: 0.96;
  }

  .content-page-product-code .entry-content > p,
  .content-page-product-code .entry-content > ul,
  .content-page-product-code .entry-content > ol,
  .content-page-product-code .entry-content > form,
  .content-page-product-code .entry-content > table,
  .content-page-product-code .entry-content > .wp-block-group,
  .content-page-product-code .entry-content > .wp-block-columns,
  .content-page-product-code .entry-content > .woocommerce {
    padding: 18px;
    border-radius: 24px;
  }

  .content-page-product-code .entry-content ul,
  .content-page-product-code .entry-content ol {
    padding-left: 34px;
  }

  .shop-page > .woocommerce,
  .woocommerce-cart .content-article,
  .woocommerce-checkout .content-article,
  .woocommerce-account .content-article,
  .content-page .wc-block-components-main,
  .content-page .wc-block-checkout__main,
  .content-page .wc-block-cart__main,
  .content-page .wc-block-components-sidebar,
  .content-page .wc-block-checkout__sidebar,
  .content-page .wc-block-cart__sidebar,
  .shop-page .wc-block-components-main,
  .shop-page .wc-block-checkout__main,
  .shop-page .wc-block-cart__main,
  .shop-page .wc-block-components-sidebar,
  .shop-page .wc-block-checkout__sidebar,
  .shop-page .wc-block-cart__sidebar,
  .woocommerce-checkout .woocommerce-form-login,
  .woocommerce-checkout .checkout_coupon,
  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout .woocommerce-shipping-fields,
  .woocommerce-checkout .woocommerce-additional-fields,
  .woocommerce-checkout #order_review,
  .woocommerce-cart .woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals .cart_totals,
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account .woocommerce-form-login,
  .woocommerce-account .woocommerce-form-register {
    border-radius: 24px;
  }

  .home-page .need-panel,
  .home-page .recommend-card,
  .home-page .hero-product-visual,
  .home-page .hero-product-visual figcaption,
  .home-page .recommend-card figure,
  .home-page .quick-picks-grid article,
  .home-page .order-size-grid article,
  .tea-finder-controls > section,
  .tea-finder-details,
  .tea-finder-detail-grid label,
  .tea-finder-result,
  .tea-finder-result figure,
  .tea-finder-match,
  .tea-finder-alternatives a,
  .tea-finder-purchase-grid,
  .tea-finder-purchase-grid article,
  .tea-finder-empty {
    border-radius: 24px;
  }

  .tea-finder-options button {
    border-radius: 14px;
  }
}

/* Homepage redesign: aligned with the product page and quick-buy design code. */
.home-page {
  --home-max: 1480px;
  --home-gutter: clamp(18px, 4vw, 56px);
  --home-section-y: clamp(52px, 6vw, 88px);
  --home-card-radius: 26px;
  --home-control-radius: 18px;
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, rgba(247, 248, 241, 0.98), rgba(236, 239, 228, 0.62)),
    var(--zht-paper);
  color: var(--zht-ink);
  overflow-x: clip;
}

body.home,
body.front-page {
  background: var(--zht-paper);
}

body.home .site-header,
body.front-page .site-header,
.home-page + .site-footer {
  width: 100%;
  max-width: none;
}

.home-page *,
.home-page *::before,
.home-page *::after {
  letter-spacing: 0;
}

.home-page > section {
  width: min(100%, var(--home-max));
  margin-inline: auto;
}

.home-page .eyebrow,
.home-page .quiet-heading > span,
.home-page .guided-copy > span,
.home-page .choice-guide-head > span,
.home-page .delivery-flow-copy > span,
.home-page .bundle-path-copy > span,
.home-page .objection-copy > span,
.home-page .soft-note > span,
.home-page .quick-picks-head span,
.home-page .order-size-head span,
.home-page .trust-strip span,
.home-page .workday-copy > span,
.home-page .gift-path-copy > span,
.home-page .recommend-copy > span,
.home-page .quick-picks-grid article > span,
.home-page .order-size-grid article > span,
.home-page .workday-grid article > span,
.home-page .delivery-flow-grid article > span,
.home-page .bundle-path-grid article > span,
.home-page .objection-grid article > span,
.home-page .gift-path-card span,
.home-page .choice-guide-grid article > span {
  color: var(--zht-accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page strong {
  letter-spacing: 0;
}

.home-page p {
  overflow-wrap: anywhere;
}

.concierge-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.86fr);
  grid-template-rows: auto auto;
  gap: 16px;
  min-height: 0;
  padding: var(--home-gutter);
  background: transparent;
  border-bottom: 0;
}

.concierge-hero::before {
  display: none;
}

.need-panel,
.recommend-card,
.hero-product-visual,
.trust-strip article,
.quick-picks-grid article,
.order-size-grid article,
.guided-steps article,
.delivery-flow-grid article,
.workday-grid article,
.choice-guide-grid article,
.bundle-path-grid article,
.objection-grid article,
.gift-path-card,
.collection-grid a,
.soft-note {
  border: 1px solid rgba(31, 56, 36, 0.13);
  border-radius: var(--home-card-radius);
  box-shadow: 0 18px 48px rgba(26, 44, 30, 0.08);
}

.need-panel {
  grid-column: 1;
  grid-row: 1;
  align-content: start;
  min-height: 0;
  padding: clamp(24px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.need-panel h1 {
  max-width: 780px;
  margin: 14px 0 0;
  font-size: 64px;
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.need-panel p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--zht-muted);
  font-size: 20px;
  line-height: 1.45;
}

.hero-proof-pills {
  gap: 8px;
  margin-top: 22px;
}

.hero-proof-pills span,
.recommend-meta span {
  min-height: 34px;
  padding: 7px 12px;
  border-color: rgba(31, 56, 36, 0.13);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.76);
  color: var(--zht-green);
  font-size: 12px;
  font-weight: 880;
  line-height: 1.12;
  text-transform: none;
}

.need-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  border: 0;
}

.need-options button {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 5px 10px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(31, 56, 36, 0.13);
  border-radius: 20px;
  background: rgba(247, 248, 241, 0.74);
}

.need-options button span {
  grid-row: 1 / span 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 90, 43, 0.12);
  color: var(--zht-accent);
  font-size: 12px;
  font-weight: 950;
}

.need-options button strong {
  font-size: 19px;
  line-height: 1.02;
}

.need-options button small {
  grid-column: 2;
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.15;
}

.need-options button.is-active {
  border-color: rgba(255, 90, 43, 0.48);
  background: var(--zht-ink);
  color: var(--zht-cream);
}

.need-options button.is-active span {
  background: var(--zht-accent);
  color: #fff;
}

.need-catalog-link {
  grid-column: 1 / -1;
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 14px 22px;
  border: 1px solid rgba(255, 90, 43, 0.62);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #ff4e1f 0%, #ff7a1a 52%, #ffb000 100%);
  box-shadow: 0 14px 30px rgba(255, 90, 43, 0.22), 0 0 0 1px rgba(255, 196, 87, 0.18) inset;
  color: #fff8ec;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.need-catalog-link:hover,
.need-catalog-link:focus-visible {
  color: #fff8ec;
  filter: saturate(1.08);
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(255, 90, 43, 0.28), 0 0 0 1px rgba(255, 229, 150, 0.28) inset;
}

.hero-product-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 0;
  aspect-ratio: 0.82 / 1;
  background: var(--zht-green-deep);
}

.hero-product-visual img {
  object-fit: cover;
}

.hero-product-visual figcaption {
  right: 18px;
  bottom: 18px;
  left: 18px;
  gap: 5px;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 20px;
}

.hero-product-visual strong {
  font-size: 22px;
}

.hero-product-visual span {
  font-size: 15px;
  line-height: 1.32;
}

.recommend-card {
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: minmax(112px, 150px) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
}

.recommend-card figure {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
}

.recommend-copy {
  gap: 10px;
}

.recommend-copy h2 {
  font-size: 34px;
  line-height: 0.98;
}

.recommend-copy p {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.42;
}

.recommend-insight {
  gap: 8px;
  border: 0;
  background: transparent;
}

.recommend-insight div {
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(31, 56, 36, 0.1);
  border-radius: 16px;
  background: rgba(255, 248, 236, 0.58);
}

.recommend-insight div:last-child {
  border-bottom: 1px solid rgba(31, 56, 36, 0.1);
}

.recommend-insight dt {
  font-size: 11px;
  letter-spacing: 0;
}

.recommend-actions,
.not-found-actions {
  gap: 10px;
}

.recommend-copy a,
.home-page .zht-product-link-button,
.home-page .zht-quick-buy-button,
.home-page .quick-pick-link,
.home-page .order-size-link,
.home-page .workday-link,
.home-page .bundle-path-link,
.home-page .delivery-flow-copy a {
  width: auto;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.08;
  text-align: center;
  white-space: normal;
}

.home-page .quick-pick-link,
.home-page .order-size-link,
.home-page .workday-link,
.home-page .bundle-path-link,
.home-page .choice-guide-grid .zht-product-link-button {
  width: 100%;
  background: var(--zht-ink);
  color: var(--zht-paper);
}

.trust-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 var(--home-gutter) var(--home-section-y);
  border-bottom: 0;
  background: transparent;
}

.trust-strip article {
  min-height: 0;
  padding: 22px;
  border-right: 1px solid rgba(31, 56, 36, 0.13);
  background: rgba(255, 255, 255, 0.48);
}

.trust-strip strong {
  max-width: none;
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.05;
}

.trust-strip p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.42;
}

.quick-picks-section,
.order-size-section,
.guided-choice,
.delivery-flow-section,
.workday-section,
.choice-guide-section,
.bundle-path-section,
.gift-path-section,
.quiet-section,
.objection-section {
  padding: var(--home-section-y) var(--home-gutter);
  border-bottom: 0;
}

.quick-picks-section,
.order-size-section,
.workday-section,
.bundle-path-section,
.objection-section,
.gift-path-section,
.guided-choice,
.delivery-flow-section {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(22px, 4vw, 46px);
}

.quick-picks-head,
.workday-copy {
  position: static;
}

.quick-picks-head,
.order-size-head,
.guided-copy,
.delivery-flow-copy,
.workday-copy,
.choice-guide-head,
.bundle-path-copy,
.gift-path-copy,
.objection-copy,
.quiet-heading {
  gap: 14px;
  align-content: start;
}

.quick-picks-head h2,
.order-size-head h2,
.guided-copy h2,
.delivery-flow-copy h2,
.workday-copy h2,
.choice-guide-head h2,
.bundle-path-copy h2,
.gift-path-copy h2,
.objection-copy h2,
.quiet-heading h2,
.soft-note h2 {
  max-width: 780px;
  margin: 0;
  font-size: 46px;
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.quick-picks-head p,
.order-size-head p,
.guided-copy p,
.delivery-flow-copy p,
.workday-copy p,
.choice-guide-head p,
.bundle-path-copy p,
.gift-path-copy > p,
.objection-copy p,
.quiet-heading p,
.soft-note p {
  max-width: 650px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 17px;
  line-height: 1.45;
}

.quick-picks-grid,
.order-size-grid,
.guided-steps,
.delivery-flow-grid,
.workday-grid,
.choice-guide-grid,
.bundle-path-grid,
.objection-grid,
.gift-path-points,
.collection-grid,
.mood-grid,
.fresh-row {
  display: grid;
  gap: 12px;
  border: 0;
}

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

.order-size-grid,
.workday-grid,
.bundle-path-grid,
.gift-path-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guided-steps,
.delivery-flow-grid,
.choice-guide-grid,
.objection-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guided-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 0;
}

.mood-grid,
.fresh-row {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.quick-picks-grid article,
.order-size-grid article,
.guided-steps article,
.delivery-flow-grid article,
.workday-grid article,
.choice-guide-grid article,
.bundle-path-grid article,
.objection-grid article,
.gift-path-points article {
  min-width: 0;
  min-height: 0;
  padding: 22px;
  border: 1px solid rgba(31, 56, 36, 0.13);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 34px rgba(26, 44, 30, 0.06);
}

.quick-picks-grid article,
.order-size-grid article,
.workday-grid article,
.choice-guide-grid article,
.bundle-path-grid article {
  grid-template-rows: auto auto auto 1fr auto auto;
}

.quick-picks-grid strong,
.order-size-grid strong,
.workday-grid strong,
.guided-steps strong,
.delivery-flow-grid strong,
.bundle-path-grid h3,
.choice-guide-grid h3,
.objection-grid strong,
.gift-path-points strong {
  display: block;
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.04;
  text-transform: uppercase;
}

.quick-picks-grid p,
.order-size-grid p,
.workday-grid p,
.guided-steps p,
.delivery-flow-grid p,
.choice-guide-grid article > p,
.bundle-path-grid article > p,
.objection-grid p,
.gift-path-points p,
.bundle-path-start p {
  margin: 12px 0 0;
  color: var(--zht-muted);
  font-size: 15px;
  line-height: 1.42;
}

.quick-pick-proof,
.choice-guide-grid dl,
.recommend-insight,
.bundle-path-products,
.workday-product {
  align-self: end;
}

.quick-pick-proof {
  margin-top: 18px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 248, 236, 0.58);
}

.quick-pick-proof div {
  grid-template-columns: 72px minmax(0, 1fr);
}

.quick-picks-grid small,
.order-size-grid small,
.workday-product small,
.bundle-path-start small {
  margin-top: 16px;
  color: var(--zht-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.18;
}

.guided-choice {
  align-items: start;
  background: rgba(236, 239, 228, 0.72);
}

.guided-steps article {
  grid-template-rows: auto auto auto auto;
  row-gap: 10px;
  align-content: start;
  padding: 22px;
  border-left: 1px solid rgba(31, 56, 36, 0.13);
}

.step-icon {
  width: 48px;
  height: 48px;
}

.delivery-flow-section,
.gift-path-section,
.soft-note {
  width: min(calc(100% - (var(--home-gutter) * 2)), var(--home-max));
  color: var(--zht-cream);
  background:
    linear-gradient(120deg, rgba(8, 17, 11, 0.94), rgba(31, 56, 36, 0.84)),
    url("../images/zen-heart-hero-wide-v2.png") center / cover no-repeat;
}

.delivery-flow-copy p,
.delivery-flow-grid p,
.gift-path-copy > p,
.gift-path-points p,
.gift-path-card p,
.soft-note p {
  color: rgba(255, 248, 236, 0.74);
}

.delivery-flow-grid article,
.gift-path-points article {
  border-color: rgba(255, 248, 236, 0.16);
  background: rgba(255, 248, 236, 0.06);
}

.delivery-flow-grid strong,
.gift-path-points strong,
.gift-path-card h3 {
  color: var(--zht-cream);
}

.delivery-flow-copy a {
  color: var(--zht-cream);
  border-color: rgba(255, 248, 236, 0.5);
}

.choice-guide-section {
  background: rgba(236, 239, 228, 0.64);
}

.choice-guide-head,
.quiet-heading {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
}

.choice-guide-head > span,
.quiet-heading > span {
  grid-column: 1;
}

.choice-guide-head h2,
.quiet-heading h2 {
  grid-column: 1;
}

.choice-guide-head p,
.quiet-heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.choice-guide-grid dl {
  gap: 8px;
  margin: 18px 0;
  border-top: 0;
}

.choice-guide-grid dl div {
  gap: 4px;
  padding: 10px 0;
}

.choice-guide-product,
.bundle-path-products div {
  border-radius: 18px;
}

.choice-guide-product figure,
.bundle-path-products figure,
.collection-grid img,
.zht-product-card figure {
  border-radius: 20px;
}

.bundle-path-products div {
  background: rgba(247, 248, 241, 0.76);
}

.bundle-path-start {
  margin-top: 16px;
}

.gift-path-card {
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  background: rgba(247, 248, 241, 0.1);
  border-color: rgba(255, 248, 236, 0.18);
}

.gift-path-card figure {
  border-radius: 22px;
}

.gift-path-card h3 {
  font-size: 42px;
  line-height: 0.98;
}

.collection-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.collection-grid a {
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.52);
}

.collection-grid img {
  aspect-ratio: 1.16 / 1;
}

.collection-grid strong {
  font-size: 22px;
  line-height: 1.05;
}

.collection-grid span {
  font-size: 14px;
}

.home-page .zht-product-card {
  overflow: hidden;
  border: 1px solid rgba(31, 56, 36, 0.13);
  border-radius: var(--home-card-radius);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 12px 34px rgba(26, 44, 30, 0.06);
}

.home-page .zht-product-card > a {
  padding: 14px;
}

.home-page .zht-product-card h3 {
  font-size: 24px;
  line-height: 1.05;
}

.home-page .zht-card-actions {
  padding: 0 14px 16px;
}

.home-page .zht-card-actions .zht-quick-buy-button,
.home-page .zht-card-actions .zht-product-link-button {
  min-height: 48px;
  font-size: 15px;
}

.soft-note {
  display: grid;
  gap: 16px;
  margin-block: clamp(28px, 4vw, 54px);
  padding: clamp(34px, 5vw, 64px);
}

.soft-note h2 {
  color: var(--zht-cream);
}

@media (min-width: 1600px) {
  .home-page {
    --home-max: 1560px;
  }

  .concierge-hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  }
}

@media (max-width: 1180px) {
  .concierge-hero,
  .quick-picks-section,
  .order-size-section,
  .guided-choice,
  .delivery-flow-section,
  .workday-section,
  .bundle-path-section,
  .gift-path-section,
  .objection-section {
    grid-template-columns: 1fr;
  }

  .hero-product-visual,
  .need-panel,
  .recommend-card {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-product-visual {
    aspect-ratio: 16 / 9;
  }

  .quick-picks-grid,
  .order-size-grid,
  .guided-steps,
  .delivery-flow-grid,
  .workday-grid,
  .choice-guide-grid,
  .bundle-path-grid,
  .objection-grid,
  .gift-path-points,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-guide-head,
  .quiet-heading {
    grid-template-columns: 1fr;
  }

  .choice-guide-head > span,
  .quiet-heading > span,
  .choice-guide-head h2,
  .quiet-heading h2,
  .choice-guide-head p,
  .quiet-heading p {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .home-page {
    --home-gutter: 14px;
    --home-section-y: 42px;
    --home-card-radius: 22px;
  }

  .concierge-hero {
    padding: 14px;
  }

  .need-panel {
    padding: 18px;
  }

  .need-panel h1 {
    font-size: 38px;
    line-height: 0.96;
  }

  .need-panel p {
    margin-top: 14px;
    font-size: 16px;
  }

  .hero-proof-pills span {
    min-height: 32px;
    font-size: 11px;
  }

  .hero-proof-pills {
    margin-top: 14px;
  }

  .need-options {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .need-options button {
    min-height: 58px;
    padding: 10px 12px;
  }

  .need-options button strong {
    font-size: 18px;
  }

  .recommend-card {
    grid-template-columns: 1fr;
  }

  .recommend-card figure {
    width: min(220px, 72vw);
    justify-self: center;
  }

  .recommend-copy h2,
  .quick-picks-head h2,
  .order-size-head h2,
  .guided-copy h2,
  .delivery-flow-copy h2,
  .workday-copy h2,
  .choice-guide-head h2,
  .bundle-path-copy h2,
  .gift-path-copy h2,
  .objection-copy h2,
  .quiet-heading h2,
  .soft-note h2 {
    font-size: 34px;
    line-height: 1;
  }

  .recommend-insight div,
  .quick-pick-proof div {
    grid-template-columns: 1fr;
  }

  .recommend-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .recommend-actions a,
  .home-page .zht-product-link-button,
  .home-page .zht-quick-buy-button {
    width: 100%;
  }

  .trust-strip,
  .quick-picks-grid,
  .order-size-grid,
  .guided-steps,
  .delivery-flow-grid,
  .workday-grid,
  .choice-guide-grid,
  .bundle-path-grid,
  .objection-grid,
  .gift-path-points,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .quick-picks-section,
  .order-size-section,
  .guided-choice,
  .delivery-flow-section,
  .workday-section,
  .choice-guide-section,
  .bundle-path-section,
  .gift-path-section,
  .quiet-section,
  .objection-section {
    padding: var(--home-section-y) var(--home-gutter);
  }

  .delivery-flow-section,
  .gift-path-section,
  .soft-note {
    width: calc(100% - (var(--home-gutter) * 2));
  }

  .gift-path-card {
    grid-template-columns: 1fr;
  }

  .gift-path-card h3 {
    font-size: 32px;
  }

  .guided-steps article {
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 12px;
  }

  .guided-steps article .step-icon {
    grid-row: 1 / span 3;
  }

  .guided-steps article > span,
  .guided-steps article > strong,
  .guided-steps article > p {
    grid-column: 2;
  }

  .choice-guide-product,
  .bundle-path-products div {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .choice-guide-product figure,
  .bundle-path-products figure {
    width: 58px;
  }
}

/* Catalog page: product-only shop archive. */
.catalog-page {
  --catalog-max: 1500px;
  --catalog-gutter: clamp(18px, 4.4vw, 72px);
  --catalog-radius: 34px;
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 72px);
  padding: clamp(28px, 4vw, 56px) var(--catalog-gutter) clamp(72px, 8vw, 128px);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 90, 43, 0.12), transparent 34%),
    radial-gradient(circle at 94% 18%, rgba(31, 56, 36, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(247, 248, 241, 0.99), rgba(236, 239, 228, 0.78)),
    var(--zht-paper);
  color: var(--zht-ink);
  overflow-x: clip;
}

.catalog-hero,
.catalog-products,
.catalog-page .woocommerce-pagination,
.catalog-page .empty-shop {
  width: min(100%, var(--catalog-max));
  margin-inline: auto;
}

.catalog-hero {
  display: grid;
  gap: clamp(18px, 2.4vw, 34px);
  padding: clamp(34px, 5vw, 78px) clamp(10px, 2.4vw, 42px) clamp(28px, 4.4vw, 64px);
}

.catalog-hero .eyebrow {
  display: none;
}

.catalog-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(76px, 11vw, 178px);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.catalog-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--zht-muted);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 720;
  line-height: 1.28;
}

.catalog-category-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(10px, 2vw, 26px);
  overflow: hidden;
  border: 1px solid rgba(31, 56, 36, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 78px rgba(26, 44, 30, 0.12);
}

.catalog-category-tile {
  position: relative;
  display: grid;
  min-height: clamp(210px, 22vw, 330px);
  align-content: end;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(16px, 1.7vw, 26px);
  color: #fff8ec;
}

.catalog-category-tile + .catalog-category-tile {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.catalog-category-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.catalog-category-tile::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 8, 5, 0.02), rgba(5, 8, 5, 0.56)),
    linear-gradient(90deg, rgba(5, 8, 5, 0.18), rgba(5, 8, 5, 0.02));
}

.catalog-category-tile span {
  max-width: 100%;
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
}

.catalog-category-tile small {
  margin-top: 8px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.16;
}

.catalog-category-tile:hover img,
.catalog-category-tile:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.07);
}

.catalog-products {
  display: grid;
  gap: 18px;
  margin-top: clamp(8px, 2vw, 26px);
}

.catalog-page .catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.8vw, 42px);
  border: 0 !important;
}

.catalog-page .zht-product-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 56, 36, 0.13);
  border-right: 1px solid rgba(31, 56, 36, 0.13);
  border-bottom: 1px solid rgba(31, 56, 36, 0.13);
  border-radius: var(--catalog-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 248, 241, 0.94)),
    var(--zht-paper);
  box-shadow:
    0 28px 74px rgba(26, 44, 30, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.catalog-page .zht-product-card:hover,
.catalog-page .zht-product-card:focus-within {
  border-color: rgba(255, 90, 43, 0.28);
  box-shadow:
    0 34px 86px rgba(26, 44, 30, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-3px);
}

.catalog-page .zht-product-card > a {
  display: grid;
  grid-template-rows: auto;
  align-content: start;
  gap: 14px;
  height: 100%;
  min-width: 0;
  padding: clamp(16px, 1.8vw, 24px);
  color: inherit;
}

.catalog-page .zht-product-card figure {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 56, 36, 0.11);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.92), rgba(236, 239, 228, 0.62)),
    var(--zht-cream);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.catalog-page .zht-product-card img,
.catalog-page .zht-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-page .zht-product-card > a > span {
  display: inline-grid;
  justify-self: start;
  place-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 90, 43, 0.18);
  border-radius: 999px;
  background: rgba(255, 90, 43, 0.09);
  color: var(--zht-accent);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.catalog-page .zht-product-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.catalog-page .zht-card-subtitle {
  color: var(--zht-muted);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.35;
}

.catalog-page .zht-card-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.catalog-page .zht-card-signals small {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(31, 56, 36, 0.13);
  border-radius: 999px;
  background: rgba(247, 248, 241, 0.78);
  color: var(--zht-green);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: none;
}

.catalog-page .zht-card-buy-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 2px;
}

.catalog-page .zht-card-buy-proof small,
.catalog-page .zht-card-fit,
.catalog-page .zht-card-decision {
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.3;
  text-align: left;
  text-transform: none;
}

.catalog-page .zht-card-buy-proof small span {
  color: var(--zht-accent);
  font-weight: 950;
}

.catalog-page .zht-card-fit span {
  display: block;
  margin-bottom: 4px;
  color: var(--zht-accent);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.catalog-page .zht-card-price {
  margin-top: 4px;
  color: var(--zht-ink);
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

.catalog-page .zht-card-actions {
  padding: 0 clamp(16px, 1.8vw, 24px) clamp(18px, 2vw, 26px);
}

.catalog-page .zht-card-actions .zht-product-link-button,
.catalog-page .zht-card-actions .zht-quick-buy-button,
.catalog-page .zht-card-actions .zht-cart-add-button {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 16px;
  line-height: 1.05;
  text-align: center;
  white-space: normal;
}

.catalog-page .zht-card-actions .zht-product-link-button:hover,
.catalog-page .zht-card-actions .zht-product-link-button:focus,
.catalog-page .zht-card-actions .zht-quick-buy-button:hover,
.catalog-page .zht-card-actions .zht-quick-buy-button:focus,
.catalog-page .zht-card-actions .zht-cart-add-button:hover,
.catalog-page .zht-card-actions .zht-cart-add-button:focus {
  border-color: var(--zht-accent);
  background: var(--zht-accent);
}

.catalog-page .woocommerce-pagination {
  margin-top: 28px;
}

.catalog-page .empty-shop {
  display: grid;
  gap: 10px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(31, 56, 36, 0.13);
  border-radius: var(--catalog-radius);
  background: rgba(255, 255, 255, 0.58);
}

.catalog-page {
  --catalog-max: 1520px;
  --catalog-gutter: clamp(32px, 3.2vw, 56px);
  --catalog-radius: 18px;
  min-height: calc(100vh - 66px);
  padding-top: 0;
  background:
    radial-gradient(circle at 4% 8%, rgba(255, 90, 43, 0.08), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(31, 56, 36, 0.08), transparent 32%),
    linear-gradient(180deg, #f9faf4 0%, #f3f5ec 54%, #eef2e8 100%);
}

.catalog-hero {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px clamp(32px, 5vw, 80px);
  align-items: start;
  padding: clamp(30px, 3.2vw, 52px) 0 0;
}

.catalog-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(20px, 2vw, 30px);
  padding-top: clamp(6px, 1vw, 18px);
}

.catalog-hero h1 {
  max-width: 470px;
  font-size: clamp(92px, 10.4vw, 156px);
  line-height: 0.72;
}

.catalog-hero p {
  max-width: 620px;
  font-size: clamp(19px, 1.35vw, 22px);
  line-height: 1.22;
}

.catalog-hero-media {
  position: absolute;
  top: clamp(18px, 3vw, 48px);
  right: 0;
  min-height: clamp(210px, 19vw, 315px);
  width: min(58vw, 760px);
  overflow: hidden;
  border-radius: 0 0 0 72px;
  pointer-events: none;
}

.catalog-hero-media img {
  position: absolute;
  inset: 0 0 auto auto;
  width: 100%;
  height: clamp(250px, 27vw, 410px);
  max-width: none;
  object-fit: cover;
  object-position: right top;
}

.catalog-category-gallery {
  grid-column: 1 / -1;
  gap: 12px;
  margin-top: clamp(8px, 1.2vw, 16px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-category-tile {
  min-height: clamp(165px, 15vw, 232px);
  padding: clamp(16px, 1.4vw, 22px);
  border-radius: 12px;
  box-shadow: 0 16px 42px rgba(24, 32, 22, 0.11);
}

.catalog-category-tile + .catalog-category-tile {
  border-left: 0;
}

.catalog-category-tile::after {
  background:
    linear-gradient(180deg, rgba(4, 5, 4, 0) 24%, rgba(4, 5, 4, 0.68) 100%),
    linear-gradient(90deg, rgba(4, 5, 4, 0.2), rgba(4, 5, 4, 0.03));
}

.catalog-category-tile span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1;
}

.catalog-category-tile span i {
  font-style: normal;
  font-weight: 650;
}

.catalog-category-tile small {
  display: none;
}

.catalog-products {
  margin-top: 20px;
}

.catalog-page .catalog-grid {
  gap: 18px;
}

.catalog-page .zht-product-card {
  --catalog-radius: 18px;
  box-shadow: none;
}

.catalog-page .zht-product-card > a {
  grid-template-columns: minmax(0, 45%) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 20px;
}

.catalog-page .zht-product-card figure {
  height: 100%;
  min-height: 300px;
  aspect-ratio: auto;
  border-radius: 14px;
}

.catalog-page .zht-product-card img,
.catalog-page .zht-product-image {
  object-fit: cover;
}

.catalog-page .zht-card-copy {
  display: grid;
  align-content: start;
  gap: 15px;
  min-width: 0;
}

.catalog-page .zht-card-copy > span {
  display: inline-grid;
  justify-self: start;
  place-items: center;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid rgba(31, 56, 36, 0.15);
  border-radius: 999px;
  background: rgba(247, 248, 241, 0.84);
  color: var(--zht-green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: none;
}

.catalog-page .zht-product-card h3 {
  font-size: clamp(20px, 1.42vw, 24px);
  line-height: 1.02;
}

.catalog-page .zht-card-signals small {
  min-height: 24px;
  padding: 0 8px;
  font-size: 9px;
}

.catalog-page .zht-card-buy-proof small,
.catalog-page .zht-card-fit,
.catalog-page .zht-card-decision {
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.catalog-page .zht-card-buy-proof small span {
  display: block;
  margin-bottom: 2px;
  color: var(--zht-ink);
  font-weight: 900;
}

.catalog-page .zht-card-fit span {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.1;
  text-transform: none;
}

.catalog-page .zht-card-price {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 56, 36, 0.16);
  font-size: 20px;
}

.catalog-page .zht-card-actions {
  padding: 0 20px 20px;
}

.catalog-page .zht-card-actions .zht-product-link-button,
.catalog-page .zht-card-actions .zht-quick-buy-button,
.catalog-page .zht-card-actions .zht-cart-add-button {
  min-height: 42px;
  font-size: 14px;
}

@media (min-width: 1700px) {
  .catalog-page {
    --catalog-max: 1540px;
  }
}

@media (max-width: 980px) {
  .catalog-category-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-category-tile + .catalog-category-tile {
    border-left: 0;
  }

  .catalog-category-tile {
    min-height: 220px;
  }

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

@media (max-width: 760px) {
  .catalog-page {
    --catalog-gutter: 14px;
    --catalog-radius: 28px;
    padding-top: 20px;
  }

  .catalog-hero {
    padding: 22px 2px 24px 10px;
  }

  .catalog-hero h1 {
    font-size: clamp(72px, 24vw, 104px);
    line-height: 0.82;
  }

  .catalog-hero p {
    max-width: 330px;
    font-size: 17px;
  }

  .catalog-category-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 26px;
  }

  .catalog-category-tile:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .catalog-category-tile {
    min-height: 168px;
    padding: 16px;
  }

  .catalog-category-tile span {
    font-size: 24px;
  }

  .catalog-category-tile small {
    font-size: 12px;
  }

  .catalog-page .catalog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .catalog-page .zht-product-card figure {
    aspect-ratio: 1.16 / 1;
    border-radius: 22px;
  }

  .catalog-page .zht-product-card h3 {
    font-size: 28px;
  }
}

/* Product page responsive polish after catalog/product card layers. */
body.single-product,
body.single-product .product-page {
  background: var(--zht-paper);
}

body.single-product .site-header,
body.single-product .product-page,
body.single-product .site-footer {
  width: 100%;
  max-width: none;
}

body.single-product .product-page {
  --product-page-max: 1540px;
  overflow-x: clip;
}

@media (min-width: 1181px) {
  body.single-product .product-hero {
    grid-template-columns: minmax(430px, 0.86fr) minmax(0, 1fr);
    min-height: min(820px, calc(100vh - 72px));
  }

  body.single-product .product-gallery {
    padding-left: max(clamp(34px, 4vw, 58px), calc((100vw - var(--product-page-max)) / 2 + 42px));
    padding-right: clamp(26px, 3.4vw, 58px);
  }

  body.single-product .product-info {
    align-content: center;
    min-height: min(820px, calc(100vh - 72px));
    padding-right: max(clamp(34px, 4.2vw, 68px), calc((100vw - var(--product-page-max)) / 2 + 48px));
    padding-left: clamp(34px, 4.2vw, 68px);
  }

  body.single-product .product-main-image {
    width: min(100%, 720px);
    justify-self: center;
  }

  body.single-product .product-fit-chips {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }
}

@media (min-width: 1700px) {
  body.single-product .product-page {
    --product-page-max: 1640px;
  }

  body.single-product .product-hero {
    grid-template-columns: minmax(520px, 0.9fr) minmax(0, 1fr);
  }

  body.single-product .product-info h1 {
    font-size: clamp(64px, 4.8vw, 96px);
  }
}

@media (min-width: 1181px) and (max-width: 1320px) {
  body.single-product .product-hero {
    grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1fr);
  }

  body.single-product .product-info h1 {
    font-size: clamp(46px, 5.4vw, 72px);
  }

  body.single-product .product-fit-chips {
    grid-template-columns: 1fr;
  }
}

body.single-product .taste-fit-section,
body.single-product .product-pairing,
body.single-product .brew-section,
body.single-product .recommended {
  padding-right: max(clamp(24px, 5vw, 96px), calc((100vw - var(--product-page-max)) / 2 + 48px));
  padding-left: max(clamp(24px, 5vw, 96px), calc((100vw - var(--product-page-max)) / 2 + 48px));
}

body.single-product .brew-section {
  grid-template-columns: minmax(240px, 380px) minmax(0, 760px);
  gap: clamp(30px, 5vw, 72px);
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

body.single-product .brew-section h2 {
  max-width: 780px;
  font-size: clamp(44px, 5.2vw, 86px);
  line-height: 0.9;
  overflow-wrap: normal;
}

body.single-product .brew-section p {
  max-width: 760px;
  margin-top: 18px;
}

body.single-product .cup-row {
  min-width: 0;
  justify-content: center;
  flex-wrap: nowrap;
}

body.single-product .cup-row span {
  flex: 0 1 74px;
}

body.single-product .recommended {
  overflow: hidden;
  padding-bottom: max(clamp(72px, 8vw, 128px), 170px);
  background: var(--zht-paper);
}

body.single-product .recommended .small-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
  margin-top: 34px;
  overflow: visible;
  border: 0;
}

body.single-product .recommended .zht-product-card {
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 56, 36, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 16px 42px rgba(26, 44, 30, 0.07);
}

body.single-product .recommended .zht-product-card > a {
  display: grid;
  grid-template-rows: auto auto minmax(2.08em, auto) minmax(2.7em, auto) auto minmax(76px, auto) auto;
  gap: 10px;
  height: 100%;
  padding: 16px;
}

body.single-product .recommended .zht-product-card figure {
  aspect-ratio: 1.08 / 1;
  margin: 0;
  border-radius: 22px;
}

body.single-product .recommended .zht-product-card h3 {
  display: -webkit-box;
  min-height: 2.08em;
  overflow: hidden;
  line-height: 1.04;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.single-product .recommended .zht-card-subtitle {
  display: -webkit-box;
  min-height: 2.7em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.single-product .recommended .zht-card-signals {
  min-height: 32px;
  align-content: start;
}

body.single-product .recommended .zht-card-buy-proof,
body.single-product .recommended .zht-card-decision,
body.single-product .recommended .zht-card-fit {
  display: none;
}

body.single-product .recommended .zht-card-price {
  align-self: end;
  margin-top: 2px;
}

body.single-product .recommended .zht-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 16px 16px;
}

body.single-product .recommended .zht-card-actions .zht-product-link-button,
body.single-product .recommended .zht-card-actions .zht-quick-buy-button,
body.single-product .recommended .zht-card-actions .zht-cart-add-button {
  min-height: 50px;
  padding-inline: 12px;
  font-size: 14px;
  line-height: 1.08;
  text-align: center;
  white-space: normal;
}

@media (max-width: 1180px) {
  body.single-product .brew-section {
    grid-template-columns: 1fr;
    justify-content: start;
  }

  body.single-product .cup-row {
    justify-content: start;
  }

  body.single-product .recommended .small-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.single-product .taste-fit-section,
  body.single-product .product-pairing,
  body.single-product .brew-section,
  body.single-product .recommended {
    padding-right: 20px;
    padding-left: 20px;
  }

  body.single-product .brew-section h2 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 0.94;
    overflow-wrap: anywhere;
  }

  body.single-product .brew-section p {
    margin-top: 14px;
  }

  body.single-product .recommended .zht-card-actions .zht-product-link-button,
  body.single-product .recommended .zht-card-actions .zht-quick-buy-button,
  body.single-product .recommended .zht-card-actions .zht-cart-add-button {
    min-height: 48px;
    padding-inline: 8px;
    font-size: 13px;
  }

  body.single-product .recommended .small-products {
    grid-template-columns: 1fr;
  }
}

/* Cart redesign: standard WooCommerce cart, styled to the current Zen Heart design code. */
body.woocommerce-cart .shop-page {
  --cart-shell-max: min(100%, 1720px);
  --cart-summary-track: clamp(360px, 26vw, 500px);
  width: 100%;
  min-height: calc(100vh - 72px);
  padding: clamp(34px, 5vw, 76px) clamp(16px, 4vw, 64px);
  background:
    linear-gradient(90deg, rgba(247, 248, 241, 0.96), rgba(247, 248, 241, 0.82)),
    url("../images/zen-heart-hero-wide-v2.png") center / cover no-repeat;
}

body.woocommerce-cart .shop-page > .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--cart-summary-track);
  gap: clamp(18px, 2.8vw, 34px);
  max-width: var(--cart-shell-max);
  margin-inline: auto;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(14, 25, 14, 0.13);
  border-radius: 34px;
  background: rgba(247, 248, 241, 0.82);
  box-shadow: 0 24px 70px rgba(8, 17, 11, 0.1);
  backdrop-filter: blur(14px);
}

body.woocommerce-cart .shop-page h1,
body.woocommerce-cart .shop-page .wp-block-heading,
body.woocommerce-cart .shop-page .woocommerce-notices-wrapper,
body.woocommerce-cart .shop-page .woocommerce-message,
body.woocommerce-cart .shop-page .woocommerce-info,
body.woocommerce-cart .shop-page .woocommerce-error,
body.woocommerce-cart .shop-page .cart-empty,
body.woocommerce-cart .shop-page .return-to-shop {
  grid-column: 1 / -1;
}

body.woocommerce-cart .shop-page h1,
body.woocommerce-cart .shop-page .wp-block-heading {
  max-width: 980px;
  margin: 0;
  font-size: clamp(46px, 6.4vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.woocommerce-cart .shop-page h1::before,
body.woocommerce-cart .shop-page .wp-block-heading::before {
  content: "кошик";
  display: block;
  margin-bottom: 10px;
  color: var(--zht-accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart-collaterals .cart_totals,
body.woocommerce-cart .wc-block-cart__main,
body.woocommerce-cart .wc-block-cart__sidebar {
  border: 1px solid rgba(14, 25, 14, 0.13);
  border-radius: 30px;
  background: rgba(255, 248, 236, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

body.woocommerce-cart .woocommerce-cart-form {
  grid-column: 1;
  min-width: 0;
  padding: clamp(14px, 2vw, 22px);
}

body.woocommerce-cart .cart-collaterals {
  grid-column: 2;
  display: block;
  align-self: start;
  margin-top: 0;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
  position: sticky;
  top: 104px;
  float: none;
  width: 100%;
  padding: clamp(18px, 2.4vw, 28px);
  background:
    linear-gradient(160deg, rgba(247, 248, 241, 0.94), rgba(255, 248, 236, 0.74)),
    rgba(247, 248, 241, 0.92);
  box-shadow: 0 18px 48px rgba(8, 17, 11, 0.08);
}

body.woocommerce-cart .cart_totals h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.woocommerce-cart .woocommerce-cart-form table.cart,
body.woocommerce-cart table.shop_table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0 12px;
  table-layout: auto;
  background: transparent;
}

body.woocommerce-cart table.cart thead th,
body.woocommerce-cart table.shop_table thead th {
  padding: 0 16px 4px;
  border: 0;
  color: var(--zht-muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

body.woocommerce-cart table.cart tbody tr.cart_item td {
  border-top: 1px solid rgba(14, 25, 14, 0.12);
  border-bottom: 1px solid rgba(14, 25, 14, 0.12);
  background: rgba(255, 255, 255, 0.56);
  vertical-align: middle;
}

body.woocommerce-cart table.cart tbody tr.cart_item td:first-child {
  border-left: 1px solid rgba(14, 25, 14, 0.12);
  border-radius: 24px 0 0 24px;
}

body.woocommerce-cart table.cart tbody tr.cart_item td:last-child {
  border-right: 1px solid rgba(14, 25, 14, 0.12);
  border-radius: 0 24px 24px 0;
}

body.woocommerce-cart table.cart td,
body.woocommerce-cart table.shop_table td,
body.woocommerce-cart table.shop_table th {
  padding: 16px;
  border-color: rgba(14, 25, 14, 0.12);
  color: var(--zht-ink);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.24;
}

body.woocommerce-cart table.cart td.product-remove {
  width: 54px;
  padding-right: 6px;
}

body.woocommerce-cart table.cart a.remove {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 90, 43, 0.28);
  border-radius: 999px;
  background: rgba(255, 90, 43, 0.08);
  color: var(--zht-accent) !important;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

body.woocommerce-cart table.cart a.remove:hover,
body.woocommerce-cart table.cart a.remove:focus {
  background: var(--zht-accent);
  color: #fff !important;
}

body.woocommerce-cart table.cart td.product-thumbnail {
  width: 124px;
}

body.woocommerce-cart table.cart td.product-name {
  min-width: clamp(180px, 17vw, 320px);
}

body.woocommerce-cart .woocommerce-cart-form table.cart img {
  width: 104px;
  height: 104px;
  border: 1px solid rgba(14, 25, 14, 0.12);
  border-radius: 22px;
  background: var(--zht-cream);
  object-fit: cover;
}

body.woocommerce-cart table.cart td.product-name a {
  color: var(--zht-ink);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

body.woocommerce-cart table.cart td.product-price,
body.woocommerce-cart table.cart td.product-subtotal,
body.woocommerce-cart table.shop_table .amount {
  color: var(--zht-green);
  font-weight: 950;
  white-space: nowrap;
}

body.woocommerce-cart table.cart td.product-price,
body.woocommerce-cart table.cart td.product-subtotal {
  min-width: 108px;
}

body.woocommerce-cart table.cart .quantity {
  display: inline-flex;
  align-items: center;
}

body.woocommerce-cart table.cart .quantity .qty {
  width: 78px;
  min-height: 48px;
  padding-inline: 12px;
  border: 1px solid rgba(14, 25, 14, 0.18);
  border-radius: 999px;
  background: rgba(247, 248, 241, 0.88);
  color: var(--zht-ink);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

body.woocommerce-cart table.cart td.actions {
  padding: 18px 0 0;
  border: 0;
  background: transparent;
}

body.woocommerce-cart table.cart td.actions::before {
  display: none;
}

body.woocommerce-cart table.cart td.actions .coupon {
  display: inline-grid;
  grid-template-columns: minmax(180px, 280px) auto;
  gap: 10px;
  align-items: center;
  margin-right: 10px;
}

body.woocommerce-cart .coupon label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

body.woocommerce-cart table.cart td.actions .coupon .input-text,
body.woocommerce-cart input.input-text {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(14, 25, 14, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--zht-ink);
  font-size: 15px;
  font-weight: 800;
}

body.woocommerce-cart .woocommerce a.button,
body.woocommerce-cart .woocommerce button.button,
body.woocommerce-cart .woocommerce input.button,
body.woocommerce-cart .woocommerce .checkout-button,
body.woocommerce-cart .shop-page .wc-block-components-button,
body.woocommerce-cart .shop-page .wc-block-cart__submit-button {
  min-height: 54px;
  border: 1px solid var(--zht-ink);
  border-radius: 999px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.08;
  text-align: center;
  white-space: normal;
}

body.woocommerce-cart .woocommerce a.button:hover,
body.woocommerce-cart .woocommerce button.button:hover,
body.woocommerce-cart .woocommerce input.button:hover,
body.woocommerce-cart .woocommerce .checkout-button:hover,
body.woocommerce-cart .shop-page .wc-block-components-button:hover,
body.woocommerce-cart .shop-page .wc-block-cart__submit-button:hover {
  border-color: var(--zht-accent);
  background: var(--zht-accent);
  color: #fff;
}

body.woocommerce-cart .woocommerce button.button:disabled,
body.woocommerce-cart .woocommerce button.button:disabled[disabled],
body.woocommerce-cart .woocommerce input.button:disabled,
body.woocommerce-cart .woocommerce input.button:disabled[disabled] {
  border-color: rgba(14, 25, 14, 0.12);
  background: rgba(14, 25, 14, 0.1);
  color: rgba(5, 8, 5, 0.48) !important;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  width: 100%;
  min-height: 64px;
  background: var(--zht-accent);
  border-color: var(--zht-accent);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 16px 34px rgba(255, 90, 43, 0.24);
}

body.woocommerce-cart .cart_totals table.shop_table {
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(14, 25, 14, 0.12);
  border-radius: 24px;
  background: rgba(255, 248, 236, 0.5);
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
  padding: 14px 16px;
  border-right: 0;
  color: var(--zht-ink);
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td,
body.woocommerce-cart .cart_totals .order-total .amount {
  color: var(--zht-ink);
  font-size: 24px;
  font-weight: 950;
}

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(31, 56, 36, 0.15);
  border-radius: 24px;
  background: rgba(255, 248, 236, 0.76);
  color: var(--zht-ink);
  font-weight: 820;
  line-height: 1.32;
}

body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-cart .woocommerce-info::before,
body.woocommerce-cart .woocommerce-error::before {
  display: none;
}

body.woocommerce-cart .cart-empty {
  display: grid;
  min-height: 220px;
  margin: 0;
  place-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(14, 25, 14, 0.13);
  border-radius: 30px;
  background: rgba(255, 248, 236, 0.64);
  color: var(--zht-ink);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

body.woocommerce-cart .return-to-shop {
  margin: 0;
  text-align: center;
}

/* WooCommerce Blocks cart support. */
body.woocommerce-cart .shop-page .wc-block-cart {
  display: grid;
  gap: clamp(18px, 2.8vw, 34px);
  margin: 0;
}

body.woocommerce-cart .shop-page .wc-block-components-sidebar-layout {
  gap: clamp(18px, 2.8vw, 34px);
}

body.woocommerce-cart .shop-page .wc-block-cart__main,
body.woocommerce-cart .shop-page .wc-block-cart__sidebar {
  padding: clamp(18px, 2.4vw, 28px);
}

body.woocommerce-cart .shop-page .wc-block-cart__sidebar {
  align-self: start;
  background:
    linear-gradient(160deg, rgba(247, 248, 241, 0.94), rgba(255, 248, 236, 0.74)),
    rgba(247, 248, 241, 0.92);
  box-shadow: 0 18px 48px rgba(8, 17, 11, 0.08);
}

body.woocommerce-cart .shop-page .wc-block-cart-items,
body.woocommerce-cart .shop-page .wc-block-cart-items__row {
  border-color: rgba(14, 25, 14, 0.12);
}

body.woocommerce-cart .shop-page .wc-block-cart-item__image img {
  border: 1px solid rgba(14, 25, 14, 0.12);
  border-radius: 22px;
  background: var(--zht-cream);
}

body.woocommerce-cart .shop-page .wc-block-cart-item__product a,
body.woocommerce-cart .shop-page .wc-block-cart-item__product .wc-block-components-product-name {
  color: var(--zht-ink);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

body.woocommerce-cart .shop-page .wc-block-components-quantity-selector {
  min-height: 48px;
  border-color: rgba(14, 25, 14, 0.18);
  border-radius: 999px;
  background: rgba(247, 248, 241, 0.88);
}

@media (min-width: 1800px) {
  body.woocommerce-cart .shop-page {
    --cart-shell-max: min(92vw, 1900px);
    --cart-summary-track: clamp(420px, 24vw, 560px);
    padding-inline: clamp(30px, 3.4vw, 86px);
  }
}

@media (max-width: 1360px) {
  body.woocommerce-cart .shop-page > .woocommerce {
    grid-template-columns: 1fr;
  }

  body.woocommerce-cart .woocommerce-cart-form,
  body.woocommerce-cart .cart-collaterals {
    grid-column: 1;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals {
    position: static;
  }
}

@media (max-width: 900px) {
  body.woocommerce-cart .shop-page {
    --cart-shell-max: 100%;
    padding: 24px 12px 42px;
  }

  body.woocommerce-cart .shop-page > .woocommerce {
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.woocommerce-cart .shop-page h1,
  body.woocommerce-cart .shop-page .wp-block-heading {
    padding-inline: 6px;
    font-size: clamp(42px, 13vw, 58px);
  }

  body.woocommerce-cart .woocommerce-cart-form,
  body.woocommerce-cart .cart-collaterals .cart_totals,
  body.woocommerce-cart .wc-block-cart__main,
  body.woocommerce-cart .wc-block-cart__sidebar,
  body.woocommerce-cart .cart-empty {
    border-radius: 24px;
  }

  body.woocommerce-cart .woocommerce-cart-form {
    padding: 12px;
    overflow: visible;
  }

  body.woocommerce-cart .woocommerce-cart-form table.cart,
  body.woocommerce-cart .woocommerce-cart-form table.cart thead,
  body.woocommerce-cart .woocommerce-cart-form table.cart tbody,
  body.woocommerce-cart .woocommerce-cart-form table.cart tfoot,
  body.woocommerce-cart .woocommerce-cart-form table.cart tr,
  body.woocommerce-cart .woocommerce-cart-form table.cart th,
  body.woocommerce-cart .woocommerce-cart-form table.cart td {
    display: block;
    width: 100%;
  }

  body.woocommerce-cart .woocommerce-cart-form table.cart thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  body.woocommerce-cart table.cart tbody tr.cart_item {
    position: relative;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-areas:
      "name name"
      "thumb price"
      "thumb quantity"
      "thumb subtotal";
    gap: 10px 14px;
    margin-bottom: 12px;
    padding: 14px;
    border: 1px solid rgba(14, 25, 14, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.58);
    align-items: start;
  }

  body.woocommerce-cart table.cart tbody tr.cart_item td {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  body.woocommerce-cart table.cart tbody tr.cart_item td:first-child,
  body.woocommerce-cart table.cart tbody tr.cart_item td:last-child {
    border: 0;
    border-radius: 0;
  }

  body.woocommerce-cart table.cart td.product-remove {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    width: auto;
  }

  body.woocommerce-cart table.cart td.product-remove::before,
  body.woocommerce-cart table.cart td.product-thumbnail::before,
  body.woocommerce-cart table.cart td.product-name::before {
    display: none !important;
    content: none !important;
  }

  body.woocommerce-cart table.cart td.product-thumbnail {
    grid-area: thumb;
    width: auto;
  }

  body.woocommerce-cart .woocommerce-cart-form table.cart img {
    width: 96px;
    height: 96px;
    border-radius: 20px;
  }

  body.woocommerce-cart table.cart td.product-name {
    grid-area: name;
    min-height: 34px;
    padding-left: 42px;
    padding-right: 0;
    min-width: 0;
    text-align: left;
  }

  body.woocommerce-cart table.cart td.product-name a {
    display: inline-block;
    max-width: 100%;
    font-size: clamp(18px, 5.5vw, 24px);
    line-height: 1.02;
    text-align: left;
  }

  body.woocommerce-cart table.cart td.product-price {
    grid-area: price;
  }

  body.woocommerce-cart table.cart td.product-quantity {
    grid-area: quantity;
  }

  body.woocommerce-cart table.cart td.product-subtotal {
    grid-area: subtotal;
  }

  body.woocommerce-cart table.cart td.product-price,
  body.woocommerce-cart table.cart td.product-quantity,
  body.woocommerce-cart table.cart td.product-subtotal {
    display: grid;
    grid-template-columns: minmax(86px, 0.45fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-width: 0;
  }

  body.woocommerce-cart table.cart td.product-price::before,
  body.woocommerce-cart table.cart td.product-quantity::before,
  body.woocommerce-cart table.cart td.product-subtotal::before {
    content: attr(data-title);
    color: var(--zht-accent);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
    overflow-wrap: anywhere;
  }

  body.woocommerce-cart table.cart td.product-price > *,
  body.woocommerce-cart table.cart td.product-quantity > *,
  body.woocommerce-cart table.cart td.product-subtotal > * {
    justify-self: end;
    min-width: 0;
    text-align: right;
  }

  body.woocommerce-cart table.cart .quantity .qty {
    width: 72px;
    min-height: 42px;
  }

  body.woocommerce-cart table.cart tr:last-child,
  body.woocommerce-cart table.cart td.actions {
    display: block;
    margin-top: 4px;
  }

  body.woocommerce-cart table.cart td.actions {
    padding: 0;
  }

  body.woocommerce-cart table.cart td.actions .coupon {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0 0 8px;
  }

  body.woocommerce-cart table.cart td.actions .coupon .input-text,
  body.woocommerce-cart table.cart td.actions .coupon .button,
  body.woocommerce-cart table.cart td.actions > .button {
    width: 100%;
    min-width: 0;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals {
    padding: 18px;
  }

  body.woocommerce-cart .cart_totals table.shop_table th,
  body.woocommerce-cart .cart_totals table.shop_table td {
    display: table-cell;
    width: auto;
    padding: 12px;
  }

  body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    min-height: 60px;
    font-size: 17px;
  }

  body.woocommerce-cart .shop-page .wc-block-cart__main,
  body.woocommerce-cart .shop-page .wc-block-cart__sidebar {
    padding: 16px;
  }
}

@media (max-width: 430px) {
  body.woocommerce-cart .shop-page {
    padding-inline: 10px;
  }

  body.woocommerce-cart .woocommerce-cart-form {
    padding: 10px;
  }

  body.woocommerce-cart table.cart tbody tr.cart_item {
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-areas:
      "name name"
      "thumb price"
      "thumb quantity"
      "thumb subtotal";
    gap: 9px 12px;
    padding: 12px;
  }

  body.woocommerce-cart .woocommerce-cart-form table.cart img {
    width: 86px;
    height: 86px;
  }

  body.woocommerce-cart table.cart a.remove {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  body.woocommerce-cart table.cart td.product-remove {
    top: 15px;
    left: 15px;
  }

  body.woocommerce-cart table.cart td.product-price,
  body.woocommerce-cart table.cart td.product-quantity,
  body.woocommerce-cart table.cart td.product-subtotal {
    grid-template-columns: minmax(76px, 0.46fr) minmax(0, 1fr);
    gap: 8px;
  }

  body.woocommerce-cart table.cart td.product-name a {
    font-size: clamp(18px, 5.2vw, 22px);
  }

  body.woocommerce-cart .cart_totals h2 {
    font-size: clamp(28px, 8.4vw, 38px);
  }
}

/* Cart page uses the content-page template on live; keep it aligned with the cart shell rules above. */
body.woocommerce-cart .site-header,
body.woocommerce-cart .site-footer {
  width: 100%;
  max-width: none;
}

body.woocommerce-cart .site-header {
  padding-inline: clamp(22px, 4vw, 80px);
}

body.woocommerce-cart .site-footer {
  padding-inline: clamp(28px, 5vw, 96px);
}

body.woocommerce-cart .content-page {
  --cart-shell-max: min(100%, 1720px);
  --cart-summary-track: clamp(360px, 26vw, 500px);
  width: 100%;
  max-width: none;
  padding: clamp(34px, 5vw, 76px) clamp(16px, 4vw, 64px);
}

body.woocommerce-cart .content-article {
  width: min(100%, var(--cart-shell-max));
  max-width: var(--cart-shell-max);
  margin-inline: auto;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

body.woocommerce-cart .content-page-product-code .entry-content {
  width: 100%;
  max-width: none;
}

body.woocommerce-cart .content-page-product-code .entry-content > .woocommerce {
  width: 100%;
}

body.woocommerce-cart .content-page h1 {
  max-width: 980px;
  margin: 0 0 clamp(18px, 3vw, 34px);
  font-size: clamp(46px, 6.4vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
}

body.woocommerce-cart .content-page h1::before {
  content: "кошик";
  display: block;
  margin-bottom: 10px;
  color: var(--zht-accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

body.woocommerce-cart .content-page .entry-content > .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--cart-summary-track);
  gap: clamp(18px, 2.8vw, 34px);
  max-width: none;
  margin: 0;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(14, 25, 14, 0.13);
  border-radius: 34px;
  background: rgba(247, 248, 241, 0.82);
  box-shadow: 0 24px 70px rgba(8, 17, 11, 0.1);
  backdrop-filter: blur(14px);
}

@media (min-width: 1800px) {
  body.woocommerce-cart .content-page {
    --cart-shell-max: min(92vw, 1900px);
    --cart-summary-track: clamp(420px, 24vw, 560px);
    padding-inline: clamp(30px, 3.4vw, 86px);
  }
}

@media (max-width: 1360px) {
  body.woocommerce-cart .content-page .entry-content > .woocommerce {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body.woocommerce-cart .content-page {
    --cart-shell-max: 100%;
    padding: 24px 12px 42px;
  }

  body.woocommerce-cart .content-page h1 {
    padding-inline: 6px;
    font-size: clamp(42px, 13vw, 58px);
  }

  body.woocommerce-cart .content-page .entry-content > .woocommerce {
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
}

@media (max-width: 430px) {
  body.woocommerce-cart .content-page {
    padding-inline: 10px;
  }
}

@media (max-width: 900px) {
  body.woocommerce-cart .cart_totals table.shop_table tr {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    align-items: stretch;
  }

  body.woocommerce-cart .cart_totals table.shop_table th,
  body.woocommerce-cart .cart_totals table.shop_table td {
    display: flex;
    width: auto;
    min-width: 0;
    align-items: center;
    padding: 12px 14px;
    overflow-wrap: anywhere;
  }

  body.woocommerce-cart .cart_totals table.shop_table td::before {
    display: none !important;
    content: none !important;
  }

  body.woocommerce-cart .cart_totals table.shop_table th {
    justify-content: flex-start;
    overflow-wrap: normal;
    word-break: normal;
  }

  body.woocommerce-cart .cart_totals table.shop_table td {
    justify-content: flex-end;
    gap: 6px;
    text-align: right;
  }

  body.woocommerce-cart .cart_totals table.shop_table td strong {
    min-width: 0;
  }

  body.woocommerce-cart .cart_totals .order-total th,
  body.woocommerce-cart .cart_totals .order-total td,
  body.woocommerce-cart .cart_totals .order-total .amount {
    font-size: clamp(24px, 7.2vw, 36px);
    line-height: 1.05;
  }

  body.woocommerce-cart .cart_totals .order-total th {
    font-size: clamp(18px, 5.4vw, 26px);
  }
}

@media (max-width: 430px) {
  body.woocommerce-cart .cart_totals table.shop_table tr {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  }

  body.woocommerce-cart .cart_totals table.shop_table th,
  body.woocommerce-cart .cart_totals table.shop_table td {
    padding: 10px 12px;
  }

  body.woocommerce-cart .cart_totals .order-total th,
  body.woocommerce-cart .cart_totals .order-total td,
  body.woocommerce-cart .cart_totals .order-total .amount {
    font-size: clamp(22px, 7vw, 30px);
  }

  body.woocommerce-cart .cart_totals .order-total th {
    font-size: clamp(18px, 5vw, 24px);
  }
}

/* Tea Finder full redesign */
.site-pick-link,
.drawer-actions .drawer-pick-link,
.recommend-finder-link,
.tea-finder-start-link {
  border-color: rgba(255, 90, 43, 0.82) !important;
  background: var(--zht-accent) !important;
  color: #fff !important;
  box-shadow:
    0 0 0 1px rgba(255, 90, 43, 0.18),
    0 16px 36px rgba(255, 90, 43, 0.26),
    0 0 28px rgba(255, 90, 43, 0.2);
}

.site-pick-link:hover,
.site-pick-link:focus,
.drawer-actions .drawer-pick-link:hover,
.drawer-actions .drawer-pick-link:focus,
.recommend-finder-link:hover,
.recommend-finder-link:focus,
.tea-finder-start-link:hover,
.tea-finder-start-link:focus {
  background: #ff4f24 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 90, 43, 0.26),
    0 20px 44px rgba(255, 90, 43, 0.34),
    0 0 36px rgba(255, 90, 43, 0.26);
}

.tea-finder-page {
  --finder-max: 1720px;
  --finder-gutter: clamp(18px, 4.2vw, 76px);
  --finder-section-y: clamp(42px, 5vw, 86px);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(247, 248, 241, 0.98), rgba(236, 239, 228, 0.72)),
    var(--zht-paper);
}

body.page-template-page-tea-finder .site-header {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 2200px) / 2 + 24px));
}

.tea-finder-page *,
.tea-finder-page *::before,
.tea-finder-page *::after {
  letter-spacing: 0;
}

.tea-finder-page > section {
  width: min(100%, var(--finder-max));
  margin-inline: auto;
}

.tea-finder-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.32fr);
  gap: clamp(18px, 3vw, 46px);
  align-items: end;
  min-height: 0;
  padding: clamp(56px, 6vw, 110px) var(--finder-gutter) clamp(34px, 5vw, 76px);
  border-bottom: 0;
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 90, 43, 0.16), transparent 28%),
    linear-gradient(120deg, rgba(247, 248, 241, 0.98), rgba(223, 229, 216, 0.82));
}

.tea-finder-hero-copy {
  display: grid;
  max-width: 1080px;
  gap: 18px;
}

.tea-finder-hero-copy > span,
.tea-finder-flow-head > span,
.tea-finder-step-head span,
.tea-finder-result-kicker span,
.tea-finder-budget > span,
.tea-finder-purchase-head span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.tea-finder-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(58px, 7.4vw, 118px);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tea-finder-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--zht-muted);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 760;
  line-height: 1.42;
}

.tea-finder-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.tea-finder-start-link,
.tea-finder-shop-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--zht-line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.tea-finder-shop-link {
  background: rgba(255, 255, 255, 0.54);
  color: var(--zht-ink);
}

.tea-finder-hero-panel {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(31, 56, 36, 0.14);
  border-radius: 28px;
  background: rgba(255, 248, 236, 0.7);
  box-shadow: 0 18px 44px rgba(26, 44, 30, 0.08);
}

.tea-finder-hero-panel strong {
  color: var(--zht-ink);
  font-size: 34px;
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.tea-finder-hero-panel span {
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--zht-green);
  font-size: 13px;
  font-weight: 880;
  line-height: 1.12;
  text-transform: none;
}

.tea-finder-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.54fr);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: start;
  padding: var(--finder-section-y) var(--finder-gutter);
}

.tea-finder-controls {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.tea-finder-flow-head,
.tea-finder-step,
.tea-finder-details,
.tea-finder-result,
.tea-finder-purchase-grid article,
.tea-finder-empty {
  min-width: 0;
  border: 1px solid rgba(31, 56, 36, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 42px rgba(26, 44, 30, 0.07);
}

.tea-finder-flow-head {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 3vw, 34px);
}

.tea-finder-flow-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--zht-ink);
  font-size: clamp(36px, 4.2vw, 68px);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tea-finder-flow-head p {
  max-width: 740px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.42;
}

.tea-finder-step,
.tea-finder-details {
  padding: clamp(18px, 2.2vw, 26px);
}

.tea-finder-step-head {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 16px;
}

.tea-finder-step-head h3 {
  margin: 0;
  color: var(--zht-ink);
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.tea-finder-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  min-width: 0;
}

.tea-finder-options button {
  display: grid;
  gap: 4px;
  min-height: 54px;
  min-width: 0;
  align-content: center;
  justify-items: start;
  padding: 13px 16px;
  border: 1px solid rgba(31, 56, 36, 0.13);
  border-radius: 18px;
  background: rgba(255, 248, 236, 0.62);
  color: var(--zht-green);
  font-size: 15px;
  font-weight: 920;
  line-height: 1.08;
  text-align: left;
  overflow-wrap: anywhere;
}

.tea-finder-options button:hover,
.tea-finder-options button:focus,
.tea-finder-options button.is-active {
  border-color: rgba(255, 90, 43, 0.72);
  background: var(--zht-ink);
  color: var(--zht-paper);
}

.tea-finder-options button span {
  color: var(--zht-accent);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.tea-finder-options button strong {
  color: inherit;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.02;
}

.tea-finder-options button small {
  color: inherit;
  opacity: 0.72;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.18;
}

.tea-finder-options.is-card-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tea-finder-options.is-card-options button {
  min-height: 124px;
  padding: 18px;
  border-radius: 24px;
}

.tea-finder-options.is-meter-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tea-finder-details {
  display: grid;
  gap: 18px;
}

.tea-finder-details summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--zht-ink);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.tea-finder-details summary::-webkit-details-marker {
  display: none;
}

.tea-finder-details summary::after {
  content: "+";
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(31, 56, 36, 0.14);
  border-radius: 999px;
  color: var(--zht-accent);
  background: rgba(255, 248, 236, 0.62);
}

.tea-finder-details[open] summary::after {
  content: "-";
}

.tea-finder-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tea-finder-detail-grid label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  min-height: 58px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(31, 56, 36, 0.13);
  border-radius: 20px;
  background: rgba(255, 248, 236, 0.62);
  color: var(--zht-green);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.18;
}

.tea-finder-detail-grid input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--zht-accent);
}

.tea-finder-budget {
  display: grid;
  gap: 10px;
}

.tea-finder-result {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2vw, 26px);
  background: rgba(255, 248, 236, 0.72);
}

.tea-finder-result-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tea-finder-result-kicker strong {
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--zht-green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.tea-finder-result figure {
  display: grid;
  aspect-ratio: 1.12 / 0.78;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(31, 56, 36, 0.1);
  border-radius: 24px;
  background: #fff;
}

.tea-finder-result img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tea-finder-result-copy {
  display: grid;
  gap: 12px;
}

.tea-finder-result h2 {
  margin: 0;
  color: var(--zht-ink);
  font-size: clamp(34px, 3.4vw, 58px);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tea-finder-result p {
  margin: 0;
  color: var(--zht-muted);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.36;
}

.tea-finder-result-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tea-finder-result-chips span {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--zht-green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}

.tea-finder-match {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
}

.tea-finder-match strong,
.tea-finder-alternatives > strong {
  color: var(--zht-ink);
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.tea-finder-match ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tea-finder-match li {
  position: relative;
  min-height: 20px;
  padding-left: 20px;
  color: var(--zht-green);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.22;
}

.tea-finder-match li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--zht-accent);
  border-radius: 50%;
}

.tea-finder-result dl {
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.44);
}

.tea-finder-result dl div {
  display: grid;
  grid-template-columns: minmax(76px, 0.28fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border-bottom: 1px solid rgba(31, 56, 36, 0.1);
}

.tea-finder-result dl div:last-child {
  border-bottom: 0;
}

.tea-finder-result dt,
.tea-finder-result dd {
  margin: 0;
  min-width: 0;
  font-size: 13px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.tea-finder-result dt {
  color: var(--zht-accent);
  font-weight: 950;
  text-transform: uppercase;
}

.tea-finder-result dd {
  color: var(--zht-ink);
  font-weight: 900;
}

.tea-finder-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.tea-finder-actions .zht-quick-buy-button,
.tea-finder-actions .zht-product-link-button,
.tea-finder-purchase-grid .zht-quick-buy-button,
.tea-finder-purchase-grid .zht-product-link-button {
  width: 100%;
  min-height: 52px;
  margin-top: 0;
  border-radius: 999px;
  text-align: center;
}

.tea-finder-actions .zht-quick-buy-button,
.tea-finder-purchase-grid .zht-quick-buy-button {
  border-color: var(--zht-accent);
  background: var(--zht-accent);
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 90, 43, 0.22);
}

.tea-finder-actions .zht-product-link-button,
.tea-finder-purchase-grid .zht-product-link-button {
  border-color: rgba(8, 14, 9, 0.82);
  background: transparent;
  color: var(--zht-ink);
}

.tea-finder-alternatives {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 56, 36, 0.12);
}

.tea-finder-alternatives > div {
  display: grid;
  gap: 8px;
}

.tea-finder-alternatives a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 4px 10px;
  align-items: center;
  min-height: 74px;
  padding: 10px;
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.tea-finder-alternatives a:hover,
.tea-finder-alternatives a:focus {
  border-color: rgba(255, 90, 43, 0.68);
}

.tea-finder-alternatives img {
  grid-row: 1 / span 2;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: cover;
}

.tea-finder-alternatives a span,
.tea-finder-alternatives a strong {
  grid-column: 2;
  min-width: 0;
}

.tea-finder-alternatives a span {
  color: var(--zht-accent);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.tea-finder-alternatives a strong {
  color: var(--zht-ink);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.tea-finder-alternatives a small {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: var(--zht-green);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.tea-finder-help {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(31, 56, 36, 0.12);
  font-size: 14px !important;
}

.tea-finder-purchase-path {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
  padding: 0 var(--finder-gutter) var(--finder-section-y);
}

.tea-finder-purchase-head {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
}

.tea-finder-purchase-head h2 {
  margin: 0;
  color: var(--zht-ink);
  font-size: clamp(38px, 4.6vw, 76px);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.tea-finder-purchase-head p {
  max-width: 560px;
  margin: 0;
  color: var(--zht-muted);
  font-size: 17px;
  font-weight: 740;
  line-height: 1.42;
}

.tea-finder-purchase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  background: transparent;
}

.tea-finder-purchase-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 14px;
  min-height: 330px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.54);
}

.tea-finder-purchase-grid article > span {
  color: var(--zht-accent);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.tea-finder-purchase-grid strong {
  color: var(--zht-ink);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tea-finder-purchase-grid p {
  margin: 0;
  color: var(--zht-muted);
  font-size: 15px;
  font-weight: 740;
  line-height: 1.36;
}

.tea-finder-purchase-grid small {
  display: block;
  min-height: 40px;
  color: var(--zht-green);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

@media (min-width: 1800px) {
  .tea-finder-page {
    --finder-max: 2200px;
  }

  .tea-finder-workspace {
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.52fr);
  }
}

@media (max-width: 1180px) {
  .tea-finder-hero,
  .tea-finder-workspace,
  .tea-finder-purchase-path {
    grid-template-columns: 1fr;
  }

  .tea-finder-hero-panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }

  .tea-finder-hero-panel strong {
    font-size: 28px;
  }

  .tea-finder-result,
  .tea-finder-purchase-head {
    position: static;
  }

  .tea-finder-result {
    grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
    align-items: start;
  }

  .tea-finder-result-kicker,
  .tea-finder-alternatives,
  .tea-finder-help {
    grid-column: 1 / -1;
  }

  .tea-finder-purchase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .tea-finder-hero-panel,
  .tea-finder-result,
  .tea-finder-purchase-grid {
    grid-template-columns: 1fr;
  }

  .tea-finder-options.is-card-options,
  .tea-finder-detail-grid {
    grid-template-columns: 1fr;
  }

  .tea-finder-purchase-grid article {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .tea-finder-page {
    --finder-gutter: 16px;
    --finder-section-y: 40px;
  }

  .tea-finder-hero {
    padding-top: 42px;
  }

  .tea-finder-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.94;
  }

  .tea-finder-hero p,
  .tea-finder-flow-head p,
  .tea-finder-purchase-head p {
    font-size: 16px;
  }

  .tea-finder-hero-actions,
  .tea-finder-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tea-finder-start-link,
  .tea-finder-shop-link {
    width: 100%;
  }

  .tea-finder-hero-panel,
  .tea-finder-flow-head,
  .tea-finder-step,
  .tea-finder-details,
  .tea-finder-result,
  .tea-finder-purchase-grid article {
    border-radius: 24px;
  }

  .tea-finder-flow-head,
  .tea-finder-step,
  .tea-finder-details,
  .tea-finder-result {
    padding: 18px;
  }

  .tea-finder-flow-head h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .tea-finder-step-head {
    align-items: flex-start;
  }

  .tea-finder-step-head h3,
  .tea-finder-details summary {
    font-size: 22px;
  }

  .tea-finder-options,
  .tea-finder-options.is-meter-options {
    grid-template-columns: 1fr;
  }

  .tea-finder-options button,
  .tea-finder-options.is-card-options button {
    width: 100%;
    min-height: 54px;
    padding: 13px 14px;
    border-radius: 18px;
  }

  .tea-finder-options.is-card-options button {
    min-height: 104px;
  }

  .tea-finder-detail-grid label {
    align-items: start;
    min-height: 54px;
  }

  .tea-finder-budget {
    gap: 12px;
    margin-top: 18px;
  }

  .tea-finder-budget > span {
    padding-top: 2px;
  }

  .tea-finder-result figure {
    aspect-ratio: 1 / 0.78;
  }

  .tea-finder-result h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .tea-finder-result dl div {
    grid-template-columns: minmax(70px, 0.34fr) minmax(0, 1fr);
  }

  .tea-finder-alternatives a {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .tea-finder-alternatives a small {
    grid-column: 2;
    grid-row: auto;
    white-space: normal;
  }

  .tea-finder-purchase-head h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
}

/* Checkout: quick-buy inspired structure without changing WooCommerce flow. */
body.woocommerce-checkout .site-header,
body.woocommerce-checkout .content-page,
body.woocommerce-checkout .site-footer {
  width: 100%;
  max-width: none;
}

body.woocommerce-checkout .content-page {
  padding: clamp(44px, 6vw, 86px) clamp(16px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(247, 248, 241, 0.94), rgba(247, 248, 241, 0.78)),
    url("../images/zen-heart-hero-wide-v2.png") center / cover no-repeat;
}

body.woocommerce-checkout .content-article {
  width: min(100%, 1540px);
  max-width: none;
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.woocommerce-checkout .content-page h1 {
  max-width: 980px;
  margin: 0 auto clamp(24px, 4vw, 42px);
  color: var(--zht-ink);
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

body.woocommerce-order-received .content-page h1 {
  max-width: min(100%, 1040px);
  overflow-wrap: normal;
  word-break: normal;
}

body.woocommerce-checkout .entry-content {
  display: grid;
  width: 100%;
  max-width: 1540px;
  justify-items: center;
  justify-self: center;
}

body.woocommerce-checkout .entry-content > .woocommerce {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  justify-items: center;
}

body.woocommerce-checkout .woocommerce-form-login-toggle,
body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-error {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(31, 56, 36, 0.14);
  border-radius: 22px;
  background: rgba(255, 248, 236, 0.74);
  color: var(--zht-muted);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.35;
}

body.woocommerce-checkout .woocommerce-form-login,
body.woocommerce-checkout .checkout_coupon {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(31, 56, 36, 0.14);
  border-radius: 24px;
  background: rgba(255, 248, 236, 0.72);
}

body.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
  gap: 16px;
  align-items: start;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 80px rgba(8, 17, 11, 0.1);
  backdrop-filter: blur(12px);
}

body.woocommerce-checkout form.checkout .col2-set {
  display: grid;
  grid-column: 1;
  gap: 14px;
  width: auto;
}

body.woocommerce-checkout form.checkout .col2-set .col-1,
body.woocommerce-checkout form.checkout .col2-set .col-2 {
  float: none;
  width: auto;
  margin: 0;
}

body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout .woocommerce-additional-fields,
body.woocommerce-checkout #order_review {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 2.3vw, 24px);
  border: 1px solid rgba(31, 56, 36, 0.14);
  border-radius: 26px;
  background: rgba(247, 248, 241, 0.82);
  box-shadow: none;
}

body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-shipping-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout #order_review_heading {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--zht-ink);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.woocommerce-checkout .woocommerce-billing-fields h3::before,
body.woocommerce-checkout .woocommerce-shipping-fields h3::before,
body.woocommerce-checkout .woocommerce-additional-fields h3::before,
body.woocommerce-checkout #order_review_heading::before {
  color: var(--zht-accent);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

body.woocommerce-checkout .woocommerce-billing-fields h3::before {
  content: "Контакт";
}

body.woocommerce-checkout .woocommerce-shipping-fields h3::before {
  content: "Доставка";
}

body.woocommerce-checkout .woocommerce-additional-fields h3::before {
  content: "Деталі";
}

body.woocommerce-checkout #order_review_heading::before {
  content: "Підсумок";
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.woocommerce-checkout #billing_address_1_field,
body.woocommerce-checkout #billing_address_2_field,
body.woocommerce-checkout #billing_city_field,
body.woocommerce-checkout #billing_state_field,
body.woocommerce-checkout #billing_postcode_field,
body.woocommerce-checkout #shipping_address_1_field,
body.woocommerce-checkout #shipping_address_2_field,
body.woocommerce-checkout #shipping_city_field,
body.woocommerce-checkout #shipping_state_field,
body.woocommerce-checkout #shipping_postcode_field,
body.woocommerce-checkout #order_comments_field {
  grid-column: 1 / -1;
}

body.woocommerce-checkout .form-row,
body.woocommerce-checkout .woocommerce form .form-row {
  display: grid;
  gap: 8px;
  float: none;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}

body.woocommerce-checkout .form-row-first,
body.woocommerce-checkout .form-row-last {
  float: none;
  width: auto;
}

body.woocommerce-checkout .form-row label {
  margin: 0;
  color: var(--zht-muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.woocommerce-checkout .form-row .required {
  color: var(--zht-accent);
}

body.woocommerce-checkout .input-text,
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="password"],
body.woocommerce-checkout textarea,
body.woocommerce-checkout select,
body.woocommerce-checkout .select2-container--default .select2-selection--single {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(31, 56, 36, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--zht-ink);
  font: inherit;
  font-size: 16px;
  box-shadow: none;
}

body.woocommerce-checkout textarea {
  min-height: 92px;
  padding-block: 13px;
  resize: vertical;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 14px 15px;
  color: var(--zht-ink);
  line-height: 26px;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 54px;
}

body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review {
  grid-column: 2;
}

body.woocommerce-checkout #order_review {
  position: sticky;
  top: 96px;
  align-self: start;
  background: rgba(255, 248, 236, 0.82);
  backdrop-filter: blur(12px);
}

body.woocommerce-checkout table.shop_table {
  margin: 0;
  overflow: hidden;
  table-layout: auto;
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 22px;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.58);
}

body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
  padding: 14px;
  border-color: rgba(31, 56, 36, 0.1);
  color: var(--zht-ink);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.25;
  overflow-wrap: anywhere;
  vertical-align: top;
}

body.woocommerce-checkout table.shop_table thead th {
  color: var(--zht-muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

body.woocommerce-checkout table.shop_table .amount {
  color: var(--zht-green);
  font-weight: 950;
}

body.woocommerce-checkout #payment,
body.woocommerce-checkout .woocommerce-checkout-payment {
  display: grid;
  gap: 14px;
  background: transparent;
}

body.woocommerce-checkout #payment ul.payment_methods {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

body.woocommerce-checkout #payment ul.payment_methods li {
  display: grid;
  gap: 8px;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(31, 56, 36, 0.14);
  border-radius: 18px;
  background: rgba(247, 248, 241, 0.72);
}

body.woocommerce-checkout #payment ul.payment_methods li > label {
  display: inline-grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--zht-ink);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.15;
}

body.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
  align-self: center;
  justify-self: center;
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  accent-color: var(--zht-accent);
}

body.woocommerce-checkout #payment div.payment_box {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(31, 56, 36, 0.1);
  border-radius: 18px;
  background: rgba(255, 248, 236, 0.68);
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.36;
}

body.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper,
body.woocommerce-checkout .woocommerce-privacy-policy-text {
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.36;
}

body.woocommerce-checkout .woocommerce-form__label-for-checkbox,
body.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text {
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.36;
  letter-spacing: 0;
  text-transform: none;
}

body.woocommerce-checkout #payment #place_order {
  width: 100%;
  min-height: 62px;
  margin: 0;
  border-radius: 999px;
  background: var(--zht-accent);
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(255, 90, 43, 0.2);
}

@media (max-width: 1180px) {
  body.woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review {
    grid-column: 1;
  }

  body.woocommerce-checkout #order_review {
    position: static;
  }
}

@media (max-width: 760px) {
  body.woocommerce-checkout .content-page {
    padding: 36px 12px 48px;
  }

  body.woocommerce-checkout .content-page h1 {
    margin-bottom: 20px;
    font-size: clamp(42px, 15vw, 64px);
  }

  body.woocommerce-order-received .content-page h1 {
    max-width: 360px;
    font-size: clamp(40px, 13vw, 52px);
    line-height: 0.94;
  }

  body.woocommerce-checkout form.checkout {
    gap: 12px;
    padding: 12px;
    border-radius: 26px;
  }

  body.woocommerce-checkout .woocommerce-billing-fields,
  body.woocommerce-checkout .woocommerce-shipping-fields,
  body.woocommerce-checkout .woocommerce-additional-fields,
  body.woocommerce-checkout #order_review {
    padding: 14px;
    border-radius: 22px;
  }

  body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
    padding: 12px 10px;
    font-size: 13px;
  }
}

/* Checkout now uses the same field flow as the quick-buy drawer. */
body.woocommerce-checkout .quick-checkout-page {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  justify-items: center;
  justify-self: center;
}

body.woocommerce-checkout .quick-checkout-shell {
  display: block;
  width: 100%;
  margin-inline: auto;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(31, 56, 36, 0.14);
  border-radius: 32px;
  background: rgba(255, 248, 236, 0.66);
  box-shadow: 0 22px 70px rgba(26, 44, 30, 0.08);
}

body.woocommerce-checkout .quick-checkout-page .quick-buy-scroll {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-height: none;
  min-height: 0;
  padding: 0;
  overflow: visible;
}

body.woocommerce-checkout .quick-checkout-page .quick-buy-scroll > * {
  flex: 0 0 auto;
}

body.woocommerce-checkout .quick-checkout-page .quick-buy-head {
  position: static;
  padding: 0 2px 2px;
  border-bottom: 0;
  background: transparent;
}

body.woocommerce-checkout .quick-checkout-page .quick-buy-summary,
body.woocommerce-checkout .quick-checkout-page .quick-buy-form-section {
  background: rgba(255, 255, 255, 0.68);
}

body.woocommerce-checkout .quick-checkout-page .quick-buy-cart {
  min-width: 0;
}

body.woocommerce-checkout .quick-checkout-page .quick-buy-form {
  display: grid;
  gap: 14px;
}

body.woocommerce-checkout .quick-checkout-page .quick-buy-actions {
  position: static;
  margin-top: 0;
  padding: 14px;
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

body.woocommerce-checkout .quick-checkout-page .quick-buy-submit,
body.woocommerce-checkout .quick-checkout-page .quick-buy-add-more {
  min-height: 58px;
}

body.woocommerce-checkout .quick-buy-overlay,
body.woocommerce-checkout .quick-buy-drawer {
  display: none;
}

/* Live checkout page can keep WooCommerce's cart body class, so center by page id too. */
body.page-id-6 .content-page {
  display: grid;
  justify-items: center;
}

body.page-id-7 .content-page {
  display: grid;
  justify-items: center;
}

body.page-id-6 .content-article,
body.page-id-7 .content-article,
body.page-id-6 .entry-content,
body.page-id-7 .entry-content,
body.page-id-6 .entry-content > .woocommerce,
body.page-id-7 .entry-content > .woocommerce,
body.page-id-6 .quick-checkout-page {
  width: min(100%, 1540px);
  max-width: 1540px;
  margin-inline: auto;
  justify-self: center;
}

body.page-id-7 .quick-checkout-page {
  width: min(100%, 1540px);
  max-width: 1540px;
  margin-inline: auto;
  justify-self: center;
}

body.page-id-6 .quick-checkout-shell,
body.page-id-7 .quick-checkout-shell {
  width: 100%;
  margin-inline: auto;
}

@media (min-width: 1080px) {
  body.woocommerce-checkout .quick-checkout-page .quick-buy-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  body.woocommerce-checkout .quick-checkout-page .quick-checkout-left-stack {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    gap: 0;
    height: 100%;
    align-content: start;
    overflow: hidden;
    border: 1px solid rgba(31, 56, 36, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 10px 28px rgba(26, 44, 30, 0.05);
  }

  body.woocommerce-checkout .quick-checkout-page .quick-checkout-left-stack > .quick-buy-form-section {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.woocommerce-checkout .quick-checkout-page .quick-checkout-left-stack > .quick-buy-form-section:first-child {
    padding-bottom: 24px;
  }

  body.woocommerce-checkout .quick-checkout-page .quick-buy-form-section,
  body.woocommerce-checkout .quick-checkout-page .quick-buy-consents,
  body.woocommerce-checkout .quick-checkout-page .quick-buy-actions {
    grid-column: span 1;
  }

  body.woocommerce-checkout .quick-checkout-page .quick-buy-form-section[aria-label="Доставка"] {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
  }

  body.woocommerce-checkout .quick-checkout-page .quick-checkout-delivery-cost {
    grid-column: auto;
    grid-row: auto;
    position: relative;
    align-self: stretch;
    display: grid;
    align-content: end;
    min-height: 172px;
    padding-top: 24px;
  }

  body.woocommerce-checkout .quick-checkout-page .quick-checkout-delivery-cost::before {
    content: "";
    position: absolute;
    top: 0;
    right: 24px;
    left: 24px;
    height: 1px;
    background: rgba(31, 56, 36, 0.12);
  }

  body.woocommerce-checkout .quick-checkout-page .quick-checkout-delivery-cost .quick-buy-delivery-terms {
    position: relative;
    display: grid;
    gap: 7px;
    align-items: center;
    min-height: 104px;
    padding: 20px 22px 20px 28px;
    overflow: hidden;
    border: 1px solid rgba(31, 56, 36, 0.12);
    border-radius: 22px;
    background:
      linear-gradient(120deg, rgba(255, 248, 236, 0.92), rgba(255, 255, 255, 0.7)),
      rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 34px rgba(26, 44, 30, 0.06);
  }

  body.woocommerce-checkout .quick-checkout-page .quick-checkout-delivery-cost .quick-buy-delivery-terms::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 14px;
    width: 5px;
    border-radius: 999px;
    background: var(--zht-accent);
  }

  body.woocommerce-checkout .quick-checkout-page .quick-checkout-delivery-cost .quick-buy-delivery-terms span,
  body.woocommerce-checkout .quick-checkout-page .quick-checkout-delivery-cost .quick-buy-delivery-terms small {
    grid-column: 1;
  }

  body.woocommerce-checkout .quick-checkout-page .quick-buy-optional,
  body.woocommerce-checkout .quick-checkout-page .quick-buy-consents,
  body.woocommerce-checkout .quick-checkout-page .quick-buy-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body.woocommerce-checkout .quick-checkout-shell {
    padding: 12px;
    border-radius: 26px;
  }

  body.woocommerce-checkout .quick-checkout-page .quick-buy-summary,
  body.woocommerce-checkout .quick-checkout-page .quick-buy-form-section,
  body.woocommerce-checkout .quick-checkout-page .quick-buy-actions {
    border-radius: 22px;
  }
}

/* Catalog approved mockup lock: keep this block after legacy responsive rules. */
@media (min-width: 981px) {
  .catalog-page .zht-product-card > a {
    grid-template-columns: minmax(0, 45%) minmax(0, 1fr);
  }
}

@media (max-width: 1180px) {
  .catalog-hero {
    grid-template-columns: minmax(360px, 0.8fr) minmax(420px, 1fr);
  }

  .catalog-page .zht-product-card > a {
    grid-template-columns: 1fr;
  }

  .catalog-page .zht-product-card figure {
    min-height: 260px;
  }
}

@media (max-width: 980px) {
  .catalog-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 24px;
  }

  .catalog-hero-media {
    display: none;
  }

  .catalog-category-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border-radius: 26px;
  }

  .catalog-category-tile {
    border-radius: 0;
    box-shadow: none;
  }

  .catalog-category-tile:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .catalog-page {
    --catalog-gutter: 24px;
    --catalog-radius: 28px;
  }

  .catalog-hero {
    padding-top: 22px;
  }

  .catalog-hero-copy {
    gap: 22px;
    padding-top: 0;
  }

  .catalog-hero h1 {
    max-width: 330px;
    font-size: clamp(82px, 26vw, 112px);
    line-height: 0.76;
  }

  .catalog-hero p {
    max-width: 342px;
    font-size: 17px;
  }

  .catalog-category-tile {
    min-height: 168px;
    padding: 16px;
  }

  .catalog-category-tile span {
    gap: 9px;
    font-size: 24px;
  }

  .catalog-page .zht-product-card > a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .catalog-page .zht-product-card figure {
    min-height: 300px;
    border-radius: 20px;
  }

  .catalog-page .zht-card-copy {
    gap: 14px;
  }

  .catalog-page .zht-product-card h3 {
    font-size: 30px;
  }

  .catalog-page .zht-card-actions {
    padding: 0 16px 18px;
  }
}

/* Catalog overlap and alignment fix after visual QA. */
.catalog-page {
  background:
    radial-gradient(circle at 5% 9%, rgba(255, 90, 43, 0.055), transparent 32%),
    radial-gradient(circle at 86% 24%, rgba(31, 56, 36, 0.045), transparent 34%),
    linear-gradient(180deg, #fbf8f0 0%, #f8f6ee 42%, #f2f5ec 100%);
}

@media (min-width: 981px) {
  .catalog-hero-media {
    top: clamp(148px, 10.5vw, 190px);
    right: clamp(-180px, -8vw, -96px);
    left: auto;
    z-index: 0;
    width: min(40vw, 680px);
    min-height: clamp(230px, 18vw, 360px);
    border-radius: 0 0 0 42px;
    transform: none;
  }

  .catalog-hero-media::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(90deg, #fbf8f0 0%, rgba(251, 248, 240, 0.9) 8%, rgba(251, 248, 240, 0) 28%),
      linear-gradient(0deg, #fbf8f0 0%, rgba(251, 248, 240, 0.86) 10%, rgba(251, 248, 240, 0) 28%);
  }

  .catalog-hero-media img {
    z-index: 1;
    width: 100%;
    height: clamp(230px, 18vw, 360px);
    object-fit: cover;
    object-position: right top;
  }

  .catalog-category-gallery {
    position: relative;
    z-index: 2;
    margin-top: clamp(38px, 4.2vw, 72px);
  }
}

.catalog-page .zht-card-buy-proof,
.catalog-page .zht-card-buy-proof small,
.catalog-page .zht-card-buy-proof small span {
  justify-items: start;
  text-align: left;
}

.catalog-page .zht-card-buy-proof small span {
  justify-self: start;
}

/* Catalog Zen Product Grid v2: product-first archive without hero media. */
.catalog-page {
  --catalog-max: 1560px;
  --catalog-gutter: clamp(22px, 3.4vw, 64px);
  --catalog-radius: 14px;
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 3vw, 54px) var(--catalog-gutter) clamp(58px, 6vw, 92px);
  background:
    radial-gradient(circle at 4% 8%, rgba(255, 90, 43, 0.055), transparent 28%),
    radial-gradient(circle at 94% 18%, rgba(31, 56, 36, 0.04), transparent 30%),
    linear-gradient(180deg, #fbf9f1 0%, #f7f5ed 50%, #f1f4ea 100%);
  overflow-x: clip;
}

.catalog-intro,
.catalog-toolbar,
.catalog-products,
.catalog-page .woocommerce-pagination,
.catalog-page .empty-shop {
  width: min(100%, var(--catalog-max));
  margin-inline: auto;
}

.catalog-intro {
  display: grid;
  gap: clamp(32px, 4vw, 58px);
  padding: 0;
}

@media (min-width: 761px) {
  .shop-archive.catalog-page .catalog-intro {
    padding-top: 24px;
  }
}

.catalog-intro h1 {
  margin: 0;
  font-size: clamp(56px, 5.8vw, 92px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.catalog-intro p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #657064;
  font-size: clamp(17px, 1.2vw, 21px);
  font-weight: 560;
  line-height: 1.36;
}

.catalog-category-nav {
  display: grid;
  grid-template-columns: minmax(max-content, 110px) repeat(5, minmax(122px, 1fr));
  align-items: end;
  gap: clamp(16px, 2.4vw, 42px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(31, 56, 36, 0.16);
  scrollbar-width: none;
}

.catalog-category-nav::-webkit-scrollbar {
  display: none;
}

.catalog-category-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
  min-height: 52px;
  color: var(--zht-ink);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
}

.catalog-category-pill::after {
  position: absolute;
  right: 0;
  bottom: -19px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: transparent;
  content: "";
}

.catalog-category-pill img {
  width: clamp(52px, 4.6vw, 72px);
  height: clamp(52px, 4.6vw, 72px);
  border: 1px solid rgba(31, 56, 36, 0.1);
  border-radius: 28%;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 22px rgba(20, 28, 18, 0.1);
}

.catalog-category-pill.is-active {
  color: var(--zht-accent);
}

.catalog-category-pill.is-active::after {
  background: var(--zht-accent);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: clamp(22px, 2.5vw, 34px);
}

.catalog-filter-button,
.catalog-sort .woocommerce-ordering select {
  min-height: 42px;
  border: 1px solid rgba(31, 56, 36, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--zht-ink);
  font: inherit;
  font-size: 14px;
  font-weight: 760;
}

.catalog-filter-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  cursor: pointer;
}

.catalog-filter-button[aria-expanded="true"] {
  border-color: rgba(255, 90, 43, 0.42);
  color: var(--zht-accent);
}

.catalog-filter-button i,
.catalog-filter-button i::before,
.catalog-filter-button i::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.catalog-filter-button i {
  position: relative;
}

.catalog-filter-button i::before {
  position: absolute;
  top: -6px;
  width: 12px;
}

.catalog-filter-button i::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 10px;
}

.catalog-sort .woocommerce-ordering {
  float: none;
  margin: 0;
}

.catalog-sort .woocommerce-ordering select {
  min-width: 210px;
  padding: 0 42px 0 18px;
  appearance: auto;
}

.catalog-filter-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  width: min(100%, 760px);
  margin: 12px auto 0 max(0px, calc((100% - var(--catalog-max)) / 2));
  padding: 16px 18px;
  border: 1px solid rgba(31, 56, 36, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(247, 248, 241, 0.82)),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 48px rgba(26, 44, 30, 0.08);
}

.catalog-filter-panel[hidden] {
  display: none;
}

.catalog-filter-group {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(31, 56, 36, 0.09);
}

.catalog-filter-group:first-child {
  padding-top: 0;
}

.catalog-filter-group:last-of-type {
  border-bottom: 0;
}

.catalog-filter-group > span {
  color: #657064;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.catalog-filter-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-filter-option {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(31, 56, 36, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--zht-ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.catalog-filter-option.is-active {
  border-color: rgba(255, 90, 43, 0.38);
  background: rgba(255, 90, 43, 0.1);
  color: var(--zht-accent);
}

.catalog-filter-clear {
  justify-self: start;
  margin-top: 10px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 999px;
  background: transparent;
  color: #657064;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.catalog-filter-clear[hidden] {
  display: none;
}

.catalog-products {
  margin-top: 18px;
}

.catalog-page .zht-product-card.is-filter-hidden {
  display: none;
}

.catalog-page .catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 28px);
}

.catalog-page .zht-product-card {
  --catalog-radius: 10px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(31, 56, 36, 0.11);
  border-radius: var(--catalog-radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
  transform: none;
}

.catalog-page .zht-product-card:hover,
.catalog-page .zht-product-card:focus-within {
  border-color: rgba(31, 56, 36, 0.2);
  box-shadow: 0 18px 52px rgba(28, 38, 24, 0.08);
  transform: translateY(-2px);
}

.catalog-page .zht-product-card > a,
.catalog-page .zht-product-card.is-catalog-simple > a {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-content: start;
  height: 100%;
  padding: 0;
  color: inherit;
}

.catalog-page .zht-product-card figure,
.catalog-page .zht-product-card.is-catalog-simple figure {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1.06 / 0.92;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #f5f0e6;
  box-shadow: none;
}

.catalog-page .zht-product-card img,
.catalog-page .zht-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
}

.catalog-page .zht-card-copy {
  display: grid;
  gap: 9px;
  align-content: start;
  min-width: 0;
  padding: 12px 14px 10px;
}

.catalog-page .zht-product-card h3 {
  margin: 0;
  color: var(--zht-ink);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.catalog-page .zht-card-type,
.catalog-page .zht-card-copy > .zht-card-type {
  display: inline-grid;
  justify-self: start;
  place-items: center;
  min-height: 22px;
  padding: 0 9px;
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 999px;
  background: rgba(244, 247, 238, 0.82);
  color: #657064;
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-align: center;
  text-transform: none;
}

.catalog-page .zht-card-summary {
  min-height: 34px;
  margin: 0;
  color: #566153;
  font-size: 13px;
  font-weight: 560;
  line-height: 1.28;
}

.catalog-page .zht-card-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.catalog-page .zht-card-signals small {
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(31, 56, 36, 0.12);
  border-radius: 999px;
  background: rgba(247, 248, 241, 0.74);
  color: #263d28;
  font-size: 10px;
  font-weight: 760;
  line-height: 1;
  text-transform: none;
}

.catalog-page .zht-card-brew-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  margin-top: 5px;
}

.catalog-page .zht-card-brew-meta small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4f5c50;
  font-size: 11px;
  font-weight: 560;
  line-height: 1.1;
  white-space: nowrap;
}

.catalog-page .zht-card-brew-meta small::before {
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  opacity: 0.72;
  content: "";
}

.catalog-page .zht-card-fit {
  display: none;
}

.catalog-page .zht-card-price {
  margin: 4px 0 0;
  color: var(--zht-ink);
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 950;
  line-height: 1;
}

.catalog-page .zht-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 12px 14px;
}

.catalog-page .zht-card-actions .zht-product-link-button,
.catalog-page .zht-card-actions .zht-quick-buy-button,
.catalog-page .zht-card-actions .zht-cart-add-button {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 9px;
  background: #020805;
  color: var(--zht-paper);
  font-size: 13px;
  font-weight: 860;
  line-height: 1.05;
  text-align: center;
  white-space: normal;
}

.catalog-page .zht-card-favorite {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(31, 56, 36, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.46);
  color: var(--zht-ink);
  cursor: pointer;
}

.catalog-page .zht-card-favorite svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1180px) {
  .catalog-page .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-category-nav {
    grid-template-columns: repeat(6, max-content);
  }
}

@media (max-width: 760px) {
  .catalog-page {
    --catalog-gutter: 16px;
    padding-top: 34px;
  }

  .catalog-intro {
    gap: 26px;
  }

  .catalog-intro h1 {
    font-size: clamp(48px, 17vw, 70px);
  }

  .catalog-intro p {
    max-width: 330px;
    margin-top: 10px;
    font-size: 16px;
  }

  .catalog-category-nav {
    margin-inline: calc(var(--catalog-gutter) * -1);
    padding-inline: var(--catalog-gutter);
    gap: 24px;
  }

  .catalog-toolbar {
    align-items: stretch;
    margin-top: 18px;
  }

  .catalog-filter-button,
  .catalog-filter-panel,
  .catalog-sort,
  .catalog-sort .woocommerce-ordering,
  .catalog-sort .woocommerce-ordering select {
    width: 100%;
  }

  .catalog-filter-panel {
    grid-template-columns: 1fr;
    margin: 12px auto 0;
  }

  .catalog-filter-group {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .catalog-page .catalog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalog-page .zht-product-card figure,
  .catalog-page .zht-product-card.is-catalog-simple figure {
    aspect-ratio: 1 / 0.9;
  }

  .catalog-page .zht-card-copy {
    padding: 14px 14px 10px;
  }

}

@media (max-width: 460px) {
  .catalog-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Homepage v2 */
.home-v2 {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  overflow: hidden;
  background: var(--zht-paper);
  color: var(--zht-ink);
}

.home-v2 *,
.home-v2 *::before,
.home-v2 *::after {
  letter-spacing: 0;
}

.home-v2 h1,
.home-v2 h2,
.home-v2 h3,
.home-v2 p,
.home-v2 figure {
  margin: 0;
}

.home-v2 h2 {
  scroll-margin-top: 110px;
}

.home-kicker {
  display: block;
  color: var(--zht-accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--zht-ink);
  border-radius: 4px;
  background: var(--zht-ink);
  color: var(--zht-paper);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
}

.home-button.is-light {
  border-color: var(--zht-paper);
  background: var(--zht-paper);
  color: var(--zht-ink);
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
}

.home-text-link span {
  font-size: 20px;
  line-height: 1;
}

.home-text-link.is-light {
  color: var(--zht-paper);
}

.home-season {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(690px, calc(100vh - 72px));
  padding: clamp(44px, 6vw, 92px) clamp(24px, 6vw, 92px);
  isolation: isolate;
  overflow: hidden;
  background: #0a0c09;
  color: var(--zht-paper);
}

.home-season-media,
.home-season-media img,
.home-season-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-season-media {
  z-index: -3;
}

.home-season-media img {
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.015);
}

.home-season-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 6, 3, 0.91) 0%, rgba(2, 6, 3, 0.62) 40%, rgba(2, 6, 3, 0.05) 77%),
    linear-gradient(0deg, rgba(2, 5, 3, 0.55) 0%, transparent 48%);
}

.home-season-copy {
  display: grid;
  gap: 22px;
  width: min(590px, 52vw);
}

.home-season-copy h1 {
  max-width: 760px;
  font-size: clamp(58px, 7.2vw, 116px);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.home-season-copy > p {
  max-width: 570px;
  color: rgba(247, 248, 241, 0.82);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 560;
  line-height: 1.45;
}

.home-season-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-season-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(4, 9, 5, 0.2);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.home-season-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 4px;
}

.home-type-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-bottom: 1px solid var(--zht-line);
  background: #fff;
}

.home-type-rail a {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 104px;
  padding: 16px clamp(12px, 1.6vw, 24px);
  border-right: 1px solid var(--zht-line);
}

.home-type-rail a:last-child {
  border-right: 0;
}

.home-type-rail img {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  object-fit: cover;
}

.home-type-rail span {
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
}

.home-section-heading {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.home-section-heading h2 {
  margin-top: 10px;
  font-size: clamp(42px, 5.5vw, 84px);
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.home-section-heading > p,
.home-section-heading > div > p {
  color: var(--zht-muted);
  font-size: 17px;
  font-weight: 560;
  line-height: 1.5;
}

.home-section-heading.is-centered {
  display: grid;
  justify-items: center;
  max-width: 800px;
  text-align: center;
}

.home-section-heading.is-centered p {
  max-width: 680px;
  margin-top: 18px;
}

.home-section-heading.is-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.6fr);
  gap: 72px;
  align-items: end;
}

.home-section-heading.is-split > div:last-child {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.home-origins {
  padding: clamp(74px, 8vw, 126px) 0 0;
  background: var(--zht-paper);
}

.home-origin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(42px, 5vw, 74px);
}

.home-origin-card {
  position: relative;
  min-height: clamp(500px, 47vw, 700px);
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}

.home-origin-card > img,
.home-origin-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-origin-card > img {
  z-index: -3;
  object-fit: cover;
  transition: transform 600ms ease;
}

.home-origin-card.is-taiwan > img {
  object-position: 54% center;
}

.home-origin-card.is-fujian > img {
  object-position: 58% center;
}

.home-origin-card.is-yunnan > img {
  object-position: 55% center;
}

.home-origin-card:hover > img {
  transform: scale(1.025);
}

.home-origin-shade {
  z-index: -2;
  background: linear-gradient(0deg, rgba(2, 8, 4, 0.9) 0%, rgba(2, 8, 4, 0.45) 38%, rgba(2, 8, 4, 0.04) 68%);
}

.home-origin-copy {
  position: absolute;
  right: clamp(24px, 3vw, 46px);
  bottom: clamp(28px, 4vw, 56px);
  left: clamp(24px, 3vw, 46px);
  display: grid;
  gap: 12px;
}

.home-origin-copy small {
  color: var(--zht-accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.home-origin-copy strong {
  max-width: 460px;
  font-size: clamp(29px, 3vw, 48px);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.home-origin-copy > span {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.45;
}

.home-origin-copy b {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  font-size: 13px;
}

.home-origin-copy i {
  font-size: 18px;
  font-style: normal;
}

.home-core {
  padding: clamp(76px, 9vw, 136px) 0;
  background: #f1f3ea;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1280px, calc(100% - 48px));
  margin: clamp(40px, 5vw, 70px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(31, 56, 36, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(24, 42, 28, 0.08);
}

.home-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 10px 10px 14px;
  overflow: hidden;
  border-right: 1px solid rgba(31, 56, 36, 0.12);
  background: transparent;
  transition: background-color 240ms ease;
}

.home-product-card:last-child {
  border-right: 0;
}

.home-product-card:hover {
  background: rgba(255, 255, 255, 0.86);
}

.home-product-media {
  display: block;
  aspect-ratio: 1 / 0.96;
  overflow: hidden;
  border-radius: 4px;
  background: #e8e9e0;
}

.home-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transition: transform 450ms ease;
}

.home-product-card:hover .home-product-media img {
  transform: scale(1.02);
}

.home-product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 8px 2px;
}

.home-premium-copy > span {
  color: var(--zht-accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-product-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-product-labels > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 90, 43, 0.28);
  border-radius: 999px;
  background: rgba(255, 90, 43, 0.06);
  color: var(--zht-accent);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-product-labels > small {
  color: #737b70;
  font-size: 10px;
  font-weight: 760;
  text-align: right;
}

.home-product-copy h3,
.home-premium-copy h3 {
  margin-top: 10px;
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.home-product-copy > p {
  margin-top: 14px;
  color: var(--zht-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42;
}

.home-product-copy > small {
  display: block;
  margin-top: 14px;
  color: #737b70;
  font-size: 12px;
  line-height: 1.42;
}

.home-product-copy > small b {
  color: var(--zht-green);
}

.home-product-copy > div:last-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--zht-line);
}

.home-product-copy > div:last-child > strong {
  font-size: 21px;
  font-weight: 950;
}

.home-product-copy > div:last-child > a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--zht-ink);
  border-radius: 50%;
  font-size: 20px;
}

.home-premium {
  padding: clamp(76px, 9vw, 136px) 0;
  background: #07100a;
  color: var(--zht-paper);
}

.home-section-heading.is-dark > div > p {
  color: rgba(247, 248, 241, 0.62);
}

.home-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1280px, calc(100% - 48px));
  margin: clamp(42px, 5vw, 72px) auto 0;
}

.home-premium-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.75fr);
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #101811;
}

.home-premium-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.home-premium-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-premium-media > span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(16, 24, 17, 0.68));
}

.home-premium-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 48px);
}

.home-premium-copy > p {
  margin-top: 18px;
  color: rgba(247, 248, 241, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.home-premium-copy > div {
  display: grid;
  gap: 18px;
  margin-top: auto;
}

.home-premium-copy > div > strong {
  font-size: 22px;
  font-weight: 950;
}

.home-premium-copy > div > a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  font-size: 13px;
  font-weight: 850;
}

.home-teaware {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: clamp(50px, 7vw, 110px) clamp(24px, 7vw, 110px);
  isolation: isolate;
  overflow: hidden;
  color: var(--zht-paper);
}

.home-teaware > img,
.home-teaware-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-teaware > img {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.home-teaware-shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(2, 5, 3, 0.88) 0%, rgba(2, 5, 3, 0.46) 48%, rgba(2, 5, 3, 0.02) 74%);
}

.home-teaware > div {
  display: grid;
  gap: 20px;
  width: min(560px, 47%);
}

.home-teaware h2 {
  font-size: clamp(44px, 5.5vw, 82px);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.home-teaware p {
  max-width: 530px;
  color: rgba(247, 248, 241, 0.72);
  font-size: 17px;
  line-height: 1.5;
}

.home-teaware .home-button {
  width: max-content;
  margin-top: 6px;
}

.home-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--zht-line);
  border-bottom: 1px solid var(--zht-line);
  background: #fff;
}

.home-service-strip article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: start;
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 64px);
  border-right: 1px solid var(--zht-line);
}

.home-service-strip article:last-child {
  border-right: 0;
}

.home-service-strip strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.home-service-strip p {
  margin-top: 7px;
  color: var(--zht-muted);
  font-size: 13px;
  line-height: 1.4;
}

.home-service-icon {
  display: block;
  width: 30px;
  height: 30px;
  background: var(--zht-green);
}

.home-service-icon.is-delivery {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 4h11v10h2.2l1.8-3h3l2 3v4h-2a3 3 0 0 1-6 0H9a3 3 0 0 1-6 0H1V6a2 2 0 0 1 2-2Zm15 9-1 1h4l-1-1h-2ZM6 16a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm12 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 4h11v10h2.2l1.8-3h3l2 3v4h-2a3 3 0 0 1-6 0H9a3 3 0 0 1-6 0H1V6a2 2 0 0 1 2-2Zm15 9-1 1h4l-1-1h-2ZM6 16a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm12 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.home-service-icon.is-payment {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5h18a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm0 4h18V7H3v2Zm2 5v2h6v-2H5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5h18a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm0 4h18V7H3v2Zm2 5v2h6v-2H5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.home-service-icon.is-package {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2 9 5v10l-9 5-9-5V7l9-5Zm0 2.3L6.2 7.5 12 10.7l5.8-3.2L12 4.3ZM5 9.2v6.6l6 3.3v-6.6L5 9.2Zm8 9.9 6-3.3V9.2l-6 3.3v6.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2 9 5v10l-9 5-9-5V7l9-5Zm0 2.3L6.2 7.5 12 10.7l5.8-3.2L12 4.3ZM5 9.2v6.6l6 3.3v-6.6L5 9.2Zm8 9.9 6-3.3V9.2l-6 3.3v6.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer {
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.62fr));
  gap: clamp(30px, 5vw, 80px);
  padding: clamp(54px, 7vw, 94px) clamp(24px, 6vw, 92px) 30px;
  background: #050b07;
}

.site-footer-brand {
  display: grid;
  align-content: start;
  gap: 22px;
  max-width: 360px;
}

.site-footer .brand-mark {
  font-size: 20px;
}

.site-footer nav > strong {
  margin-bottom: 6px;
  color: var(--zht-accent);
  font-size: 11px;
  text-transform: uppercase;
}

.site-footer nav a {
  color: rgba(255, 248, 236, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.site-footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 248, 236, 0.42);
  font-size: 11px;
}

@media (max-width: 1180px) {
  .home-type-rail {
    grid-template-columns: repeat(7, 150px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .home-type-rail::-webkit-scrollbar {
    display: none;
  }

  .home-section-heading.is-split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    gap: 42px;
  }

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

  .home-product-card:nth-child(2n) {
    border-right: 0;
  }

  .home-product-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(31, 56, 36, 0.12);
  }

  .home-premium-card {
    grid-template-columns: 1fr;
  }

  .home-premium-media {
    aspect-ratio: 1.35 / 1;
  }

  .site-footer {
    grid-template-columns: 1fr repeat(3, minmax(130px, 0.5fr));
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .home-season-copy {
    width: min(620px, 78vw);
  }

  .home-origin-grid {
    grid-template-columns: 1fr;
  }

  .home-origin-card {
    min-height: 520px;
  }

  .home-origin-card > img {
    object-position: center 58%;
  }

  .home-premium-grid {
    grid-template-columns: 1fr;
  }

  .home-premium-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.8fr);
  }

  .home-teaware > div {
    width: min(600px, 64%);
  }

  .site-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .home-season {
    min-height: 620px;
    padding: 42px 18px;
  }

  .home-season-media img {
    object-position: 58% center;
  }

  .home-season-shade {
    background:
      linear-gradient(0deg, rgba(2, 6, 3, 0.94) 0%, rgba(2, 6, 3, 0.55) 52%, rgba(2, 6, 3, 0.08) 83%),
      linear-gradient(90deg, rgba(2, 6, 3, 0.2), transparent);
  }

  .home-season-copy {
    gap: 16px;
    width: 100%;
  }

  .home-season-copy h1 {
    max-width: 100%;
    font-size: clamp(48px, 15.5vw, 68px);
  }

  .home-season-copy > p {
    font-size: 15px;
  }

  .home-season-actions {
    display: grid;
    gap: 18px;
    align-items: start;
  }

  .home-season-actions .home-button {
    width: 100%;
  }

  .home-type-rail {
    grid-template-columns: repeat(7, 132px);
  }

  .home-type-rail a {
    grid-template-columns: 42px 1fr;
    min-height: 86px;
    padding: 12px 14px;
  }

  .home-type-rail img {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .home-section-heading {
    width: calc(100% - 36px);
  }

  .home-section-heading h2 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .home-section-heading.is-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-section-heading.is-split > div:last-child {
    gap: 16px;
  }

  .home-section-heading > p,
  .home-section-heading > div > p {
    font-size: 15px;
  }

  .home-origins {
    padding-top: 74px;
  }

  .home-origin-grid {
    margin-top: 40px;
  }

  .home-origin-card {
    min-height: 440px;
  }

  .home-origin-copy {
    right: 20px;
    bottom: 28px;
    left: 20px;
  }

  .home-origin-copy strong {
    font-size: clamp(32px, 10vw, 44px);
  }

  .home-core,
  .home-premium {
    padding: 74px 0;
  }

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: calc(100% - 24px);
    margin-top: 38px;
  }

  .home-product-card {
    padding: 6px 6px 10px;
  }

  .home-product-media {
    margin: 0;
  }

  .home-product-copy {
    min-height: 0;
    padding: 12px 5px 0;
  }

  .home-product-labels {
    gap: 5px;
  }

  .home-product-labels > span {
    min-height: 24px;
    padding: 0 7px;
    font-size: 9px;
  }

  .home-product-labels > small {
    font-size: 9px;
  }

  .home-product-copy h3 {
    font-size: clamp(19px, 6vw, 25px);
  }

  .home-product-copy > p {
    margin-top: 12px;
    font-size: 12px;
  }

  .home-product-copy > small {
    margin-top: 12px;
    font-size: 11px;
  }

  .home-product-copy > div:last-child {
    padding-top: 15px;
  }

  .home-product-copy > div:last-child > strong {
    font-size: 17px;
  }

  .home-product-copy > div:last-child > a {
    width: 36px;
    height: 36px;
  }

  .home-premium-grid {
    width: calc(100% - 36px);
    margin-top: 38px;
  }

  .home-premium-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-premium-media {
    aspect-ratio: 1.25 / 1;
  }

  .home-premium-copy {
    min-height: 300px;
    padding: 26px 22px;
  }

  .home-teaware {
    align-items: flex-end;
    min-height: 620px;
    padding: 48px 18px;
  }

  .home-teaware > img {
    object-position: 68% center;
  }

  .home-teaware-shade {
    background: linear-gradient(0deg, rgba(2, 5, 3, 0.94) 0%, rgba(2, 5, 3, 0.52) 54%, rgba(2, 5, 3, 0.06) 85%);
  }

  .home-teaware > div {
    width: 100%;
  }

  .home-teaware h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .home-teaware p {
    font-size: 15px;
  }

  .home-teaware .home-button {
    width: 100%;
  }

  .home-service-strip {
    grid-template-columns: 1fr;
  }

  .home-service-strip article {
    padding: 28px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--zht-line);
  }

  .home-service-strip article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
    padding: 52px 20px 26px;
  }

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

  .site-footer nav:last-of-type {
    grid-column: 1 / -1;
  }

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

@media (max-width: 360px) {
  .home-product-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
  }

  .home-product-copy {
    min-height: 0;
  }

  .home-product-card {
    border-right: 0;
    border-bottom: 1px solid rgba(31, 56, 36, 0.12);
  }

  .home-product-card:last-child {
    border-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav:last-of-type {
    grid-column: auto;
  }
}
