: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,
.product-page,
.not-found-page,
.content-page,
.site-footer {
  width: min(var(--zht-max), 100vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 14px 22px;
  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;
}

.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;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  width: min(560px, calc(100vw - 24px));
  height: 100vh;
  padding: 28px;
  overflow-y: auto;
  background: rgba(247, 248, 241, 0.96);
  border-left: 1px solid var(--zht-line);
  box-shadow: -30px 0 90px rgba(7, 10, 7, 0.28);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

.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;
}

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

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

.quick-buy-head button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--zht-line);
  border-radius: 50%;
  background: transparent;
  color: var(--zht-ink);
  font-size: 28px;
  line-height: 1;
}

.quick-buy-product {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--zht-line);
}

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

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

.quick-buy-product p,
.quick-buy-product h2 {
  margin: 0;
}

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

.quick-buy-product h2 {
  margin-top: 4px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.quick-buy-product strong {
  display: block;
  margin-top: 10px;
  color: var(--zht-muted);
  font-size: 17px;
}

.quick-buy-cart {
  display: grid;
  gap: 12px;
  padding: 18px 0 4px;
  border-bottom: 1px solid var(--zht-line);
}

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

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

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

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

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

.quick-buy-cart-item small {
  grid-column: 1 / -1;
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 780;
}

.quick-buy-cart-total {
  padding-top: 10px;
  border-top: 1px solid var(--zht-line);
}

.quick-buy-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
}

.quick-buy-payments span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--zht-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  font-weight: 900;
}

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

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

.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: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quick-buy-form input,
.quick-buy-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--zht-line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--zht-ink);
  font: inherit;
  font-size: 17px;
}

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

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

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

.quick-buy-suggest {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 4;
  display: grid;
  max-height: 248px;
  overflow-y: auto;
  border: 1px solid rgba(14, 25, 14, 0.22);
  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: 44px;
  padding: 10px 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;
  text-align: left;
}

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

.quick-buy-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
}

.quick-buy-form fieldset {
  grid-template-columns: repeat(3, 1fr);
  padding: 14px;
  border: 1px solid var(--zht-line);
}

.quick-buy-form legend {
  grid-column: 1 / -1;
  padding: 0 6px;
}

.quick-buy-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.quick-buy-form fieldset input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--zht-accent);
}

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

.quick-buy-payment-methods label {
  display: grid;
  gap: 2px;
  min-height: 74px;
  padding: 12px;
  align-content: center;
  border: 1px solid var(--zht-line);
  background: rgba(255, 255, 255, 0.52);
}

.quick-buy-payment-methods input {
  width: 18px;
  min-height: 18px;
}

.quick-buy-payment-methods span {
  font-weight: 950;
}

.quick-buy-payment-methods small {
  color: var(--zht-muted);
  font-size: 12px;
  font-weight: 820;
}

.quick-buy-consents {
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(31, 56, 36, 0.16);
  background: rgba(255, 255, 255, 0.46);
}

.quick-buy-consents label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0;
}

.quick-buy-consents input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--zht-accent);
}

.quick-buy-consents span {
  color: var(--zht-muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.quick-buy-error {
  margin: 0;
  padding: 12px 14px;
  background: rgba(255, 90, 43, 0.12);
  color: #b4331b;
  font-size: 15px;
  font-weight: 760;
}

.quick-buy-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  width: 100%;
  border: 1px solid var(--zht-accent);
  border-radius: 999px;
  background: var(--zht-accent);
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

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

.quick-buy-add-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: 100%;
  border: 1px solid var(--zht-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--zht-ink);
  font-size: 16px;
  font-weight: 900;
}

.quick-buy-success {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(31, 56, 36, 0.2);
  background: rgba(255, 255, 255, 0.68);
}

.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 a {
  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 a {
  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;
}

.need-options {
  display: grid;
  gap: 0;
  margin-top: 42px;
  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-copy a,
.button-primary,
.zht-button,
.zht-quick-buy-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;
}

.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,
.soft-note h2,
.archive-hero h1,
.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,
.soft-note p,
.archive-hero 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;
  color: var(--zht-muted);
  font-size: 17px;
  font-weight: 760;
}

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

.zht-card-actions .zht-quick-buy-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 {
  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: end;
  min-height: 330px;
}

.guided-steps article {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 36px 30px;
  border-left: 1px solid var(--zht-line);
}

.step-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 42px;
  stroke: var(--zht-accent);
  stroke-width: 3;
  fill: none;
}

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

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

.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);
}

.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(420px, 1.1fr) minmax(420px, 0.9fr);
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(90deg, rgba(8, 17, 11, 0.2), rgba(247, 248, 241, 0.72)),
    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.12), rgba(247, 248, 241, 0.62));
  pointer-events: none;
}

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

.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: clamp(34px, 5vw, 72px);
}

.product-main-image,
.product-side-image {
  margin: 0;
  overflow: hidden;
  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: 34px;
}

.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: 24px;
  opacity: 0.46;
}

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

.product-info {
  display: grid;
  align-content: center;
  padding: clamp(42px, 7vw, 110px);
  background: rgba(247, 248, 241, 0.66);
  backdrop-filter: blur(12px);
}

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

.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: 850px;
  margin: 0;
  font-size: clamp(58px, 8.6vw, 146px);
  line-height: 0.82;
  text-transform: uppercase;
}

.product-info .chinese,
.product-info .latin,
.product-info .price-line {
  margin: 18px 0 0;
  color: var(--zht-muted);
  font-size: 26px;
  line-height: 1.25;
}

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

.product-cart-box {
  max-width: 560px;
  margin-top: 42px;
}

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

.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;
}

.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: 0;
  margin: 0;
  border-top: 1px solid var(--zht-line);
}

.about-facts dl div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--zht-line);
}

.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;
}

.teagram span {
  display: block;
  height: 12px;
  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: 28px;
  margin-top: 56px;
}

.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;
}

.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;
  }

  .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;
  }

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

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

  .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: repeat(2, 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;
  }

  .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 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quiet-heading,
  .guided-choice,
  .about-facts,
  .brew-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .guided-steps,
  .story-columns,
  .collection-grid,
  .not-found-hero,
  .not-found-links {
    grid-template-columns: 1fr;
  }

  .not-found-links a {
    border-right: 0;
    border-bottom: 1px solid var(--zht-line);
  }

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

  .guided-steps article {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid var(--zht-line);
  }

  .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) {
  .quick-buy-drawer {
    width: 100vw;
    padding: 22px;
  }

  .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-product {
    grid-template-columns: 88px 1fr;
    gap: 14px;
  }

  .quick-buy-product figure {
    width: 88px;
  }

  .quick-buy-product h2 {
    font-size: clamp(26px, 9vw, 38px);
  }

  .quick-buy-grid,
  .quick-buy-form fieldset {
    grid-template-columns: 1fr;
  }

  .quick-buy-form fieldset label {
    min-height: 42px;
  }

  .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: block;
    min-height: 0;
    padding: 0;
    background: var(--zht-paper);
  }

  .concierge-hero::before {
    display: none;
  }

  .need-panel {
    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;
  }

  .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 {
    min-height: 420px;
    border: 0;
  }

  .recommend-card {
    grid-template-columns: 1fr;
    border-inline: 0;
  }

  .recommend-card figure {
    width: min(280px, 72vw);
    margin-inline: auto;
  }

  .quiet-section,
  .guided-choice,
  .product-about,
  .brew-section,
  .recommended,
  .shop-page {
    padding: 56px 24px;
  }

  .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,
  .soft-note h2,
  .archive-hero h1,
  .product-about h2,
  .recommended h2,
  .brew-section h2 {
    font-size: clamp(46px, 14vw, 70px);
  }

  .mood-grid,
  .fresh-row,
  .small-products {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82vw;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: none;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .mood-grid::-webkit-scrollbar,
  .fresh-row::-webkit-scrollbar,
  .small-products::-webkit-scrollbar {
    display: none;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .slider-affordance {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  }

  .slider-affordance::before,
  .slider-affordance::after {
    display: block;
    content: "";
  }

  .slider-affordance span {
    width: 34px;
    height: 5px;
    border-radius: 999px;
    background: rgba(5, 8, 5, 0.16);
  }

  .slider-affordance span.is-active {
    width: 58px;
    background: var(--zht-ink);
  }

  .slider-affordance::after {
    width: 38px;
    height: 18px;
    background: linear-gradient(90deg, transparent 0 45%, var(--zht-muted) 45% 55%, transparent 55%),
      linear-gradient(45deg, transparent 0 45%, var(--zht-muted) 45% 55%, transparent 55%);
  }

  .product-info {
    padding: 44px 24px;
  }

  .product-info h1 {
    font-size: clamp(56px, 17vw, 84px);
  }

  .product-main-image {
    padding: 16px;
  }

  .about-facts dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
