:root {
  --tt-steep: #17402c;
  --tt-steep-2: #2a6044;
  --tt-steep-deep: #102f21;
  --tt-matcha: #6f9a52;
  --tt-oolong: #b45f2a;
  --tt-gold: #a5843f;
  --tt-ink: #2a2420;
  --tt-graphite: #3b3833;
  --tt-stone: #7a6f60;
  --tt-mist: #e3dac9;
  --tt-paper: #fbf8f0;
  --tt-cream: #f6f1e6;
  --tt-warm-band: #efe7d8;
  --tt-white: #ffffff;
  --tt-shadow: 0 18px 40px -24px rgba(42, 36, 32, 0.32);
  --tt-font-display: Newsreader, Georgia, "Times New Roman", serif;
  --tt-font-sans: "Public Sans", Inter, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tt-font-mono: "IBM Plex Mono", "SF Mono", "JetBrains Mono", ui-monospace, monospace;
  --tt-font-cjk: "Noto Serif SC", "Songti SC", serif;
  --tt-max: 1280px;

  /* Encyclopedia design system (Encyclopedia.dc.html) */
  --enc-paper: #f6f1e6;
  --enc-surface: #fbf8f0;
  --enc-ink: #2a2420;
  --enc-soft: #7a6f60;
  --enc-line: #e3dac9;
  --enc-gold: #a5843f;
  --enc-accent: #6f7d5c;
  --enc-max: 1220px;
  --enc-pad: clamp(46px, 5.5vw, 84px);
  --enc-gutter: clamp(20px, 5vw, 64px);
  --enc-rom: block;
  --enc-nav-height: 84px;

  /* Oxidation scale — shared by families, brewing table and product badges */
  --enc-green: #7d8c5e;
  --enc-white: #c9bd9f;
  --enc-yellow: #cda94e;
  --enc-oolong: #b07a3c;
  --enc-red: #9a5236;
  --enc-dark: #5b4636;
  --enc-puer: #7a5a3c;
  --enc-scented: #c58fa0;
  --enc-gaba: #5f8a80;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--tt-cream);
  color: var(--tt-ink);
  scroll-behavior: smooth;
}

body.tt-theme {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.85), transparent 30rem),
    linear-gradient(180deg, #fbf8f1 0%, #f5efe4 100%);
  color: var(--tt-ink);
  font-family: var(--tt-font-sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.tt-skip-link,
.tt-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.tt-skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--tt-ink);
  color: var(--tt-cream);
}

.tt-main {
  max-width: 1440px;
  margin: 0 auto;
}

.tt-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
  padding: 12px clamp(18px, 4vw, 48px) 8px;
  border-bottom: 1px solid rgba(20, 17, 13, 0.08);
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: blur(18px);
}

.tt-brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: 0;
}

.tt-brand--image {
  width: var(--logo-width, 52px);
  max-width: 100%;
}

.tt-brand__logo {
  display: block;
  width: 100%;
  max-width: var(--logo-width, 52px);
  max-height: 52px;
  height: auto;
  object-fit: contain;
}

.tt-header--logo-center .tt-brand {
  grid-column: 2;
  justify-self: center;
}

.tt-header--logo-center .tt-nav {
  grid-column: 1;
  grid-row: 1;
  justify-content: flex-start;
}

.tt-header--logo-center .tt-header__actions {
  grid-column: 3;
  grid-row: 1;
}

.tt-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tt-nav a,
.tt-footer__nav a,
.tt-link {
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 500;
}

.tt-nav a {
  border: 0;
}

.tt-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.tt-profile-switch {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tt-mist);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--tt-ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.tt-profile-switch:hover,
.tt-profile-switch:focus-visible {
  border-color: var(--tt-ink);
  background: var(--tt-mist);
}

.tt-link[type="button"] {
  appearance: none;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.tt-icon-link {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--tt-mist);
  border-radius: 999px;
  background: var(--tt-paper);
}

.tt-cart-link,
.tt-btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--tt-ink);
  border-radius: var(--tt-button-radius, 999px);
  padding: 9px 17px;
  font-size: 14px;
  font-weight: 600;
}

.tt-cart-link {
  background: var(--tt-ink);
  color: var(--tt-cream);
}

/* tt-locale: language switcher */
.tt-locale {
  position: relative;
  height: 34px;
  border: 1px solid var(--tt-mist);
  border-radius: 999px;
  background: var(--tt-paper);
  color: var(--tt-ink);
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.tt-locale:hover {
  border-color: var(--tt-stone);
}

.tt-locale:focus-within {
  outline: 2px solid var(--tt-matcha);
  outline-offset: 2px;
}

.tt-locale__summary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 0 8px 0 10px;
  list-style: none;
  cursor: pointer;
}

.tt-locale__summary::-webkit-details-marker {
  display: none;
}

.tt-locale__globe,
.tt-locale__chevron {
  display: inline-flex;
  align-items: center;
  color: var(--tt-stone);
  pointer-events: none;
}

.tt-locale__current {
  font-family: var(--tt-font-sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.tt-locale__chevron {
  transition: transform 0.15s ease;
}

.tt-locale[open] .tt-locale__chevron {
  transform: rotate(180deg);
}

.tt-locale__menu {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 6px;
  border: 1px solid var(--tt-mist);
  border-radius: 14px;
  background: var(--tt-paper);
  box-shadow: 0 18px 48px rgb(25 38 31 / 14%);
}

.tt-locale__link {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border-radius: 9px;
  color: var(--tt-ink);
  font-family: var(--tt-font-sans);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.tt-locale__link:hover,
.tt-locale__link[aria-current='page'] {
  background: var(--tt-cream);
}

.tt-locale__link[aria-current='page'] {
  color: var(--tt-matcha);
}

.tt-locale__code {
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.tt-announcement {
  grid-column: 1 / -1;
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.tt-section,
.tt-hero {
  max-width: var(--tt-max);
  margin: 0 auto;
  padding: 72px clamp(16px, 4vw, 40px);
}

.tt-section[data-color-scheme],
.tt-hero[data-color-scheme] {
  background: var(--tt-section-bg, transparent);
  color: var(--tt-section-text, inherit);
}

.tt-section[data-color-scheme] .tt-display,
.tt-section[data-color-scheme] h1,
.tt-section[data-color-scheme] h2,
.tt-section[data-color-scheme] p,
.tt-section[data-color-scheme] .tt-eyebrow,
.tt-hero[data-color-scheme] .tt-display,
.tt-hero[data-color-scheme] h1,
.tt-hero[data-color-scheme] h2,
.tt-hero[data-color-scheme] p,
.tt-hero[data-color-scheme] .tt-eyebrow,
.tt-hero[data-color-scheme] figcaption {
  color: inherit;
}

.tt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 56px;
  align-items: center;
}

.tt-hero__copy,
.tt-section__header {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.tt-eyebrow,
.tt-mono,
.tt-product__specs-group,
.tt-product__specs dt {
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tt-display,
.tt-section h1,
.tt-section h2,
.tt-product h1 {
  margin: 0;
  color: var(--tt-ink);
  font-family: var(--tt-font-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
}

.tt-display {
  max-width: 11ch;
  font-size: 76px;
}

.tt-section h1,
.tt-product h1 {
  font-size: 58px;
}

.tt-section h2 {
  font-size: 44px;
}

.tt-product h1 em {
  display: block;
  color: var(--tt-steep);
  font-size: 0.54em;
  font-style: italic;
}

.tt-lede,
.tt-section p,
.tt-simple-page p {
  max-width: 60ch;
  margin: 0;
  color: var(--tt-graphite);
  font-size: 18px;
}

.tt-hero__facts,
.tt-action-row,
.tt-catalog__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.tt-hero__facts span {
  border-top: 1px solid var(--tt-mist);
  padding-top: 12px;
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 12px;
}

.tt-btn--primary {
  background: var(--tt-steep);
  color: var(--tt-cream);
}

.tt-btn--primary:hover,
.tt-cart-link:hover {
  background: var(--tt-steep-2);
  border-color: var(--tt-steep-2);
}

.tt-hero__visual {
  margin: 0;
}

.tt-hero__art {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 5;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 16%, rgba(180, 95, 42, 0.16), transparent 34%),
    linear-gradient(135deg, var(--tt-paper), #e8ddc6);
  box-shadow: var(--tt-shadow);
}

.tt-hero__art img {
  width: 148px;
  opacity: 0.96;
}

.tt-hero__spotlight {
  display: grid;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  background: var(--tt-paper);
  box-shadow: var(--tt-shadow);
}

.tt-hero__spotlight-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8ddc6;
}

.tt-hero__spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-hero__spotlight-body {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 4vw, 40px);
}

.tt-hero__spotlight h2 {
  margin: 0;
  color: var(--tt-ink);
  font-family: var(--tt-font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
}

.tt-hero__spotlight h2 a {
  color: inherit;
  text-decoration: none;
}

.tt-hero__spotlight p {
  margin: 0;
  color: var(--tt-graphite);
  font-size: 16px;
}

.tt-hero__spotlight-price {
  color: var(--tt-steep);
  font-family: var(--tt-font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.tt-hero__spotlight-products {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.tt-hero__spotlight-products li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--tt-mist);
  padding-top: 10px;
  font-size: 14px;
}

.tt-hero__spotlight-products a {
  color: var(--tt-ink);
  text-decoration: none;
}

.tt-hero__leaf {
  position: absolute;
  display: block;
  width: 130px;
  height: 44px;
  border: 1px solid rgba(23, 64, 44, 0.38);
  border-radius: 999px 0 999px 0;
  background: rgba(111, 154, 82, 0.14);
}

.tt-hero__leaf--one {
  top: 20%;
  left: 14%;
}

.tt-hero__leaf--two {
  right: 12%;
  bottom: 24%;
  background: rgba(180, 95, 42, 0.13);
}

.tt-hero__leaf--three {
  right: 22%;
  top: 13%;
  width: 86px;
}

.tt-hero figcaption {
  padding-top: 12px;
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tt-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: var(--tt-max);
  margin: -22px auto 0;
  padding: 0 clamp(16px, 4vw, 40px) 38px;
}

.tt-stat {
  display: grid;
  gap: 6px;
  min-height: 116px;
  align-content: center;
  border-block: 1px solid rgba(20, 17, 13, 0.13);
  border-left: 1px solid rgba(20, 17, 13, 0.13);
  padding: 20px clamp(14px, 2vw, 24px);
  background: rgba(251, 249, 243, 0.72);
}

.tt-stat:last-child {
  border-right: 1px solid rgba(20, 17, 13, 0.13);
}

.tt-stat strong {
  color: var(--tt-ink);
  font-family: var(--tt-font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 0.92;
}

.tt-stat span {
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tt-section__header--wide {
  max-width: 920px;
}

.tt-fresh {
  padding-top: 40px;
}

.tt-fresh__row,
.tt-retailers__grid,
.tt-where-to-buy__list,
.tt-journal__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.tt-fresh-card,
.tt-retailers__grid a,
.tt-where-to-buy__card,
.tt-post {
  display: grid;
  min-height: 172px;
  gap: 8px;
  align-content: start;
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  padding: 18px;
  background: var(--tt-paper);
}

.tt-fresh-card__art {
  width: 48px;
  height: 48px;
  border-radius: 999px;
}

.tt-fresh-card__art--oolong,
.tt-tea-card__media--oolong {
  background: #a8763a;
}

.tt-fresh-card__art--green,
.tt-tea-card__media--green {
  background: var(--tt-matcha);
}

.tt-fresh-card__art--rock,
.tt-tea-card__media--rock {
  background: #3d2817;
}

.tt-fresh-card__art--white,
.tt-tea-card__media--white {
  background: #d9cfb8;
}

.tt-tea-card__media--puerh {
  background: #5c3317;
}

.tt-fresh-card strong,
.tt-tea-card strong,
.tt-post strong,
.tt-retailers__grid a,
.tt-story-card strong {
  color: var(--tt-ink);
  font-family: var(--tt-font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.tt-fresh-card span:not(.tt-fresh-card__art),
.tt-tea-card small,
.tt-tea-card .product-card__vendor,
.tt-retailers__grid span,
.tt-post small {
  color: var(--tt-stone);
  font-size: 13px;
}

.tb-product-vendor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tb-product-vendor__logo,
.tb-product-vendor__mark {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
}

.tb-product-vendor__logo {
  object-fit: contain;
}

.tb-product-vendor__mark {
  display: inline-grid;
  place-items: center;
  background: var(--tt-oolong);
  color: var(--tt-paper);
  font-family: var(--tt-font-display);
}

.tt-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.tt-category-tile {
  display: grid;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(20, 17, 13, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(251, 249, 243, 0.86);
  box-shadow: 0 16px 34px -30px rgba(20, 17, 13, 0.45);
}

.tt-category-art {
  position: relative;
  display: grid;
  aspect-ratio: 1.12 / 1;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.56), transparent 0 24%, transparent 42%),
    linear-gradient(135deg, #d9e2bd, #7a9a63);
}

.tt-category-art span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(251, 249, 243, 0.7);
  color: rgba(20, 17, 13, 0.72);
  font-family: var(--tt-font-display);
  font-size: 34px;
  line-height: 1;
}

.tt-category-art--white {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.72), transparent 0 25%, transparent 44%),
    linear-gradient(135deg, #f2ead6, #cfc2a7);
}

.tt-category-art--oolong {
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.48), transparent 0 24%, transparent 42%),
    linear-gradient(135deg, #d6a06a, #7b4a28);
}

.tt-category-art--black {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.34), transparent 0 23%, transparent 42%),
    linear-gradient(135deg, #895b38, #21140e);
}

.tt-category-art--puer {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.32), transparent 0 22%, transparent 42%),
    linear-gradient(135deg, #9a703f, #4e2715);
}

.tt-category-art--flower {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.6), transparent 0 24%, transparent 42%),
    linear-gradient(135deg, #e9d8a8, #b98967);
}

.tt-category-art--gift {
  background:
    radial-gradient(circle at 23% 18%, rgba(255, 255, 255, 0.48), transparent 0 24%, transparent 42%),
    linear-gradient(135deg, #c8bb75, #17402c);
}

.tt-category-art--teaware {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.5), transparent 0 24%, transparent 42%),
    linear-gradient(135deg, #c7ced1, #596866);
}

.tt-category-tile strong {
  color: var(--tt-ink);
  font-family: var(--tt-font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.05;
}

.tt-category-tile small {
  color: var(--tt-stone);
  font-size: 13px;
  line-height: 1.35;
}

.tt-fresh-card b,
.tt-tea-card b {
  color: var(--tt-oolong);
  font-family: var(--tt-font-mono);
  font-size: 12px;
}

.tt-map-page {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 32px 48px;
  align-items: start;
}

.tt-map-page__intro {
  display: grid;
  gap: 18px;
  max-width: 540px;
}

.tt-map-page__visual {
  min-height: var(--tt-map-height-desktop, 680px);
  overflow: hidden;
  border: 1px solid rgba(23, 64, 44, 0.18);
  border-radius: 8px;
  background: var(--tt-paper);
}

.tt-interactive-map__frame {
  display: block;
  width: 100%;
  height: var(--tt-map-height-desktop, 680px);
  border: 0;
  background: var(--tt-cream);
}

.tt-interactive-map__fallback {
  display: grid;
  min-height: var(--tt-map-height-desktop, 680px);
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 32px;
  background: var(--tt-cream);
  text-align: center;
}

.tt-interactive-map__fallback strong {
  color: var(--tt-ink);
  font-family: var(--tt-font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.tt-interactive-map__fallback small {
  max-width: 460px;
  color: var(--tt-stone);
  font-size: 14px;
  line-height: 1.6;
}

.tt-interactive-map__native {
  display: grid;
  min-height: var(--tt-map-height-desktop, 680px);
  background:
    linear-gradient(rgba(23, 64, 44, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 64, 44, 0.08) 1px, transparent 1px),
    var(--tt-cream);
  background-size: 48px 48px;
}

.tt-interactive-map__native-stage {
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
}

.tt-interactive-map__native-stage strong {
  color: var(--tt-ink);
  font-family: var(--tt-font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.tt-interactive-map__native-stage small {
  color: var(--tt-stone);
  font-size: 14px;
}

.tt-interactive-map__note {
  margin: 0;
  border-top: 1px solid rgba(23, 64, 44, 0.14);
  padding: 12px 14px;
  color: var(--tt-stone);
  font-size: 13px;
  line-height: 1.5;
  background: rgba(251, 249, 243, 0.86);
}

.tt-map-page__regions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tt-map-region {
  display: grid;
  gap: 10px;
  min-height: 190px;
  align-content: start;
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  padding: 18px;
  background: var(--tt-paper);
}

.tt-map-region span {
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tt-map-region h2 {
  margin: 0;
  color: var(--tt-ink);
  font-size: 28px;
}

.tt-map-region p {
  margin: 0;
  color: var(--tt-stone);
  font-size: 14px;
}

.tt-map-region a {
  align-self: end;
  color: var(--tt-green);
  font-family: var(--tt-font-mono);
  font-size: 12px;
  letter-spacing: 0;
  text-decoration: underline;
  text-transform: uppercase;
}

.tt-finder-cta,
.tt-ritual,
.tt-newsletter,
.tt-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 40px;
  align-items: center;
}

.tt-finder-cta,
.tt-newsletter {
  border-block: 1px solid var(--tt-mist);
}

.tt-newsletter[data-color-scheme] {
  border-block: 0;
  background: var(--tt-warm-band, var(--tt-section-bg, var(--tt-cream)));
  color: var(--tt-ink);
}

.tt-compass,
.tt-teapot {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  background: var(--tt-paper);
}

.tt-compass span {
  width: 160px;
  height: 160px;
  border: 1px solid var(--tt-steep);
  border-radius: 999px;
  background:
    linear-gradient(45deg, transparent 48%, var(--tt-steep) 48%, var(--tt-steep) 52%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--tt-oolong) 48%, var(--tt-oolong) 52%, transparent 52%);
}

.tt-teapot span {
  width: 180px;
  height: 118px;
  border: 2px solid var(--tt-steep);
  border-radius: 8px 8px 46px 46px;
  background: rgba(23, 64, 44, 0.08);
}

.tt-ritual__meta,
.tt-ritual__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 16px;
}

.tt-ritual__meta {
  color: var(--tt-stone);
  font-size: 13px;
  font-weight: 600;
}

.tt-ritual__meta a {
  color: var(--tt-steep);
  font-family: var(--tt-font-display);
  font-size: 20px;
  text-decoration: none;
}

.tt-ritual__product {
  display: grid;
  gap: 14px;
  align-self: stretch;
}

.tt-ritual__media {
  display: block;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(23, 64, 44, 0.14);
  border-radius: 8px;
  background: var(--tt-paper);
}

.tt-ritual__image,
.tt-ritual__fallback {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.tt-ritual__image {
  display: block;
  object-fit: cover;
}

.tt-ritual__stage,
.tt-ritual__fallback {
  min-height: 320px;
}

.tt-ritual__gallery .tt-product__gallery-slide a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

.tt-ritual__gallery .tt-ritual__image {
  height: 100%;
  object-fit: cover;
}

.tt-ritual__product h3,
.tt-ritual__product p {
  margin: 0;
}

.tt-ritual__product h3 {
  font-family: var(--tt-font-display);
  font-size: 24px;
  line-height: 1.15;
}

.tt-ritual__product h3 a {
  color: inherit;
  text-decoration: none;
}

.tt-ritual__product p {
  color: var(--tt-stone);
  font-size: 13px;
}

.tt-search,
.tt-search-results__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 620px;
  border: 1px solid var(--tt-mist);
  border-radius: 999px;
  background: var(--tt-paper);
  overflow: hidden;
}

.tt-search input,
.tt-search-results__form input,
.tt-newsletter__form input {
  width: 100%;
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--tt-ink);
  font: inherit;
  outline: none;
  padding: 0 18px;
}

.tt-search button,
.tt-search-results__form button {
  border: 0;
  border-left: 1px solid var(--tt-mist);
  background: var(--tt-paper);
  color: var(--tt-steep);
  font-weight: 700;
  padding: 0 18px;
}

.tt-search-results {
  display: grid;
  gap: 24px;
}

.tt-search-results__empty {
  display: grid;
  gap: 12px;
  max-width: 640px;
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  padding: 24px;
  background: rgba(251, 249, 243, 0.72);
}

.tt-search-results__empty h2,
.tt-search-results__empty p {
  margin: 0;
}

.tt-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 20px;
}

.tt-chip-row a {
  border: 1px solid var(--tt-mist);
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--tt-paper);
  font-size: 13px;
}

.tt-chip-row .is-active {
  background: var(--tt-ink);
  color: var(--tt-cream);
}

.tt-collection-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  margin: 18px 0 24px;
}

.tt-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tt-filter-group {
  min-width: 190px;
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  background: rgba(251, 249, 243, 0.72);
}

.tt-filter-group summary {
  cursor: pointer;
  padding: 10px 12px;
  color: var(--tt-graphite);
  font-family: var(--tt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tt-filter-values {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0 10px 10px;
  list-style: none;
}

.tt-filter-values a,
.tt-filter-values--price span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 32px;
  align-items: center;
  border-radius: 6px;
  padding: 6px 8px;
  color: var(--tt-graphite);
  font-size: 13px;
}

.tt-filter-values a:hover,
.tt-filter-values a.is-active {
  background: var(--tt-cream);
  color: var(--tt-steep);
}

.tt-filter-values em {
  color: var(--tt-stone);
  font-style: normal;
}

.tt-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-sort label {
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tt-sort select,
.tt-sort button {
  min-height: 38px;
  border: 1px solid var(--tt-mist);
  border-radius: 999px;
  background: var(--tt-paper);
  color: var(--tt-ink);
  font: inherit;
  font-size: 13px;
}

.tt-sort select {
  padding: 0 34px 0 14px;
}

.tt-sort button {
  padding: 0 14px;
  font-weight: 700;
}

.tt-catalog__bar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 12px;
}

.tt-tea-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.tt-tea-card,
.tt-story-card {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 318px;
}

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

.tt-tea-card--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.tt-tea-card__media,
.product-card__media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  background-image:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.36), transparent 24%),
    var(--tt-paper-grain-url);
}

.product-card__media-link {
  display: block;
}

.product-card__media--natural {
  aspect-ratio: auto;
}

.product-card__media--square {
  aspect-ratio: 1 / 1;
}

.product-card__media--portrait {
  aspect-ratio: 3 / 4;
}

.product-card__media--landscape {
  aspect-ratio: 4 / 3;
}

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

.product-card__media--placeholder {
  display: grid;
  min-height: 180px;
  place-items: center;
  gap: 10px;
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  background:
    radial-gradient(circle at 32% 24%, rgba(180, 95, 42, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(23, 64, 44, 0.08), rgba(245, 239, 224, 0.78));
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.product-card__media-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(23, 64, 44, 0.2);
  border-radius: 999px;
  color: var(--tt-steep);
  font-family: var(--tt-font-display);
  font-size: 30px;
  letter-spacing: 0;
  text-transform: none;
}

.product-card__body {
  display: grid;
  gap: 8px;
}

.product-card__title {
  margin: 0;
  color: var(--tt-ink);
  font-family: var(--tt-font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.product-card__title a {
  color: inherit;
}

.product-card__description {
  margin: 0;
  color: var(--tt-graphite);
  font-size: 14px;
  line-height: 1.45;
}

.product-card__price {
  color: var(--tt-oolong);
  font-family: var(--tt-font-mono);
  font-size: 12px;
  font-weight: 600;
}

.product-card__rating {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: var(--tt-graphite);
  font-family: var(--tt-font-mono);
  font-size: 12px;
  line-height: 1.3;
}

.product-card__rating-stars {
  color: var(--tt-oolong);
  font-size: 14px;
  line-height: 1;
}

.product-card__rating-score {
  color: var(--tt-ink);
  font-weight: 700;
}

.product-card__rating-count {
  color: var(--tt-stone);
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.product-card__button {
  width: fit-content;
}

.tt-pagination {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.tt-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.tt-pagination a,
.tt-pagination span {
  display: inline-flex;
  min-width: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tt-mist);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--tt-paper);
  color: var(--tt-ink);
  font-size: 13px;
}

.tt-pagination .current {
  background: var(--tt-ink);
  color: var(--tt-cream);
}

.tt-tea-card strong em {
  display: inline;
  color: var(--tt-stone);
  font-family: "Noto Serif SC", serif;
  font-size: 0.72em;
  font-style: normal;
}

.tt-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  background: var(--tt-oolong);
  color: var(--tt-cream);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 8px;
  text-transform: uppercase;
}

.tt-story-card {
  grid-column: span 2;
  border-radius: 8px;
  padding: 22px;
  background: var(--tt-steep);
  color: var(--tt-cream);
}

.tt-story-card .tt-eyebrow,
.tt-story-card strong {
  color: var(--tt-cream);
}

.tt-steps {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.tt-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: baseline;
  border-top: 1px solid var(--tt-mist);
  padding-top: 10px;
}

.tt-steps span {
  color: var(--tt-oolong);
  font-family: var(--tt-font-mono);
  font-size: 12px;
}

.tt-post__image {
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    radial-gradient(circle at 68% 25%, rgba(180, 95, 42, 0.2), transparent 28%),
    var(--tt-paper);
}

.tt-post__image--two {
  background:
    radial-gradient(circle at 30% 30%, rgba(23, 64, 44, 0.2), transparent 28%),
    #efe5d2;
}

.tt-post__image--three {
  background:
    radial-gradient(circle at 46% 26%, rgba(111, 154, 82, 0.18), transparent 28%),
    #ffffff;
}

.tt-retailers__grid a {
  min-height: 124px;
}

.tt-where-to-buy {
  gap: 24px;
}

.tt-where-to-buy__header {
  max-width: 760px;
}

.tt-where-to-buy__list {
  padding: 0;
  list-style: none;
}

.tt-where-to-buy--list .tt-where-to-buy__list {
  grid-template-columns: 1fr;
}

.tt-where-to-buy__card {
  min-height: 100%;
}

.tt-where-to-buy__card h3 {
  margin: 0;
  font-family: var(--tt-font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.tt-where-to-buy__card p,
.tt-where-to-buy__pending,
.tt-where-to-buy__fallback p,
.tt-where-to-buy__map span {
  color: var(--tt-stone);
  font-size: 13px;
}

.tt-where-to-buy__meta {
  display: grid;
  gap: 6px;
  margin: 0;
}

.tt-where-to-buy__meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(20, 17, 13, 0.08);
  padding-top: 6px;
}

.tt-where-to-buy__meta dt {
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tt-where-to-buy__meta dd {
  margin: 0;
  color: var(--tt-ink);
  text-align: right;
}

.tt-where-to-buy__map,
.tt-where-to-buy__fallback {
  border: 1px dashed rgba(20, 17, 13, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.tt-where-to-buy__map {
  display: grid;
  min-height: 220px;
  place-items: center;
  margin-top: 20px;
}

.tt-where-to-buy__fallback h3 {
  margin: 0 0 8px;
  font-family: var(--tt-font-display);
  font-size: 24px;
  font-weight: 400;
}

.tt-newsletter__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.tt-newsletter__form label {
  border: 1px solid var(--tt-mist);
  border-radius: 999px;
  background: var(--tt-paper);
}

.tt-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  max-width: var(--tt-max);
  margin: 40px auto 0;
  padding: 56px clamp(16px, 4vw, 40px) 32px;
  border-top: 1px solid var(--tt-mist);
}

.tt-footer[data-color-scheme] {
  background: var(--tt-steep-deep, var(--tt-footer-bg, transparent));
  color: var(--tt-footer-text, inherit);
}

.tt-footer__brand {
  display: grid;
  gap: 16px;
  max-width: 340px;
}

.tt-footer__brand img {
  width: 54px;
}

.tt-footer__brand p {
  margin: 0;
  color: var(--tt-graphite);
  font-family: var(--tt-font-display);
  font-size: 24px;
  line-height: 1.22;
}

.tt-footer[data-color-scheme] .tt-footer__brand p,
.tt-footer[data-color-scheme] .tt-footer__nav a,
.tt-footer[data-color-scheme] .tt-footer__social a,
.tt-footer[data-color-scheme] small,
.tt-footer[data-color-scheme] .tt-footer__powered {
  color: inherit;
}

.tt-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 8px 20px;
}

.tt-footer__social {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 8px 18px;
}

.tt-footer small {
  grid-column: 1 / -1;
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tt-product {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, 1.08fr) minmax(360px, 0.82fr);
  gap: clamp(42px, 6vw, 84px);
}

.tt-product__hero {
  display: grid;
  grid-column: 1 / -1;
  align-items: start;
  grid-template-columns: minmax(320px, 1.08fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 5vw, 68px);
  width: 100%;
}

.tt-product__visual {
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  padding: 16px;
  background: var(--tt-paper);
}

.tt-product__summary {
  display: grid;
  align-content: start;
  gap: 16px;
  max-width: 560px;
}

.tt-product__store-pdp .tt-product__summary {
  position: sticky;
  top: 92px;
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--tt-paper);
  box-shadow: 0 18px 42px rgb(20 17 13 / 0.08);
}

.tt-product__copy {
  display: grid;
  gap: 18px;
}

.tt-product__details {
  display: grid;
  grid-column: 1 / -1;
  gap: clamp(28px, 4vw, 44px);
  width: 100%;
  max-width: 1160px;
  justify-self: center;
}

.tt-product__specs {
  display: grid;
  gap: 28px;
  margin: 0;
}

.tt-product__store-specs {
  gap: 12px;
  width: 100%;
}

.tt-product__spec-accordion {
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  background: var(--tt-paper);
}

.tt-product__spec-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  color: var(--tt-steep);
  font-family: var(--tt-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tt-product__spec-accordion summary::-webkit-details-marker {
  display: none;
}

.tt-product__spec-accordion summary::after {
  content: "+";
  float: right;
  color: var(--tt-oolong);
  font-size: 16px;
  line-height: 1;
}

.tt-product__spec-accordion[open] summary::after {
  content: "-";
}

.tt-product__spec-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0 20px 20px;
}

.tt-product__spec-row {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 94px;
  border-top: 1px solid var(--tt-mist);
  padding-top: 14px;
}

.tt-product__spec-row dt {
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tt-product__spec-row dd {
  margin: 0;
  color: var(--tt-ink);
  font-family: var(--tt-font-sans);
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.tt-product__spec-note {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--tt-graphite);
  font-size: 15px;
  line-height: 1.55;
}

.tt-product__spec-cta {
  justify-self: start;
  margin-top: 8px;
  color: var(--tt-steep);
  font-family: var(--tt-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.tt-product__spec-group {
  display: grid;
  gap: 14px;
}

.tt-product__specs-heading {
  margin: 0;
  color: var(--tt-steep);
  font-family: var(--tt-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tt-product__spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  margin: 0;
}

.tt-product__spec-card {
  display: grid;
  min-height: 104px;
  align-content: space-between;
  gap: 10px;
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  padding: 16px;
  background: var(--tt-paper);
}

.tt-product__spec-card--wide {
  grid-column: span 2;
}

.tt-product__spec-card--story {
  grid-column: 1 / -1;
  align-content: start;
}

.tt-product__spec-card dd {
  margin: 0;
  color: var(--tt-ink);
  font-family: var(--tt-font-display);
  font-size: 19px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.tt-product__spec-card--wide dd,
.tt-product__spec-card--story dd {
  color: var(--tt-graphite);
  font-family: var(--tt-font-sans);
  font-size: 15px;
  line-height: 1.58;
}

.tt-product__spec-card dd > * {
  margin: 0;
}

.tt-product__spec-card dd > * + * {
  margin-top: 8px;
}

.tt-product__spec-card dd ul {
  padding-left: 1.1em;
}

.tt-product__spec-card dd h2,
.tt-product__spec-card dd h3 {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.25;
}

.tt-product__spec-card dd li {
  margin-top: 4px;
}

.tt-simple-page {
  display: grid;
  min-height: 52vh;
  align-content: center;
  gap: 20px;
}

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

  .tt-header--logo-center .tt-brand,
  .tt-header--logo-center .tt-nav,
  .tt-header--logo-center .tt-header__actions {
    grid-column: auto;
    grid-row: auto;
  }

  .tt-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .tt-hero,
  .tt-finder-cta,
  .tt-ritual,
  .tt-newsletter,
  .tt-product,
  .tt-product__hero,
  .tt-map-page {
    grid-template-columns: 1fr;
  }

  .tt-product__store-pdp .tt-product__summary {
    position: static;
    max-width: none;
  }

  .tt-map-page__regions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tt-collection-filters {
    grid-template-columns: 1fr;
  }

  .tt-sort {
    justify-self: start;
  }

  .tt-display {
    font-size: 58px;
  }

  .tt-section h1,
  .tt-product h1 {
    font-size: 46px;
  }

  .tt-section h2 {
    font-size: 36px;
  }

  .tt-fresh__row,
  .tt-retailers__grid,
  .tt-where-to-buy__list,
  .tt-journal__grid,
  .tt-category-grid,
  .tt-tea-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tt-stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tt-stat:nth-child(2n) {
    border-right: 1px solid rgba(20, 17, 13, 0.13);
  }
}

@media (max-width: 640px) {
  body.tt-theme {
    font-size: 15px;
  }

  .tt-header {
    gap: 14px;
  }

  .tt-brand__logo {
    max-height: 48px;
  }

  .tt-header__actions {
    gap: 6px;
  }

  .tt-profile-switch {
    max-width: 116px;
    padding-inline: 9px;
    font-size: 11px;
  }

  .tt-cart-link {
    padding-inline: 12px;
  }

  .tt-section,
  .tt-hero {
    padding: 52px 16px;
  }

  .tt-display,
  .tt-section h1,
  .tt-product h1 {
    font-size: 38px;
  }

  .tt-section h2 {
    font-size: 31px;
  }

  .tt-lede,
  .tt-section p {
    font-size: 16px;
  }

  .tt-hero__art {
    min-height: 300px;
  }

  .tt-fresh__row,
  .tt-retailers__grid,
  .tt-where-to-buy__list,
  .tt-journal__grid,
  .tt-category-grid,
  .tt-tea-grid,
  .tt-product__spec-grid,
  .tt-map-page__regions {
    grid-template-columns: 1fr;
  }

  .tt-stats-strip {
    grid-template-columns: 1fr;
    margin-top: -12px;
    padding-bottom: 18px;
  }

  .tt-stat {
    min-height: 94px;
    border-right: 1px solid rgba(20, 17, 13, 0.13);
  }

  .tt-map-page__visual,
  .tt-interactive-map__frame,
  .tt-interactive-map__fallback,
  .tt-interactive-map__native {
    min-height: var(--tt-map-height-mobile, 520px);
  }

  .tt-interactive-map__frame {
    height: var(--tt-map-height-mobile, 520px);
  }

  .tt-interactive-map__fallback strong {
    font-size: 34px;
  }

  .tt-interactive-map__native-stage strong {
    font-size: 34px;
  }

  .tt-filter-list,
  .tt-sort {
    display: grid;
    width: 100%;
  }

  .tt-filter-group,
  .tt-sort select,
  .tt-sort button {
    width: 100%;
  }

  .tt-tea-card--feature,
  .tt-story-card {
    grid-column: span 1;
  }

  .tt-newsletter__form,
  .tt-search,
  .tt-search-results__form,
  .tt-product__facts,
  .tt-footer {
    grid-template-columns: 1fr;
  }

  .tt-product__spec-card {
    min-height: 96px;
  }

  .tt-product__spec-card--wide,
  .tt-product__spec-card--story {
    grid-column: span 1;
  }
}

/* Product detail — real catalog data (gallery, price, native name, sku) */
.tt-product__gallery--art {
  position: relative;
  display: grid;
  grid-template-columns: minmax(96px, 142px) minmax(0, 1fr);
  gap: clamp(12px, 1.3vw, 18px);
  align-items: start;
  min-width: 0;
}

.tt-product__gallery--solo {
  grid-template-columns: 1fr;
}

.tt-product__gallery-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.tt-product__gallery-thumbs {
  display: grid;
  gap: 10px;
  min-width: 0;
  max-height: min(72vh, 760px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.tt-product__gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.tt-product__gallery-thumb {
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.64;
  transition: opacity 180ms ease, transform 180ms ease;
}

.tt-product__gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(20, 17, 13, 0.08);
  background: var(--tt-cream);
  object-fit: cover;
}

.tt-product__gallery-thumb--fallback {
  border: 1px solid rgba(20, 17, 13, 0.08);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.7), transparent 30%),
    linear-gradient(145deg, rgba(251, 249, 243, 0.96), rgba(238, 229, 208, 0.9));
  overflow: hidden;
}

.tt-product__fallback-thumb {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: end start;
  padding: 12px;
  color: var(--tt-paper);
  font-family: var(--tt-font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  isolation: isolate;
}

.tt-product__fallback-thumb::before,
.tt-product__fallback-thumb::after {
  position: absolute;
  content: "";
  z-index: -1;
}

.tt-product__fallback-thumb::before {
  inset: 15%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  filter: blur(1px);
}

.tt-product__fallback-thumb::after {
  inset: auto 10% 12% 28%;
  height: 48%;
  border-radius: 999px 999px 52% 52%;
  transform: rotate(-18deg);
}

.tt-product__fallback-thumb--leaf {
  background: linear-gradient(135deg, #224f35, #8d9a61);
}

.tt-product__fallback-thumb--leaf::after {
  background: linear-gradient(135deg, rgba(244, 224, 154, 0.82), rgba(30, 73, 48, 0.72));
}

.tt-product__fallback-thumb--brew {
  background: linear-gradient(135deg, #7f3f1d, #d29a4a);
}

.tt-product__fallback-thumb--brew::after {
  inset: auto 12% 16% 18%;
  height: 34%;
  border-radius: 999px;
  background: rgba(255, 237, 184, 0.84);
  transform: rotate(0deg);
}

.tt-product__fallback-thumb--origin {
  background: linear-gradient(135deg, #102c24, #b45f2a);
}

.tt-product__fallback-thumb--origin::after {
  inset: 22% 18% 20% 34%;
  height: auto;
  border: 1px solid rgba(251, 249, 243, 0.68);
  border-radius: 999px;
  background: transparent;
  transform: rotate(24deg);
}

.tt-product__gallery-thumb:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.tt-product__gallery-stage {
  display: grid;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(135deg, #f7f2e8 0%, #eee6d6 100%);
}

.tt-product__gallery-slide {
  position: relative;
  display: grid;
  grid-area: 1 / 1;
  min-width: 0;
  place-items: center;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.tt-product__gallery-input:nth-of-type(1):checked ~ .tt-product__gallery-stage .tt-product__gallery-slide:nth-child(1),
.tt-product__gallery-input:nth-of-type(2):checked ~ .tt-product__gallery-stage .tt-product__gallery-slide:nth-child(2),
.tt-product__gallery-input:nth-of-type(3):checked ~ .tt-product__gallery-stage .tt-product__gallery-slide:nth-child(3),
.tt-product__gallery-input:nth-of-type(4):checked ~ .tt-product__gallery-stage .tt-product__gallery-slide:nth-child(4),
.tt-product__gallery-input:nth-of-type(5):checked ~ .tt-product__gallery-stage .tt-product__gallery-slide:nth-child(5),
.tt-product__gallery-input:nth-of-type(6):checked ~ .tt-product__gallery-stage .tt-product__gallery-slide:nth-child(6),
.tt-product__gallery-input:nth-of-type(7):checked ~ .tt-product__gallery-stage .tt-product__gallery-slide:nth-child(7),
.tt-product__gallery-input:nth-of-type(8):checked ~ .tt-product__gallery-stage .tt-product__gallery-slide:nth-child(8) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tt-product__gallery-input:nth-of-type(1):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(1),
.tt-product__gallery-input:nth-of-type(2):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(2),
.tt-product__gallery-input:nth-of-type(3):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(3),
.tt-product__gallery-input:nth-of-type(4):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(4),
.tt-product__gallery-input:nth-of-type(5):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(5),
.tt-product__gallery-input:nth-of-type(6):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(6),
.tt-product__gallery-input:nth-of-type(7):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(7),
.tt-product__gallery-input:nth-of-type(8):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(8) {
  opacity: 1;
  transform: none;
}

.tt-product__image {
  display: block;
  box-sizing: border-box;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: 100%;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.tt-product__gallery--blend-background .tt-product__gallery-stage {
  background: transparent;
  mix-blend-mode: multiply;
}

.tt-product__gallery--blend-background .tt-product__image {
  background: transparent;
  mix-blend-mode: normal;
}

.tt-product__gallery--blend-background .tt-product__gallery-thumb img {
  background: transparent;
  mix-blend-mode: multiply;
}

.tt-product__gallery-zoom {
  position: absolute;
  z-index: 2;
  right: clamp(10px, 2vw, 18px);
  bottom: clamp(10px, 2vw, 18px);
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(20, 17, 13, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--tt-ink);
  background: rgba(251, 249, 243, 0.9);
  box-shadow: 0 12px 30px rgba(35, 29, 21, 0.12);
  font: 700 10px/1 var(--tt-font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: zoom-in;
  backdrop-filter: blur(10px);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.tt-product__gallery-zoom:hover {
  border-color: rgba(23, 64, 44, 0.42);
  background: var(--tt-paper);
  transform: translateY(-1px);
}

.tt-product__gallery-zoom:focus-visible,
.tt-product__gallery-dialog-close:focus-visible {
  outline: 2px solid var(--tt-steep);
  outline-offset: 3px;
}

.tt-product__gallery-zoom-icon {
  font-size: 17px;
  line-height: 1;
}

.tt-product__gallery-dialog {
  width: min(94vw, 1180px);
  max-width: none;
  max-height: 94vh;
  margin: auto;
  border: 0;
  border-radius: 12px;
  padding: 0;
  color: var(--tt-ink);
  background: var(--tt-paper);
  box-shadow: 0 32px 90px rgba(20, 17, 13, 0.34);
  overflow: hidden;
}

.tt-product__gallery-dialog::backdrop {
  background: rgba(20, 17, 13, 0.76);
  backdrop-filter: blur(8px);
}

.tt-product__gallery-dialog-frame {
  position: relative;
  display: grid;
  max-height: 94vh;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: var(--tt-paper);
  overflow: auto;
}

.tt-product__gallery-dialog-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(94vh - 112px);
  object-fit: contain;
  mix-blend-mode: multiply;
}

.tt-product__gallery-dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  justify-self: end;
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 0 -44px;
  place-items: center;
  border: 1px solid rgba(20, 17, 13, 0.16);
  border-radius: 999px;
  padding: 0;
  color: var(--tt-ink);
  background: rgba(251, 249, 243, 0.92);
  font: 400 28px/1 var(--tt-font-sans);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.tt-product__gallery-dialog-hint {
  margin: 14px 0 0;
  color: var(--tt-stone);
  font: 600 10px/1.4 var(--tt-font-mono);
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .tt-product__gallery-zoom {
    min-height: 40px;
    padding: 8px 12px;
  }

  .tt-product__gallery-dialog,
  .tt-product__gallery-dialog-frame {
    width: 100vw;
    max-height: 100dvh;
    border-radius: 0;
  }

  .tt-product__gallery-dialog-frame {
    min-height: 100dvh;
    padding: 16px;
  }

  .tt-product__gallery-dialog-image {
    max-height: calc(100dvh - 96px);
  }
}

.tt-product__media-placeholder {
  display: grid;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-height: 360px;
  aspect-ratio: 1 / 1;
  place-items: center;
  gap: 14px;
  border: 1px solid rgba(23, 64, 44, 0.14);
  border-radius: 6px;
  color: var(--tt-stone);
  background:
    radial-gradient(circle at 28% 22%, rgba(180, 95, 42, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(23, 64, 44, 0.1), rgba(245, 239, 224, 0.7));
  font-family: var(--tt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.tt-product__media-mark {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(23, 64, 44, 0.22);
  border-radius: 999px;
  color: var(--tt-steep);
  font-family: var(--tt-font-display);
  font-size: 46px;
  letter-spacing: 0;
  text-transform: none;
}

.tt-product__image-fallback {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.tt-product__fallback-photo {
  position: relative;
  display: grid;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: hidden;
  place-items: center;
  color: var(--tt-paper);
  isolation: isolate;
}

.tt-product__fallback-photo::before,
.tt-product__fallback-photo::after {
  position: absolute;
  content: "";
  z-index: -1;
}

.tt-product__fallback-photo::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.66), transparent 25%),
    radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.22), transparent 30%);
}

.tt-product__fallback-photo::after {
  inset: 8%;
  border: 1px solid rgba(251, 249, 243, 0.18);
  opacity: 0.84;
}

.tt-product__fallback-photo--leaf {
  background:
    linear-gradient(115deg, rgba(18, 52, 37, 0.95), rgba(46, 88, 55, 0.86) 52%, rgba(180, 95, 42, 0.52)),
    linear-gradient(0deg, #173522, #d7c27a);
}

.tt-product__fallback-photo--brew {
  background:
    linear-gradient(135deg, rgba(76, 42, 20, 0.92), rgba(180, 95, 42, 0.72) 54%, rgba(247, 222, 151, 0.72)),
    linear-gradient(0deg, #60321a, #edc779);
}

.tt-product__fallback-photo--origin {
  background:
    linear-gradient(135deg, rgba(16, 44, 36, 0.96), rgba(23, 64, 44, 0.82) 46%, rgba(180, 95, 42, 0.78)),
    linear-gradient(0deg, #102c24, #b45f2a);
}

.tt-product__fallback-vessel {
  position: relative;
  display: block;
  width: min(58%, 420px);
  aspect-ratio: 1 / 1;
}

.tt-product__fallback-vessel span {
  position: absolute;
  display: block;
}

.tt-product__fallback-vessel--leaf span {
  width: 48%;
  height: 18%;
  border-radius: 999px 999px 62% 999px;
  background: linear-gradient(135deg, rgba(244, 224, 154, 0.92), rgba(61, 105, 61, 0.9));
  box-shadow: 0 24px 70px rgba(8, 25, 18, 0.26);
  transform-origin: 100% 50%;
}

.tt-product__fallback-vessel--leaf span:nth-child(1) {
  left: 10%;
  top: 34%;
  transform: rotate(-20deg);
}

.tt-product__fallback-vessel--leaf span:nth-child(2) {
  left: 35%;
  top: 28%;
  transform: rotate(18deg);
}

.tt-product__fallback-vessel--leaf span:nth-child(3) {
  left: 24%;
  top: 52%;
  transform: rotate(8deg);
}

.tt-product__fallback-vessel--leaf span:nth-child(4) {
  left: 48%;
  top: 48%;
  transform: rotate(-32deg);
}

.tt-product__fallback-vessel--brew {
  width: min(62%, 450px);
  aspect-ratio: 1.35 / 1;
}

.tt-product__fallback-vessel--brew span:first-child {
  left: 8%;
  right: 8%;
  bottom: 18%;
  height: 42%;
  border: 1px solid rgba(251, 249, 243, 0.66);
  border-radius: 0 0 999px 999px;
  background:
    linear-gradient(180deg, rgba(255, 245, 209, 0.18), rgba(255, 211, 113, 0.7)),
    rgba(137, 75, 25, 0.6);
  box-shadow: inset 0 18px 40px rgba(255, 255, 255, 0.16), 0 28px 80px rgba(72, 36, 16, 0.24);
}

.tt-product__fallback-vessel--brew span:last-child {
  left: 18%;
  right: 18%;
  bottom: 54%;
  height: 13%;
  border: 1px solid rgba(251, 249, 243, 0.56);
  border-radius: 999px;
  background: rgba(255, 240, 194, 0.32);
}

.tt-product__fallback-vessel--origin {
  width: min(56%, 390px);
}

.tt-product__fallback-vessel--origin span:first-child {
  inset: 10%;
  border: 1px solid rgba(251, 249, 243, 0.72);
  border-radius: 999px;
}

.tt-product__fallback-vessel--origin span:nth-child(2) {
  left: 24%;
  top: 18%;
  width: 44%;
  height: 64%;
  border-left: 1px solid rgba(251, 249, 243, 0.58);
  border-right: 1px solid rgba(251, 249, 243, 0.42);
  border-radius: 50%;
}

.tt-product__fallback-vessel--origin span:nth-child(3) {
  left: 18%;
  right: 18%;
  top: 46%;
  height: 1px;
  background: rgba(251, 249, 243, 0.56);
}

.tt-product__fallback-caption {
  position: absolute;
  right: clamp(22px, 5vw, 58px);
  bottom: clamp(22px, 5vw, 58px);
  display: grid;
  gap: 7px;
  max-width: min(42%, 320px);
  text-align: right;
}

.tt-product__fallback-caption span {
  font-family: var(--tt-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.tt-product__fallback-caption strong {
  color: inherit;
  font-family: var(--tt-font-display);
  font-size: clamp(25px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.tt-product__description {
  display: grid;
  gap: 14px;
  max-width: 66ch;
  color: var(--tt-graphite);
  font-size: 17px;
  line-height: 1.66;
}

.tt-product__description p,
.tt-product__description ul {
  max-width: none;
  margin: 0;
}

.tt-product__description h2,
.tt-product__description h3 {
  margin: 6px 0 0;
  color: var(--tt-ink);
  font-family: var(--tt-font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.18;
}

.tt-product__description ul {
  display: grid;
  gap: 7px;
  padding-left: 20px;
}

.tt-product__description strong {
  color: var(--tt-ink);
  font-weight: 700;
}

.tt-product__transcription {
  margin: 0;
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tt-product__taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tt-product__chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--tt-mist);
  border-radius: 999px;
  color: var(--tt-steep);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 0 12px;
}

.tt-product__chip--muted {
  color: var(--tt-stone);
  font-weight: 500;
}

.tt-product__price {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: var(--tt-ink);
  font-family: var(--tt-font-display);
  font-size: 26px;
}

.tt-product__compare {
  color: var(--tt-stone);
  font-size: 0.6em;
}

.tt-product__rating-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
}

.tt-product__rating-pill {
  display: grid;
  min-width: min(100%, 176px);
  flex: 1 1 176px;
  gap: 3px;
  border: 1px solid rgba(23, 64, 44, 0.14);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 250, 240, 0.62);
}

.tt-product__rating-label {
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tt-product__rating-score {
  color: var(--tt-steep);
  font-family: var(--tt-font-display);
  font-size: 22px;
  line-height: 1;
}

.tt-product__rating-note {
  color: var(--tt-graphite);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.tt-product__facts {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 2px 0;
  border-block: 1px solid rgba(23, 64, 44, 0.14);
}

.tt-product__summary-fact {
  display: grid;
  grid-template-columns: minmax(86px, 0.32fr) minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid rgba(23, 64, 44, 0.1);
}

.tt-product__summary-fact:first-child {
  border-top: 0;
}

.tt-product__summary-fact dt {
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tt-product__summary-fact dd {
  margin: 0;
  color: var(--tt-ink);
  font-family: var(--tt-font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.tt-product__summary-facts--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border: 0;
  margin-top: 0;
  padding-block: 0;
}

.tt-product__summary-facts--compact .tt-product__summary-fact {
  grid-template-columns: 1fr;
  gap: 4px;
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 250, 240, 0.48);
}

.tt-product__sku {
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tt-product__purchase {
  display: grid;
  gap: 14px;
}

.tt-product__request {
  display: inline-flex;
}

.tt-product__request--secondary .tt-link {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0;
  background: transparent;
  color: var(--tt-steep);
  cursor: pointer;
  font: inherit;
}

.dkh-product-request-dialog {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 17, 13, 0.42);
}

.dkh-product-request-dialog__panel {
  width: min(100%, 500px);
  border: 1px solid var(--tt-mist);
  border-radius: 8px;
  padding: 22px;
  background: var(--tt-paper);
  box-shadow: var(--tt-shadow);
}

.dkh-product-request-dialog__header,
.dkh-product-request-dialog__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dkh-product-request-dialog__header h2 {
  margin: 0;
  color: var(--tt-steep);
  font-family: var(--tt-font-display);
  font-size: 28px;
  line-height: 1.1;
}

.dkh-product-request-dialog__close,
.dkh-product-request-dialog__cancel {
  border: 0;
  background: transparent;
  color: var(--tt-stone);
  cursor: pointer;
  font: inherit;
}

.dkh-product-request-dialog__close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--tt-mist);
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
}

.dkh-product-request-dialog__form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.dkh-product-request-dialog__field {
  display: grid;
  gap: 7px;
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dkh-product-request-dialog__field input,
.dkh-product-request-dialog__field textarea {
  width: 100%;
  border: 1px solid var(--tt-mist);
  border-radius: 4px;
  padding: 11px 12px;
  background: var(--tt-cream);
  color: var(--tt-ink);
  font: 500 14px/1.45 var(--tt-font-sans);
  letter-spacing: 0;
  text-transform: none;
}

.dkh-product-request-dialog__message {
  min-height: 20px;
  margin: 0;
  color: var(--tt-stone);
  font-size: 13px;
  line-height: 1.45;
}

.dkh-product-request-dialog__message[data-tone="success"] {
  color: var(--tt-steep);
}

.dkh-product-request-dialog__message[data-tone="error"] {
  color: var(--tt-oolong);
}

.dkh-product-request-dialog__submit {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tt-steep);
  border-radius: var(--tt-button-radius, 999px);
  padding: 10px 18px;
  background: var(--tt-steep);
  color: var(--tt-cream);
  cursor: pointer;
  font: 700 12px/1 var(--tt-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Product detail boutique shell */
.tt-product__boutique-pdp {
  gap: clamp(36px, 5vw, 72px);
  max-width: 1360px;
  padding-block: clamp(48px, 7vw, 92px);
}

.tt-product__boutique-pdp .tt-product__hero {
  position: relative;
  grid-template-columns: minmax(320px, 1.04fr) minmax(360px, 0.76fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.tt-product__breadcrumbs {
  grid-column: 1 / -1;
  min-width: 0;
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tt-product__breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tt-product__breadcrumbs li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
}

.tt-product__breadcrumbs li + li::before {
  content: "/";
  color: rgba(20, 17, 13, 0.34);
}

.tt-product__breadcrumbs a {
  color: var(--tt-stone);
  text-decoration: none;
}

.tt-product__breadcrumbs a:hover {
  color: var(--tt-steep);
}

.tt-product__breadcrumbs [aria-current="page"] {
  color: var(--tt-oolong);
}

.tt-product__boutique-pdp .tt-product__visual {
  align-self: start;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
}

.tt-product__boutique-pdp .tt-product__gallery-stage {
  background: transparent;
}

.tt-product__boutique-pdp .tt-product__image,
.tt-product__boutique-pdp .tt-product__media-placeholder {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tt-product__boutique-pdp .tt-product__image {
  padding: clamp(20px, 4vw, 54px);
}

.tt-product__boutique-pdp .tt-product__media-placeholder {
  height: 100%;
  min-height: 0;
}

.tt-product__boutique-pdp .tt-product__gallery-thumb img {
  background: transparent;
}

.tt-product__boutique-pdp .tt-product__summary {
  align-self: start;
  width: 100%;
  min-width: 0;
  max-width: none;
  gap: 16px;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.tt-product__boutique-pdp .tt-eyebrow,
.tt-product__boutique-specs .tt-eyebrow {
  letter-spacing: 0;
}

.tt-product__boutique-pdp .tt-product__heading {
  display: grid;
  gap: 8px;
}

.tt-product__boutique-pdp .tt-product__heading h1 {
  font-size: 54px;
}

.tt-product__boutique-pdp .tt-product__taxonomy {
  margin-top: 6px;
}

.tt-product__boutique-pdp .tt-product__price {
  border-block: 1px solid rgba(23, 64, 44, 0.14);
  padding-block: 16px;
  color: var(--tt-steep);
  font-size: 30px;
}

.tt-product__boutique-pdp .tt-product__facts {
  gap: 0;
  margin-top: 2px;
  border-color: rgba(23, 64, 44, 0.18);
}

.tt-product__boutique-pdp .tt-product__summary-facts--compact {
  gap: 8px;
  border: 0;
}

.tt-product__boutique-pdp .tt-product__summary-fact {
  min-height: 0;
  border: 0;
  background: rgba(255, 250, 240, 0.52);
}

.tt-product__boutique-pdp .tt-product__summary-fact dt {
  letter-spacing: 0;
}

.tt-product__boutique-pdp .tt-product__summary-fact dd {
  color: var(--tt-steep);
}

.tt-product__boutique-pdp .tt-product__details {
  width: 100%;
  min-width: 0;
  max-width: 1180px;
  gap: 24px;
}

.tt-product__details-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(320px, 0.58fr);
  gap: 18px 32px;
  align-items: end;
  border-top: 1px solid rgba(23, 64, 44, 0.16);
  padding-top: 28px;
}

.tt-product__details-intro h2 {
  max-width: 15ch;
  font-size: 36px;
}

.tt-product__boutique-pdp .tt-product__description {
  max-width: 760px;
}

.tt-product__boutique-specs {
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
  width: 100%;
  min-width: 0;
  border-block: 1px solid rgba(23, 64, 44, 0.18);
  border-radius: 0;
  padding: clamp(24px, 4vw, 42px) 0;
  background: transparent;
}

.tt-product__specs-intro {
  display: grid;
  gap: 12px;
}

.tt-product__specs-intro h2 {
  margin: 0;
  max-width: 13ch;
  color: var(--tt-ink);
  font-family: var(--tt-font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
}

.tt-product__spec-rail {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.tt-product__boutique-specs .tt-product__spec-accordion {
  overflow: hidden;
  border-inline: 0;
  border-block: 1px solid rgba(23, 64, 44, 0.14);
  border-radius: 0;
  background: transparent;
}

.tt-product__boutique-specs .tt-product__spec-accordion + .tt-product__spec-accordion {
  border-top: 0;
}

.tt-product__boutique-specs .tt-product__spec-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: var(--tt-steep);
  font-size: 13px;
  letter-spacing: 0;
}

.tt-product__boutique-specs .tt-product__spec-accordion summary::after {
  float: none;
  margin-left: auto;
}

.tt-product__boutique-specs .tt-product__spec-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 0 0 20px;
}

.tt-product__boutique-specs .tt-product__spec-row {
  min-height: auto;
  padding-block: 10px;
  border-top: 1px solid rgba(23, 64, 44, 0.08);
}

.tt-product__boutique-specs .tt-product__spec-row dt {
  letter-spacing: 0;
}

.tt-product__boutique-specs .tt-product__spec-note {
  max-width: 60ch;
  padding: 0 0 18px;
}

.tt-product__boutique-specs .tt-product__spec-cta {
  display: inline-flex;
  width: max-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tt-steep);
  border-radius: 999px;
  margin-top: 6px;
  padding: 10px 16px;
  background: var(--tt-steep);
  color: var(--tt-cream);
  letter-spacing: 0;
  text-decoration: none;
}

.tt-product__spec-cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}

.tt-product__spec-qr {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.dkh-link-qr__frame {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(23, 64, 44, 0.16);
  border-radius: 8px;
  padding: 7px;
  background: var(--tt-white);
}

.dkh-link-qr__frame canvas {
  width: 100%;
  height: 100%;
}

.dkh-link-qr__mark {
  position: absolute;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(23, 64, 44, 0.12);
  border-radius: 999px;
  background: var(--tt-paper);
  color: var(--tt-steep);
  font-family: var(--tt-font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dkh-link-qr__mark img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.dkh-link-qr__caption {
  max-width: 72px;
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .tt-product__boutique-pdp .tt-product__hero,
  .tt-product__boutique-specs,
  .tt-product__details-intro {
    grid-template-columns: 1fr;
  }

  .tt-product__boutique-pdp .tt-product__heading h1 {
    font-size: 46px;
  }

  .tt-product__specs-intro h2,
  .tt-product__details-intro h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .tt-product__boutique-pdp {
    padding-block: 44px;
  }

  .tt-product__boutique-pdp .tt-product__hero {
    gap: 20px;
    max-width: 100%;
    padding: 0;
  }

  .tt-product__gallery--art {
    grid-template-columns: 1fr;
  }

  .tt-product__gallery-thumbs {
    order: 2;
    display: flex;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .tt-product__gallery-thumb {
    flex: 0 0 72px;
    width: 72px;
  }

  .tt-product__gallery-stage {
    order: 1;
  }

  .tt-product__breadcrumbs ol {
    row-gap: 8px;
  }

  .tt-product__boutique-pdp .tt-product__summary {
    max-width: 100%;
    padding: 0;
  }

  .tt-product__boutique-pdp .tt-product__media-placeholder {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .tt-product__boutique-pdp .tt-product__heading h1 {
    font-size: 38px;
  }

  .tt-product__boutique-specs {
    padding-block: 22px;
  }

  .tt-product__boutique-specs .tt-product__spec-list {
    grid-template-columns: 1fr;
  }

  .tt-product__summary-fact {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 11px 0;
  }

  .tt-product__summary-facts--compact .tt-product__summary-fact {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 10px 0;
  }

  .tt-product__boutique-specs .tt-product__spec-cta {
    width: 100%;
  }

  .tt-product__spec-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Product detail Tea Atelier direction */
.tt-product__atelier-pdp {
  --tt-atelier-bg: #faf7f0;
  --tt-atelier-panel: #fffdf8;
  --tt-atelier-soft: #efe7da;
  --tt-atelier-line: rgba(20, 17, 13, 0.1);
  --tt-atelier-muted: #887f72;
  max-width: 1360px;
  padding-block: clamp(34px, 5vw, 72px) clamp(58px, 7vw, 104px);
  background: var(--tt-atelier-bg);
  box-shadow: 0 0 0 100vmax var(--tt-atelier-bg);
  clip-path: inset(0 -100vmax);
}

.tt-product__atelier-pdp .tt-product__hero {
  grid-template-columns: minmax(420px, 0.98fr) minmax(390px, 0.68fr);
  column-gap: clamp(42px, 6vw, 86px);
  row-gap: clamp(22px, 3vw, 38px);
  align-items: start;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tt-product__atelier-pdp .tt-product__breadcrumbs {
  margin-bottom: clamp(8px, 1.5vw, 18px);
  color: var(--tt-atelier-muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.tt-product__atelier-pdp .tt-product__breadcrumbs ol {
  gap: 7px;
}

.tt-product__atelier-pdp .tt-product__breadcrumbs li + li::before {
  color: rgba(20, 17, 13, 0.28);
}

.tt-product__atelier-pdp .tt-product__breadcrumbs [aria-current="page"] {
  color: var(--tt-steep);
}

.tt-product__atelier-pdp .tt-product__gallery--art {
  grid-template-columns: minmax(82px, 104px) minmax(0, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}

.tt-product__atelier-pdp .tt-product__gallery--solo {
  grid-template-columns: minmax(0, 1fr);
}

.tt-product__atelier-pdp .tt-product__gallery-thumbs {
  gap: 12px;
}

.tt-product__atelier-pdp .tt-product__gallery-thumb {
  border-radius: 8px;
  opacity: 0.72;
}

.tt-product__atelier-pdp .tt-product__gallery-thumb img,
.tt-product__atelier-pdp .tt-product__gallery-thumb--fallback {
  border: 1px solid rgba(20, 17, 13, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(35, 29, 21, 0.06);
}

.tt-product__atelier-pdp .tt-product__gallery-thumb:hover,
.tt-product__atelier-pdp .tt-product__gallery-input:nth-of-type(1):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(1),
.tt-product__atelier-pdp .tt-product__gallery-input:nth-of-type(2):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(2),
.tt-product__atelier-pdp .tt-product__gallery-input:nth-of-type(3):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(3),
.tt-product__atelier-pdp .tt-product__gallery-input:nth-of-type(4):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(4),
.tt-product__atelier-pdp .tt-product__gallery-input:nth-of-type(5):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(5),
.tt-product__atelier-pdp .tt-product__gallery-input:nth-of-type(6):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(6),
.tt-product__atelier-pdp .tt-product__gallery-input:nth-of-type(7):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(7),
.tt-product__atelier-pdp .tt-product__gallery-input:nth-of-type(8):checked ~ .tt-product__gallery-thumbs .tt-product__gallery-thumb:nth-child(8) {
  opacity: 1;
  transform: translateY(-1px);
}

.tt-product__atelier-pdp .tt-product__gallery-stage {
  min-height: 0;
  aspect-ratio: 1 / 1.05;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tt-product__atelier-pdp .tt-product__image {
  padding: clamp(26px, 4vw, 64px);
}

.tt-product__atelier-pdp .tt-product__summary {
  position: sticky;
  top: 112px;
  gap: clamp(16px, 2vw, 22px);
  max-width: 500px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tt-product__atelier-pdp .tt-eyebrow {
  color: var(--tt-atelier-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.tt-product__atelier-pdp .tt-product__heading {
  gap: 10px;
}

.tt-product__atelier-pdp .tt-product__heading h1 {
  max-width: 10ch;
  color: #18140f;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.94;
}

.tt-product__atelier-pdp .tt-product__heading h1 em {
  margin-top: 8px;
  color: var(--tt-steep);
  font-size: 0.34em;
  font-style: normal;
  line-height: 1.1;
}

.tt-product__atelier-pdp .tt-product__rating-strip {
  gap: 14px 18px;
  align-items: center;
  padding-block: 2px 4px;
}

.tt-product__atelier-pdp .tt-product__rating-pill {
  display: flex;
  min-width: 0;
  flex: 0 1 auto;
  align-items: baseline;
  gap: 7px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.tt-product__atelier-pdp .tt-product__rating-label {
  color: var(--tt-atelier-muted);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.tt-product__atelier-pdp .tt-product__rating-score {
  color: var(--tt-steep);
  font-family: var(--tt-font-sans);
  font-size: 15px;
  font-weight: 750;
}

.tt-product__atelier-pdp .tt-product__rating-note {
  color: var(--tt-atelier-muted);
  font-size: 12px;
  font-weight: 500;
}

.tt-product__atelier-pdp .tt-product__price {
  gap: 10px;
  border: 0;
  padding-block: 2px 4px;
  color: var(--tt-ink);
  font-family: var(--tt-font-sans);
  font-size: 24px;
  font-weight: 700;
}

.tt-product__atelier-pdp .tt-product__summary-facts--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 15px 0;
  border-block: 1px solid var(--tt-atelier-line);
}

.tt-product__atelier-pdp .tt-product__summary-facts--compact .tt-product__summary-fact {
  gap: 5px;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.tt-product__atelier-pdp .tt-product__summary-fact dt {
  color: var(--tt-atelier-muted);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.tt-product__atelier-pdp .tt-product__summary-fact dd {
  color: var(--tt-steep);
  font-size: 13px;
  line-height: 1.35;
}

.tt-product__atelier-pdp .tt-product__variants {
  margin-top: 2px;
}

.tt-product__atelier-pdp .tt-product__purchase {
  gap: 12px;
}

.tt-product__atelier-pdp .tt-action-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
}

.tt-product__atelier-pdp dkh-add-to-cart,
.tt-product__atelier-pdp .tt-product__request {
  width: 100%;
}

.tt-product__atelier-pdp .tt-btn--primary {
  width: 100%;
  min-height: 54px;
  border-color: var(--tt-steep);
  border-radius: 999px;
  background: var(--tt-steep);
  color: var(--tt-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tt-product__atelier-pdp .tt-link {
  width: max-content;
  border-bottom-color: rgba(23, 64, 44, 0.38);
  color: var(--tt-steep);
  font-size: 13px;
}

.tt-product__atelier-pdp .tt-product__details {
  max-width: 1160px;
  margin-top: clamp(42px, 6vw, 80px);
}

.tt-product__atelier-pdp .tt-product__details-intro {
  border: 0;
  padding-top: 0;
}

.tt-product__atelier-pdp .tt-product__details-intro h2 {
  max-width: 18ch;
  font-size: clamp(34px, 4vw, 52px);
}

.tt-product__atelier-pdp .tt-product__description {
  color: #4c443b;
}

.tt-product__description--dossier {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  width: 100%;
  max-width: none;
}

.tt-product__identity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0 clamp(18px, 3vw, 36px);
  width: 100%;
  margin: 0;
}

.tt-product__identity-item {
  display: grid;
  min-width: 0;
  gap: 8px;
  border-top: 1px solid rgba(20, 17, 13, 0.12);
  padding-block: 16px 18px;
}

.tt-product__identity-item dt {
  color: var(--tt-atelier-muted);
  font-family: var(--tt-font-mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tt-product__identity-item dd {
  margin: 0;
  color: var(--tt-steep);
  font-family: var(--tt-font-display);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.tt-product__description-copy {
  max-width: 76ch;
  color: #4c443b;
  font-size: 16px;
  line-height: 1.75;
}

.tt-product__description-copy > :first-child {
  margin-top: 0;
}

.tt-product__description-copy > :last-child {
  margin-bottom: 0;
}

.tt-product__atelier-pdp .tt-product__boutique-specs {
  border: 0;
  border-radius: 8px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 253, 248, 0.68);
}

.tt-product__atelier-pdp .tt-product__boutique-specs .tt-product__spec-accordion {
  border-block-color: rgba(20, 17, 13, 0.09);
}

.tt-product__atelier-pdp .tt-product__spec-cta-panel {
  margin-top: 8px;
  border-top: 1px solid rgba(20, 17, 13, 0.08);
  padding-top: 18px;
}

.tt-product__atelier-pdp .tt-product__boutique-specs .tt-product__spec-cta {
  border: 0;
  background: transparent;
  color: var(--tt-steep);
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tt-product__atelier-pdp .dkh-link-qr__frame {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  padding: 6px;
}

.tt-product__fallback-thumb--pack {
  background:
    radial-gradient(circle at 36% 18%, rgba(255, 255, 255, 0.75), transparent 28%),
    linear-gradient(145deg, #e8ddca 0%, #f9f5eb 58%, #d8c8ae 100%);
}

.tt-product__fallback-thumb--pack::after {
  inset: 24% 31% 20%;
  height: auto;
  border: 1px solid rgba(23, 64, 44, 0.22);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(245, 239, 224, 0.36));
  transform: rotate(-4deg);
}

.tt-product__fallback-thumb--cup {
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.7), transparent 30%),
    linear-gradient(145deg, #ead7b8 0%, #fff7e6 62%, #cba56e 100%);
}

.tt-product__fallback-thumb--cup::after {
  inset: 45% 18% 26%;
  height: auto;
  border-radius: 50%;
  background: rgba(189, 130, 47, 0.34);
  transform: none;
}

.tt-product__atelier-pdp .tt-product__fallback-photo {
  color: var(--tt-ink);
}

.tt-product__atelier-pdp .tt-product__fallback-photo::before {
  background:
    radial-gradient(circle at 31% 16%, rgba(255, 255, 255, 0.92), transparent 28%),
    radial-gradient(circle at 80% 78%, rgba(198, 180, 148, 0.18), transparent 34%);
}

.tt-product__atelier-pdp .tt-product__fallback-photo::after {
  inset: 7%;
  border-color: rgba(20, 17, 13, 0.08);
}

.tt-product__fallback-photo--pack {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(232, 222, 205, 0.92)),
    #f4ede2;
}

.tt-product__fallback-photo--cup {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(236, 222, 198, 0.9)),
    #f5ead8;
}

.tt-product__atelier-pdp .tt-product__fallback-photo--origin {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.95), rgba(221, 211, 191, 0.9)),
    #f1eadf;
}

.tt-product__fallback-vessel--pack {
  width: min(48%, 310px);
  aspect-ratio: 0.74 / 1;
  filter: drop-shadow(0 34px 44px rgba(35, 29, 21, 0.14));
}

.tt-product__fallback-vessel--pack span:first-child {
  inset: 0;
  border: 1px solid rgba(20, 17, 13, 0.16);
  border-radius: 6px 6px 10px 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58), transparent 20% 80%, rgba(20, 17, 13, 0.05)),
    linear-gradient(180deg, #f9f5eb 0%, #e4d6bf 100%);
}

.tt-product__fallback-vessel--pack span:nth-child(2) {
  left: 16%;
  right: 16%;
  top: 18%;
  height: 38%;
  border: 1px solid rgba(23, 64, 44, 0.22);
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.7);
}

.tt-product__fallback-vessel--pack span:nth-child(3) {
  left: 28%;
  right: 28%;
  bottom: 18%;
  height: 2px;
  background: rgba(23, 64, 44, 0.42);
  box-shadow: 0 10px 0 rgba(23, 64, 44, 0.24), 0 20px 0 rgba(23, 64, 44, 0.16);
}

.tt-product__fallback-vessel--cup {
  width: min(56%, 360px);
  aspect-ratio: 1.25 / 1;
  filter: drop-shadow(0 30px 42px rgba(80, 55, 28, 0.13));
}

.tt-product__fallback-vessel--cup span:first-child {
  left: 10%;
  right: 10%;
  bottom: 21%;
  height: 36%;
  border: 1px solid rgba(20, 17, 13, 0.16);
  border-radius: 0 0 999px 999px;
  background: linear-gradient(180deg, rgba(255, 249, 231, 0.64), rgba(195, 133, 46, 0.42));
}

.tt-product__fallback-vessel--cup span:nth-child(2) {
  left: 21%;
  right: 21%;
  bottom: 54%;
  height: 12%;
  border: 1px solid rgba(20, 17, 13, 0.12);
  border-radius: 999px;
  background: rgba(169, 111, 31, 0.28);
}

.tt-product__fallback-vessel--cup span:nth-child(3) {
  left: 24%;
  right: 24%;
  bottom: 12%;
  height: 7%;
  border-radius: 999px;
  background: rgba(35, 29, 21, 0.08);
}

.tt-product__atelier-pdp .tt-product__fallback-vessel--origin span:first-child,
.tt-product__atelier-pdp .tt-product__fallback-vessel--origin span:nth-child(2) {
  border-color: rgba(23, 64, 44, 0.28);
}

.tt-product__atelier-pdp .tt-product__fallback-vessel--origin span:nth-child(3) {
  background: rgba(23, 64, 44, 0.24);
}

.tt-product__atelier-pdp .tt-product__fallback-caption {
  right: auto;
  left: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  color: var(--tt-ink);
  max-width: min(48%, 260px);
  text-align: left;
}

.tt-product__atelier-pdp .tt-product__fallback-caption span {
  color: var(--tt-atelier-muted);
  opacity: 1;
}

.tt-product__atelier-pdp .tt-product__fallback-caption strong {
  max-width: 12ch;
  color: var(--tt-steep);
  font-size: clamp(22px, 2.5vw, 34px);
}

@media (max-width: 1120px) {
  .tt-product__atelier-pdp .tt-product__summary-facts--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .tt-product__atelier-pdp .tt-product__hero {
    grid-template-columns: 1fr;
  }

  .tt-product__atelier-pdp .tt-product__summary {
    position: static;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .tt-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 10px 16px 8px;
  }

  .tt-brand {
    flex: 0 0 auto;
  }

  .tt-brand--image {
    max-width: 42vw;
  }

  .tt-brand__logo {
    max-height: 42px;
  }

  .tt-header__actions {
    margin-left: auto;
  }

  .tt-nav {
    order: 3;
    flex: 1 0 100%;
    justify-content: flex-start;
    gap: 18px;
  }

  .tt-announcement {
    order: 4;
    flex: 1 0 100%;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-align: left;
  }

  .tt-product__atelier-pdp {
    padding-block: 30px 62px;
  }

  .tt-product__atelier-pdp .tt-product__gallery--art {
    grid-template-columns: 1fr;
  }

  .tt-product__atelier-pdp .tt-product__gallery-stage {
    min-height: auto;
    aspect-ratio: 1 / 0.92;
  }

  .tt-product__atelier-pdp .tt-product__heading h1 {
    max-width: 11ch;
    font-size: clamp(42px, 13vw, 58px);
  }

  .tt-product__atelier-pdp .tt-product__summary-facts--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tt-product__atelier-pdp .tt-product__boutique-specs {
    padding: 22px 18px;
  }
}

/* Theme blocks (nested Product card) — Shopify-parity composable blocks. */
.tt-featured-collection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.tb-product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--tt-mist);
  border-radius: 14px;
  background: var(--tt-paper);
  box-shadow: var(--tt-shadow);
}

.tb-image {
  overflow: hidden;
  border-radius: 10px;
  background: var(--tt-cream);
}

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

.tb-image--square {
  aspect-ratio: 1 / 1;
}

.tb-image--portrait {
  aspect-ratio: 3 / 4;
}

.tb-image--landscape {
  aspect-ratio: 4 / 3;
}

.tb-image--placeholder {
  display: grid;
  place-items: center;
  min-height: 160px;
  color: var(--tt-stone);
  font-family: var(--tt-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tb-heading {
  margin: 0;
  color: var(--tt-ink);
  font-family: var(--tt-font-display);
  font-size: 18px;
  line-height: 1.25;
}

.tb-price {
  color: var(--tt-oolong);
  font-weight: 600;
}

.tb-text {
  color: var(--tt-graphite);
  font-size: 14px;
}

.tb-group {
  display: flex;
  gap: var(--tb-group-gap, 12px);
}

.tb-group--vertical {
  flex-direction: column;
}

.tb-group--horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

/* ==========================================================================
   Encyclopedia shell — page grain, section rhythm, reveal-on-scroll
   Mirrors the Encyclopedia.dc.html design shell. All motion is opt-out via
   prefers-reduced-motion; nothing here is required for first paint.
   ========================================================================== */

body.tt-theme {
  background: radial-gradient(130% 90% at 50% -15%, #faf7ef 0%, var(--enc-paper) 58%);
}

body.tt-theme::before {
  content: "";
  position: fixed;
  z-index: 9998;
  inset: 0;
  opacity: 0.045;
  background-image: var(--tt-paper-grain-url, none);
  background-repeat: repeat;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.tt-theme h1,
.tt-theme h2,
.tt-theme h3 {
  font-feature-settings: "onum" 1, "liga" 1, "dlig" 1;
  text-wrap: balance;
}

.tt-theme p {
  text-wrap: pretty;
}

.tt-theme ::selection {
  background: var(--enc-accent);
  color: #f6f1e6;
}

.tt-theme section[id] {
  scroll-margin-top: var(--enc-nav-height);
}

/* Romanization toggle — pinyin/latin transcriptions hide when the merchant
   turns `show_romanization` off in theme settings. */
.enc-rom {
  display: var(--enc-rom, block);
}

/* Shared section shell */
.enc-section {
  max-width: var(--enc-max);
  margin: 0 auto;
  padding: var(--enc-pad) var(--enc-gutter);
}

.enc-section--band {
  max-width: none;
  padding: 0;
  border-top: 1px solid var(--enc-line);
  border-bottom: 1px solid var(--enc-line);
  background: var(--enc-surface);
}

.enc-section--band > .enc-section__inner,
.enc-section--dark > .enc-section__inner {
  max-width: var(--enc-max);
  margin: 0 auto;
  padding: var(--enc-pad) var(--enc-gutter);
}

.enc-section--dark {
  max-width: none;
  padding: 0;
  background: var(--enc-ink);
  color: var(--enc-paper);
}

.enc-eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--enc-accent);
  font: 500 12px/1 var(--tt-font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.enc-eyebrow::before {
  content: "";
  flex: none;
  width: 20px;
  height: 1.5px;
  background: var(--enc-gold);
}

.enc-heading {
  margin: 0;
  color: inherit;
  font: 400 clamp(30px, 4.4vw, 52px) / 1.05 var(--tt-font-display);
  letter-spacing: -0.015em;
}

.enc-lede {
  margin: 0;
  color: var(--enc-soft);
  font: 400 clamp(15px, 1.3vw, 17px) / 1.7 var(--tt-font-sans);
}

.enc-cjk {
  font-family: var(--tt-font-cjk);
}

/* Reveal-on-scroll — armed only once the theme script sets `enc-js` on <html>,
   so with JS disabled or still loading every section stays visible. */
.enc-js .enc-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.enc-js .enc-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .enc-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .tt-theme {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   Encyclopedia header — brand mark, resources menu, where-to-buy pill
   ========================================================================== */

.tt-brand {
  display: flex;
  gap: 11px;
  align-items: center;
}

.tt-brand__mark {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--enc-ink);
  color: var(--enc-paper);
  font: 500 18px/1 var(--tt-font-cjk);
}

.tt-brand__word {
  color: var(--enc-ink);
  font: 500 18px/1 var(--tt-font-display);
}

.tt-brand__tag {
  padding: 4px 7px;
  border: 1px solid var(--enc-line);
  border-radius: 5px;
  color: var(--enc-soft);
  font: 500 9px/1 var(--tt-font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tt-resources {
  position: relative;
}

.tt-resources__summary {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--enc-soft);
  font: 500 13px/1 var(--tt-font-sans);
  list-style: none;
  cursor: pointer;
}

.tt-resources__summary::-webkit-details-marker {
  display: none;
}

.tt-resources[open] .tt-resources__summary,
.tt-resources__summary:hover {
  color: var(--enc-ink);
}

.tt-resources__chevron {
  font-size: 9px;
}

.tt-resources__panel {
  position: absolute;
  z-index: 60;
  top: calc(100% + 12px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 270px;
  padding: 8px;
  border: 1px solid var(--enc-line);
  border-radius: 14px;
  background: var(--enc-surface);
  box-shadow: 0 20px 46px rgba(42, 36, 32, 0.16);
}

.tt-resources__title {
  padding: 8px 12px 6px;
  color: var(--enc-soft);
  font: 500 10px/1 var(--tt-font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tt-resources__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 10px;
}

.tt-resources__item:hover {
  background: var(--enc-paper);
}

.tt-resources__dot {
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
}

.tt-resources__name {
  display: block;
  color: var(--enc-ink);
  font: 500 14px/1.2 var(--tt-font-display);
}

.tt-resources__desc {
  display: block;
  margin-top: 3px;
  color: var(--enc-soft);
  font: 400 12px/1.5 var(--tt-font-sans);
}

.tt-resources__note {
  margin-top: 4px;
  padding: 11px 12px 7px;
  border-top: 1px solid var(--enc-line);
  color: var(--enc-soft);
  font: 400 11px/1.4 var(--tt-font-mono);
}

.tt-header__cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--enc-ink);
  color: var(--enc-paper);
  font: 600 13px/1 var(--tt-font-sans);
  white-space: nowrap;
  transition: background 0.2s ease;
}

.tt-header__cta:hover {
  background: var(--enc-accent);
  color: var(--enc-paper);
}

/* Encyclopedia footer — single copyright line plus one row of links */
.tt-footer--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  max-width: var(--enc-max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) var(--enc-gutter);
}

.tt-footer--inline .tt-footer__brand img,
.tt-footer--inline .tt-footer__col strong {
  display: none;
}

.tt-footer--inline .tt-footer__brand p {
  margin: 0;
  color: var(--enc-soft);
  font: 500 12px/1 var(--tt-font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tt-footer--inline .tt-footer__nav,
.tt-footer--inline .tt-footer__col {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.tt-footer--inline .tt-footer__nav a {
  color: var(--enc-soft);
  font: 500 13px/1 var(--tt-font-sans);
}

.tt-footer--inline .tt-footer__nav a:hover {
  color: var(--enc-accent);
}

/* Editorial intro — design block 02 */
.tt-editorial-intro__grid {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tt-editorial-intro__heading {
  max-width: 16ch;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
}

.tt-editorial-intro__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tt-editorial-intro__lead {
  margin: 0;
  color: var(--enc-ink);
  font: 400 clamp(16px, 1.3vw, 18px) / 1.7 var(--tt-font-sans);
}

.tt-editorial-intro__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.tt-chip {
  display: inline-flex;
  gap: 7px;
  align-items: baseline;
  padding: 9px 14px;
  border: 1px solid var(--enc-line);
  border-radius: 999px;
  color: var(--enc-soft);
  font: 500 12px/1 var(--tt-font-mono);
  letter-spacing: 0.06em;
}

/* Tea families — design block 03 */
.tt-families__header {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.tt-families__intro {
  max-width: 34ch;
}

.tt-families__axis {
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.tt-families__axis-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--enc-soft);
  font: 500 10px/1 var(--tt-font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tt-families__axis-track {
  display: flex;
  gap: 3px;
}

.tt-families__axis-step {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.tt-families__axis-bar {
  height: 10px;
  border-radius: 3px;
}

.tt-families__axis-name {
  margin-top: 7px;
  overflow: hidden;
  color: var(--enc-soft);
  font: 500 9px/1.3 var(--tt-font-mono);
  letter-spacing: 0.04em;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.tt-families__axis-note {
  margin: 12px 0 0;
  color: var(--enc-soft);
  font: 400 11px/1.4 var(--tt-font-mono);
}

.tt-families__grid {
  display: grid;
  gap: clamp(14px, 1.6vw, 22px);
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}

.tt-family-card {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--enc-line);
  border-radius: 14px;
  background: var(--enc-surface);
  box-shadow: 0 1px 2px rgba(42, 36, 32, 0.04);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.tt-family-card:hover {
  border-color: #d8ccb5;
  box-shadow: 0 18px 40px rgba(42, 36, 32, 0.13);
  transform: translateY(-4px);
}

.tt-family-card__rail {
  flex: none;
  width: 4px;
}

.tt-family-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  padding: 17px 20px;
}

.tt-family-card__meta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tt-family-card__dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.tt-family-card__ferment {
  color: var(--enc-soft);
  font: 500 10px/1 var(--tt-font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tt-family-card__ferment-cn {
  color: var(--enc-soft);
  font-size: 12px;
}

.tt-family-card__ox {
  margin-left: auto;
  font: 500 11px/1 var(--tt-font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tt-family-card__title {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.tt-family-card__cn {
  flex: none;
  color: var(--enc-ink);
  font-size: 30px;
  line-height: 1;
}

.tt-family-card__en {
  display: block;
  color: var(--enc-ink);
  font: 500 18px/1.2 var(--tt-font-display);
}

.tt-family-card__py {
  display: block;
  margin-top: 2px;
  color: var(--enc-soft);
  font: 400 12px/1.4 var(--tt-font-mono);
}

.tt-family-card__desc {
  flex: 1;
  color: var(--enc-soft);
  font: 400 13px/1.55 var(--tt-font-sans);
}

.tt-family-card__cta {
  align-self: flex-start;
  padding: 7px 12px;
  border: 1px solid var(--enc-line);
  border-radius: 999px;
  color: var(--enc-accent);
  font: 600 11px/1 var(--tt-font-sans);
  letter-spacing: 0.03em;
}

/* Companion banner — design block 03b */
.tt-companion__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.tt-companion__lead {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
}

.tt-companion__glyph {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  color: var(--enc-paper);
  font-size: 30px;
  line-height: 1;
}

.tt-companion__heading {
  color: var(--enc-ink);
  font: 400 clamp(22px, 2.8vw, 30px) / 1.1 var(--tt-font-display);
}

.tt-companion__body {
  max-width: 56ch;
  margin: 8px 0 0;
  color: var(--enc-soft);
  font: 400 14px/1.6 var(--tt-font-sans);
}

.tt-companion__cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 14px 24px;
  border: 1px solid var(--enc-line);
  border-radius: 999px;
  background: var(--enc-paper);
  color: var(--enc-ink);
  font: 600 14px/1 var(--tt-font-sans);
  white-space: nowrap;
}

/* Processing steps — design block 05 */
.tt-process__header {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.tt-process__intro {
  max-width: 52ch;
  margin-top: 16px;
}

.tt-process__band {
  margin-bottom: clamp(14px, 1.8vw, 22px);
  overflow: hidden;
  border: 1px solid var(--enc-line);
  border-radius: 12px;
}

.tt-process__band img {
  width: 100%;
  height: auto;
}

.tt-process__grid {
  display: grid;
  overflow: hidden;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  border: 1px solid var(--enc-line);
  border-radius: 12px;
  background: var(--enc-line);
}

.tt-process__step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 18px;
  background: var(--enc-surface);
}

.tt-process__step-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.tt-process__number {
  color: var(--enc-accent);
  font: 400 13px/1 var(--tt-font-mono);
}

.tt-process__cn {
  color: var(--enc-ink);
  font-size: 22px;
  line-height: 1;
}

.tt-process__name {
  color: var(--enc-ink);
  font: 500 16px/1.2 var(--tt-font-display);
}

.tt-process__py {
  color: var(--enc-soft);
  font: 400 12px/1.5 var(--tt-font-mono);
}

.tt-process__desc {
  margin: 0;
  color: var(--enc-soft);
  font: 400 13px/1.6 var(--tt-font-sans);
}

/* Brewing table — design block 06 */
.tt-brewing__header {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.tt-brewing__intro {
  max-width: 32ch;
}

.tt-brewing__scroll {
  overflow-x: auto;
  border: 1px solid var(--enc-line);
  border-radius: 12px;
  background: var(--enc-paper);
}

.tt-brewing__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.tt-brewing__table thead th {
  padding: 12px 14px;
  background: var(--enc-ink);
  color: var(--enc-paper);
  font: 500 11px/1.3 var(--tt-font-mono);
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.tt-brewing__table tbody tr {
  border-top: 1px solid var(--enc-line);
}

.tt-brewing__table tbody th {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 18px;
  color: var(--enc-ink);
  font: 500 15px/1.2 var(--tt-font-display);
  text-align: left;
}

.tt-brewing__table td {
  padding: 11px 14px;
  color: var(--enc-soft);
  font: 400 14px/1.3 var(--tt-font-mono);
}

.tt-brewing__swatch {
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 2px;
}

/* Origins — design block 04 (dark) */
.tt-origins__grid {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}

.tt-origins__eyebrow {
  color: #b7a98d;
}

.tt-origins__heading {
  margin-bottom: 20px;
  color: var(--enc-paper);
}

.tt-origins__body {
  max-width: 40ch;
  margin: 0 0 30px;
  color: #c9c0b1;
  font: 400 16px/1.7 var(--tt-font-sans);
}

.tt-origins__figure {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.tt-origins__figure img {
  width: 100%;
  height: auto;
}

.tt-origins__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tt-origins__country {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.tt-origins__country-cn {
  color: var(--enc-paper);
  font-size: 22px;
  line-height: 1;
}

.tt-origins__country-name {
  color: var(--enc-paper);
  font: 500 19px/1.2 var(--tt-font-display);
}

.tt-origins__rule {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.tt-origins__count {
  padding: 5px 9px;
  border-radius: 999px;
  background: #b7a98d;
  color: var(--enc-ink);
  font: 500 10px/1 var(--tt-font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tt-origins__featured-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tt-origins__featured-cn {
  flex: none;
  min-width: 30px;
  color: #c9c0b1;
  font-size: 15px;
  line-height: 1.3;
}

.tt-origins__featured-name {
  color: var(--enc-paper);
  font: 500 15px/1.3 var(--tt-font-sans);
}

.tt-origins__featured-note {
  margin-top: 3px;
  color: #b7a98d;
  font: 400 13px/1.5 var(--tt-font-sans);
}

.tt-origins__cloud-label {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 13px;
  color: #b7a98d;
  font: 500 10px/1 var(--tt-font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tt-origins__cloud-cn {
  color: #8f8470;
  font-size: 13px;
}

.tt-origins__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tt-origins__cloud--rest {
  margin-top: 7px;
}

.tt-origins__tag {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #e8e1d3;
  font: 500 12px/1 var(--tt-font-sans);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.tt-origins__tag:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.tt-origins__more summary {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 14px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #e8e1d3;
  font: 600 12px/1 var(--tt-font-sans);
  list-style: none;
  cursor: pointer;
}

.tt-origins__more summary::-webkit-details-marker {
  display: none;
}

.tt-origins__more[open] summary {
  border-style: solid;
}

/* Closing call to action — design block 10 */
.tt-closing-cta {
  background: var(--enc-accent);
  color: #fbf9f3;
}

.tt-closing-cta__inner {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  max-width: var(--enc-max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--enc-gutter);
}

.tt-closing-cta__eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font: 500 12px/1 var(--tt-font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tt-closing-cta__heading {
  margin: 0 0 18px;
  color: #fbf9f3;
  font: 400 clamp(32px, 4.6vw, 56px) / 1.03 var(--tt-font-display);
  letter-spacing: -0.015em;
}

.tt-closing-cta__body {
  max-width: 44ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font: 400 16px/1.7 var(--tt-font-sans);
}

.tt-closing-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.tt-closing-cta__button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 17px 30px;
  border-radius: 999px;
  background: #fbf9f3;
  color: var(--enc-ink);
  font: 600 15px/1 var(--tt-font-sans);
}

.tt-closing-cta__signup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.tt-closing-cta__signup-label {
  color: rgba(255, 255, 255, 0.72);
  font: 500 12px/1 var(--tt-font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tt-closing-cta__form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 340px;
  padding: 6px 6px 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.tt-closing-cta__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fbf9f3;
  font: 400 14px/1 var(--tt-font-sans);
}

.tt-closing-cta__input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.tt-closing-cta__input:focus-visible,
.tt-closing-cta__submit:focus-visible,
.tt-closing-cta__button:focus-visible {
  outline: 2px solid #fbf9f3;
  outline-offset: 2px;
}

.tt-closing-cta__submit {
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--enc-ink);
  color: #fbf9f3;
  font: 600 13px/1 var(--tt-font-sans);
  white-space: nowrap;
  cursor: pointer;
}

/* Catalog highlights — design block 09b (non-commercial: no prices) */
.tt-highlights__header {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.tt-highlights__cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--enc-ink);
  color: var(--enc-paper);
  font: 600 14px/1 var(--tt-font-sans);
  white-space: nowrap;
}

.tt-highlights__grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.tt-highlight-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--enc-line);
  border-radius: 16px;
  background: var(--enc-surface);
  box-shadow: 0 1px 2px rgba(42, 36, 32, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.tt-highlight-card:hover {
  border-color: #d8ccb5;
  box-shadow: 0 26px 52px rgba(42, 36, 32, 0.17);
  transform: translateY(-5px);
}

.tt-highlight-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--enc-line);
}

.tt-highlight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-highlight-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(42, 36, 32, 0.82);
  color: var(--enc-paper);
  font: 500 10px/1 var(--tt-font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tt-highlight-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  padding: 20px 20px 22px;
}

.tt-highlight-card__vendor {
  color: var(--enc-gold);
  font: 500 10px/1 var(--tt-font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tt-highlight-card__title {
  color: var(--enc-ink);
  font: 500 19px/1.2 var(--tt-font-display);
}

.tt-highlight-card__link {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 16px;
  border: 1px solid var(--enc-line);
  border-radius: 999px;
  color: var(--enc-accent);
  font: 600 12px/1 var(--tt-font-sans);
}

/* FAQ — design block 09 */
.tt-faq__grid {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}

.tt-faq__item {
  border-top: 1px solid var(--enc-line);
}

.tt-faq__item:last-child {
  border-bottom: 1px solid var(--enc-line);
}

.tt-faq__question {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  color: var(--enc-ink);
  font: 400 20px/1.3 var(--tt-font-display);
  list-style: none;
  cursor: pointer;
}

.tt-faq__question::-webkit-details-marker {
  display: none;
}

.tt-faq__marker {
  color: var(--enc-accent);
  font: 400 20px/1 var(--tt-font-sans);
}

.tt-faq__item[open] .tt-faq__marker {
  transform: rotate(45deg);
}

.tt-faq__answer {
  max-width: 56ch;
  margin: 0 0 22px;
  color: var(--enc-soft);
  font: 400 15px/1.7 var(--tt-font-sans);
}

/* Journal — design block 08 */
.tt-journal__header {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.tt-journal__all {
  color: var(--enc-accent);
  font: 600 14px/1 var(--tt-font-sans);
}

.tt-journal .tt-journal__grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tt-journal .tt-post {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.28s ease;
}

.tt-journal .tt-post:hover {
  transform: translateY(-3px);
}

.tt-journal .tt-post__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--enc-line);
  border-radius: 6px;
  background: var(--enc-line);
}

.tt-journal .tt-post strong {
  color: var(--enc-ink);
  font: 400 22px/1.2 var(--tt-font-display);
}

.tt-journal .tt-post small {
  color: var(--enc-soft);
  font: 400 14px/1.6 var(--tt-font-sans);
}

/* Lexicon — design block 07 */
.tt-glossary__header {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.tt-glossary__intro {
  max-width: 52ch;
  margin-top: 16px;
}

.tt-glossary .tt-glossary__list {
  display: grid;
  overflow: hidden;
  gap: 1px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin: 0;
  border: 1px solid var(--enc-line);
  border-radius: 12px;
  background: var(--enc-line);
}

.tt-glossary .tt-glossary__letter {
  display: none;
}

.tt-glossary .tt-glossary__item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 19px;
  background: var(--enc-surface);
}

.tt-glossary .tt-glossary__term {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: baseline;
  margin: 0;
}

.tt-glossary__native {
  color: var(--enc-ink);
  font-size: 22px;
  line-height: 1;
}

.tt-glossary__transcription {
  color: var(--enc-accent);
  font: 400 13px/1 var(--tt-font-mono);
}

.tt-glossary__name {
  flex-basis: 100%;
  color: var(--enc-ink);
  font: 500 16px/1.2 var(--tt-font-display);
}

.tt-glossary .tt-glossary__definition {
  margin: 0;
  color: var(--enc-soft);
  font: 400 14px/1.65 var(--tt-font-sans);
}

/* Hero masthead — design block 01 */
.tt-hero__rule {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: clamp(28px, 5vw, 52px);
  border-bottom: 1px solid var(--enc-line);
  margin-bottom: clamp(36px, 5vw, 64px);
  grid-column: 1 / -1;
}

.tt-hero__rule-label {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--enc-soft);
  font: 500 12px/1 var(--tt-font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tt-hero__rule-label::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--enc-gold);
}

.tt-hero__rule-edition {
  color: var(--enc-soft);
  font: 500 12px/1 var(--tt-font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Stat cards */
.tt-hero__facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: clamp(28px, 4vw, 48px);
}

.tt-hero__facts > span {
  display: block;
  padding: 20px;
  border: 1px solid var(--enc-line);
  border-radius: 14px;
  background: var(--enc-surface);
  box-shadow: 0 1px 2px rgba(42, 36, 32, 0.05);
  color: var(--enc-soft);
  font: 500 11px/1.4 var(--tt-font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Catalog slider */
.tt-hero__slider {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.tt-hero__track {
  display: grid;
  gap: 16px;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.tt-hero__slide {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--enc-line);
  border-radius: 16px;
  background: var(--enc-surface);
  scroll-snap-align: start;
}

.tt-hero__slide-media {
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--enc-line);
}

.tt-hero__slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-hero__slide-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.tt-hero__slide-native {
  color: var(--enc-ink);
  font-size: 26px;
  line-height: 1;
}

.tt-hero__slide-title {
  color: var(--enc-ink);
  font: 500 20px/1.2 var(--tt-font-display);
}

.tt-hero__slide-transcription {
  color: var(--enc-soft);
  font: 400 12px/1.3 var(--tt-font-mono);
}

.tt-hero__slide-text {
  margin: 0;
  color: var(--enc-soft);
  font: 400 14px/1.6 var(--tt-font-sans);
}
.tt-hero__slide-link {
  align-self: flex-start;
  margin-top: 4px;
  padding: 9px 16px;
  border: 1px solid var(--enc-line);
  border-radius: 999px;
  color: var(--enc-accent);
  font: 600 12px/1 var(--tt-font-sans);
}

.tt-hero__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.tt-hero__dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--enc-soft);
  border-radius: 50%;
}

.tt-hero__dot:hover,
.tt-hero__dot:focus-visible {
  background: var(--enc-accent);
  border-color: var(--enc-accent);
}

@media (prefers-reduced-motion: reduce) {
  .tt-hero__track {
    scroll-behavior: auto;
  }
}

/* Brewing timer and flavor wheel — align the interactive sections with the
   encyclopedia palette so they do not read as a different theme on the page.
   Behaviour and markup are untouched; this is colour, border and type only. */
.tt-brewing-timer__panel,
.tt-flavor-wheel__body {
  border: 1px solid var(--enc-line);
  border-radius: 14px;
  background: var(--enc-surface);
  box-shadow: 0 1px 2px rgba(42, 36, 32, 0.05);
}

.tt-brewing-timer__dial,
.tt-flavor-wheel__chart {
  border-color: var(--enc-line);
}

.tt-brewing-timer__time {
  color: var(--enc-ink);
  font-family: var(--tt-font-display);
  font-variant-numeric: tabular-nums;
}

.tt-brewing-timer__caption,
.tt-brewing-timer__notes,
.tt-flavor-wheel__hint,
.tt-flavor-wheel__note {
  color: var(--enc-soft);
  font-family: var(--tt-font-sans);
}

.tt-brewing-timer__caption,
.tt-flavor-wheel__hint {
  font-family: var(--tt-font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tt-flavor-wheel__ring {
  border-color: var(--enc-line);
}

.tt-flavor-wheel__ring--inner {
  background: color-mix(in srgb, var(--enc-accent) 12%, var(--enc-surface));
}

.tt-flavor-wheel__ring--middle {
  background: color-mix(in srgb, var(--enc-gold) 10%, var(--enc-surface));
}
