:root {
  --canvas: #f1eee8;
  --paper: #fffdf8;
  --paper-soft: #f8f5ed;
  --paper-green: #f0f5e8;
  --ink: #111b15;
  --muted: #5b675e;
  --forest: #123d27;
  --forest-2: #245c39;
  --leaf: #66843d;
  --red: #df421f;
  --red-dark: #b92e16;
  --line: #dedbd1;
  --line-strong: #c9c5b8;
  --white: #fff;
  --shadow: 0 12px 38px rgba(27, 38, 30, .09);
  --radius: 14px;
  --frame: 1360px;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; min-width: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font: 400 1rem/1.55 "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.05;
  overflow-wrap: break-word;
  text-wrap: balance;
}
h1 { font-size: clamp(2.75rem, 5.4vw, 5.4rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.75rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.12rem, 1.8vw, 1.45rem); letter-spacing: -.02em; }
svg { display: block; }
.ui-icon,
.button__icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: currentColor;
}
.button__icon { width: 19px; height: 19px; }

.site-frame {
  width: min(calc(100% - 32px), var(--frame));
  margin: 16px auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(35, 50, 40, .08);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(23, 36, 27, .08);
}
.container { width: min(calc(100% - 48px), 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: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--forest);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header { position: relative; z-index: 30; background: rgba(255, 253, 248, .98); border-bottom: 1px solid var(--line); }
.header-main {
  display: grid;
  grid-template-columns: 220px auto minmax(330px, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 3vw, 50px);
  min-height: 88px;
}
.brand { display: block; width: 220px; }
.brand img { width: 100%; height: auto; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: .92rem; font-weight: 700; white-space: nowrap; }
.main-nav a { position: relative; padding: 12px 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform .18s ease;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--red); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.header-meta { display: flex; justify-content: flex-end; align-items: center; gap: clamp(20px, 3vw, 42px); }
.header-meta__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1d2821;
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.3;
}
.header-meta__item svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 8px 10px;
  font-size: .8rem;
  font-weight: 800;
}
.cart-link svg { width: 29px; height: 29px; fill: none; stroke: var(--forest); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-link.is-active { color: var(--red); }
.cart-link.is-active svg { stroke: currentColor; }
.cart-link__count {
  position: absolute;
  top: 1px;
  right: -2px;
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  padding-inline: 5px;
  color: #fff;
  background: var(--red);
  border: 2px solid var(--paper);
  border-radius: 999px;
  font-size: .68rem;
  line-height: 1;
}
.mobile-menu { display: none; }

.messages { position: relative; z-index: 40; padding-top: 12px; }
.message { padding: 12px 16px; border: 1px solid var(--line); border-radius: 9px; background: #fff; box-shadow: var(--shadow); }
.message--success { border-color: rgba(33, 111, 63, .35); }
.message--error { border-color: rgba(223, 66, 31, .4); }

.eyebrow {
  margin-bottom: 10px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary { color: #fff; background: var(--red); box-shadow: 0 9px 18px rgba(203, 53, 24, .17); }
.button--primary:hover { background: var(--red-dark); }
.button--text { color: var(--forest); background: transparent; border-color: var(--line-strong); }
.button--text:hover { border-color: var(--forest); }
.button--full { width: 100%; }
.text-link, .link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 3px;
  color: var(--red);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  cursor: pointer;
  font-weight: 800;
}

/* Home */
.home-hero { position: relative; border-bottom: 1px solid var(--line); }
.home-hero__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  min-height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 30%, rgba(125, 156, 78, .08), transparent 28rem),
    linear-gradient(90deg, #fffdf8 0 47%, #f8f5ef 47% 100%);
}
.home-hero__birch {
  position: absolute;
  z-index: 4;
  top: -26px;
  left: -42px;
  width: clamp(180px, 17vw, 230px);
  height: auto;
  max-height: 490px;
  object-fit: contain;
  object-position: top left;
  pointer-events: none;
}
.home-hero__copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 58px clamp(24px, 3vw, 48px) 52px clamp(122px, 11vw, 164px);
}
.home-hero__copy h1 {
  max-width: 610px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 4.25vw, 4.35rem);
  line-height: .93;
  font-style: italic;
  text-wrap: wrap;
}
.home-hero__copy h1 span { display: block; white-space: nowrap; }
.home-hero__lead { max-width: 540px; margin-bottom: 24px; color: #29372f; font-size: clamp(1rem, 1.25vw, 1.14rem); line-height: 1.5; }
.home-hero__photo { position: relative; min-height: 500px; overflow: hidden; }
.home-hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--paper) 0, transparent 18%, transparent 82%, rgba(255, 253, 248, .25) 100%);
  pointer-events: none;
}
.home-hero__photo > img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.home-hero__note {
  position: absolute;
  z-index: 2;
  top: 52px;
  right: clamp(20px, 4vw, 58px);
  width: 160px;
  margin: 0;
  color: var(--forest);
  font: italic 500 1.25rem/1.25 Georgia, "Times New Roman", serif;
  text-align: center;
  transform: rotate(-5deg);
}
.home-hero__note span { font-size: 1.7rem; }
.home-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 20px clamp(28px, 6vw, 100px);
  background: var(--paper);
}
.home-benefits__item { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: .86rem; font-weight: 700; line-height: 1.35; }
.home-benefits__item svg { width: 34px; height: 34px; flex: 0 0 34px; fill: none; stroke: var(--forest); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.home-categories { padding: 18px 28px 22px; }
.category-showcase { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.category-tile {
  display: grid;
  overflow: hidden;
  color: var(--ink);
  background: #faf8f2;
  border: 1px solid var(--line);
  border-radius: 9px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.category-tile:hover { border-color: #acb7a3; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(30, 52, 36, .08); }
.category-tile__media {
  display: flex;
  height: auto;
  aspect-ratio: 2 / 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f4f1e9;
}
.category-tile__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.category-tile__footer { display: flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 13px; font-size: .84rem; line-height: 1.25; }
.category-tile__footer strong { font-weight: 750; overflow-wrap: anywhere; }
.category-tile__footer .ui-icon { color: var(--forest); }

.home-products { padding: 0 28px 24px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading--compact { margin: 8px 0 18px; }
.section-heading--compact h2 { font-size: clamp(1.75rem, 3vw, 2.55rem); }
.section-note { max-width: 310px; margin: 0; color: var(--muted); }
.product-showcase { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(250px, 1.15fr); gap: 14px; align-items: stretch; }
.product-card { display: grid; grid-template-rows: auto 1fr; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 9px; }
.product-card__image { position: relative; display: block; aspect-ratio: 1.16 / 1; overflow: hidden; background: #f2eee6; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-card__image img { transform: scale(1.025); }
.product-card__badge { position: absolute; top: 10px; left: 10px; padding: 6px 9px; color: #fff; background: var(--leaf); border-radius: 999px; font-size: .68rem; font-weight: 850; }
.product-card__body { display: grid; grid-template-columns: 1fr auto; align-content: start; gap: 5px 10px; padding: 12px; }
.product-card h3 { grid-column: 1 / -1; margin: 0; font-family: inherit; font-size: .93rem; font-weight: 750; line-height: 1.3; }
.product-card h3 a { overflow-wrap: anywhere; }
.product-card__body > p { grid-column: 1 / -1; display: -webkit-box; min-height: 2.6em; margin: 0 0 4px; overflow: hidden; color: var(--muted); font-size: .75rem; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.product-card__price { align-self: center; color: var(--ink); font-size: 1.05rem; white-space: nowrap; }
.product-card__purchase { align-self: center; min-width: 112px; }
.product-card__purchase.has-items { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.product-card__purchase form { width: 100%; }
.button--cart { min-height: 36px; padding: 8px 14px; color: #fff; background: var(--red); border-radius: 999px; font-size: .75rem; }
.button--cart:hover { background: var(--red-dark); }
.button--cart-checkout { min-height: 36px; padding: 8px 12px; color: #fff; background: var(--forest); border-radius: 999px; font-size: .72rem; line-height: 1.15; text-align: center; }
.button--cart-checkout:hover { color: #fff; background: var(--forest-2); }
.product-card__purchase .button--cart-icon { width: 36px; min-width: 36px; height: 36px; min-height: 36px; flex: 0 0 36px; padding: 0; }
.product-card__purchase .button--cart-icon .button__icon { width: 20px; height: 20px; }
.product-detail__purchase .button--cart-checkout { width: fit-content; margin-top: 10px; }
.image-placeholder { display: grid; width: 100%; height: 100%; place-items: center; color: var(--muted); }

.home-order-card { display: grid; grid-template-rows: auto 1fr; gap: 12px; }
.home-order-card__message, .home-order-card__contacts { position: relative; overflow: hidden; padding: 18px; border: 1px solid var(--line); border-radius: 9px; }
.home-order-card__message { min-height: 135px; background: linear-gradient(135deg, #f3f7e9, #eef3df); }
.home-order-card__message::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -45px;
  width: 140px;
  height: 140px;
  opacity: .35;
  background: url("/static/img/birch-branch.23db2ff43bbc.webp") center / contain no-repeat;
  transform: rotate(24deg);
}
.home-order-card__message p { position: relative; z-index: 1; margin: 0 0 12px; color: var(--forest); font: italic 600 1.65rem/1.08 Georgia, "Times New Roman", serif; }
.home-order-card__message a { position: relative; z-index: 1; display: inline-flex; gap: 8px; align-items: center; padding-bottom: 2px; border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 800; }
.home-order-card__contacts { display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 8px 14px; background: #fbfaf6; font-size: .76rem; }
.home-order-card__contacts p { margin: 0 0 4px; color: var(--muted); line-height: 1.35; }
.home-order-card__contacts strong { color: var(--ink); }
.home-order-card__contacts > a { font-weight: 750; white-space: nowrap; }
.home-order-card__phone,
.home-order-card__contacts .messenger-icons { grid-column: 1 / -1; }
.ladybug-art {
  position: absolute;
  z-index: 2;
  display: block;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 8px 10px rgba(20, 35, 24, .14));
}
.ladybug-art--daisy {
  top: 8px;
  right: 10px;
  width: 66px;
  transform: rotate(4deg);
}
.home-seo {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(30px, 7vw, 100px);
  align-items: center;
  padding: clamp(42px, 6vw, 74px) clamp(28px, 6vw, 92px);
  color: rgba(255, 255, 255, .82);
  background: var(--forest);
}
.home-seo h2 { max-width: 620px; margin: 0; color: #fff; font-size: clamp(2rem, 3.6vw, 3.7rem); }
.home-seo .eyebrow { color: #b9d17f; }
.home-seo > p { max-width: 680px; margin: 0; font-size: 1.03rem; }

/* Shared content pages */
.section { padding: clamp(54px, 7vw, 92px) 0; }
.section--products, .section--tint { background: #faf8f2; border-block: 1px solid var(--line); }
.page-hero { position: relative; overflow: hidden; padding: clamp(58px, 7vw, 95px) 0; background: linear-gradient(120deg, #fffdf8, #f2f6e9); border-bottom: 1px solid var(--line); }
.page-hero::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -40px;
  width: 280px;
  height: 420px;
  opacity: .14;
  background: url("/static/img/birch-branch.23db2ff43bbc.webp") top right / contain no-repeat;
  transform: rotate(15deg);
  pointer-events: none;
}
.page-hero--compact { padding: clamp(42px, 5vw, 68px) 0; }
.page-hero h1 { max-width: 880px; margin-bottom: 18px; font-size: clamp(2.65rem, 5vw, 5rem); }
.page-hero p:not(.eyebrow):not(.breadcrumbs) { max-width: 720px; margin-bottom: 0; color: var(--muted); font-size: 1.05rem; }
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(260px, .65fr); align-items: center; gap: clamp(36px, 7vw, 90px); }
.breadcrumbs { margin-bottom: 22px; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.story-visual { position: relative; min-height: 330px; overflow: hidden; background: rgba(255, 255, 255, .55); border: 1px solid var(--line); border-radius: 52% 52% 12px 12px; }
.story-visual__birch { position: absolute; inset: -70px auto auto 3%; width: 72%; height: auto; max-height: 470px; object-fit: contain; transform: rotate(13deg); }
.story-visual .ladybug-art--flying { right: 10%; bottom: 10%; width: min(46%, 178px); transform: rotate(-8deg); }
.story-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(38px, 7vw, 90px); }
.prose { color: var(--muted); font: 400 clamp(1.03rem, 1.6vw, 1.22rem)/1.75 Georgia, "Times New Roman", serif; }
.prose p:last-child { margin-bottom: 0; }

.filter-nav { display: flex; gap: 9px; margin-bottom: 30px; overflow-x: auto; padding: 2px 0 8px; scrollbar-width: thin; }
.filter-nav a { flex: 0 0 auto; padding: 9px 14px; color: var(--forest); background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: .82rem; font-weight: 800; }
.filter-nav a:hover, .filter-nav a[aria-current="page"] { color: #fff; background: var(--forest); border-color: var(--forest); }
.catalog-section [data-catalog-grid] { transition: opacity .16s ease; }
.catalog-section.is-loading [data-catalog-grid] { opacity: .38; pointer-events: none; }
.catalog-section .product-grid, .product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px; margin-top: 36px; font-size: .85rem; }
.pagination a { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; font-weight: 800; }

.product-detail { padding-top: 44px; }
.product-detail__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); align-items: start; gap: clamp(38px, 7vw, 85px); }
.product-detail__image { overflow: hidden; aspect-ratio: 1; background: #f0ece4; border: 1px solid var(--line); border-radius: 12px; }
.product-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery { display: grid; gap: 11px; }
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.product-gallery__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  background: #f3efe7;
  border: 2px solid transparent;
  border-radius: 9px;
  cursor: pointer;
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumb:hover { border-color: #9cac93; }
.product-gallery__thumb.is-active { border-color: var(--red); }
.product-detail__content { padding-top: 18px; }
.product-detail__content h1 { margin-bottom: 18px; font-size: clamp(2.65rem, 4.6vw, 4.9rem); }
.product-detail__lead { color: var(--muted); font-size: 1.08rem; }
.product-detail__price { margin: 26px 0; color: var(--red); font: 700 clamp(2rem, 3.5vw, 3rem)/1 Georgia, "Times New Roman", serif; }
.product-detail__meta { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 17px 0; border-top: 1px solid var(--line); }
.product-detail__meta span { color: var(--muted); font-size: .74rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.product-detail__meta p { margin: 0; overflow-wrap: anywhere; }
.add-form { display: grid; gap: 9px; margin-top: 26px; }
.add-form label { width: 100%; color: var(--muted); font-size: .8rem; font-weight: 800; }
.add-form__controls { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.quantity-picker, .quantity-stepper {
  display: inline-grid;
  grid-template-columns: 42px minmax(42px, auto) 42px;
  align-items: center;
  min-height: 44px;
  overflow: hidden;
  color: var(--forest);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.quantity-picker button, .quantity-stepper__button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--forest);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: color .16s ease, background .16s ease;
}
.quantity-picker button:hover, .quantity-stepper__button:hover { color: #fff; background: var(--forest); }
.quantity-picker button:disabled, .quantity-stepper__button:disabled { cursor: wait; opacity: .45; }
.quantity-picker svg, .quantity-stepper__button svg { width: 20px; height: 20px; }
.quantity-picker input, .quantity-stepper output {
  width: 48px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
  font-weight: 850;
  text-align: center;
}
.quantity-picker input { min-height: 42px; appearance: textfield; }
.quantity-picker input::-webkit-inner-spin-button, .quantity-picker input::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { margin: 0; appearance: none; }
.quantity-stepper--card { grid-template-columns: 30px 32px 30px; width: 94px; min-height: 36px; border-color: rgba(18, 61, 39, .28); }
.quantity-stepper--card .quantity-stepper__button { width: 30px; height: 34px; }
.quantity-stepper--card .quantity-stepper__button:hover { background: var(--red); }
.quantity-stepper--card output { width: 32px; font-size: .86rem; }
.quantity-stepper--detail { width: fit-content; grid-template-columns: auto 42px 50px 42px; margin-top: 26px; }
.quantity-stepper__label { padding-left: 17px; font-size: .82rem; font-weight: 800; }
[data-cart-control].is-busy { opacity: .68; }
.availability { margin-top: 18px; color: var(--muted); font-size: .86rem; }
.availability span { display: inline-block; width: 8px; height: 8px; margin-right: 7px; background: #4e8d4d; border-radius: 50%; }

.cart-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 350px); align-items: start; gap: 34px; }
.cart-items { border-top: 1px solid var(--line); }
.cart-item { display: grid; grid-template-columns: 112px minmax(0, 1fr) 140px 105px; align-items: center; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item__image { overflow: hidden; aspect-ratio: 1; background: #f0ece4; border-radius: 9px; }
.cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info h2 { margin: 3px 0 8px; font-size: 1.32rem; }
.cart-item__quantity { display: grid; justify-items: start; gap: 7px; }
.cart-item__quantity > span { color: var(--muted); font-size: .72rem; }
.cart-item__quantity .quantity-stepper { grid-template-columns: 36px 42px 36px; min-height: 38px; }
.cart-item__quantity .quantity-stepper__button { width: 36px; height: 36px; }
.quantity-form { display: grid; grid-template-columns: 1fr auto; gap: 6px; }
.quantity-form label { grid-column: 1 / -1; color: var(--muted); font-size: .72rem; }
.quantity-form input { width: 65px; min-height: 38px; padding: 6px; border: 1px solid var(--line); border-radius: 7px; }
.quantity-form button { border: 0; background: none; cursor: pointer; font-size: .74rem; text-decoration: underline; }
.cart-item__total { display: grid; justify-items: end; gap: 4px; text-align: right; }
.cart-item__total span { color: var(--muted); font-size: .72rem; }
.cart-item__total .link-button { margin-top: 7px; color: var(--muted); font-size: .72rem; }
.cart-item__total .link-button svg { width: 16px; height: 16px; }
.order-summary { position: sticky; top: 18px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 11px; box-shadow: var(--shadow); }
.order-summary > div { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.order-summary > p:not(.eyebrow) { color: var(--muted); font-size: .84rem; }
.order-summary .button { margin-top: 9px; }
.checkout-form { padding: clamp(22px, 4vw, 40px); background: #fff; border: 1px solid var(--line); border-radius: 11px; }
.field { margin-bottom: 21px; }
.field > label, .field legend { display: block; margin-bottom: 7px; color: var(--forest); font-weight: 800; }
.field input:not([type="radio"]), .field textarea { width: 100%; min-height: 52px; padding: 13px 16px; color: var(--ink); background: #fffefa; border: 1.5px solid var(--line-strong); border-radius: 12px; outline: none; transition: border-color .16s ease, box-shadow .16s ease, background .16s ease; }
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(18, 61, 39, .1); }
.field small { display: block; margin-top: 5px; color: var(--muted); }
.field ul.errorlist, .check-field ul.errorlist { margin: 6px 0 0; padding: 0; color: var(--red-dark); list-style: none; font-size: .82rem; }
fieldset.field { padding: 0; border: 0; }
.radio-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.radio-cards label { display: flex; gap: 9px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.radio-cards label:has(input:checked) { border-color: var(--forest); background: rgba(18, 61, 39, .06); }
.check-field { display: grid; grid-template-columns: auto 1fr; gap: 9px; align-items: start; margin-bottom: 21px; font-size: .85rem; }
.check-field input { margin-top: 5px; }
.check-field .errorlist { grid-column: 1 / -1; }
.summary-item { font-size: .84rem; }
.summary-total { margin-top: 8px; padding-top: 18px !important; }
.summary-total strong { color: var(--red); font-size: 1.45rem; }

.empty-state { grid-column: 1 / -1; padding: 44px 24px; text-align: center; background: #fff; border: 1px dashed var(--line-strong); border-radius: 10px; }
.empty-state--large { max-width: 680px; margin: auto; padding: clamp(48px, 8vw, 82px) 26px; }
.empty-state__mark { display: inline-block; margin-bottom: 14px; color: var(--red); font-size: 3rem; }
.success-section { min-height: 58vh; display: grid; align-items: center; }
.success-card { max-width: 730px; margin: auto; padding: clamp(32px, 6vw, 64px); text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
.success-card__mark { display: grid; width: 58px; height: 58px; place-items: center; margin: 0 auto 18px; color: #fff; background: var(--forest); border-radius: 50%; font-size: 1.65rem; }
.success-card h1 { margin-bottom: 18px; font-size: clamp(2.5rem, 5vw, 4.4rem); }
.success-card__total { display: flex; justify-content: space-between; gap: 20px; margin: 26px 0; padding: 16px 0; border-block: 1px solid var(--line); }
.success-card__total strong { color: var(--red); font-size: 1.3rem; }
.success-card .hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.not-found {
  display: grid;
  min-height: clamp(560px, 68vh, 760px);
  align-items: center;
  padding: clamp(48px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 78% 44%, rgba(102, 132, 61, .12), transparent 25rem),
    linear-gradient(120deg, #fffdf8, #f2f6e9);
}
.not-found__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
}
.not-found__code {
  margin: 0 0 -12px;
  color: rgba(18, 61, 39, .09);
  font: 700 clamp(6.5rem, 16vw, 12rem)/.82 Georgia, "Times New Roman", serif;
  letter-spacing: -.08em;
}
.not-found h1 { max-width: 700px; margin-bottom: 18px; font-size: clamp(2.7rem, 5vw, 5rem); }
.not-found__lead { max-width: 610px; margin-bottom: 28px; color: var(--muted); font-size: 1.06rem; }
.not-found__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.not-found__art {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--line);
  border-radius: 52% 52% 14px 14px;
  box-shadow: var(--shadow);
}
.not-found__birch { position: absolute; top: -80px; left: -46px; width: 90%; transform: rotate(12deg); }
.not-found__ladybug { position: absolute; right: 11%; bottom: 22%; width: min(48%, 190px); transform: rotate(-7deg); }
.not-found__note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  margin: 0;
  color: var(--forest);
  font: italic 600 .92rem/1.4 Georgia, "Times New Roman", serif;
  text-align: center;
}

.contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.contact-card { display: grid; min-height: 190px; align-content: space-between; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.contact-card:hover { border-color: #9cac93; box-shadow: var(--shadow); }
.contact-card span { color: var(--red); font-size: .75rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.contact-card strong { color: var(--forest); font: 600 1.25rem/1.28 Georgia, "Times New Roman", serif; overflow-wrap: anywhere; }
.contact-card small { color: var(--muted); }
.reviews-frame { width: 100%; min-height: 520px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.reviews-placeholder { padding: clamp(38px, 7vw, 70px); text-align: center; background: #fff; border: 1px dashed var(--line-strong); border-radius: 11px; }
.reviews-placeholder strong { display: block; margin-bottom: 8px; color: var(--forest); font: 600 1.35rem Georgia, "Times New Roman", serif; }
.reviews-placeholder p { margin-bottom: 0; color: var(--muted); }

.contacts-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 20px; }
.contact-panel, .messenger-panel { padding: clamp(24px, 4vw, 42px); background: #fff; border: 1px solid var(--line); border-radius: 11px; }
.contact-panel { display: grid; gap: 30px; }
.contact-panel > div { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.contact-panel > div:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-panel h2 { margin: 7px 0 13px; font-size: clamp(1.65rem, 3vw, 2.65rem); }
.phone-link { display: block; width: fit-content; margin-top: 8px; color: var(--forest); font: 600 clamp(1.25rem, 2.3vw, 1.8rem) Georgia, "Times New Roman", serif; }
.messenger-panel { background: var(--forest); color: rgba(255, 255, 255, .8); }
.messenger-panel h2 { color: #fff; }
.messenger-panel .eyebrow { color: #bed58a; }
.messenger-panel__phone { display: block; width: fit-content; margin: 10px 0 18px; color: #fff; font: 600 clamp(1.25rem, 2.3vw, 1.8rem) Georgia, "Times New Roman", serif; }
.messenger-panel__status { display: block; margin-top: 11px; color: rgba(255, 255, 255, .65); }
.messenger-panel__note { margin: 25px 0 0; font-size: .88rem; }

.contact-map { margin-top: clamp(28px, 5vw, 54px); }
.contact-map__heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.contact-map__heading h2 { margin: 0; font-size: clamp(2rem, 3.5vw, 3.5rem); }
.yandex-map-frame {
  position: relative;
  width: min(100%, 1120px);
  aspect-ratio: 16 / 9;
  contain: layout paint;
  margin-inline: auto;
  overflow: hidden;
  background: #f3f1ea;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.yandex-map-frame iframe { position: absolute; inset: 0; display: block; width: 100%; height: 100%; border: 0; }
.map-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(24px, 5vw, 64px);
  background: linear-gradient(135deg, #f8f6ef, #edf3e4);
  text-align: center;
}
.map-placeholder__pin {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--red);
  border: 7px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(185, 46, 22, .18);
}
.map-placeholder__pin svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.map-placeholder strong { max-width: 620px; color: var(--forest); font: 600 clamp(1.55rem, 3vw, 2.65rem)/1.12 Georgia, "Times New Roman", serif; text-wrap: balance; }
.map-placeholder__note { max-width: 520px; margin: 13px 0 22px; color: var(--muted); font-size: .9rem; }
.map-placeholder .button:disabled { cursor: wait; opacity: .72; transform: none; }

.messenger-icons { display: flex; align-items: center; gap: 9px; }
.messenger-icon {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  transition: transform .18s ease;
}
.messenger-icon:hover { transform: translateY(-2px); }
.messenger-icon img { display: block; width: 100%; height: 100%; object-fit: contain; }
.messenger-icon--whatsapp { background: #fff; }
.messenger-icon--max img { transform: scale(.98); }
.messenger-icon.is-disabled { cursor: default; opacity: 1; }
.messenger-icon.is-disabled:hover { transform: none; }
.contact-card--messengers .messenger-icons { margin-top: 12px; }

.site-footer { border-top: 1px solid var(--line); background: #fffdf8; }
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding-block: 25px 20px;
  text-align: center;
}
.footer-main > * { margin-inline: auto; }
.brand--footer { width: 180px; }
.footer-tagline { margin: 0; color: var(--muted); font-size: .78rem; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; font-size: .78rem; font-weight: 750; }
.footer-main > .messenger-icons { justify-content: center; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 22px; padding-block: 12px; color: var(--muted); border-top: 1px solid var(--line); font-size: .7rem; text-align: center; }
.webmcp-status {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 18px;
  max-width: 340px;
  padding: 0;
  color: #fff;
  background: var(--forest);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.webmcp-status:not(:empty) { padding: 12px 15px; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

@media (max-width: 1120px) {
  .header-main { grid-template-columns: 205px auto 1fr auto; gap: 24px; }
  .brand { width: 205px; }
  .header-meta__item:first-child { display: none; }
  .home-hero__stage { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); }
  .home-hero__copy { padding-left: 130px; }
  .home-hero__note { display: none; }
  .category-showcase { grid-template-columns: repeat(6, minmax(0, 1fr)); overflow: visible; }
  .category-tile { grid-column: span 2; }
  .category-tile:nth-child(4) { grid-column: 2 / span 2; }
  .product-showcase { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-order-card { grid-column: 1 / -1; grid-template-columns: .8fr 1.2fr; grid-template-rows: none; }
  .home-order-card__message { min-height: 165px; }
}

@media (max-width: 880px) {
  .site-frame { width: min(calc(100% - 16px), var(--frame)); margin: 8px auto; }
  .header-main { grid-template-columns: 185px 1fr auto; min-height: 76px; }
  .main-nav { justify-self: center; gap: 20px; }
  .header-meta { display: none; }
  .home-hero__stage {
    grid-template-columns: minmax(0, 1.18fr) minmax(260px, .82fr);
    min-height: 440px;
  }
  .home-hero__photo { min-height: 440px; }
  .home-hero__copy { padding: 48px 18px 42px 90px; }
  .home-hero__copy h1 { font-size: clamp(2.4rem, 5vw, 3.1rem); }
  .home-benefits { padding-inline: 28px; }
  .product-showcase { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-order-card { grid-column: 1 / -1; }
  .catalog-section .product-grid, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cart-layout, .checkout-layout { grid-template-columns: minmax(0, 1fr) 285px; gap: 22px; }
  .cart-item { grid-template-columns: 90px minmax(0, 1fr) 112px; }
  .cart-item__total { grid-column: 3; }
  .quantity-form, .cart-item__quantity { grid-column: 2; }
  .footer-main .brand--footer { width: 170px; }
}

@media (max-width: 720px) {
  body { background: var(--paper); }
  .site-frame { width: 100%; margin: 0; border: 0; border-radius: 0; box-shadow: none; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { min-height: 68px; }
  .header-main { grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 8px; min-height: 68px; }
  .brand { width: min(188px, 100%); justify-self: center; }
  .main-nav { display: none; }
  .mobile-menu { position: relative; display: block; z-index: 5; }
  .mobile-menu summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    cursor: pointer;
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary .ui-icon { width: 24px; height: 24px; }
  .mobile-menu[open] nav {
    position: absolute;
    top: 49px;
    left: 0;
    display: grid;
    min-width: 200px;
    gap: 2px;
    padding: 9px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 9px;
    box-shadow: var(--shadow);
  }
  .mobile-menu nav { display: none; }
  .mobile-menu nav a { padding: 11px 12px; border-radius: 6px; font-weight: 750; }
  .mobile-menu nav a:hover { background: var(--paper-green); }
  .mobile-menu nav a.is-active { color: #fff; background: var(--forest); }
  .cart-link { width: 44px; height: 44px; justify-content: center; padding: 6px; }
  .cart-link__label { display: none; }
  .cart-link__count { right: -1px; }

  .home-hero__stage {
    grid-template-columns: minmax(0, 1.18fr) minmax(142px, .82fr);
    min-height: 390px;
    background: linear-gradient(90deg, #fffdf8 0 55%, #f7f4ed 55% 100%);
  }
  .home-hero__birch { top: -18px; left: -28px; width: 158px; max-height: 300px; }
  .home-hero__copy { padding: 82px 8px 30px 24px; }
  .home-hero__copy .eyebrow { display: none; }
  .home-hero__copy h1 { margin-bottom: 14px; font-size: clamp(2rem, 8.8vw, 2.9rem); line-height: .96; }
  .home-hero__copy h1 span { white-space: normal; }
  .home-hero__lead { margin-bottom: 18px; font-size: .86rem; line-height: 1.42; }
  .home-hero__copy .button { min-height: 43px; padding: 10px 15px; font-size: .8rem; }
  .home-hero__photo { min-height: 390px; }
  .home-hero__photo::after { background: linear-gradient(90deg, var(--paper) 0, transparent 24%); }
  .home-hero__photo > img { object-position: 54% center; }
  .home-benefits { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 15px 12px; }
  .home-benefits__item { gap: 7px; justify-content: flex-start; font-size: .75rem; }
  .home-benefits__item svg { width: 25px; height: 25px; flex-basis: 25px; }
  .home-categories { padding: 14px 12px 20px; }
  .category-showcase { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 9px; overflow: visible; }
  .category-tile { grid-column: span 2; }
  .category-tile__footer { min-height: 49px; padding: 8px; font-size: .75rem; }
  .category-tile:nth-child(4) { grid-column: 2 / span 2; }
  .home-products { padding: 0 12px 20px; }
  .section-heading--compact { align-items: center; flex-direction: row; gap: 14px; }
  .section-heading--compact h2 { font-size: 1.65rem; }
  .section-heading--compact .text-link { font-size: .75rem; white-space: nowrap; }
  .product-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .product-card__body { grid-template-columns: 1fr; gap: 5px; padding: 9px; }
  .product-card h3 { font-size: .82rem; }
  .product-card__body > p { min-height: 0; font-size: .75rem; }
  .product-card__price { font-size: .92rem; }
  .product-card__purchase { width: 100%; min-width: 0; }
  .product-card__body form { width: 100%; }
  .button--cart { width: 100%; min-height: 36px; padding: 7px 8px; font-size: .75rem; }
  .button--cart .button__icon { width: 17px; height: 17px; }
  .catalog-section .product-grid > .product-card:last-child:nth-child(odd),
  .product-grid--three > .product-card:last-child:nth-child(odd),
  .product-showcase > .product-card:last-of-type:nth-of-type(odd) {
    grid-column: 1 / -1;
    width: calc((100% - 10px) / 2);
    justify-self: center;
  }
  .home-order-card { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .home-order-card__message { min-height: 140px; }
  .home-order-card__contacts { padding: 16px; }
  .home-seo { grid-template-columns: 1fr; gap: 20px; padding: 42px 22px; }
  .home-seo > p { font-size: .94rem; }

  .section { padding: 52px 0; }
  .page-hero { padding: 54px 0; }
  .page-hero > .container:not(.page-hero__grid) { text-align: center; }
  .page-hero > .container:not(.page-hero__grid) h1,
  .page-hero > .container:not(.page-hero__grid) p { margin-inline: auto; }
  .page-hero h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .page-hero::after { width: 190px; right: -65px; opacity: .12; }
  .page-hero__grid, .story-grid, .product-detail__grid, .contacts-grid { grid-template-columns: 1fr; }
  .not-found { min-height: auto; text-align: center; }
  .not-found__card { grid-template-columns: 1fr; }
  .not-found__lead { margin-inline: auto; }
  .not-found__actions { justify-content: center; }
  .not-found__art { width: min(100%, 430px); min-height: 330px; margin-inline: auto; }
  .story-visual { min-height: 260px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .catalog-section .product-grid, .product-grid, .product-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-detail__content { padding-top: 0; }
  .product-detail__content h1 { font-size: clamp(2.35rem, 11vw, 3.8rem); }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .cart-item { grid-template-columns: 82px minmax(0, 1fr); gap: 13px; }
  .quantity-form, .cart-item__quantity, .cart-item__total { grid-column: 2; justify-items: start; text-align: left; }
  .cart-item__total { display: flex; align-items: center; gap: 13px; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card { min-height: 160px; }
  .contacts-grid { text-align: center; }
  .contacts-grid .text-link, .contacts-grid .phone-link, .messenger-panel__phone { margin-inline: auto; }
  .contacts-grid .messenger-icons { justify-content: center; }
  .contact-map__heading { align-items: center; flex-direction: column; text-align: center; }
  .yandex-map-frame { aspect-ratio: 1; }
  .map-placeholder__note { max-width: 390px; }
  .footer-main { gap: 11px; }
  .brand--footer { width: 160px; }
  .footer-bottom { gap: 5px; }
  .webmcp-status { right: 12px; bottom: 12px; left: 12px; max-width: none; }
}

@media (max-width: 520px) {
  .brand { width: min(164px, 100%); }
  .home-products .product-card:nth-of-type(n + 3) { display: none; }
  .home-hero__stage { grid-template-columns: minmax(0, 1.2fr) minmax(132px, .8fr); min-height: 370px; }
  .home-hero__copy { padding: 80px 6px 24px 18px; }
  .home-hero__copy h1 { font-size: clamp(1.72rem, 7.5vw, 2.2rem); line-height: .98; }
  .home-hero__lead { font-size: .78rem; }
  .home-hero__photo { min-height: 370px; }
  .home-benefits__item { flex-direction: column; align-items: center; text-align: center; }
  .category-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-tile { grid-column: auto; }
  .category-tile:nth-child(4) { grid-column: auto; }
  .category-tile:last-child { grid-column: 1 / -1; width: calc((100% - 9px) / 2); justify-self: center; }
  .radio-cards { grid-template-columns: 1fr; }
  .not-found { padding: 38px 0 48px; }
  .not-found__code { margin-bottom: -4px; font-size: 6.4rem; }
  .not-found h1 { font-size: 2.35rem; }
  .not-found__lead { font-size: .92rem; }
  .not-found__actions { display: grid; }
  .not-found__art { min-height: 280px; }
  .map-placeholder { padding: 22px; }
  .map-placeholder__pin { width: 54px; height: 54px; margin-bottom: 13px; border-width: 6px; }
  .map-placeholder strong { font-size: 1.45rem; }
  .map-placeholder__note { margin: 10px 0 18px; font-size: .8rem; }
  .map-placeholder .button { min-height: 44px; padding: 10px 17px; font-size: .82rem; }
  .product-detail__meta { grid-template-columns: 1fr; gap: 5px; }
  .footer-main { text-align: center; }
}

@media (max-width: 370px) {
  .header-main { grid-template-columns: 40px minmax(0, 1fr) 40px; }
  .brand { width: 145px; }
  .home-hero__stage { grid-template-columns: 1fr; }
  .home-hero__birch { left: -42px; width: 132px; }
  .home-hero__copy { padding: 78px 18px 24px; }
  .home-hero__copy h1 { max-width: 270px; font-size: 2.3rem; }
  .home-hero__lead { max-width: 285px; font-size: .86rem; }
  .home-hero__photo { min-height: 255px; }
  .home-hero__photo::after { background: linear-gradient(180deg, var(--paper) 0, transparent 22%); }
  .home-benefits { grid-template-columns: 1fr; gap: 11px; padding: 18px; }
  .home-benefits__item { flex-direction: row; justify-content: flex-start; text-align: left; font-size: .78rem; }
  .category-showcase, .product-showcase, .catalog-section .product-grid, .product-grid, .product-grid--three { grid-template-columns: 1fr; }
  .category-tile, .category-tile:nth-child(4), .category-tile:last-child,
  .catalog-section .product-grid > .product-card:last-child:nth-child(odd),
  .product-grid--three > .product-card:last-child:nth-child(odd),
  .product-showcase > .product-card:last-of-type:nth-of-type(odd) { grid-column: auto; width: 100%; }
  .product-card__body { grid-template-columns: 1fr auto; }
  .product-card h3, .product-card__body > p { grid-column: 1 / -1; }
  .product-card__purchase, .product-card__body form { width: auto; }
  .quantity-stepper--card { min-width: 94px; }
  .button--cart { width: auto; min-width: 100px; }
  .section-heading--compact { align-items: flex-start; flex-direction: column; }
  .home-order-card { grid-column: auto; }
  .cart-item { grid-template-columns: 72px minmax(0, 1fr); }
  .add-form .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
