:root {
  --green: #173f35;
  --green-dark: #0f2d26;
  --green-soft: #dfe9e3;
  --ink: #17201d;
  --muted: #65706b;
  --line: #d9ddd9;
  --paper: #ffffff;
  --warm: #f5f2eb;
  --warm-deep: #ebe5da;
  --gold: #a88655;
  --container: 1320px;
  --page: clamp(20px, 4vw, 56px);
  --ease: 180ms ease;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.cart-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { color: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - (var(--page) * 2)), var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--green);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  background: var(--green);
  color: #fff;
  font-size: 12px;
}
.announcement__inner {
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.announcement p { margin: 0; }
.announcement a { min-height: 24px; display: inline-flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.5); }

.header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}
.header__inner {
  height: 82px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 40px;
}
.logo {
  display: inline-flex;
  width: max-content;
  align-items: center;
}
.logo img {
  display: block;
  width: 180px;
  height: auto;
}
.desktop-nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 44px); }
.desktop-nav a,
.text-action {
  position: relative;
  border: 0;
  background: none;
  font-size: 13px;
  font-weight: 650;
}
.desktop-nav a,
.text-action { min-height: 44px; display: inline-flex; align-items: center; }
.desktop-nav a::after,
.text-action::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after,
.text-action:hover::after,
.text-action:focus-visible::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: 24px; }
.city-control { position: relative; }
.city-select {
  min-height: 38px;
  padding: 0 26px 0 0;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 650;
}
.cart-count {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  margin-left: 5px;
  padding-inline: 7px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
}
.menu-button { display: none; }

.search-drawer {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}
.search-drawer.is-open { visibility: visible; opacity: 1; transform: none; }
.search-drawer label { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 700; }
.search-row { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; }
.search-row input {
  min-width: 0;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
}
.search-row input:focus { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-soft); }
.search-close { padding: 0 14px; border: 0; background: transparent; font-size: 13px; font-weight: 650; }
.search-status { margin: 10px 0 0; color: var(--muted); font-size: 12px; }

.mobile-menu {
  position: fixed;
  z-index: 180;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  display: none;
  background: rgba(15,45,38,.38);
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--ease), visibility var(--ease);
}
.mobile-menu.is-open { visibility: visible; opacity: 1; }
.mobile-menu__panel {
  width: min(88vw, 420px);
  height: 100%;
  padding: 24px;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 260ms ease;
}
.mobile-menu.is-open .mobile-menu__panel { transform: none; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.logo--compact img { width: 146px; }
.menu-close { padding: 8px 0; border: 0; background: transparent; font-size: 13px; }
.mobile-menu nav { display: grid; padding: 28px 0; }
.mobile-menu nav a,
.mobile-search-button {
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -.02em;
  text-align: left;
}
.mobile-search-button { color: var(--green); }
.mobile-menu__footer { display: grid; gap: 18px; margin-top: 12px; color: var(--muted); font-size: 13px; }
.mobile-menu__footer label { display: grid; gap: 7px; }
.mobile-menu__footer .city-select { width: 100%; padding: 0 12px; border: 1px solid var(--line); }

.hero { border-bottom: 1px solid var(--line); background: #fff; }
.hero__grid {
  min-height: min(720px, calc(100vh - 118px));
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr);
  align-items: stretch;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(44px, 5vw, 88px) 72px 0;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(52px, 4.7vw, 68px);
  font-weight: 560;
  letter-spacing: -.055em;
  line-height: .99;
}
.hero__lead {
  max-width: 530px;
  margin: 32px 0 0;
  color: #46514d;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .035em;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.button:hover { transform: translateY(-1px); }
.button--primary, .button--dark { background: var(--green); color: #fff; }
.button--primary:hover, .button--dark:hover { background: var(--green-dark); }
.button--secondary { border-color: var(--green); color: var(--green); }
.button--secondary:hover { background: var(--green-soft); }
.button--light { background: #fff; color: var(--green); }
.button--light:hover { background: var(--warm); }
.hero__proof {
  display: flex;
  gap: 28px;
  margin: 40px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  list-style: none;
}
.hero__proof li + li { padding-left: 28px; border-left: 1px solid var(--line); }
.hero__media { position: relative; min-height: 600px; overflow: hidden; background: var(--warm); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 17px 20px;
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  color: var(--green);
}
.hero__caption span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }
.hero__caption strong { max-width: 290px; font-size: 15px; text-align: right; }

.section { padding: clamp(78px, 8vw, 124px) 0; }
.section--soft { background: var(--warm); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 46px;
}
.section-head h2,
.about h2,
.corporate h2,
.delivery h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 560;
  letter-spacing: -.045em;
  line-height: 1.06;
}
.section-head .eyebrow { margin-bottom: 14px; }
.inline-link { padding-bottom: 5px; border-bottom: 1px solid var(--green); color: var(--green); font-size: 13px; font-weight: 700; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { min-width: 0; }
.category-card__image { aspect-ratio: 1 / 1.05; overflow: hidden; background: var(--warm); }
.category-card img { height: 100%; object-fit: cover; transition: transform 420ms ease; }
.category-card:hover img { transform: scale(1.025); }
.category-card__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.category-card h2,
.category-card h3 { margin: 0; font-size: 22px; font-weight: 600; letter-spacing: -.03em; }
.category-card span { color: var(--muted); font-size: 11px; }

.section-head--products { align-items: end; }
.filters { display: flex; gap: 5px; padding: 4px; border: 1px solid #cfd4d0; background: rgba(255,255,255,.55); }
.filters button { min-height: 36px; padding: 0 16px; border: 0; background: transparent; color: var(--muted); font-size: 12px; font-weight: 650; }
.filters button.is-active { background: var(--green); color: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.product-card { min-width: 0; background: #fff; }
.product-card[hidden] { display: none; }
.product-card__image { position: relative; display: block; aspect-ratio: 1/1.12; overflow: hidden; background: #efece5; }
.product-card__image img { height: 100%; object-fit: cover; transition: transform 420ms ease; }
.product-card:hover .product-card__image img { transform: scale(1.02); }
.badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 7px 10px;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge--light { background: #fff; color: var(--green); }
.product-card__body { padding: 20px; }
.product-type { margin: 0 0 5px; color: var(--green); font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.product-card h3 { min-height: 30px; margin: 0; font-size: 20px; font-weight: 620; letter-spacing: -.025em; }
.product-size { min-height: 38px; margin: 8px 0 20px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.product-stock { margin: -10px 0 14px; color: var(--green); font-size: 10px; font-weight: 700; }
.product-stock.is-unavailable { color: #8a554d; }
.product-card__buy { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.product-card__buy strong { white-space: nowrap; font-size: 17px; }
.add-to-cart {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--green);
  background: transparent;
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
  transition: background var(--ease), color var(--ease);
}
.add-to-cart:hover, .add-to-cart.is-added { background: var(--green); color: #fff; }
.add-to-cart:disabled { border-color: #c5cac6; background: #f2f2ee; color: #7d8581; cursor: not-allowed; }
.product-empty { grid-column: 1/-1; padding: 56px; border: 1px solid #cfd4d0; background: #fff; text-align: center; }
.product-empty strong { display: block; font-size: 24px; }
.product-empty p { margin: 10px 0 22px; color: var(--muted); }
.product-empty button { min-height: 42px; padding: 0 18px; border: 1px solid var(--green); background: transparent; color: var(--green); font-weight: 700; }

.corporate { padding-top: 0; background: var(--warm); }
.corporate__card { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 640px; background: var(--green); color: #fff; }
.corporate__image { min-height: 500px; overflow: hidden; }
.corporate__image img { height: 100%; object-fit: cover; }
.corporate__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(52px, 6vw, 90px); }
.corporate__copy .eyebrow { color: #cbdacf; }
.corporate__copy h2 { max-width: 520px; }
.corporate__copy > p:not(.eyebrow) { max-width: 520px; margin: 26px 0 0; color: #d9e3de; font-size: 17px; line-height: 1.6; }
.corporate__copy ul { display: grid; gap: 9px; margin: 28px 0 34px; padding: 0; color: #eef4f1; font-size: 13px; list-style-position: inside; }
.corporate__copy .button { width: max-content; }

.about__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
.about__copy > p:not(.eyebrow) { max-width: 530px; margin: 28px 0 30px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.about__image { margin: 0; }
.about__image img { max-height: 690px; object-fit: cover; }
.about__image figcaption { padding: 13px 0 0; color: var(--muted); font-size: 11px; }

.advantage-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; border-top: 1px solid #cfd3cf; list-style: none; }
.advantage-grid li { min-height: 260px; padding: 22px 24px 24px 0; border-right: 1px solid #cfd3cf; }
.advantage-grid li + li { padding-left: 24px; }
.advantage-grid li:last-child { border-right: 0; }
.advantage-grid span { color: var(--green); font-size: 11px; font-weight: 700; }
.advantage-grid h3 { margin: 74px 0 12px; font-size: 18px; font-weight: 650; letter-spacing: -.02em; }
.advantage-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.delivery { background: var(--warm-deep); }
.delivery__grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.delivery__cities { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.delivery__cities article { padding: 28px; background: rgba(255,255,255,.72); }
.delivery__cities article:only-child { grid-column: 1 / -1; }
.delivery__cities span { color: var(--green); font-size: 11px; font-weight: 700; }
.delivery__cities h3 { margin: 42px 0 12px; font-size: 28px; font-weight: 600; }
.delivery__cities p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.delivery__note { grid-column: 2; display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid #c7c0b4; font-size: 12px; }
.delivery__note span { color: var(--green); font-weight: 700; }

.reviews__score { display: flex; align-items: baseline; gap: 12px; margin: 0; }
.reviews__score strong { color: var(--green); font-size: 42px; font-weight: 560; letter-spacing: -.04em; }
.reviews__score span { color: var(--muted); font-size: 11px; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review-grid blockquote { min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; margin: 0; padding: 30px; border-right: 1px solid var(--line); }
.review-grid blockquote:first-child { padding-left: 0; }
.review-grid blockquote:last-child { padding-right: 0; border-right: 0; }
.review-grid blockquote > p { margin: 0; font-size: 17px; line-height: 1.6; }
.review-grid footer { display: flex; flex-direction: column; gap: 3px; margin-top: 34px; font-size: 12px; }
.review-grid footer span { color: var(--muted); }

.footer { padding: 72px 0 22px; background: var(--green-dark); color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 70px; }
.logo--footer img {
  width: 190px;
  filter: invert(1);
  mix-blend-mode: screen;
}
.footer__brand p { max-width: 260px; margin: 28px 0 0; color: #afc1ba; font-size: 13px; }
.footer h2 { margin: 0 0 20px; color: #afc1ba; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer a, .footer p { font-size: 13px; }
.footer__grid a { min-height: 24px; display: inline-flex; align-items: center; }
.footer a:hover { color: #cfe0d8; }
.footer__grid p { margin: 0; color: #dbe5e1; line-height: 1.8; }
.footer__bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 66px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); color: #8fa79e; font-size: 10px; }
.footer__bottom div { display: flex; gap: 24px; }
.footer__bottom a { font-size: 10px; }

.cart-drawer {
  position: fixed;
  z-index: 190;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--ease), visibility var(--ease);
}
.cart-drawer.is-open { visibility: visible; opacity: 1; }
.cart-drawer__backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(15,45,38,.42); }
.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  transform: translateX(100%);
  transition: transform 260ms ease;
}
.cart-drawer.is-open .cart-drawer__panel { transform: none; }
.cart-drawer__head { display: flex; justify-content: space-between; align-items: start; gap: 20px; padding: 28px 30px 22px; border-bottom: 1px solid var(--line); }
.cart-drawer__head .eyebrow { margin-bottom: 7px; }
.cart-drawer__head h2 { margin: 0; font-size: 34px; font-weight: 560; letter-spacing: -.04em; }
.cart-drawer__close { padding: 8px 0; border: 0; background: transparent; font-size: 13px; font-weight: 650; }
.cart-drawer__items { min-height: 0; overflow-y: auto; padding: 0 30px; }
.cart-item { display: grid; grid-template-columns: 112px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-item > img { width: 112px; height: 128px; object-fit: cover; background: var(--warm); }
.cart-item__info { min-width: 0; }
.cart-item h3 { margin: 0; font-size: 17px; font-weight: 650; }
.cart-item p { margin: 5px 0 12px; color: var(--muted); font-size: 11px; }
.cart-item strong { font-size: 15px; }
.cart-item__actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 18px; }
.quantity-control { display: grid; grid-template-columns: 34px 30px 34px; align-items: center; border: 1px solid var(--line); text-align: center; }
.quantity-control button { height: 34px; border: 0; background: transparent; font-size: 18px; }
.quantity-control span { font-size: 12px; }
.cart-item__remove { padding: 6px 0; border: 0; border-bottom: 1px solid #9ca39f; background: transparent; color: var(--muted); font-size: 11px; }
.cart-empty { display: grid; min-height: 280px; place-content: center; text-align: center; }
.cart-empty strong { font-size: 22px; }
.cart-empty p { max-width: 290px; margin: 10px auto 0; color: var(--muted); font-size: 13px; }
.cart-drawer__summary { padding: 22px 30px 26px; border-top: 1px solid var(--line); background: var(--warm); }
.cart-drawer__summary > div { display: flex; justify-content: space-between; gap: 20px; }
.cart-drawer__summary > div span { color: var(--muted); font-size: 12px; }
.cart-drawer__summary > div strong { font-size: 20px; }
.cart-drawer__summary p { margin: 12px 0 20px; color: var(--muted); font-size: 11px; }
.cart-drawer__summary .button { width: 100%; }
.cart-drawer__summary .button:disabled { background: #b9c0bd; cursor: not-allowed; }
.cart-drawer__summary small { display: block; margin-top: 10px; color: var(--muted); font-size: 10px; text-align: center; }

/* Catalog and product routes */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}
.breadcrumbs a { min-height: 28px; display: inline-flex; align-items: center; border-bottom: 1px solid transparent; }
.breadcrumbs a:hover { border-color: var(--green); color: var(--green); }
.breadcrumbs > * + *::before { content: "/"; margin-right: 8px; color: #aeb5b1; }

.page-hero { padding: 60px 0 76px; border-bottom: 1px solid var(--line); background: #fff; }
.page-hero .breadcrumbs { margin-bottom: 52px; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { max-width: 920px; margin: 0; font-size: clamp(52px, 6.2vw, 82px); font-weight: 550; letter-spacing: -.06em; line-height: .98; }
.page-hero__lead { max-width: 720px; margin: 28px 0 0; color: #46514d; font-size: 18px; line-height: 1.65; }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 0; margin-top: 38px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.page-hero__meta span + span { margin-left: 20px; padding-left: 20px; border-left: 1px solid var(--line); }
.page-hero--tea { padding: 36px 0 48px; }
.page-hero--tea .breadcrumbs { margin-bottom: 28px; }
.tea-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); gap: clamp(42px, 6vw, 88px); align-items: center; }
.tea-hero__copy { padding-block: 24px; }
.page-hero--tea h1 { max-width: 660px; font-size: clamp(54px, 5.1vw, 74px); }
.page-hero--tea .page-hero__lead { max-width: 650px; margin-top: 24px; font-size: 17px; line-height: 1.62; }
.tea-hero__link { margin-top: 30px; }
.tea-hero__link span { margin-left: 8px; }
.tea-hero__media { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: var(--warm); }
.tea-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.product-not-found { padding-block: 40px; }
.product-not-found > p:not(.eyebrow) { max-width: 600px; margin: 24px 0 32px; color: var(--muted); }

.catalog-category-showcase .category-card__image { aspect-ratio: 1 / .9; }
.tea-types-section { padding: clamp(46px, 6vw, 78px) 0; border-bottom: 1px solid var(--line); background: #fff; }
.tea-types-heading { margin-bottom: 28px; }
.tea-types-heading .eyebrow { margin: 0; color: #5e4030; font-size: 16px; font-weight: 600; letter-spacing: .28em; }
.tea-types-heading > span { display: block; width: 48px; height: 3px; margin-top: 18px; background: #5e4030; }
.tea-types-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(58px, 10vw, 150px); }
.tea-types-grid button { position: relative; min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0; border: 0; border-bottom: 1px solid transparent; background: transparent; color: var(--ink); font-size: clamp(17px, 1.7vw, 22px); font-weight: 450; text-align: left; transition: color 160ms ease, border-color 160ms ease; }
.tea-types-grid button > span:last-child { color: #a7afaa; font-size: 16px; opacity: 0; transform: translateX(-7px); transition: opacity 160ms ease, transform 160ms ease; }
.tea-types-grid button:hover,
.tea-types-grid button:focus-visible { border-color: #bdc5c0; color: var(--green); outline: 0; }
.tea-types-grid button:hover > span:last-child,
.tea-types-grid button:focus-visible > span:last-child,
.tea-types-grid button.is-active > span:last-child { opacity: 1; transform: none; }
.tea-types-grid button.is-active { border-color: var(--green); color: var(--green); font-weight: 680; }
.catalog-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: clamp(42px, 5vw, 76px); align-items: start; }
.catalog-sidebar { position: sticky; top: 142px; display: grid; gap: 42px; }
.catalog-sidebar__label { margin: 0 0 14px; color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.catalog-sidebar nav { display: grid; border-top: 1px solid var(--line); }
.catalog-sidebar nav a { min-height: 46px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 620; }
.catalog-sidebar nav a::after { content: "→"; color: #a5ada9; font-weight: 400; }
.catalog-sidebar nav a:hover,
.catalog-sidebar nav a[aria-current="page"] { color: var(--green); }
.catalog-sidebar nav a[aria-current="page"]::after { color: var(--green); }
.catalog-subcategories { display: grid; gap: 7px; }
.catalog-subcategories button { min-height: 38px; padding: 7px 10px; border: 1px solid transparent; background: transparent; color: var(--muted); font-size: 12px; text-align: left; }
.catalog-subcategories button:hover,
.catalog-subcategories button.is-active { border-color: #c7d0cb; background: #fff; color: var(--green); }
.catalog-subcategories p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.catalog-main { min-width: 0; }
.catalog-toolbar { min-height: 66px; display: flex; justify-content: space-between; align-items: start; gap: 24px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid #cfd3cf; }
.catalog-toolbar > div { display: grid; gap: 4px; }
.catalog-toolbar strong { font-size: 14px; }
.catalog-toolbar > div span { color: var(--muted); font-size: 11px; }
.catalog-toolbar label { display: flex; align-items: center; gap: 12px; }
.catalog-toolbar label span { color: var(--muted); font-size: 11px; white-space: nowrap; }
.catalog-toolbar select { min-height: 38px; padding: 0 30px 0 12px; border: 1px solid #cfd3cf; background: #fff; font-size: 12px; }
.catalog-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.catalog-empty { grid-column: 1 / -1; min-height: 430px; background: #fff; }
.catalog-demo-note { display: flex; justify-content: space-between; align-items: start; gap: 28px; margin-top: 36px; padding-top: 22px; border-top: 1px solid #cfd3cf; }
.catalog-demo-note p { max-width: 710px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.catalog-demo-note button { flex: 0 0 auto; padding-top: 0; border-top: 0; border-right: 0; border-left: 0; background: transparent; }

/* Approved product-detail rule: every tea uses the same compact, aligned desktop layout. */
.product-overview { padding: 34px 0 100px; }
.product-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .72fr);
  grid-template-areas:
    "breadcrumbs summary"
    "gallery summary";
  grid-template-rows: auto 1fr;
  column-gap: clamp(50px, 7vw, 112px);
  align-items: start;
}
.product-overview__breadcrumbs { grid-area: breadcrumbs; }
.product-gallery { grid-area: gallery; min-width: 0; margin-top: 26px; }
body[data-product-category="tea"] .product-gallery { width: min(100%, 680px); justify-self: center; }
.product-gallery__main { position: relative; aspect-ratio: 1 / .88; margin: 0; overflow: hidden; background: #fff; }
.product-gallery__main img { height: 100%; object-fit: contain; }
.product-gallery__main .badge { z-index: 2; }
.product-gallery__thumbs { display: flex; gap: 8px; margin-top: 10px; }
.product-gallery__thumbs button { width: 78px; height: 78px; padding: 0; border: 1px solid var(--line); background: var(--warm); }
.product-gallery__thumbs button.is-active { border-color: var(--green); }
.product-gallery__thumbs img { height: 100%; object-fit: cover; }
.product-gallery > p { margin: 13px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.product-inline-details { margin-top: 30px; padding-top: 34px; border-top: 1px solid var(--line); }
.product-inline-details .product-details__grid { grid-template-columns: 1fr; gap: 34px; }
.product-inline-details h3 { margin: 0 0 18px; font-size: 14px; font-weight: 700; }
.product-inline-details .product-details__description > p { font-size: 16px; line-height: 1.7; }
.product-inline-details .taste-notes { margin-top: 24px; }
.product-ingredient-visuals { margin-top: 28px; padding-top: 22px; border-top: 1px solid #cfd3cf; }
.product-ingredient-visuals h4 { margin: 0 0 18px; color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-ingredient-visuals__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); justify-items: center; gap: 18px 12px; }
.product-ingredient { min-width: 0; margin: 0; text-align: center; }
.product-ingredient img { width: 58px; height: 58px; margin: 0 auto; object-fit: contain; }
.product-ingredient figcaption { max-width: 130px; margin: 7px auto 0; color: #46514d; font-size: 11px; font-weight: 600; line-height: 1.35; }
.product-details__grid > .product-brewing-guide { grid-column: 1 / -1; }
.product-brewing-guide { margin-top: 0; padding-top: 24px; border-top: 1px solid #cfd3cf; background: #fff; }
.product-brewing-guide h4 { margin: 0 0 18px; color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-brewing-guide__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.product-brewing-guide__item { display: flex; min-width: 0; min-height: 142px; flex-direction: column; align-items: center; justify-content: flex-start; margin: 0; padding: 18px 12px 15px; border: 1px solid var(--line); background: #fff; text-align: center; }
.product-brewing-guide__icon { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 13px; color: var(--green); }
.product-brewing-guide__icon img { width: 36px; height: 36px; object-fit: contain; opacity: .78; }
.product-brewing-guide__item strong { color: var(--ink); font-size: 13px; font-weight: 650; line-height: 1.35; }
.product-brewing-guide__item > span:last-child { margin-top: 7px; color: var(--muted); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.product-brewing-guide__item.is-recommendation strong { font-size: 10px; line-height: 1.45; }
.product-summary { position: sticky; grid-area: summary; top: 126px; align-self: start; padding-top: 0; }
.product-summary > .product-type { margin-bottom: 14px; }
.product-summary h1 { margin: 0; font-size: clamp(42px, 4.2vw, 60px); font-weight: 560; letter-spacing: -.055em; line-height: 1.02; }
.product-summary__lead { max-width: 530px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.product-availability { display: grid; grid-template-columns: 8px auto 1fr; align-items: center; gap: 9px; margin-top: 24px; font-size: 11px; }
.product-availability > span { width: 8px; height: 8px; border-radius: 50%; background: #50866c; }
.product-availability strong { color: var(--green); }
.product-availability small { color: var(--muted); text-align: right; }
.product-availability.is-unavailable > span { background: #aa745c; }
.product-availability.is-unavailable strong { color: #8a5741; }
.product-price { margin-top: 28px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 30px; font-weight: 650; letter-spacing: -.04em; }
.product-option { margin-top: 26px; }
.product-option__head { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 12px; }
.product-option__head strong { font-size: 12px; }
.product-option__head span { color: var(--muted); font-size: 10px; }
.product-variants { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.product-variants button { min-height: 58px; display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid var(--line); background: #fff; font-size: 12px; }
.product-variants button strong { font-size: 11px; }
.product-variants button:hover,
.product-variants button.is-active { border-color: var(--green); background: #f5f8f6; color: var(--green); }
.product-add { width: 100%; margin-top: 18px; }
.product-add:disabled { background: #aeb6b2; cursor: not-allowed; }
.product-service { display: grid; gap: 9px; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; color: var(--muted); font-size: 11px; }
.product-service li::before { content: "✓"; margin-right: 9px; color: var(--green); font-weight: 800; }
.product-details__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(52px, 8vw, 120px); }
.product-details h3 { margin: 0 0 24px; font-size: 14px; font-weight: 700; }
.product-details__description > p { max-width: 650px; margin: 0; color: #46514d; font-size: 18px; line-height: 1.75; white-space: pre-line; }
.taste-notes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.taste-notes span { padding: 9px 13px; border: 1px solid #cbd1cd; background: rgba(255,255,255,.55); color: var(--green); font-size: 11px; }
.product-facts { margin: 0; border-top: 1px solid #cfd3cf; }
.product-facts > div { display: grid; grid-template-columns: 130px 1fr; gap: 22px; padding: 20px 0; border-bottom: 1px solid #cfd3cf; }
.product-facts > [data-product-ingredients-row][hidden],
.product-facts > [data-product-brewing-row][hidden] { display: none; }
.product-facts dt { color: var(--muted); font-size: 11px; }
.product-facts dd { margin: 0; font-size: 13px; line-height: 1.65; }
.related-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.cart-page-head { padding: 44px 0 54px; border-bottom: 1px solid var(--line); background: #fff; }
.cart-page-head .breadcrumbs { margin-bottom: 34px; }
.cart-page-head .eyebrow { margin-bottom: 12px; }
.cart-page-head__title { display: flex; justify-content: space-between; align-items: baseline; gap: 28px; }
.cart-page-head h1 { margin: 0; font-size: clamp(48px, 5.5vw, 72px); font-weight: 550; letter-spacing: -.06em; line-height: 1; }
.cart-page-head__title > span { color: var(--muted); font-size: 12px; }
.cart-page-head .container > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 15px; }
.cart-page { background: var(--warm); }
.cart-page__layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 420px); gap: clamp(44px, 6vw, 88px); align-items: start; }
.cart-page__items { min-width: 0; }
.cart-page__items-head { min-height: 48px; display: flex; justify-content: space-between; align-items: start; gap: 24px; margin-bottom: 20px; }
.cart-page__items-head h2 { margin: 0; font-size: 22px; font-weight: 620; letter-spacing: -.03em; }
.cart-page-item { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 24px; padding: 24px 0; border-top: 1px solid #cfd3cf; }
.cart-page-item:last-child { border-bottom: 1px solid #cfd3cf; }
.cart-page-item__image { aspect-ratio: 1 / 1.1; overflow: hidden; background: #fff; }
.cart-page-item__image img { height: 100%; object-fit: cover; }
.cart-page-item__content { min-width: 0; display: flex; flex-direction: column; }
.cart-page-item__heading { display: flex; justify-content: space-between; align-items: start; gap: 22px; }
.cart-page-item__heading p { margin: 0 0 5px; color: var(--green); font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.cart-page-item__heading h2 { margin: 0; font-size: 21px; font-weight: 640; letter-spacing: -.03em; }
.cart-page-item__heading > strong { flex: 0 0 auto; font-size: 17px; }
.cart-page-item__stock { margin: 9px 0 0; color: var(--green); font-size: 10px; font-weight: 700; }
.cart-page-item__stock.is-unavailable { color: #8a554d; }
.cart-page-item__controls { display: grid; grid-template-columns: minmax(190px, 1fr) auto auto; align-items: end; gap: 16px; margin-top: auto; padding-top: 24px; }
.cart-page-item__controls label,
.cart-page-item__controls > div { display: grid; gap: 7px; }
.cart-page-item__controls label > span,
.cart-page-item__controls > div > span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cart-page-item__controls select { width: 100%; min-height: 38px; padding: 0 30px 0 10px; border: 1px solid #c9ceca; background: #fff; font-size: 11px; }
.cart-page-item__controls .quantity-control { background: #fff; }
.quantity-control button:disabled { color: #aeb5b1; cursor: not-allowed; }
.cart-page-item__remove { min-height: 36px; padding: 0; border: 0; border-bottom: 1px solid #9ca39f; background: transparent; color: var(--muted); font-size: 10px; }
.cart-page-empty { min-height: 440px; display: grid; place-content: center; justify-items: center; padding: 46px; border-top: 1px solid #cfd3cf; border-bottom: 1px solid #cfd3cf; background: rgba(255,255,255,.46); text-align: center; }
.cart-page-empty .eyebrow { margin-bottom: 12px; }
.cart-page-empty h2 { max-width: 500px; margin: 0; font-size: 34px; font-weight: 580; letter-spacing: -.04em; }
.cart-page-empty > p:not(.eyebrow) { max-width: 440px; margin: 16px 0 28px; color: var(--muted); font-size: 13px; }
.cart-page-summary { position: sticky; top: 142px; padding: 34px; background: #fff; }
.cart-page-summary__head { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.cart-page-summary__head .eyebrow { margin-bottom: 7px; }
.cart-page-summary h2 { margin: 0; font-size: 28px; font-weight: 590; letter-spacing: -.04em; }
.cart-page-summary dl { margin: 0; }
.cart-page-summary dl > div { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.cart-page-summary dt { color: var(--muted); }
.cart-page-summary dd { margin: 0; font-weight: 650; }
.cart-page-summary dl > .cart-page-summary__total { padding: 22px 0; color: var(--ink); font-size: 18px; }
.cart-page-summary__total dt { color: var(--ink); font-weight: 650; }
.cart-page-summary__total dd { font-size: 22px; }
.delivery-progress { margin: 22px 0; padding: 18px; background: var(--warm); }
.delivery-progress > div:first-child { display: flex; justify-content: space-between; align-items: start; gap: 18px; }
.delivery-progress strong { max-width: 220px; color: var(--green); font-size: 11px; }
.delivery-progress > div:first-child span { color: var(--muted); font-size: 9px; white-space: nowrap; }
.delivery-progress__track { height: 4px; margin-top: 15px; overflow: hidden; background: #d8d7d0; }
.delivery-progress__track span { display: block; width: 0; height: 100%; background: var(--green); transition: width var(--ease); }
.delivery-progress p { margin: 11px 0 0; color: var(--muted); font-size: 9px; line-height: 1.5; }
.cart-page-summary > .button { width: 100%; }
.cart-page-summary > .button:disabled { background: #aeb6b2; cursor: not-allowed; transform: none; }
.cart-page-summary__note { margin: 10px 0 0; color: var(--muted); font-size: 9px; line-height: 1.5; text-align: center; }
.cart-page-summary > ul { display: grid; gap: 8px; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; list-style: none; }
.cart-page-summary > ul li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 800; }

.checkout-head { padding: 44px 0 58px; border-bottom: 1px solid var(--line); background: #fff; }
.checkout-head .breadcrumbs { margin-bottom: 34px; }
.checkout-head .eyebrow { margin-bottom: 12px; }
.checkout-head h1 { margin: 0; font-size: clamp(48px, 5.5vw, 72px); font-weight: 550; letter-spacing: -.06em; line-height: 1; }
.checkout-head .container > p:last-child { max-width: 650px; margin: 22px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 430px); gap: clamp(44px, 6vw, 88px); align-items: start; }
.checkout-form { display: grid; gap: 18px; min-width: 0; }
.checkout-card { padding: 34px; background: #fff; }
.checkout-card__head { display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: start; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.checkout-card__head > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-size: 10px; font-weight: 750; }
.checkout-card__head .eyebrow { margin-bottom: 5px; }
.checkout-card__head h2 { margin: 0; font-size: 25px; font-weight: 600; letter-spacing: -.035em; }
.checkout-fields { display: grid; gap: 18px; }
.checkout-fields--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.checkout-fields label { display: grid; gap: 8px; }
.checkout-fields label > span { color: var(--muted); font-size: 10px; font-weight: 700; }
.checkout-field--wide { grid-column: 1 / -1; }
.checkout-fields input,
.checkout-fields select,
.checkout-fields textarea { width: 100%; min-width: 0; border: 1px solid #cbd0cc; border-radius: 0; background: #fff; color: var(--ink); font-size: 13px; outline: 0; }
.checkout-fields input,
.checkout-fields select { min-height: 50px; padding: 0 14px; }
.checkout-fields select { padding-right: 32px; }
.checkout-fields textarea { resize: vertical; min-height: 100px; padding: 13px 14px; }
.checkout-fields input:focus,
.checkout-fields select:focus,
.checkout-fields textarea:focus { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-soft); }
.checkout-fields input:user-invalid,
.checkout-fields select:user-invalid { border-color: #a45c4d; }
.checkout-checkbox,
.checkout-consent { display: flex; align-items: start; gap: 11px; cursor: pointer; }
.checkout-checkbox { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.checkout-checkbox input,
.checkout-consent input { flex: 0 0 auto; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--green); }
.checkout-checkbox > span { display: grid; gap: 3px; }
.checkout-checkbox strong { font-size: 12px; }
.checkout-checkbox small { color: var(--muted); font-size: 10px; line-height: 1.5; }
.checkout-payment { display: grid; grid-template-columns: 18px 1fr; gap: 13px; padding: 18px; border: 1px solid var(--green); background: #f7faf8; }
.checkout-payment > span { width: 16px; height: 16px; margin-top: 2px; border: 5px solid var(--green); border-radius: 50%; background: #fff; }
.checkout-payment strong { color: var(--green); font-size: 13px; }
.checkout-payment p { margin: 6px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.checkout-seller { display: grid; gap: 9px; margin: 18px 0 0; padding: 16px 18px; border: 1px solid var(--line); background: #fff; }
.checkout-seller > div { display: flex; justify-content: space-between; gap: 20px; font-size: 11px; }
.checkout-seller dt { color: var(--muted); }
.checkout-seller dd { margin: 0; font-weight: 650; text-align: right; }
.checkout-consent { padding: 14px 4px 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.checkout-consent a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.checkout-summary { position: sticky; top: 142px; padding: 32px; background: #fff; }
.checkout-summary__head { display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.checkout-summary__head .eyebrow { margin-bottom: 5px; }
.checkout-summary__head h2 { margin: 0; font-size: 28px; font-weight: 600; letter-spacing: -.04em; }
.checkout-summary__head a { padding-bottom: 3px; border-bottom: 1px solid var(--green); color: var(--green); font-size: 10px; font-weight: 700; }
.checkout-summary__count { margin: 15px 0 18px; padding-bottom: 15px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.checkout-order-items { display: grid; max-height: 320px; overflow-y: auto; }
.checkout-order-item { display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.checkout-order-item > a { aspect-ratio: 1; overflow: hidden; background: var(--warm); }
.checkout-order-item img { height: 100%; object-fit: cover; }
.checkout-order-item h3 { margin: 0; font-size: 12px; font-weight: 650; line-height: 1.3; }
.checkout-order-item p { margin: 4px 0 0; color: var(--muted); font-size: 9px; }
.checkout-order-item > strong { font-size: 11px; white-space: nowrap; }
.checkout-summary dl { margin: 16px 0 0; }
.checkout-summary dl > div { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; font-size: 11px; }
.checkout-summary dt { color: var(--muted); }
.checkout-summary dd { margin: 0; font-weight: 650; text-align: right; }
.checkout-summary dl > .checkout-summary__total { margin-top: 5px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 15px; }
.checkout-summary__total dt { color: var(--ink); font-weight: 650; }
.checkout-summary__total dd { font-size: 19px; }
.checkout-summary__delivery { margin: 18px 0; padding: 16px; background: var(--warm); }
.checkout-summary__delivery strong { color: var(--green); font-size: 11px; }
.checkout-summary__delivery p { margin: 6px 0 0; color: var(--muted); font-size: 9px; line-height: 1.5; }
.checkout-summary > .button { width: 100%; }
.checkout-summary > .button:disabled { background: #aeb6b2; cursor: not-allowed; transform: none; }
.checkout-summary__status { margin: 10px 0 0; color: var(--muted); font-size: 9px; line-height: 1.5; text-align: center; }
.checkout-summary__status.is-success { padding: 11px; background: var(--green-soft); color: var(--green); font-weight: 650; }
.checkout-summary__status.is-error { padding: 11px; background: #fbefeb; color: #8a3f31; font-weight: 650; }
.checkout-result { min-height: 66vh; display: grid; place-items: center; }
.checkout-result__card { width: min(100%, 720px); padding: clamp(34px, 6vw, 72px); background: #fff; text-align: center; }
.checkout-result__card h1 { margin: 12px 0 18px; font-size: clamp(40px, 6vw, 68px); font-weight: 550; letter-spacing: -.055em; line-height: 1; }
.checkout-result__card > p:not(.eyebrow) { max-width: 520px; margin: 0 auto; color: var(--muted); line-height: 1.7; }
.checkout-result__actions { display: flex; justify-content: center; gap: 10px; margin: 30px 0 20px; }
.checkout-result__note { font-size: 10px; }
.checkout-empty { min-height: 520px; display: grid; place-content: center; justify-items: center; text-align: center; }
.checkout-empty h2 { margin: 0; font-size: 40px; font-weight: 580; letter-spacing: -.04em; }
.checkout-empty > p:not(.eyebrow) { max-width: 500px; margin: 16px 0 28px; color: var(--muted); }

.corporate-page-hero { border-bottom: 1px solid var(--line); background: #fff; }
.corporate-page-hero__grid { min-height: 700px; display: grid; grid-template-columns: minmax(380px, .86fr) minmax(520px, 1.14fr); }
.corporate-page-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 44px clamp(44px, 5vw, 86px) 54px 0; }
.corporate-page-hero__copy .breadcrumbs { margin-bottom: auto; padding-top: 6px; }
.corporate-page-hero__copy > .eyebrow { margin-top: 76px; margin-bottom: 16px; }
.corporate-page-hero h1 { max-width: 720px; margin: 0; font-size: clamp(48px, 4.7vw, 66px); font-weight: 550; letter-spacing: -.055em; line-height: 1; }
.corporate-page-hero__copy > p:not(.eyebrow) { max-width: 600px; margin: 28px 0 0; color: #46514d; font-size: 17px; line-height: 1.65; }
.corporate-page-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.corporate-page-hero__copy > ul { display: flex; flex-wrap: wrap; gap: 0; margin: auto 0 0; padding: 26px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; list-style: none; }
.corporate-page-hero__copy > ul li + li { margin-left: 18px; padding-left: 18px; border-left: 1px solid var(--line); }
.corporate-page-hero__image { position: relative; min-height: 620px; margin: 0; overflow: hidden; background: var(--warm); }
.corporate-page-hero__image img { height: 100%; object-fit: cover; }
.corporate-page-hero__image figcaption { position: absolute; right: 20px; bottom: 20px; left: 20px; display: flex; justify-content: space-between; gap: 18px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.62); background: rgba(255,255,255,.9); color: var(--green); }
.corporate-page-hero__image figcaption span { color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.corporate-page-hero__image figcaption strong { font-size: 13px; }
.corporate-solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.corporate-solution-grid article { min-height: 330px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); }
.corporate-solution-grid article:first-child { padding-left: 0; }
.corporate-solution-grid article:last-child { padding-right: 0; border-right: 0; }
.corporate-solution-grid article > span,
.corporate-occasion-grid article > span { color: var(--green); font-size: 10px; font-weight: 750; }
.corporate-solution-grid h3 { margin: 72px 0 14px; font-size: 24px; font-weight: 610; letter-spacing: -.035em; }
.corporate-solution-grid p { max-width: 330px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.corporate-solution-grid a { width: max-content; margin-top: auto; padding-bottom: 4px; border-bottom: 1px solid var(--green); color: var(--green); font-size: 11px; font-weight: 700; }
.corporate-packaging__grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: stretch; }
.corporate-packaging__image { min-height: 660px; overflow: hidden; }
.corporate-packaging__image img { height: 100%; object-fit: cover; }
.corporate-packaging__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 6vw, 88px); background: #fff; }
.corporate-packaging__copy h2 { margin: 0; font-size: clamp(40px, 4vw, 56px); font-weight: 560; letter-spacing: -.045em; line-height: 1.04; }
.corporate-packaging__copy > p:not(.eyebrow) { margin: 24px 0 28px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.corporate-packaging__copy dl { margin: 0 0 32px; border-top: 1px solid var(--line); }
.corporate-packaging__copy dl > div { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.corporate-packaging__copy dt { color: var(--muted); font-size: 10px; }
.corporate-packaging__copy dd { margin: 0; font-size: 11px; font-weight: 650; }
.corporate-packaging__copy .button { width: max-content; }
.corporate-occasion-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.corporate-occasion-grid article { min-height: 250px; padding: 24px; border-right: 1px solid var(--line); }
.corporate-occasion-grid article:first-child { padding-left: 0; }
.corporate-occasion-grid article:last-child { padding-right: 0; border-right: 0; }
.corporate-occasion-grid h3 { margin: 72px 0 11px; font-size: 19px; font-weight: 630; letter-spacing: -.025em; }
.corporate-occasion-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.corporate-process ol { margin: 0; padding: 0; border-top: 1px solid #cbd0cc; list-style: none; }
.corporate-process li { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid #cbd0cc; }
.corporate-process li > span { color: var(--green); font-size: 10px; font-weight: 750; }
.corporate-process h3 { margin: 0 0 6px; font-size: 18px; font-weight: 630; }
.corporate-process li p { margin: 0; color: var(--muted); font-size: 12px; }
.corporate-request { background: var(--green-dark); color: #fff; }
.corporate-request__grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(58px, 8vw, 120px); align-items: start; }
.corporate-request__copy { position: sticky; top: 142px; }
.corporate-request__copy .eyebrow { color: #b9ccc4; }
.corporate-request__copy h2 { max-width: 520px; margin: 0; font-size: clamp(42px, 4.2vw, 58px); font-weight: 560; letter-spacing: -.05em; line-height: 1.04; }
.corporate-request__copy > p:not(.eyebrow) { max-width: 470px; margin: 24px 0 0; color: #c7d4cf; font-size: 15px; line-height: 1.7; }
.corporate-request__copy > div { display: grid; gap: 10px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.2); color: #e7efec; font-size: 12px; }
.corporate-request__copy > div strong { font-size: 15px; }
.corporate-form { padding: clamp(30px, 4vw, 48px); background: #fff; color: var(--ink); }
.corporate-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.corporate-form label:not(.checkout-consent) { display: grid; gap: 8px; }
.corporate-form label > span { color: var(--muted); font-size: 10px; font-weight: 700; }
.corporate-form input,
.corporate-form select,
.corporate-form textarea { width: 100%; min-width: 0; border: 1px solid #cbd0cc; border-radius: 0; background: #fff; font-size: 13px; outline: 0; }
.corporate-form input,
.corporate-form select { min-height: 50px; padding: 0 14px; }
.corporate-form textarea { min-height: 118px; padding: 13px 14px; resize: vertical; }
.corporate-form input:focus,
.corporate-form select:focus,
.corporate-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-soft); }
.corporate-form__wide { grid-column: 1 / -1; }
.corporate-form .checkout-consent { margin: 22px 0; padding: 0; }
.corporate-form > .button { width: 100%; }
.corporate-form__status { margin: 10px 0 0; color: var(--muted); font-size: 9px; text-align: center; }
.corporate-form__status.is-success { padding: 11px; background: var(--green-soft); color: var(--green); font-weight: 650; }

.info-hero { border-bottom: 1px solid var(--line); }
.info-hero__grid { min-height: 660px; display: grid; grid-template-columns: .86fr 1.14fr; }
.info-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 42px clamp(48px, 6vw, 92px) 58px 0; }
.info-hero__copy .breadcrumbs { margin-bottom: auto; }
.info-hero__copy > .eyebrow { margin-top: 72px; margin-bottom: 16px; }
.info-hero h1 { margin: 0; font-size: clamp(50px, 5vw, 70px); font-weight: 550; letter-spacing: -.058em; line-height: .99; }
.info-hero__copy > p:not(.eyebrow) { max-width: 570px; margin: 28px 0 auto; color: var(--muted); font-size: 17px; line-height: 1.65; }
.info-hero__image { min-height: 600px; overflow: hidden; background: var(--warm); }
.info-hero__image img { height: 100%; object-fit: cover; }
.brand-story__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(52px, 9vw, 140px); }
.brand-story h2 { max-width: 610px; margin: 0; font-size: clamp(40px, 4vw, 56px); font-weight: 560; letter-spacing: -.05em; line-height: 1.06; }
.brand-story__grid > div:last-child { padding-top: 26px; }
.brand-story__grid > div:last-child p { margin: 0; color: #46514d; font-size: 17px; line-height: 1.8; }
.brand-story__grid > div:last-child p + p { margin-top: 22px; }
.brand-principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cfd3cf; }
.brand-principle-grid article { min-height: 270px; padding: 24px; border-right: 1px solid #cfd3cf; }
.brand-principle-grid article:first-child { padding-left: 0; }
.brand-principle-grid article:last-child { padding-right: 0; border-right: 0; }
.brand-principle-grid span { color: var(--green); font-size: 10px; font-weight: 750; }
.brand-principle-grid h3 { margin: 72px 0 12px; font-size: 19px; font-weight: 630; }
.brand-principle-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.brand-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(52px, 8vw, 120px); align-items: center; }
.brand-detail figure { margin: 0; }
.brand-detail figure img { aspect-ratio: 1 / 1.06; object-fit: cover; }
.brand-detail h2 { margin: 0; font-size: clamp(40px, 4vw, 56px); font-weight: 560; letter-spacing: -.05em; line-height: 1.06; }
.brand-detail__grid > div > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.brand-detail ul { display: grid; gap: 10px; margin: 28px 0 32px; padding: 22px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; list-style: none; }
.brand-detail li::before { content: "✓"; margin-right: 9px; color: var(--green); font-weight: 800; }
.brand-detail__grid > div > div { display: flex; flex-wrap: wrap; gap: 10px; }
.info-page-head,
.legal-head { padding: 44px 0 62px; border-bottom: 1px solid var(--line); background: #fff; }
.info-page-head .breadcrumbs,
.legal-head .breadcrumbs { margin-bottom: 44px; }
.info-page-head .eyebrow,
.legal-head .eyebrow { margin-bottom: 14px; }
.info-page-head h1,
.legal-head h1 { margin: 0; font-size: clamp(52px, 6vw, 78px); font-weight: 550; letter-spacing: -.06em; line-height: 1; }
.info-page-head .container > p:last-child { max-width: 700px; margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.legal-head .container > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 11px; }
.delivery-page__cities { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.delivery-page__cities article { min-height: 340px; display: flex; flex-direction: column; padding: 32px; background: var(--warm); }
.delivery-page__cities article > span { color: var(--green); font-size: 10px; font-weight: 750; }
.delivery-page__cities h2 { margin: 72px 0 12px; font-size: 40px; font-weight: 570; letter-spacing: -.045em; }
.delivery-page__cities strong { color: var(--green); font-size: 14px; }
.delivery-page__cities p { margin: auto 0 0; padding-top: 30px; color: var(--muted); font-size: 12px; }
.prototype-note { display: flex; gap: 7px; margin: 24px 0 0; padding: 16px 18px; border: 1px solid #d8d2c7; background: #fbf8f1; color: var(--muted); font-size: 10px; line-height: 1.55; }
.prototype-note strong { color: #725e3f; }
.delivery-steps ol { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid #cfd3cf; list-style: none; }
.delivery-steps li { min-height: 250px; padding: 24px; border-right: 1px solid #cfd3cf; }
.delivery-steps li:first-child { padding-left: 0; }
.delivery-steps li:last-child { padding-right: 0; border-right: 0; }
.delivery-steps li > span { color: var(--green); font-size: 10px; font-weight: 750; }
.delivery-steps li div { margin-top: 72px; }
.delivery-steps h3 { margin: 0 0 9px; font-size: 18px; font-weight: 630; }
.delivery-steps li p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.payment-info__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 120px); }
.payment-info h2 { margin: 0; font-size: 38px; font-weight: 570; letter-spacing: -.045em; }
.payment-info__grid > div > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.payment-info .inline-link { display: inline-block; margin-top: 24px; }
.contact-channel-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-channel-grid > a { min-width: 0; min-height: 250px; display: flex; flex-direction: column; padding: 26px; border-right: 1px solid var(--line); }
.contact-channel-grid > a:first-child { padding-left: 0; }
.contact-channel-grid > a:last-child { padding-right: 0; border-right: 0; }
.contact-channel-grid span { color: var(--green); font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.contact-channel-grid strong { margin-top: 72px; overflow-wrap: anywhere; font-size: 17px; }
.contact-channel-grid small { margin-top: auto; color: var(--muted); font-size: 10px; }
.contact-cities .container > div:last-child { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-cities article { min-height: 270px; display: flex; flex-direction: column; padding: 28px; background: #fff; }
.contact-cities article > span { color: var(--green); font-size: 10px; font-weight: 750; }
.contact-cities h3 { margin: 56px 0 12px; font-size: 30px; font-weight: 580; letter-spacing: -.04em; }
.contact-cities p { margin: 0; color: var(--muted); font-size: 12px; }
.contact-cities a { width: max-content; margin-top: auto; padding-bottom: 4px; border-bottom: 1px solid var(--green); color: var(--green); font-size: 11px; font-weight: 700; }
.contact-help__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 8vw, 120px); }
.contact-help h2 { margin: 0; font-size: clamp(40px, 4vw, 56px); font-weight: 560; letter-spacing: -.05em; }
.contact-help__grid > div:last-child { padding-top: 28px; }
.contact-help__grid > div:last-child p { max-width: 570px; margin: 0 0 26px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 780px); gap: clamp(56px, 9vw, 140px); align-items: start; }
.legal-layout > aside { position: sticky; top: 142px; min-width: 0; max-height: calc(100vh - 172px); overflow-y: auto; }
.legal-layout > aside > strong { display: block; margin-bottom: 15px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.legal-layout > aside nav { display: grid; border-top: 1px solid var(--line); }
.legal-layout > aside a { min-height: 40px; display: flex; align-items: center; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.legal-layout > aside a:hover { color: var(--green); }
.legal-layout > article { min-width: 0; }
.legal-draft { margin-bottom: 46px; padding: 22px; border: 1px solid #d6c9b3; background: #fbf6ed; }
.legal-draft strong { color: #725e3f; font-size: 13px; }
.legal-draft p { margin: 7px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.legal-layout article > section { padding: 32px 0; border-top: 1px solid var(--line); }
.legal-layout article > section:first-of-type { border-top: 0; }
.legal-layout h2 { margin: 0 0 18px; font-size: 25px; font-weight: 610; letter-spacing: -.035em; }
.legal-layout h3 { margin: 24px 0 10px; font-size: 15px; font-weight: 680; }
.legal-layout article p,
.legal-layout article li { color: #4f5955; font-size: 13px; line-height: 1.75; }
.legal-layout article p { margin: 0; }
.legal-layout article p + p { margin-top: 14px; }
.legal-layout article p + ul,
.legal-layout article ul + p { margin-top: 14px; }
.legal-layout article ul { display: grid; gap: 6px; margin: 0; padding-left: 20px; }
.legal-layout article a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal-intro { margin: 0 0 44px !important; padding-bottom: 38px; border-bottom: 1px solid var(--line); font-size: 15px !important; }
.legal-requisites { margin: 0; border-top: 1px solid var(--line); }
.legal-requisites > div { display: grid; grid-template-columns: 210px 1fr; gap: 28px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.legal-requisites dt { color: var(--muted); font-size: 11px; }
.legal-requisites dd { margin: 0; overflow-wrap: anywhere; color: #303a36; font-size: 13px; font-weight: 620; }
.legal-sources { background: var(--warm); padding-inline: 24px !important; }
.requisites-layout { max-width: 920px; }
.requisites-layout > .legal-draft { margin-bottom: 34px; }
.requisites-layout dl { margin: 0; border-top: 1px solid var(--line); }
.requisites-layout dl > div { display: grid; grid-template-columns: 240px 1fr; gap: 28px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.requisites-layout dt { color: var(--muted); font-size: 11px; }
.requisites-layout dd { margin: 0; font-size: 13px; font-weight: 620; }
.requisites-links { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 34px; }

.toast {
  position: fixed;
  z-index: 220;
  right: 24px;
  bottom: 24px;
  min-width: 250px;
  padding: 15px 18px;
  background: var(--green-dark);
  color: #fff;
  font-size: 13px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}
.toast.is-visible { visibility: visible; opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@media (max-width: 1120px) {
  .header__inner { grid-template-columns: 150px 1fr auto; gap: 22px; }
  .header .logo img { width: 146px; }
  .desktop-nav { gap: 20px; }
  .header__actions { gap: 14px; }
  .hero__grid { grid-template-columns: .9fr 1.1fr; }
  .hero__copy { padding-right: 44px; }
  .product-card__buy { align-items: stretch; flex-direction: column; }
  .add-to-cart { width: 100%; }
  .advantage-grid { grid-template-columns: repeat(3,1fr); }
  .advantage-grid li:nth-child(3) { border-right: 0; }
  .advantage-grid li:nth-child(n+4) { border-top: 1px solid #cfd3cf; }
  .footer__grid { gap: 40px; }
  .catalog-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-overview__grid { gap: 54px; }
  .product-summary h1 { font-size: 44px; }
}

@media (max-width: 900px) {
  .header__inner { height: 72px; grid-template-columns: auto 1fr auto; }
  .menu-button {
    display: block;
    padding: 8px 0;
    border: 0;
    background: none;
    font-size: 12px;
    font-weight: 700;
  }
  .desktop-nav, .city-control, .search-button { display: none; }
  .logo { justify-self: center; }
  .header__actions { justify-self: end; }
  .mobile-menu { display: block; }
  .hero__grid { min-height: 0; grid-template-columns: 1fr; }
  .hero__copy { padding: 70px 0 56px; }
  .hero__media { min-height: 560px; }
  .category-grid, .product-grid { grid-template-columns: repeat(2,1fr); }
  .corporate__card { grid-template-columns: 1fr; }
  .corporate__image { height: 600px; }
  .corporate__copy { min-height: 560px; }
  .about__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .delivery__grid { grid-template-columns: 1fr; gap: 40px; }
  .delivery__note { grid-column: 1; }
  .footer__grid { grid-template-columns: 1.4fr repeat(2,1fr); }
  .footer__grid > div:last-child { grid-column: 2; }
  .page-hero { padding: 48px 0 62px; }
  .page-hero .breadcrumbs { margin-bottom: 38px; }
  .page-hero--tea { padding: 32px 0 46px; }
  .page-hero--tea .breadcrumbs { margin-bottom: 28px; }
  .tea-hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .tea-hero__copy { padding-block: 8px 0; }
  .tea-hero__media { aspect-ratio: 16 / 10; }
  .catalog-layout { grid-template-columns: 1fr; gap: 36px; }
  .catalog-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .catalog-sidebar nav { grid-template-columns: repeat(5, max-content); overflow-x: auto; border-bottom: 1px solid var(--line); }
  .catalog-sidebar nav a { min-height: 42px; padding-right: 24px; border-bottom: 0; white-space: nowrap; }
  .catalog-sidebar nav a::after { margin-left: 18px; }
  .catalog-subcategories { display: flex; overflow-x: auto; gap: 7px; padding-bottom: 2px; }
  .catalog-subcategories button { flex: 0 0 auto; padding-inline: 12px; border-color: var(--line); white-space: nowrap; }
  .catalog-subcategories p { max-width: 420px; }
  .product-overview { padding-bottom: 78px; }
  .product-overview__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "breadcrumbs"
      "gallery"
      "summary";
    grid-template-rows: auto;
    gap: 26px;
  }
  .product-gallery,
  body[data-product-category="tea"] .product-gallery { width: 100%; margin-top: 0; justify-self: stretch; }
  .product-gallery__main { aspect-ratio: 1 / .86; }
  .product-inline-details { margin-top: 26px; }
  .product-summary { position: static; padding-top: 0; }
  .product-summary h1 { max-width: 680px; font-size: 52px; }
  .product-details__grid { grid-template-columns: 1fr; gap: 48px; }
  .cart-page__layout { grid-template-columns: 1fr; }
  .cart-page-summary { position: static; width: min(100%, 560px); margin-left: auto; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; width: min(100%, 620px); margin-left: auto; }
  .corporate-page-hero__grid { min-height: 0; grid-template-columns: 1fr; }
  .corporate-page-hero__copy { min-height: 620px; padding: 38px 0 50px; }
  .corporate-page-hero__image { min-height: 620px; }
  .corporate-packaging__grid { grid-template-columns: 1fr; }
  .corporate-packaging__image { min-height: 560px; }
  .corporate-request__grid { grid-template-columns: 1fr; }
  .corporate-request__copy { position: static; }
  .info-hero__grid { min-height: 0; grid-template-columns: 1fr; }
  .info-hero__copy { min-height: 570px; }
  .info-hero__image { min-height: 570px; }
  .brand-story__grid,
  .brand-detail__grid,
  .contact-help__grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 42px; }
  .legal-layout > aside { position: static; max-height: none; overflow-y: visible; }
  .legal-layout > aside nav { display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); }
  .legal-layout > aside a { padding-right: 24px; border-bottom: 0; white-space: nowrap; }
}

@media (max-width: 620px) {
  :root { --page: 16px; }
  .announcement__inner { min-height: 34px; justify-content: center; text-align: center; }
  .announcement a { display: none; }
  .header__inner { height: 66px; gap: 12px; }
  .header .logo img { width: 118px; }
  .header .mobile-menu .logo--compact img { width: 146px; }
  .cart-button { font-size: 0; }
  .cart-button::before { content: "Корзина"; font-size: 12px; }
  .cart-count { font-size: 10px; }
  .search-drawer { position: fixed; top: 100px; }
  .search-row { grid-template-columns: 1fr 1fr; }
  .search-row input { grid-column: 1/-1; }
  .search-close { min-height: 50px; border: 1px solid var(--line); }
  .hero__copy { padding: 54px 0 44px; }
  .eyebrow { margin-bottom: 14px; }
  .hero h1 { font-size: clamp(40px, 12vw, 54px); line-height: 1.02; }
  .hero__lead { margin-top: 24px; font-size: 16px; line-height: 1.55; }
  .hero__actions { display: grid; margin-top: 30px; }
  .button { width: 100%; min-height: 52px; }
  .hero__proof { display: grid; gap: 8px; margin-top: 28px; padding-top: 18px; }
  .hero__proof li + li { padding-left: 0; border-left: 0; }
  .hero__media { min-height: 430px; }
  .hero__media img { object-position: 61% center; }
  .hero__caption { right: 12px; bottom: 12px; left: 12px; display: grid; padding: 14px; }
  .hero__caption strong { font-size: 13px; text-align: left; }
  .section { padding: 72px 0; }
  .section-head { align-items: start; margin-bottom: 30px; }
  .section-head h2, .about h2, .corporate h2, .delivery h2 { font-size: 36px; }
  .section-head > .inline-link { display: none; }
  .category-grid { gap: 8px; }
  .category-card__image { aspect-ratio: 1/1.08; }
  .category-card__meta { display: block; padding: 12px 0 14px; }
  .category-card h2,
  .category-card h3 { font-size: 18px; }
  .category-card span { display: block; margin-top: 3px; font-size: 10px; }
  .section-head--products { display: block; }
  .filters { margin-top: 22px; overflow-x: auto; }
  .filters button { flex: 0 0 auto; }
  .product-grid { gap: 8px; }
  .product-card__image { aspect-ratio: 1/1.15; }
  .product-card__body { padding: 13px 11px 12px; }
  .product-type { font-size: 8px; }
  .product-card h3 { min-height: 45px; font-size: 16px; line-height: 1.25; }
  .product-size { min-height: 48px; margin: 6px 0 14px; font-size: 10px; }
  .product-stock { min-height: 15px; margin: -7px 0 10px; font-size: 9px; }
  .product-card__buy { gap: 9px; padding-top: 12px; }
  .product-card__buy strong { font-size: 15px; }
  .add-to-cart { min-height: 40px; padding: 0 8px; font-size: 10px; }
  .badge { top: 8px; left: 8px; padding: 5px 7px; font-size: 8px; }
  .corporate { padding-top: 0; }
  .corporate .container { width: 100%; }
  .corporate__image { min-height: 0; height: 390px; }
  .corporate__copy { min-height: 0; padding: 52px 20px 58px; }
  .corporate__copy > p:not(.eyebrow) { margin-top: 22px; font-size: 15px; }
  .corporate__copy .button { width: 100%; }
  .about__grid { grid-template-columns: 1fr; }
  .about__copy > p:not(.eyebrow) { font-size: 15px; }
  .about__image { order: -1; }
  .about__image img { height: 420px; object-fit: cover; }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-grid li,
  .advantage-grid li + li { min-height: 0; padding: 20px 0 22px; border-right: 0; border-top: 1px solid #cfd3cf; }
  .advantage-grid li:first-child { border-top: 0; }
  .advantage-grid h3 { margin: 18px 0 8px; }
  .delivery__cities { grid-template-columns: 1fr; }
  .delivery__cities article { padding: 24px; }
  .delivery__cities h3 { margin-top: 26px; }
  .delivery__note { display: grid; line-height: 1.5; }
  .reviews .section-head { display: block; }
  .reviews__score { margin-top: 20px; }
  .review-grid { display: block; }
  .review-grid blockquote,
  .review-grid blockquote:first-child,
  .review-grid blockquote:last-child { min-height: 220px; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .review-grid blockquote:last-child { border-bottom: 0; }
  .footer { padding-top: 58px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .footer__brand { grid-column: 1/-1; }
  .footer__grid > div:last-child { grid-column: auto; }
  .footer__bottom { display: grid; margin-top: 46px; }
  .footer__bottom div { display: grid; gap: 8px; }
  .cart-drawer__head { padding: 22px 20px 18px; }
  .cart-drawer__items { padding: 0 20px; }
  .cart-item { grid-template-columns: 92px 1fr; gap: 14px; }
  .cart-item > img { width: 92px; height: 112px; }
  .cart-drawer__summary { padding: 20px; }
  .toast { right: 16px; bottom: 16px; left: 16px; min-width: 0; }
  .page-hero { padding: 30px 0 48px; }
  .page-hero .breadcrumbs { margin-bottom: 30px; }
  .page-hero h1 { font-size: 46px; }
  .page-hero__lead { margin-top: 20px; font-size: 15px; line-height: 1.6; }
  .page-hero__meta { display: grid; gap: 8px; margin-top: 28px; }
  .page-hero__meta span + span { margin-left: 0; padding-left: 0; border-left: 0; }
  .page-hero--tea { padding: 24px 0 36px; }
  .page-hero--tea .breadcrumbs { margin-bottom: 24px; }
  .page-hero--tea h1 { font-size: 44px; }
  .page-hero--tea .page-hero__lead { font-size: 15px; }
  .tea-hero__link { margin-top: 24px; }
  .tea-hero__media { aspect-ratio: 4 / 3; }
  .catalog-category-showcase .category-card__image { aspect-ratio: 1 / 1.05; }
  .tea-types-section { padding-block: 40px; }
  .tea-types-heading { margin-bottom: 20px; }
  .tea-types-grid { grid-template-columns: 1fr; }
  .tea-types-grid button { min-height: 48px; font-size: 17px; }
  .catalog-layout { gap: 28px; }
  .catalog-sidebar { display: block; }
  .catalog-sidebar > div + div { margin-top: 24px; }
  .catalog-sidebar nav { margin-right: calc(var(--page) * -1); }
  .catalog-toolbar { display: grid; gap: 16px; }
  .catalog-toolbar label { justify-content: space-between; }
  .catalog-toolbar select { width: min(220px, 68vw); }
  .catalog-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-demo-note { display: grid; }
  .catalog-demo-note button { width: max-content; }
  .product-breadcrumbs { padding-top: 22px; }
  .product-breadcrumbs .breadcrumbs { display: flex; flex-wrap: nowrap; overflow-x: auto; white-space: nowrap; }
  .product-overview { padding: 22px 0 68px; }
  .product-gallery__main { aspect-ratio: 1 / 1.05; }
  .product-gallery__thumbs { overflow-x: auto; }
  .product-gallery__thumbs button { flex: 0 0 68px; width: 68px; height: 68px; }
  .product-inline-details { margin-top: 22px; padding-top: 28px; }
  .product-summary h1 { font-size: 40px; }
  .product-summary__lead { margin-top: 18px; font-size: 15px; }
  .product-availability { grid-template-columns: 8px 1fr; }
  .product-availability small { grid-column: 2; text-align: left; }
  .product-price { margin-top: 22px; font-size: 26px; }
  .product-option__head span { display: none; }
  .product-variants { grid-template-columns: 1fr; }
  .product-details__description > p { font-size: 16px; }
  .product-ingredient-visuals__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 8px; }
  .product-ingredient img { width: 50px; height: 50px; }
  .product-ingredient figcaption { font-size: 10px; }
  .product-brewing-guide__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-brewing-guide__item { min-height: 130px; padding-inline: 10px; }
  .product-facts > div { grid-template-columns: 1fr; gap: 7px; }
  .related-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cart-page-head { padding: 28px 0 40px; }
  .cart-page-head .breadcrumbs { margin-bottom: 26px; }
  .cart-page-head h1 { font-size: 46px; }
  .cart-page-head .container > p:last-child { font-size: 13px; }
  .cart-page__layout { gap: 38px; }
  .cart-page__items-head { align-items: center; }
  .cart-page-item { grid-template-columns: 104px minmax(0, 1fr); gap: 14px; padding: 18px 0; }
  .cart-page-item__heading { display: grid; gap: 10px; }
  .cart-page-item__heading h2 { font-size: 17px; }
  .cart-page-item__heading > strong { font-size: 15px; }
  .cart-page-item__controls { grid-column: 1 / -1; grid-template-columns: 1fr auto; gap: 12px; padding-top: 18px; }
  .cart-page-item__controls label { grid-column: 1 / -1; }
  .cart-page-item__remove { align-self: end; }
  .cart-page-empty { min-height: 380px; padding: 32px 18px; }
  .cart-page-empty h2 { font-size: 29px; }
  .cart-page-summary { width: 100%; padding: 26px 20px; }
  .delivery-progress > div:first-child { display: grid; gap: 6px; }
  .checkout-head { padding: 28px 0 42px; }
  .checkout-head .breadcrumbs { margin-bottom: 26px; }
  .checkout-head h1 { font-size: 44px; }
  .checkout-head .container > p:last-child { font-size: 13px; }
  .checkout-layout { gap: 34px; }
  .checkout-card { padding: 25px 18px; }
  .checkout-card__head { grid-template-columns: 30px 1fr; gap: 12px; margin-bottom: 24px; }
  .checkout-card__head h2 { font-size: 22px; }
  .checkout-fields--two { grid-template-columns: 1fr; }
  .checkout-field--wide { grid-column: auto; }
  .checkout-fields input,
  .checkout-fields select { min-height: 52px; }
  .checkout-summary { width: 100%; padding: 26px 18px; }
  .checkout-order-item { grid-template-columns: 58px minmax(0, 1fr); }
  .checkout-order-item > strong { grid-column: 2; }
  .checkout-empty { min-height: 440px; }
  .checkout-empty h2 { font-size: 32px; }
  .corporate-page-hero__copy { min-height: 0; padding: 28px 0 44px; }
  .corporate-page-hero__copy .breadcrumbs { margin-bottom: 42px; padding-top: 0; }
  .corporate-page-hero__copy > .eyebrow { margin-top: 0; }
  .corporate-page-hero h1 { font-size: 42px; }
  .corporate-page-hero__copy > p:not(.eyebrow) { font-size: 15px; }
  .corporate-page-hero__actions { display: grid; }
  .corporate-page-hero__copy > ul { display: grid; gap: 7px; margin-top: 36px; }
  .corporate-page-hero__copy > ul li + li { margin-left: 0; padding-left: 0; border-left: 0; }
  .corporate-page-hero__image { min-height: 430px; }
  .corporate-page-hero__image figcaption { right: 12px; bottom: 12px; left: 12px; display: grid; }
  .corporate-solution-grid { grid-template-columns: 1fr; }
  .corporate-solution-grid article,
  .corporate-solution-grid article:first-child,
  .corporate-solution-grid article:last-child { min-height: 280px; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .corporate-solution-grid article:last-child { border-bottom: 0; }
  .corporate-solution-grid h3 { margin-top: 48px; }
  .corporate-packaging .container { width: 100%; }
  .corporate-packaging__image { min-height: 420px; }
  .corporate-packaging__copy { padding: 48px 20px 54px; }
  .corporate-packaging__copy h2 { font-size: 38px; }
  .corporate-packaging__copy dl > div { grid-template-columns: 110px 1fr; }
  .corporate-packaging__copy .button { width: 100%; }
  .corporate-occasion-grid { grid-template-columns: 1fr 1fr; }
  .corporate-occasion-grid article,
  .corporate-occasion-grid article:first-child,
  .corporate-occasion-grid article:last-child { min-height: 220px; padding: 20px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .corporate-occasion-grid article:nth-child(2n) { border-right: 0; }
  .corporate-occasion-grid h3 { margin-top: 48px; font-size: 17px; }
  .corporate-process li { grid-template-columns: 52px 1fr; gap: 12px; }
  .corporate-request__copy h2 { font-size: 40px; }
  .corporate-request__copy > div { margin-top: 34px; }
  .corporate-form { padding: 28px 18px; }
  .corporate-form__grid { grid-template-columns: 1fr; }
  .corporate-form__wide { grid-column: auto; }
  .info-hero__copy { min-height: 0; padding: 28px 0 44px; }
  .info-hero__copy .breadcrumbs { margin-bottom: 42px; }
  .info-hero__copy > .eyebrow { margin-top: 0; }
  .info-hero h1 { font-size: 43px; }
  .info-hero__copy > p:not(.eyebrow) { margin-bottom: 0; font-size: 15px; }
  .info-hero__image { min-height: 430px; }
  .brand-story__grid > div:last-child { padding-top: 0; }
  .brand-story__grid > div:last-child p { font-size: 15px; }
  .brand-principle-grid { grid-template-columns: 1fr 1fr; }
  .brand-principle-grid article,
  .brand-principle-grid article:first-child,
  .brand-principle-grid article:last-child { min-height: 230px; padding: 20px 14px; border-right: 1px solid #cfd3cf; border-bottom: 1px solid #cfd3cf; }
  .brand-principle-grid article:nth-child(2n) { border-right: 0; }
  .brand-principle-grid h3 { margin-top: 48px; font-size: 17px; }
  .brand-detail__grid > div > div { display: grid; }
  .info-page-head,
  .legal-head { padding: 28px 0 46px; }
  .info-page-head .breadcrumbs,
  .legal-head .breadcrumbs { margin-bottom: 30px; }
  .info-page-head h1,
  .legal-head h1 { overflow-wrap: anywhere; font-size: 44px; hyphens: auto; }
  .info-page-head .container > p:last-child { font-size: 15px; }
  .delivery-page__cities { grid-template-columns: 1fr; }
  .delivery-page__cities article { min-height: 280px; padding: 24px; }
  .delivery-page__cities h2 { margin-top: 50px; }
  .prototype-note { display: block; }
  .prototype-note strong { display: block; margin-bottom: 4px; }
  .delivery-steps ol { grid-template-columns: 1fr; }
  .delivery-steps li,
  .delivery-steps li:first-child,
  .delivery-steps li:last-child { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid #cfd3cf; }
  .delivery-steps li div { margin-top: 28px; }
  .payment-info__grid { grid-template-columns: 1fr; }
  .contact-channel-grid { grid-template-columns: 1fr 1fr; }
  .contact-channel-grid > a,
  .contact-channel-grid > a:first-child,
  .contact-channel-grid > a:last-child { min-height: 210px; padding: 20px 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .contact-channel-grid > a:nth-child(2n) { border-right: 0; }
  .contact-channel-grid strong { margin-top: 48px; font-size: 14px; }
  .contact-cities .container > div:last-child { grid-template-columns: 1fr; }
  .contact-help__grid > div:last-child { padding-top: 0; }
  .legal-layout > aside nav { display: flex; }
  .legal-layout h2 { font-size: 22px; }
  .legal-layout article p,
  .legal-layout article li { font-size: 12px; }
  .legal-requisites > div { grid-template-columns: 1fr; gap: 6px; }
  .legal-sources { padding-inline: 16px !important; }
  .requisites-layout dl > div { grid-template-columns: 1fr; gap: 6px; }
  .requisites-links { display: grid; gap: 16px; }
  .requisites-links .inline-link { width: max-content; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 39px; }
  .category-card h2,
  .category-card h3 { font-size: 17px; }
  .product-card h3 { font-size: 15px; }
  .product-card__buy strong { font-size: 14px; }
}
