:root {
  --green: #145a2d;
  --green-dark: #0f3d20;
  --orange: #ef8118;
  --ink: #101412;
  --muted: #53605a;
  --line: rgba(17, 21, 19, 0.12);
  --paper: #fffdf8;
  --soft: #f5f3ec;
  --white: #fff;
  --shadow: 0 14px 34px rgba(24, 33, 28, 0.08);
  --page-width: 1024px;
  --side: 38px;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f1efe8;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.page {
  width: min(100%, var(--page-width));
  min-height: 100vh;
  margin: 0 auto;
  overflow: visible;
  background:
    radial-gradient(circle at 78% 8%, rgba(246, 188, 33, 0.16), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #f8f6ef 32%, #fffdf8 46%, #f8f6ef 100%);
  box-shadow: 0 0 0 1px rgba(22, 30, 26, 0.04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 150px 1fr 244px;
  align-items: center;
  gap: 16px;
  padding: 0 27px;
}

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

.brand-mark {
  width: 35px;
  height: 35px;
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #0e3d20);
}

.brand-mark::before {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
}

.brand-mark span {
  width: 17px;
  height: 17px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 2px;
  transform: rotate(-36deg);
}

.brand strong {
  color: #050806;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.main-nav svg {
  width: 13px;
  height: 13px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}

.phone {
  display: grid;
  justify-items: end;
  line-height: 1.05;
}

.phone strong {
  color: #111;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.phone span {
  margin-top: 5px;
  color: #353b39;
  font-size: 10px;
  font-weight: 500;
}

.icon-link,
.menu-toggle {
  width: 30px;
  height: 30px;
  position: relative;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--green);
}

.icon-link svg,
.menu-toggle svg {
  width: 25px;
  height: 25px;
}

.cart-link span {
  position: absolute;
  top: -4px;
  right: -2px;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
}

.hero {
  height: 337px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.92) 36%, rgba(255, 253, 248, 0.46) 57%, rgba(255, 253, 248, 0.08) 100%),
    radial-gradient(circle at 82% 23%, rgba(238, 129, 24, 0.10), transparent 28%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: 40px;
  top: 39px;
  z-index: 3;
  width: 510px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: #090c0b;
  font-size: 29px;
  line-height: 1.37;
  font-weight: 900;
  letter-spacing: 0;
}

h1 span {
  color: var(--orange);
}

.hero-copy p {
  margin: 20px 0 0;
  color: #1e2422;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-green {
  min-width: 150px;
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.btn-white {
  min-width: 132px;
  background: rgba(255, 255, 255, 0.78);
  color: #111;
}

.message-stack {
  display: grid;
  gap: 10px;
  margin: 18px var(--side) 0;
}

.site-message {
  padding: 14px 16px;
  border: 1px solid rgba(31, 111, 45, 0.18);
  border-radius: 8px;
  background: rgba(238, 248, 231, 0.94);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.site-message.error {
  border-color: rgba(219, 91, 22, 0.26);
  background: rgba(255, 242, 232, 0.96);
  color: #9f3c0d;
}

.hero-art {
  position: absolute;
  right: 0;
  top: 8px;
  z-index: 1;
  width: 602px;
  height: 350px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 9%, #000 24%, #000 98%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 9%, #000 24%, #000 98%, transparent 100%);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.benefits div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: #101714;
  font-size: 13px;
  line-height: 1.22;
  font-weight: 500;
}

.benefits svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: var(--green);
}

.top-benefits {
  min-height: 72px;
  padding: 0 40px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.14), rgba(255, 253, 248, 0.82));
}

.section {
  padding: 24px var(--side) 0;
}

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

h2 {
  margin: 0;
  color: #111;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.section-head a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.section-head svg,
.text-link svg {
  width: 16px;
  height: 16px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.home-category-cluster-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 13px;
}

.home-category-cluster-head h3,
.home-category-cluster-head p {
  margin: 0;
}

.home-category-cluster-head h3 {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.home-category-cluster-head p {
  color: var(--muted);
  font-size: 12px;
}

.home-category-cluster-secondary {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 90, 45, 0.12);
}

.category-card {
  height: 181px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  object-position: center;
}

.category-card span {
  display: block;
  min-height: 99px;
  padding: 18px 34px 12px 14px;
  color: #111;
  font-size: 13px;
  line-height: 1.46;
  font-weight: 600;
}

.category-card > svg {
  position: absolute;
  right: 12px;
  bottom: 15px;
  width: 24px;
  height: 24px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  background: #fff;
}

.delivery-panel {
  height: 287px;
  position: relative;
  margin: 28px var(--side) 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.delivery-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.88) 32%, rgba(255, 253, 248, 0.36) 52%, rgba(255, 253, 248, 0.02) 100%);
}

.delivery-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.delivery-copy {
  position: relative;
  z-index: 2;
  width: 365px;
  padding: 31px 0 0 30px;
}

.delivery-copy h2 {
  width: 310px;
  color: var(--green);
  font-size: 24px;
  line-height: 1.22;
}

.delivery-copy ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 21px;
  padding: 0;
  list-style: none;
}

.delivery-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #151c19;
  font-size: 13px;
  font-weight: 500;
}

.delivery-copy svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.delivery-copy .btn {
  min-height: 38px;
  min-width: 172px;
  padding: 0 16px;
}

.products-preview {
  padding-top: 27px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 17px;
}

.product-card {
  min-height: 258px;
  display: flex;
  flex-direction: column;
  padding: 15px;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 91px;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.product-card h3 {
  min-height: 54px;
  margin: 16px 0 0;
  color: #111;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 500;
}

.product-card strong {
  display: block;
  margin-top: auto;
  color: #111;
  font-size: 17px;
  font-weight: 900;
}

.product-card button {
  width: 100%;
  min-height: 38px;
  margin-top: 16px;
  border: 1px solid var(--green);
  border-radius: 6px;
  background: #fff;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.product-card form {
  width: 100%;
}

.bottom-benefits {
  min-height: 78px;
  align-items: center;
  margin: 29px 37px 0;
  padding: 0 27px;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(24, 33, 28, 0.05);
}

.bottom-benefits div {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 3px;
  align-content: center;
  padding: 12px 14px;
}

.bottom-benefits div + div {
  border-left: 1px solid rgba(17, 21, 19, 0.08);
}

.bottom-benefits svg {
  grid-row: 1 / 3;
}

.bottom-benefits b {
  display: block;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.bottom-benefits span {
  display: block;
  color: #111;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
  text-wrap: balance;
}

.quick-order {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  margin: 34px var(--side) 0;
  padding: 28px 30px;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-order span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-order p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.order-form input,
.order-form textarea {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: #fffdf8;
  color: var(--ink);
  font-size: 13px;
}

.order-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.order-form .btn {
  width: 100%;
}

.order-form .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 34px var(--side) 0;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(17, 21, 19, 0.08);
}

.footer-business {
  min-width: 0;
  max-width: 360px;
  flex: 1 1 280px;
}

.footer-business span,
.footer-business small {
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.site-footer .footer-tax-id {
  color: var(--green-dark);
  font-weight: 800;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong,
.site-footer a {
  color: #111;
  font-size: 16px;
  font-weight: 900;
}

.site-footer span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.site-footer .footer-viber {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(20, 90, 45, 0.2);
  border-radius: 6px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-viber svg {
  width: 18px;
  height: 18px;
}

.site-footer .footer-viber span {
  color: inherit;
  font-size: 14px;
  font-weight: 800;
}

.subhero {
  min-height: 240px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  align-items: center;
  padding: 38px var(--side) 34px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.68)),
    url("./assets/hero-scene-v2.jpg") center right / 58% auto no-repeat;
}

.subhero h1 {
  max-width: 590px;
  font-size: 34px;
  line-height: 1.18;
}

.subhero p {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-page {
  padding: 8px var(--side) 0;
}

.catalog-band {
  margin-top: 28px;
}

.catalog-band h2 {
  margin-bottom: 14px;
}

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

.offer-card {
  min-height: 176px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.offer-card img {
  width: 112px;
  height: 112px;
  align-self: start;
  border-radius: 8px;
  object-fit: contain;
  background: #fffdf8;
}

.offer-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.3;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.offer-card strong {
  display: block;
  margin: 12px 0;
  font-size: 17px;
  font-weight: 900;
}

.offer-card strong small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.offer-card .btn {
  min-height: 34px;
  width: 100%;
}

.offer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: center;
}

.offer-actions form {
  width: 100%;
}

.offer-actions .btn {
  min-width: 0;
  padding: 0 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px var(--side) 0;
}

.info-card,
.contact-card {
  padding: 22px;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.info-card i,
.contact-card i {
  color: var(--green);
}

.info-card h3,
.contact-card h3 {
  margin: 12px 0 8px;
  font-size: 17px;
}

.info-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-details {
  display: grid;
  gap: 9px;
  margin: 0;
}

.legal-details div {
  display: grid;
  gap: 3px;
}

.legal-details dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.legal-details dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.article-section {
  margin: 30px var(--side) 0;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.article-section h2 + p {
  margin-top: 14px;
}

.article-section p {
  color: var(--muted);
}

.article-section ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.article-section li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #161d1a;
  font-size: 14px;
}

.article-section li svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--green);
}

.contacts-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  margin: 28px var(--side) 0;
}

.contacts-layout .order-form {
  grid-template-columns: 1fr;
}

.contacts-layout textarea,
.order-form textarea {
  grid-column: 1 / -1;
}

.product-price-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 12px 0 0;
  padding: 11px 12px;
  border: 1px solid rgba(20, 90, 45, 0.14);
  border-radius: 7px;
  background: #f5f8f2;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.product-price-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--green);
}

.messenger-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.messenger-link {
  min-height: 58px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border: 1px solid rgba(17, 21, 19, 0.1);
  border-radius: 7px;
  background: #fffdf8;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.messenger-link:hover {
  border-color: rgba(20, 90, 45, 0.28);
  box-shadow: 0 8px 20px rgba(24, 33, 28, 0.08);
  transform: translateY(-1px);
}

.messenger-link .messenger-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
}

.messenger-link.whatsapp .messenger-icon {
  background: #168a48;
}

.messenger-link.telegram .messenger-icon {
  background: #278acb;
}

.messenger-link.viber .messenger-icon {
  background: #665cac;
}

.messenger-link .messenger-icon svg {
  width: 18px;
  height: 18px;
  color: inherit;
}

.messenger-link > span:nth-child(2) {
  display: grid;
  gap: 1px;
}

.messenger-link strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.messenger-link small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.messenger-link > svg {
  width: 17px;
  height: 17px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mini-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(20, 90, 45, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.product-detail,
.category-landing {
  margin: 28px var(--side) 0;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.product-visual,
.product-panel,
.category-lead {
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.product-panel {
  padding: 26px;
}

.product-panel h2 {
  margin-bottom: 16px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: #fffdf8;
  font-size: 14px;
}

.price-table th,
.price-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(17, 21, 19, 0.08);
  text-align: left;
}

.price-table th {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-table td:nth-child(2),
.price-table td:nth-child(3) {
  font-weight: 800;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.mini-cart-button {
  min-height: 32px;
  width: 100%;
  border: 1px solid var(--green);
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.order-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.order-actions .btn {
  flex: 1 1 0;
}

.product-info-grid {
  margin-top: 18px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  margin: 24px var(--side) 0;
}

.cart-panel,
.checkout-panel {
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.cart-panel {
  padding: 20px;
}

.checkout-panel {
  align-self: start;
  padding: 22px;
}

.checkout-panel > span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-panel h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.checkout-form {
  grid-template-columns: 1fr;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 116px 96px 36px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: #fffdf8;
}

.cart-row img {
  width: 86px;
  height: 72px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.cart-row h3 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.25;
}

.cart-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.cart-row strong {
  font-size: 16px;
  font-weight: 900;
  text-align: right;
}

.cart-quantity-form {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 6px;
}

.cart-quantity-form input {
  min-height: 34px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 8px;
  background: #fff;
}

.cart-quantity-form button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.remove-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 21, 19, 0.1);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.remove-button svg {
  width: 17px;
  height: 17px;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 16px 4px 0;
  border-top: 1px solid rgba(17, 21, 19, 0.08);
}

.cart-total span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.cart-total strong {
  font-size: 24px;
  font-weight: 900;
}

.empty-cart {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 34px 8px;
}

.empty-cart svg {
  width: 34px;
  height: 34px;
  color: var(--green);
}

.empty-cart h2,
.empty-cart p {
  margin: 0;
}

.category-lead {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 18px;
  padding: 26px;
}

.category-lead h2 {
  margin-bottom: 10px;
}

.category-lead p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.about-story-image {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.related-band {
  margin: 30px var(--side) 0;
}

.add-on-band {
  margin: 32px var(--side) 0;
  padding: clamp(22px, 2.5vw, 34px);
  border: 1px solid rgba(20, 90, 45, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(246, 250, 242, 0.96), rgba(255, 253, 248, 0.98) 58%, rgba(249, 241, 224, 0.9));
}

.add-on-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.add-on-heading h2 {
  margin: 5px 0 8px;
}

.add-on-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.add-on-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 14px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.7);
}

.add-on-notice svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--green);
}

.add-on-notice p {
  margin: 0;
  color: #38423d;
  font-size: 13px;
  line-height: 1.55;
}

.add-on-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.add-on-grid .offer-card {
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 720px) {
  .add-on-band {
    margin-top: 24px;
    padding: 18px 14px;
  }

  .add-on-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .add-on-heading h2 {
    font-size: 21px;
  }

  .add-on-heading p {
    font-size: 14px;
  }

  .add-on-notice {
    padding: 11px 10px;
  }

  .add-on-grid {
    grid-template-columns: 1fr;
  }

  .home-category-cluster-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 11px;
  }

  .home-category-cluster-head p {
    max-width: 320px;
    line-height: 1.45;
  }

  .home-category-cluster-secondary {
    margin-top: 22px;
    padding-top: 20px;
  }
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-links a,
.area-links span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(20, 90, 45, 0.16);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.area-links span {
  color: #4c5a51;
  background: #f7f1e5;
}

.article-section .section-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.category-index-grid {
  align-items: stretch;
}

.info-card .text-link {
  margin-top: 14px;
}

.price-layout,
.faq-layout {
  display: grid;
  gap: 24px;
  margin: 28px var(--side) 0;
}

.price-group,
.faq-section {
  padding: 24px;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
}

.table-product-link {
  color: var(--green-dark);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-list details {
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: #fffdf8;
}

.faq-list summary {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #111;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
}

.compact-faq {
  margin-top: 24px;
}

.seo-expansion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  margin: 30px var(--side) 0;
}

.seo-copy,
.seo-link-panel {
  padding: 26px;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.seo-copy h2 {
  margin-bottom: 12px;
}

.seo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.seo-copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.seo-copy li {
  display: flex;
  gap: 10px;
  color: #161d1a;
  font-size: 14px;
}

.seo-copy li svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--green);
}

.seo-link-panel h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.context-links {
  display: grid;
  gap: 10px;
}

.context-links a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 90, 45, 0.14);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.context-links svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.category-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.55fr);
  gap: 30px;
  margin: 30px var(--side) 0;
  padding: 30px;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: #f3f6ef;
}

.category-feature-head h2 {
  margin: 8px 0 12px;
}

.category-feature-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.category-feature-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 90, 45, 0.16);
  border-bottom: 1px solid rgba(20, 90, 45, 0.16);
}

.category-feature-item {
  min-width: 0;
  padding: 20px;
  border-left: 1px solid rgba(20, 90, 45, 0.16);
}

.category-feature-item:first-child {
  border-left: 0;
}

.category-feature-item > span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.category-feature-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.category-feature-item p {
  min-height: 63px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.category-feature-item a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.category-feature-item a svg {
  width: 15px;
  height: 15px;
}

.category-feature--sequence {
  background: #f5f3eb;
}

.category-feature--route {
  background: #eef5f2;
}

.category-feature--split {
  background: #f6f4ef;
}


.article-readable {
  display: grid;
  gap: 16px;
}

.article-readable h2:not(:first-child) {
  margin-top: 8px;
}

.inline-empty {
  margin: 0;
}

@media (max-width: 900px) {
  :root {
    --side: 24px;
  }

  body {
    background: var(--paper);
  }

  .page {
    box-shadow: none;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 0 18px;
  }

  .brand strong {
    font-size: 22px;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(17, 21, 19, 0.08);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 18px 46px rgba(24, 33, 28, 0.16);
  }

  .nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    min-height: 44px;
    padding: 0 10px;
    border-radius: 6px;
  }

  .main-nav a:hover {
    background: #f5f3ec;
  }

  .header-right {
    gap: 8px;
  }

  .phone span,
  .icon-link.viber {
    display: none;
  }

  .phone strong {
    font-size: 13px;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    height: auto;
    padding: 28px 0 0;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.82) 58%, rgba(255, 253, 248, 0.1) 100%),
      radial-gradient(circle at 70% 20%, rgba(238, 129, 24, 0.12), transparent 32%);
  }

  .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    padding: 0 var(--side);
  }

  h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero-copy p {
    margin-top: 16px;
    font-size: 15px;
  }

  .hero-buttons {
    gap: 10px;
    margin-top: 22px;
    flex-wrap: wrap;
  }

  .hero-buttons .btn {
    flex: 1 1 158px;
  }

  .hero-art {
    position: relative;
    right: auto;
    top: auto;
    width: calc(100% + 44px);
    height: 300px;
    margin: 8px -22px 0 auto;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 80%, transparent 100%);
  }

  .hero-art img {
    object-position: center;
  }

  .top-benefits,
  .bottom-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 18px var(--side);
  }

  .bottom-benefits {
    margin-left: var(--side);
    margin-right: var(--side);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .delivery-panel {
    height: auto;
    min-height: 520px;
  }

  .delivery-panel::before {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.86) 44%, rgba(255, 253, 248, 0.2) 70%);
  }

  .delivery-panel img {
    top: auto;
    height: 56%;
    object-position: center bottom;
  }

  .delivery-copy {
    width: auto;
    padding: 26px 24px;
  }

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

  .quick-order,
  .contacts-layout,
  .wide-grid,
  .info-grid,
  .product-detail,
  .cart-layout,
  .category-lead,
  .category-feature,
  .seo-expansion,
  .subhero {
    grid-template-columns: 1fr;
  }

  .category-feature {
    gap: 22px;
  }

  .product-visual {
    min-height: 260px;
  }

  .category-feature-items {
    grid-template-columns: 1fr;
  }

  .category-feature-item,
  .category-feature-item:first-child {
    border-top: 1px solid rgba(20, 90, 45, 0.16);
    border-left: 0;
  }

  .category-feature-item:first-child {
    border-top: 0;
  }

  .category-feature-item p {
    min-height: 0;
  }

  .subhero {
    padding-top: 30px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.78)),
      url("./assets/hero-scene-v2.jpg") center bottom / cover no-repeat;
  }

  .subhero h1 {
    font-size: 31px;
  }
}

@media (max-width: 560px) {
  :root {
    --side: 16px;
  }

  .header-inner {
    padding: 0 14px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand strong {
    font-size: 21px;
  }

  .phone {
    display: none;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .hero-art {
    height: 258px;
  }

  .top-benefits,
  .bottom-benefits,
  .category-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits div {
    align-items: flex-start;
    font-size: 12px;
  }

  .section-head {
    align-items: flex-start;
  }

  .section-head a {
    font-size: 12px;
  }

  .category-card {
    height: 174px;
  }

  .category-card img {
    height: 94px;
  }

  .category-card span {
    min-height: 80px;
    padding: 12px 34px 10px 12px;
    font-size: 12px;
  }

  .delivery-panel {
    min-height: 480px;
  }

  .delivery-copy h2 {
    width: auto;
    font-size: 23px;
  }

  .product-card {
    min-height: 244px;
    padding: 12px;
  }

  .product-card img {
    height: 82px;
  }

  .product-card h3 {
    min-height: 58px;
    font-size: 12px;
  }

  .product-card strong {
    font-size: 15px;
  }

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

  .order-actions,
  .footer-links {
    flex-wrap: wrap;
  }

  .offer-actions {
    grid-template-columns: 1fr;
  }

  .price-table {
    font-size: 12px;
  }

  .price-table th,
  .price-table td {
    padding: 9px 8px;
  }

  .price-table {
    min-width: 680px;
  }

  .cart-panel,
  .checkout-panel {
    padding: 16px;
  }

  .cart-row {
    grid-template-columns: 72px minmax(0, 1fr) 34px;
    gap: 10px;
  }

  .cart-row img {
    width: 72px;
    height: 64px;
  }

  .cart-quantity-form {
    grid-column: 1 / -1;
    grid-template-columns: 74px 1fr;
  }

  .cart-row strong {
    grid-column: 2;
    text-align: left;
  }

  .cart-row > form:last-child {
    grid-column: 3;
    grid-row: 1;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Expert knowledge center */
.knowledge-hero,
.rubric-hero,
.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(38px, 5vw, 84px);
  align-items: stretch;
  padding: clamp(46px, 5vw, 78px) var(--side) clamp(58px, 6vw, 94px);
  background: #f4f1e8;
}

.knowledge-hero-copy,
.rubric-hero-copy,
.article-hero-copy {
  align-self: center;
  min-width: 0;
}

.knowledge-kicker,
.knowledge-section-head > div > span,
.knowledge-catalog-cta span,
.article-sources > span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.knowledge-hero h1,
.rubric-hero h1,
.article-hero h1 {
  max-width: 820px;
  margin: 22px 0 0;
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}

.knowledge-hero-copy > p,
.rubric-hero-copy > p,
.article-hero-copy > p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #46534c;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
}

.knowledge-hero-copy > .btn,
.rubric-hero-copy > .btn {
  margin-top: 30px;
}

.knowledge-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.knowledge-facts span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}

.knowledge-facts strong {
  color: var(--ink);
  font-size: 19px;
}

.knowledge-feature {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 19, 0.1);
  border-radius: 8px;
  background: #fff;
}

.knowledge-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.knowledge-feature > span,
.knowledge-feature > h2,
.knowledge-feature > p,
.knowledge-feature > b {
  margin-right: 26px;
  margin-left: 26px;
}

.knowledge-feature > span {
  margin-top: 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.knowledge-feature h2 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.15;
}

.knowledge-feature p {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.knowledge-feature b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 14px;
}

.knowledge-feature b svg {
  width: 18px;
  height: 18px;
}

.knowledge-rubrics,
.knowledge-latest,
.rubric-articles,
.rubric-directory,
.article-related,
.article-faq {
  padding: clamp(64px, 7vw, 110px) var(--side) 0;
}

.knowledge-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.knowledge-section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 1.08;
}

.knowledge-section-head > p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.rubric-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rubric-card:hover,
.editorial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 90, 45, 0.32);
  box-shadow: 0 16px 36px rgba(21, 44, 30, 0.09);
}

.rubric-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.rubric-card > span,
.rubric-card > h3,
.rubric-card > p,
.rubric-card > b {
  margin-right: 18px;
  margin-left: 18px;
}

.rubric-card > span {
  margin-top: 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.rubric-card h3 {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.25;
}

.rubric-card p {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.rubric-card b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--green);
  font-size: 13px;
}

.rubric-card b svg,
.editorial-card .text-link svg,
.rubric-link-grid svg,
.article-sources svg {
  width: 17px;
  height: 17px;
}

.knowledge-latest {
  margin-top: clamp(64px, 7vw, 110px);
  padding-top: clamp(58px, 6vw, 92px);
  padding-bottom: clamp(64px, 7vw, 108px);
  background: #f0eee6;
}

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

.editorial-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.editorial-card-image {
  display: block;
  overflow: hidden;
}

.editorial-card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 240ms ease;
}

.editorial-card:hover .editorial-card-image img {
  transform: scale(1.025);
}

.editorial-card-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 12px;
  padding: 20px;
}

.editorial-card-copy > span:not(.editorial-meta) {
  color: var(--muted);
  font-size: 11px;
}

.editorial-meta {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-card h2,
.editorial-card h3 {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  font-size: 19px;
  line-height: 1.3;
}

.editorial-card p {
  grid-column: 1 / -1;
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.editorial-card .text-link {
  grid-column: 1 / -1;
  margin-top: 5px;
}

.knowledge-catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: clamp(64px, 7vw, 110px) var(--side) clamp(70px, 8vw, 120px);
  padding: clamp(32px, 4vw, 58px);
  border-radius: 8px;
  background: #143f26;
  color: #fff;
}

.knowledge-catalog-cta span {
  color: #b9d5be;
}

.knowledge-catalog-cta h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
}

.knowledge-catalog-cta p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.knowledge-catalog-cta .btn {
  flex: 0 0 auto;
  background: #fff;
  color: var(--green-dark);
}

.rubric-hero {
  min-height: 530px;
}

.rubric-hero > img,
.article-hero > img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 560px;
  align-self: center;
  object-fit: cover;
  border-radius: 8px;
}

.rubric-articles {
  padding-bottom: clamp(60px, 6vw, 96px);
}

.rubric-directory {
  padding-top: clamp(48px, 5vw, 76px);
  padding-bottom: clamp(52px, 5vw, 82px);
  background: #f0eee6;
}

.rubric-link-grid,
.reading-rubrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rubric-link-grid a,
.reading-rubrics a {
  min-width: 0;
  min-height: 104px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 42px 18px 18px;
  border-right: 1px solid var(--line);
}

.rubric-link-grid a:nth-child(5n),
.rubric-link-grid a:last-child,
.reading-rubrics a:last-child {
  border-right: 0;
}

.rubric-link-grid span,
.reading-rubrics span {
  font-weight: 800;
  line-height: 1.3;
}

.rubric-link-grid small,
.reading-rubrics small {
  margin-top: 7px;
  color: var(--muted);
}

.rubric-link-grid svg,
.reading-rubrics svg {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 18px;
  height: 18px;
  color: var(--green);
}

.article-hero {
  padding-top: clamp(38px, 4vw, 62px);
  padding-bottom: clamp(54px, 6vw, 88px);
}

.article-hero h1 {
  font-size: clamp(40px, 4.8vw, 72px);
}

.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.article-meta-line a {
  color: var(--green);
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 820px);
  justify-content: center;
  gap: clamp(46px, 6vw, 96px);
  padding: clamp(62px, 7vw, 110px) var(--side) 0;
}

.article-toc {
  position: sticky;
  top: 112px;
  align-self: start;
  padding-top: 10px;
}

.article-toc > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-toc nav {
  display: grid;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.article-toc nav a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #35423b;
  font-size: 13px;
  line-height: 1.4;
}

.article-toc nav b {
  color: var(--green);
}

.article-toc-catalog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.article-toc-catalog svg {
  width: 17px;
  height: 17px;
}

.article-body {
  min-width: 0;
}

.article-chapter {
  scroll-margin-top: 110px;
  padding: 0 0 46px;
  border-bottom: 1px solid var(--line);
}

.article-chapter + .article-chapter,
.article-mid-cta + .article-chapter {
  padding-top: 46px;
}

.article-chapter > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.article-chapter h2 {
  margin: 10px 0 0;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.18;
}

.article-chapter p {
  margin: 20px 0 0;
  color: #35423b;
  font-size: 17px;
  line-height: 1.85;
}

.article-mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 46px 0 0;
  padding: 30px;
  border-radius: 8px;
  background: #edf3e9;
}

.article-mid-cta span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-mid-cta h2 {
  margin: 7px 0 0;
  font-size: 24px;
  line-height: 1.2;
}

.article-mid-cta p {
  max-width: 580px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.article-mid-cta .btn {
  flex: 0 0 auto;
}

.article-sources {
  padding-top: 48px;
}

.article-sources h2 {
  margin: 7px 0 0;
  font-size: 28px;
}

.article-sources ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.article-sources a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.article-products {
  margin-top: clamp(72px, 8vw, 120px);
}

.article-related {
  padding-bottom: clamp(52px, 6vw, 88px);
}

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

.editorial-grid--compact .editorial-card p {
  display: none;
}

.article-faq {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(38px, 6vw, 94px);
  padding-top: clamp(54px, 6vw, 90px);
  padding-bottom: clamp(62px, 7vw, 108px);
  background: #f0eee6;
}

.article-faq h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 3vw, 46px);
}

.article-faq .faq-list {
  margin: 0;
}

.home-reading .reading-rubrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

@media (max-width: 1180px) {
  .knowledge-hero,
  .rubric-hero,
  .article-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 38px;
  }

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

  .editorial-grid,
  .editorial-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rubric-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rubric-link-grid a:nth-child(5n) {
    border-right: 1px solid var(--line);
  }

  .rubric-link-grid a:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .knowledge-hero,
  .rubric-hero,
  .article-hero {
    grid-template-columns: 1fr;
  }

  .knowledge-feature,
  .rubric-hero > img,
  .article-hero > img {
    max-width: 760px;
  }

  .knowledge-section-head {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .rubric-grid,
  .editorial-grid,
  .editorial-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-toc {
    position: static;
  }

  .article-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-toc nav a:nth-child(odd) {
    margin-right: 22px;
  }
}

@media (max-width: 620px) {
  .knowledge-hero,
  .rubric-hero,
  .article-hero {
    gap: 30px;
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .knowledge-hero h1,
  .rubric-hero h1,
  .article-hero h1 {
    margin-top: 16px;
    font-size: 38px;
    line-height: 1.06;
  }

  .knowledge-hero-copy > p,
  .rubric-hero-copy > p,
  .article-hero-copy > p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .knowledge-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .knowledge-feature > span,
  .knowledge-feature > h2,
  .knowledge-feature > p,
  .knowledge-feature > b {
    margin-right: 18px;
    margin-left: 18px;
  }

  .knowledge-feature h2 {
    font-size: 24px;
  }

  .knowledge-rubrics,
  .knowledge-latest,
  .rubric-articles,
  .rubric-directory,
  .article-related,
  .article-faq {
    padding-top: 54px;
  }

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

  .rubric-grid,
  .editorial-grid,
  .editorial-grid--compact {
    grid-template-columns: 1fr;
  }

  .rubric-card {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .rubric-card img {
    grid-row: 1 / 4;
    width: 116px;
    height: 100%;
    min-height: 156px;
    object-fit: cover;
  }

  .rubric-card > span,
  .rubric-card > h3,
  .rubric-card > p,
  .rubric-card > b {
    margin-right: 15px;
    margin-left: 15px;
  }

  .rubric-card > span {
    margin-top: 16px;
  }

  .rubric-card p {
    display: none;
  }

  .rubric-card b {
    margin-top: 4px;
    padding-top: 7px;
    padding-bottom: 16px;
  }

  .editorial-card {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .editorial-card-image img {
    width: 116px;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
  }

  .editorial-card-copy {
    padding: 16px;
  }

  .editorial-card p {
    -webkit-line-clamp: 2;
  }

  .knowledge-catalog-cta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 56px;
    margin-bottom: 72px;
    padding: 28px 22px;
  }

  .knowledge-catalog-cta h2 {
    font-size: 29px;
  }

  .rubric-hero > img,
  .article-hero > img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .rubric-link-grid,
  .home-reading .reading-rubrics {
    grid-template-columns: 1fr;
  }

  .rubric-link-grid a,
  .rubric-link-grid a:nth-child(3n),
  .rubric-link-grid a:nth-child(5n),
  .reading-rubrics a {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rubric-link-grid a:last-child,
  .reading-rubrics a:last-child {
    border-bottom: 0;
  }

  .article-layout {
    padding-top: 48px;
  }

  .article-toc nav {
    grid-template-columns: 1fr;
  }

  .article-toc nav a:nth-child(odd) {
    margin-right: 0;
  }

  .article-chapter,
  .article-chapter + .article-chapter,
  .article-mid-cta + .article-chapter {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .article-chapter:first-child {
    padding-top: 0;
  }

  .article-chapter h2 {
    font-size: 27px;
  }

  .article-chapter p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.75;
  }

  .article-mid-cta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 34px;
    padding: 24px 20px;
  }

  .article-faq {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 72px;
  }
}

/* Catalog hierarchy: direct routes for feeds, supplements, staples and age-specific poultry. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.catalog-directory {
  margin-top: 34px;
  scroll-margin-top: 96px;
}

.catalog-quick-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.catalog-quick-nav a {
  min-width: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border: 1px solid rgba(20, 90, 45, 0.13);
  border-radius: 7px;
  background: #fff;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(24, 33, 28, 0.05);
}

.catalog-quick-nav a.catalog-quick-nav-accent {
  border-color: rgba(238, 129, 24, 0.32);
  background: #fff8ee;
  color: #8c4709;
}

.catalog-quick-nav svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.catalog-directory-heading,
.catalog-products-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.68fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: 22px;
}

.catalog-directory-heading h2,
.catalog-products-heading h2 {
  margin-top: 7px;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.15;
}

.catalog-directory-heading > p,
.catalog-products-heading > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.catalog-category-grid {
  display: grid;
  gap: 16px;
}

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

.catalog-category-grid--supplements {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.catalog-category-grid--staples {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-category-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 19, 0.09);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(24, 33, 28, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.catalog-category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 90, 45, 0.26);
  box-shadow: 0 18px 42px rgba(24, 33, 28, 0.12);
}

.catalog-category-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.82fr);
}

.catalog-category-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f1f0e9;
}

.catalog-category-card--featured .catalog-category-media {
  height: 100%;
  min-height: 340px;
  aspect-ratio: auto;
}

.catalog-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 360ms ease;
}

.catalog-category-card:hover .catalog-category-media img {
  transform: scale(1.025);
}

.catalog-category-media > span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 18px rgba(20, 30, 24, 0.12);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
}

.catalog-category-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px 16px 16px;
}

.catalog-category-card--featured .catalog-category-copy {
  justify-content: center;
  padding: 30px 26px;
  background: linear-gradient(145deg, #fff, #f2f7ed);
}

.catalog-category-copy h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.28;
}

.catalog-category-card--featured .catalog-category-copy h3 {
  font-size: clamp(23px, 2.2vw, 31px);
}

.catalog-category-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.catalog-category-link {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 15px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.catalog-category-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.catalog-directory--separated {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid rgba(17, 21, 19, 0.09);
}

.catalog-directory--supplements {
  position: relative;
}

.catalog-directory--supplements::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--side) * -1) auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), rgba(238, 129, 24, 0));
}

.catalog-category-card--supplement {
  border-color: rgba(238, 129, 24, 0.16);
}

.catalog-category-grid--specialized {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.catalog-category-card--compact .catalog-category-media {
  aspect-ratio: 3 / 2;
}

.catalog-category-card--compact .catalog-category-copy {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  gap: 8px;
  align-items: center;
  padding: 14px;
}

.catalog-category-card--compact .catalog-category-copy h3 {
  font-size: 13px;
}

.catalog-category-card--compact .catalog-category-link {
  min-height: 0;
  margin: 0;
  padding: 0;
  justify-content: end;
}

.catalog-finder {
  display: grid;
  grid-template-columns: minmax(230px, 0.58fr) minmax(360px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  margin-top: 46px;
  padding: 25px 28px;
  border: 1px solid rgba(20, 90, 45, 0.13);
  border-radius: 8px;
  background: #113f23;
  color: #fff;
  box-shadow: 0 18px 44px rgba(15, 61, 32, 0.16);
}

.catalog-finder-copy h2 {
  margin-top: 6px;
  color: #fff;
  font-size: 24px;
}

.catalog-finder-copy .eyebrow {
  color: #f5ad55;
}

.catalog-finder-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.catalog-finder .catalog-tools {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-finder .catalog-search-wrap input {
  min-height: 52px;
  border-color: transparent;
  background: #fff;
}

.catalog-finder .catalog-search-wrap > svg {
  top: 16px;
}

.catalog-finder .catalog-search-clear {
  top: 4px;
}

.catalog-finder .catalog-search-status {
  color: #fff;
}

.catalog-order-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.catalog-order-strip > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 17px;
}

.catalog-order-strip > div + div {
  border-left: 1px solid rgba(17, 21, 19, 0.08);
}

.catalog-order-strip svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--green);
}

.catalog-order-strip span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.catalog-order-strip strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.catalog-products-heading {
  align-items: center;
  margin: 52px 0 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(17, 21, 19, 0.1);
}

.catalog-group-count {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-group .section-head h2 {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .catalog-category-grid--feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-category-grid--specialized,
  .catalog-category-grid--supplements {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-finder {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .catalog-quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-quick-nav a {
    min-height: 54px;
    padding: 9px 10px;
    font-size: 12px;
  }

  .catalog-directory-heading,
  .catalog-products-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .catalog-directory-heading h2,
  .catalog-products-heading h2 {
    font-size: 26px;
  }

  .catalog-category-card--featured {
    grid-template-columns: 1fr;
  }

  .catalog-category-card--featured .catalog-category-media {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .catalog-category-card--featured .catalog-category-copy {
    padding: 21px 18px;
  }

  .catalog-category-card--featured .catalog-category-copy h3 {
    font-size: 23px;
  }

  .catalog-order-strip {
    grid-template-columns: 1fr;
  }

  .catalog-order-strip > div + div {
    border-top: 1px solid rgba(17, 21, 19, 0.08);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .catalog-directory {
    margin-top: 28px;
  }

  .catalog-category-grid {
    gap: 10px;
  }

  .catalog-category-card--featured {
    grid-column: 1 / -1;
  }

  .catalog-category-copy {
    padding: 13px 12px;
  }

  .catalog-category-copy h3 {
    font-size: 13px;
  }

  .catalog-category-copy p,
  .catalog-category-card:not(.catalog-category-card--featured) .catalog-category-link {
    display: none;
  }

  .catalog-category-card:not(.catalog-category-card--featured) .catalog-category-copy {
    min-height: 68px;
    justify-content: center;
  }

  .catalog-directory--separated {
    margin-top: 34px;
    padding-top: 28px;
  }

  .catalog-category-grid--specialized,
  .catalog-category-grid--supplements,
  .catalog-category-grid--staples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-category-card--compact .catalog-category-copy {
    min-height: 72px;
    padding: 11px;
  }

  .catalog-category-card--compact .catalog-category-copy h3 {
    font-size: 12px;
  }

  .catalog-category-media > span {
    left: 7px;
    bottom: 7px;
    padding: 4px 6px;
    font-size: 9px;
  }

  .catalog-finder {
    margin-top: 36px;
    padding: 22px 17px;
  }

  .catalog-finder-copy h2 {
    font-size: 22px;
  }

  .catalog-products-heading {
    margin-top: 38px;
  }
}

/* Product photography is the primary card surface. */
.wide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 26px);
}

.offer-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.offer-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  flex: 0 0 auto;
  border-radius: 0;
  object-fit: cover;
}

.offer-card > div {
  min-height: 210px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px;
}

.offer-card h3 {
  font-size: 17px;
}

.offer-card p {
  font-size: 13px;
  line-height: 1.5;
}

.offer-card strong {
  margin-top: auto;
}

.offer-actions {
  margin-top: 14px;
}

.product-card img {
  object-fit: cover;
}

.product-visual {
  min-height: 0;
  aspect-ratio: 3 / 2;
  padding: 0;
}

.product-visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

@media (max-width: 900px) {
  .wide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .wide-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: 0;
  }

  .offer-card > div {
    min-height: 220px;
  }
}

.category-subhero {
  background-image:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.68)),
    var(--category-image);
  background-position: center right;
  background-size: auto, 58% auto;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .category-subhero {
    background-image:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.78)),
      var(--category-image);
    background-position: center bottom;
    background-size: auto, cover;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 26px;
  }

  .top-benefits,
  .bottom-benefits,
  .category-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons .btn {
    flex-basis: 100%;
  }
}

/* Package B: accessibility, responsive polish and catalog controls */
[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid rgba(239, 129, 24, 0.72);
  outline-offset: 3px;
}

.btn,
.icon-link,
.menu-toggle,
.cart-button,
.mini-cart-button,
.remove-button,
.main-nav a,
.category-card,
.offer-card,
.context-links a {
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

@media (hover: hover) {
  .main-nav a:hover,
  .footer-links a:hover,
  .section-head a:hover,
  .text-link:hover {
    color: var(--orange);
  }

  .category-card:hover,
  .offer-card:hover,
  .product-card:hover {
    transform: translateY(-2px);
    border-color: rgba(20, 90, 45, 0.22);
    box-shadow: 0 18px 38px rgba(24, 33, 28, 0.11);
  }

  .btn-green:hover {
    border-color: var(--green-dark);
    background: var(--green-dark);
  }

  .btn-white:hover,
  .cart-button:hover {
    border-color: rgba(20, 90, 45, 0.42);
    background: #f5f8f2;
  }
}

.icon-link,
.menu-toggle,
.remove-button,
.mini-cart-button,
.product-card button,
.delivery-copy .btn,
.offer-card .btn {
  min-width: 44px;
  min-height: 44px;
}

.mobile-phone-link,
.mobile-action-bar,
.nav-backdrop {
  display: none;
}

.price-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.price-table-wrap .price-table {
  border: 0;
  border-radius: 0;
}

.form-field {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 6px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label,
.cart-quantity-form label {
  color: #1b241f;
  font-size: 12px;
  font-weight: 800;
}

.form-field label span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.form-field label b {
  color: #b84d16;
}

.form-error {
  min-height: 16px;
  color: #a53f18;
  font-size: 11px;
  font-weight: 700;
}

.form-summary-error {
  grid-column: 1 / -1;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fff0e7;
  color: #923c16;
  font-size: 12px;
  font-weight: 700;
}

.order-form [aria-invalid="true"] {
  border-color: #b84d16;
  box-shadow: 0 0 0 3px rgba(184, 77, 22, 0.1);
}

.submit-button[aria-busy="true"] {
  cursor: wait;
}

.catalog-tools {
  margin: 28px 0 4px;
  padding: 18px;
  border: 1px solid rgba(17, 21, 19, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(24, 33, 28, 0.05);
}

.catalog-tools > label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
}

.catalog-search-wrap {
  position: relative;
}

.catalog-search-wrap > svg {
  position: absolute;
  top: 13px;
  left: 14px;
  width: 19px;
  height: 19px;
  color: var(--green);
  pointer-events: none;
}

.catalog-search-wrap input {
  width: 100%;
  min-height: 46px;
  padding: 0 48px 0 44px;
  border: 1px solid rgba(17, 21, 19, 0.16);
  border-radius: 7px;
  background: #fffdf8;
}

.catalog-search-clear {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.catalog-search-clear svg {
  width: 18px;
  height: 18px;
}

.catalog-search-status {
  min-height: 18px;
  margin: 7px 0 0;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.catalog-group-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-group-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(20, 90, 45, 0.18);
  border-radius: 6px;
  background: #fff;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.catalog-group-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.catalog-group-toggle.is-collapsed svg {
  transform: rotate(180deg);
}

.cart-quantity-form label {
  grid-column: 1 / -1;
}

@media (max-width: 1080px) {
  :root {
    --side: 24px;
  }

  body {
    background: var(--paper);
  }

  .page {
    box-shadow: none;
  }

  .site-header {
    z-index: 30;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 0 18px;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: max(18px, calc((100vw - var(--page-width)) / 2 + 18px));
    right: max(18px, calc((100vw - var(--page-width)) / 2 + 18px));
    z-index: 32;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(17, 21, 19, 0.08);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.99);
    box-shadow: 0 18px 46px rgba(24, 33, 28, 0.18);
  }

  .nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    min-height: 48px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 14px;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 25;
    border: 0;
    background: rgba(10, 17, 13, 0.28);
    backdrop-filter: blur(2px);
  }

  .nav-open .nav-backdrop {
    display: block;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    height: auto;
    padding-top: 30px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.99) 0%, rgba(255, 253, 248, 0.84) 55%, rgba(255, 253, 248, 0.18) 100%);
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding: 0 var(--side);
  }

  .hero-art {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: clamp(300px, 48vw, 420px);
    margin-top: 6px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 86%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 86%, transparent 100%);
  }

  .hero-art img {
    object-position: center 42%;
  }

  .main-nav + .header-right {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .page {
    padding-bottom: 70px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 40;
    width: min(100%, var(--page-width));
    min-height: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    transform: translateX(-50%);
    border-top: 1px solid rgba(17, 21, 19, 0.12);
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 -8px 24px rgba(24, 33, 28, 0.08);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    position: relative;
    min-height: 64px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 800;
  }

  .mobile-action-bar svg {
    width: 21px;
    height: 21px;
  }

  .mobile-action-bar b {
    position: absolute;
    top: 8px;
    left: calc(50% + 9px);
    min-width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--orange);
    color: #fff;
    font-size: 9px;
  }

  .mobile-phone-link {
    display: grid;
  }

  .delivery-panel {
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
  }

  .delivery-panel::before {
    display: none;
  }

  .delivery-copy {
    order: 1;
    width: auto;
    padding: 24px 22px 18px;
  }

  .delivery-panel img {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 1896 / 574;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(180deg, #fffdf8, #f1eadc);
  }

  .delivery-copy .btn {
    min-width: 0;
  }

  .catalog-group .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-group-actions {
    justify-content: space-between;
  }

  .product-panel {
    min-width: 0;
    padding: 20px;
  }

  .price-table {
    min-width: 600px;
  }

  .quick-order {
    padding: 22px 18px;
  }
}

/* Non-blocking add-to-cart confirmation. */
.cart-feedback-region {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.cart-feedback {
  --feedback-duration: 8s;
  position: absolute;
  right: clamp(18px, 3vw, 44px);
  bottom: clamp(18px, 3vw, 36px);
  width: min(460px, calc(100vw - 32px));
  min-height: 104px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto 34px;
  gap: 12px;
  align-items: center;
  padding: 15px 12px 17px 15px;
  overflow: hidden;
  border: 1px solid rgba(20, 90, 45, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 252, 0.97);
  box-shadow: 0 22px 56px rgba(24, 38, 29, 0.2), 0 5px 14px rgba(24, 38, 29, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 220ms ease, visibility 220ms;
  pointer-events: none;
  backdrop-filter: blur(18px);
}

.cart-feedback.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cart-feedback-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf5e8;
  color: var(--green);
}

.cart-feedback-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.5;
}

.cart-feedback-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.cart-feedback-copy strong {
  color: #101712;
  font-size: 14px;
  line-height: 1.25;
}

.cart-feedback-copy span {
  overflow-wrap: anywhere;
  color: #2b352f;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.32;
}

.cart-feedback-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.cart-feedback-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--green);
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.cart-feedback-action:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.cart-feedback-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #536159;
  cursor: pointer;
}

.cart-feedback-close:hover {
  background: #f0f3ee;
  color: #121713;
}

.cart-feedback-close svg {
  width: 18px;
  height: 18px;
}

.cart-feedback-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.cart-feedback.is-timing .cart-feedback-progress {
  animation: cart-feedback-timer var(--feedback-duration) linear forwards;
}

.cart-feedback:hover .cart-feedback-progress,
.cart-feedback:focus-within .cart-feedback-progress {
  animation-play-state: paused;
}

.cart-feedback.is-error {
  border-color: rgba(172, 62, 17, 0.22);
}

.cart-feedback.is-error .cart-feedback-icon {
  background: #fff0e8;
  color: #b44917;
}

[data-cart-add] button.is-added {
  border-color: #24713a;
  background: #24713a;
}

[data-cart-add] button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.78;
}

@keyframes cart-feedback-timer {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

@media (max-width: 560px) {
  .cart-feedback {
    right: 12px;
    bottom: 76px;
    width: calc(100vw - 24px);
    min-height: 132px;
    grid-template-columns: 40px minmax(0, 1fr) 34px;
    gap: 10px;
    padding: 13px 11px 15px 13px;
  }

  .cart-feedback-icon {
    width: 40px;
    height: 40px;
  }

  .cart-feedback-copy strong {
    font-size: 13px;
  }

  .cart-feedback-action {
    grid-column: 2 / 4;
    width: 100%;
    min-height: 40px;
  }

  .cart-feedback-close {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-feedback {
    transition: none;
  }

  .cart-feedback-progress {
    display: none;
  }
}

/* Full-width responsive layout aligned with the approved homepage concept. */
:root {
  --page-width: 100%;
  --side: clamp(28px, 4vw, 72px);
}

body {
  background: var(--paper);
}

.page {
  width: 100%;
  max-width: none;
  box-shadow: none;
}

.header-inner {
  min-height: 86px;
  grid-template-columns: 190px minmax(0, 1fr) 300px;
  gap: clamp(18px, 2vw, 34px);
  padding: 0 var(--side);
}

.main-nav {
  gap: clamp(20px, 2.2vw, 38px);
}

.hero {
  height: clamp(430px, 35vw, 560px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(255, 253, 248, 0.99) 0%,
    rgba(255, 253, 248, 0.97) 28%,
    rgba(255, 253, 248, 0.82) 43%,
    rgba(255, 253, 248, 0.24) 58%,
    rgba(255, 253, 248, 0) 72%
  );
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  left: var(--side);
  top: clamp(48px, 4.6vw, 74px);
  width: min(56vw, 760px);
}

.hero-copy h1 {
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.16;
}

.hero-title-line {
  display: block;
  color: inherit;
}

.hero-title-line em {
  color: var(--orange);
  font-style: normal;
}

.hero-copy p {
  margin-top: 24px;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
}

.hero-buttons {
  margin-top: 30px;
}

.hero-buttons .btn {
  min-height: 46px;
  padding-inline: 24px;
}

.top-benefits {
  min-height: 90px;
  padding: 0 var(--side);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(17, 21, 19, 0.06);
}

.benefits {
  gap: clamp(18px, 2.4vw, 42px);
}

.benefits div {
  font-size: 14px;
}

.section {
  padding: 34px var(--side) 0;
}

.section-head {
  margin-bottom: 22px;
}

.category-grid {
  gap: clamp(14px, 1.4vw, 24px);
}

.category-card {
  height: clamp(220px, 17vw, 270px);
}

.category-card img {
  height: 62%;
  object-fit: cover;
}

.category-card span {
  min-height: 38%;
  padding: 18px 42px 14px 16px;
  font-size: 14px;
}

.delivery-panel {
  height: clamp(330px, 27vw, 430px);
  margin: 34px var(--side) 0;
}

.delivery-panel::before {
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.99) 0%, rgba(255, 253, 248, 0.95) 28%, rgba(255, 253, 248, 0.5) 46%, rgba(255, 253, 248, 0) 65%);
}

.delivery-copy {
  width: min(42%, 540px);
  padding: clamp(34px, 3.4vw, 54px) 0 0 clamp(30px, 3vw, 48px);
}

.delivery-copy h2 {
  width: auto;
  font-size: clamp(25px, 2.2vw, 34px);
}

.delivery-copy li {
  font-size: 14px;
}

.products-preview {
  padding-top: 38px;
}

.product-grid {
  gap: clamp(14px, 1.5vw, 24px);
}

.product-card {
  min-height: clamp(315px, 24vw, 385px);
  padding: clamp(14px, 1.4vw, 22px);
}

.product-card img {
  height: clamp(125px, 11vw, 180px);
}

.product-card h3 {
  min-height: 58px;
  margin-top: 18px;
  font-size: 14px;
}

.product-card strong {
  font-size: 19px;
}

.bottom-benefits {
  min-height: 96px;
  margin: 34px var(--side) 0;
}

.mobile-action-bar {
  width: 100%;
}

@media (max-width: 1080px) {
  :root {
    --side: 24px;
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: auto 1fr auto;
    padding: 0 var(--side);
  }

  .hero {
    height: auto;
    display: grid;
    padding-top: 0;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.99) 0%, rgba(255, 253, 248, 0.98) 42%, rgba(255, 253, 248, 0.46) 63%, rgba(255, 253, 248, 0) 78%);
  }

  .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    order: 1;
    width: auto;
    padding: 34px var(--side) 10px;
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(32px, 4.4vw, 44px);
  }

  .hero-art {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: clamp(330px, 47vw, 460px);
    margin: 0;
  }

  .hero-art img {
    object-position: 64% center;
  }

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

  .category-card {
    height: 240px;
  }
}

@media (max-width: 720px) {
  :root {
    --side: 16px;
  }

  .hero-copy {
    padding: 24px var(--side) 8px;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.16;
  }

  .hero-title-line {
    display: inline;
  }

  .hero-copy p {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero-copy p br {
    display: none;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .hero-buttons .btn {
    min-width: 0;
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-art {
    height: 270px;
  }

  .hero-art img {
    object-position: 68% center;
  }

  .top-benefits {
    min-height: 0;
    margin-top: -1px;
    padding: 18px var(--side) 20px;
  }

  .section {
    padding-top: 28px;
  }

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

  .category-card {
    height: 210px;
  }

  .category-card img {
    height: 126px;
  }

  .category-card span {
    min-height: 84px;
    padding: 13px 34px 10px 12px;
    font-size: 12px;
  }

  .delivery-panel {
    margin: 28px var(--side) 0;
  }

  .product-card {
    min-height: 320px;
    padding: 12px;
  }

  .product-card img {
    height: 132px;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 28px;
  }

  .hero-art {
    height: 244px;
  }

  .benefits {
    gap: 14px 10px;
  }

  .benefits div {
    font-size: 12px;
  }

  .category-card {
    height: 198px;
  }

  .category-card img {
    height: 116px;
  }
}

/* Keep the complete footer inside medium-width screens. The desktop row needs
   more horizontal space than a tablet provides, so links get their own row. */
@media (min-width: 561px) and (max-width: 1080px) {
  .site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 20px 24px;
  }

  .site-footer > div,
  .footer-links {
    min-width: 0;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    gap: 10px 16px;
    max-width: 100%;
  }

  .site-footer .footer-viber {
    grid-column: 2;
    grid-row: 1;
  }
}

.offer-price-request {
  color: var(--orange);
  font-size: 17px;
}

.product-request-panel {
  min-height: 178px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-content: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(20, 90, 45, 0.16);
  border-radius: 8px;
  background: #fffdf8;
}

.product-request-panel > svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 7px;
  background: rgba(20, 90, 45, 0.1);
  color: var(--green-dark);
}

.product-request-panel h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

.product-request-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 560px) {
  .product-request-panel {
    min-height: 0;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 18px 16px;
  }

  .product-request-panel > svg {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
}

@media (max-width: 560px) {
  :root {
    --side: 16px;
  }

  .header-right .phone {
    display: none;
  }

  .header-right {
    gap: 2px;
  }

  .icon-link,
  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-copy h1 {
    font-size: 27px;
    line-height: 1.18;
  }

  .hero-art {
    height: 280px;
    margin-top: 2px;
  }

  .hero-art img {
    object-position: 58% 44%;
  }

  .top-benefits {
    margin-top: -8px;
  }

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

  .form-field,
  .form-field-wide,
  .order-form .btn {
    grid-column: 1;
  }

  .catalog-tools {
    padding: 14px;
  }

  .catalog-group-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-group-actions > a,
  .catalog-group-toggle {
    min-height: 44px;
    justify-content: space-between;
  }

  .cart-quantity-form {
    grid-template-columns: 74px minmax(0, 1fr);
  }
}

/* Delivery artwork uses a text-free crop on compact screens. */
.delivery-media {
  position: absolute;
  inset: 0;
  display: block;
}

.delivery-media img {
  display: block;
}

@media (max-width: 720px) {
  .delivery-media {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #fffdf8, #f1eadc);
  }

  .delivery-panel .delivery-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 1196 / 574;
    object-fit: contain;
    object-position: center;
    background: transparent;
  }
}

.hero-art picture {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 560px) {
  .hero {
    padding-top: 0;
  }

  .hero-art {
    height: 280px;
    margin-top: 0;
  }

  .hero-art img {
    object-position: center;
  }

  .top-benefits {
    margin-top: 0;
  }
}

/* Keep the complete desktop scene visible, including the cow's head and horns. */
@media (min-width: 1081px) {
  .hero-art {
    background: var(--paper);
  }

  .hero-art img {
    position: absolute;
    top: 50%;
    right: clamp(44px, 4vw, 80px);
    width: auto;
    height: 94%;
    max-width: none;
    transform: translateY(-50%);
    object-fit: contain;
    object-position: center;
  }
}

/* Premium delivery banner: one photographic transition, without washing out the van. */
@media (min-width: 721px) {
  .delivery-panel {
    isolation: isolate;
    border: 1px solid rgba(30, 65, 39, 0.06);
    background: #fdfbf6;
    box-shadow:
      0 18px 42px rgba(37, 46, 39, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .delivery-media {
    z-index: 0;
  }

  .delivery-panel .delivery-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    filter: saturate(1.02) contrast(1.015);
  }

  .delivery-panel::before {
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(
        90deg,
        rgba(255, 253, 248, 0.78) 0%,
        rgba(255, 253, 248, 0.7) 24%,
        rgba(255, 253, 248, 0.42) 34%,
        rgba(255, 253, 248, 0.16) 42%,
        rgba(255, 253, 248, 0.03) 50%,
        rgba(255, 253, 248, 0) 58%
      ),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(72, 52, 22, 0.04));
  }

  .delivery-copy {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  }
}

@media (max-width: 720px) {
  .delivery-panel {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    margin: 28px var(--side) 0;
    overflow: hidden;
    border: 1px solid rgba(30, 65, 39, 0.06);
    background: #fff;
    box-shadow: 0 14px 32px rgba(37, 46, 39, 0.08);
  }

  .delivery-panel::before {
    display: none;
  }

  .delivery-copy {
    order: 1;
    width: 100%;
    padding: 25px 22px 22px;
  }

  .delivery-copy h2 {
    width: auto;
    font-size: 26px;
    line-height: 1.16;
  }

  .delivery-copy ul {
    gap: 9px;
    margin: 18px 0 20px;
  }

  .delivery-copy li {
    font-size: 13px;
    line-height: 1.35;
  }

  .delivery-media {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    overflow: hidden;
    background: #f4ecdc;
  }

  .delivery-panel .delivery-media img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1196 / 574;
    object-fit: cover;
    object-position: center;
  }
}

/* Homepage depth: commercial guidance, proof, geography and editorial links. */
.home-section,
.home-reading {
  padding: clamp(64px, 6.2vw, 104px) var(--side) 0;
}

.home-section-intro {
  max-width: 760px;
}

.home-section-intro-row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  align-items: end;
  justify-content: space-between;
  gap: clamp(36px, 7vw, 120px);
}

.home-section-intro h2,
.home-trade-heading h2,
.home-expertise h2 {
  margin-top: 10px;
  font-size: clamp(29px, 2.5vw, 42px);
  line-height: 1.12;
  text-wrap: balance;
}

.home-section-intro > p,
.home-section-intro-row > p,
.home-trade-heading > p,
.home-expertise-lead > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
}

.home-section-intro-row > p {
  margin: 0;
}

.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.animal-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(30px, 3.2vw, 48px);
  border-top: 1px solid rgba(17, 21, 19, 0.13);
}

.animal-guide-link {
  min-width: 0;
  min-height: 390px;
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 24px;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 21, 19, 0.13);
  border-right: 1px solid rgba(17, 21, 19, 0.13);
  background: rgba(255, 255, 255, 0.42);
  transition: background-color 180ms ease, color 180ms ease;
}

.animal-guide-link-wide {
  grid-column: span 2;
}

.animal-guide-link:nth-child(4),
.animal-guide-link:nth-child(5) {
  grid-column: span 2;
}

.animal-guide-link:nth-child(3),
.animal-guide-link:last-child {
  border-right: 0;
}

.animal-guide-link img {
  width: 100%;
  height: 245px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.animal-guide-link > span {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding-right: 36px;
}

.animal-guide-link b {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.25;
}

.animal-guide-link small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.animal-guide-link > svg,
.producer-links > a > svg,
.reading-links > a > svg {
  position: absolute;
  right: 24px;
  bottom: 25px;
  width: 20px;
  height: 20px;
  color: var(--green);
}

.animal-guide-link:hover {
  background: #fff;
}

.home-trade-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(54px, 8vw, 140px);
  margin-top: clamp(68px, 7vw, 116px);
  padding: clamp(54px, 5vw, 84px) var(--side);
  background: #edf2ea;
}

.home-trade-heading > p {
  max-width: 590px;
}

.home-trade-options {
  display: grid;
  align-content: center;
}

.home-trade-option {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(20, 90, 45, 0.2);
}

.home-trade-option:first-child {
  padding-top: 0;
}

.home-trade-option:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-trade-option > svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(20, 90, 45, 0.22);
  border-radius: 6px;
  color: var(--green);
}

.home-trade-option h3 {
  margin: 0;
  font-size: 19px;
}

.home-trade-option p {
  max-width: 660px;
  margin: 9px 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.home-trade-option a,
.home-expertise a,
.home-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.home-trade-option a svg,
.home-expertise a svg,
.home-inline-link svg {
  width: 16px;
  height: 16px;
}

.producer-links {
  margin-top: clamp(30px, 3.2vw, 48px);
  border-top: 1px solid rgba(17, 21, 19, 0.15);
}

.producer-links > a {
  min-height: 108px;
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 18px;
  padding: 20px 8px;
  border-bottom: 1px solid rgba(17, 21, 19, 0.15);
  transition: color 180ms ease, padding 180ms ease;
}

.producer-number {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.producer-links > a > span:nth-child(2) {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
  align-items: baseline;
  gap: 24px;
}

.producer-links b {
  font-size: clamp(21px, 1.8vw, 28px);
}

.producer-links small {
  color: var(--muted);
  font-size: 14px;
}

.producer-links > a > svg {
  position: static;
  justify-self: end;
}

.producer-links > a:hover {
  padding-left: 18px;
  color: var(--green);
}

.home-expertise {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 8vw, 140px);
  margin-top: clamp(68px, 7vw, 116px);
  padding: clamp(58px, 5.5vw, 94px) var(--side);
  background: var(--green-dark);
  color: #fff;
}

.home-expertise h2 {
  color: #fff;
}

.home-expertise .home-eyebrow {
  color: #f4a24d;
  max-width: 100%;
  line-height: 1.45;
}

.home-legal-id {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.company-tax-id {
  color: var(--green-dark) !important;
  font-weight: 850;
}

.home-expertise-lead > p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.74);
}

.home-expertise-lead > a {
  margin-top: 24px;
  color: #fff;
}

.expertise-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
}

.expertise-points > div {
  min-width: 0;
  padding: 8px 28px 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.expertise-points > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.expertise-points > div:last-child {
  padding-right: 0;
}

.expertise-points svg {
  width: 28px;
  height: 28px;
  color: #f4a24d;
}

.expertise-points h3 {
  min-height: 48px;
  margin: 25px 0 10px;
  font-size: 17px;
  line-height: 1.35;
}

.expertise-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.62;
}

.expertise-points a {
  margin-top: 14px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.region-groups {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(40px, 6vw, 90px);
  margin-top: clamp(34px, 3.6vw, 54px);
}

.region-group h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 17px;
}

.region-group h3 svg {
  width: 21px;
  height: 21px;
  color: var(--orange);
}

.region-group > p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 13px;
}

.region-link-list {
  border-top: 1px solid rgba(17, 21, 19, 0.14);
}

.region-link-list > a {
  min-height: 66px;
  display: grid;
  grid-template-columns: minmax(115px, 0.7fr) minmax(0, 1fr) 22px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(17, 21, 19, 0.14);
}

.region-link-list b {
  font-size: 15px;
}

.region-link-list small {
  color: var(--muted);
  font-size: 12px;
}

.region-link-list svg {
  width: 17px;
  height: 17px;
  justify-self: end;
  color: var(--green);
}

.region-link-list-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
}

.region-link-list-compact > a {
  grid-template-columns: minmax(0, 1fr) 22px;
  grid-template-rows: auto auto;
  gap: 4px 10px;
  padding-block: 10px;
}

.region-link-list-compact > a b {
  grid-column: 1;
  grid-row: 1;
}

.region-link-list-compact > a small {
  grid-column: 1;
  grid-row: 2;
}

.region-link-list-compact > a svg {
  grid-column: 2;
  grid-row: 1 / 3;
}

.region-link-list > a:hover b {
  color: var(--green);
}

.home-inline-link {
  margin-top: 24px;
}

.home-reading {
  margin-top: clamp(68px, 7vw, 116px);
  padding-top: clamp(58px, 5vw, 84px);
  padding-bottom: clamp(58px, 5vw, 84px);
  background: #f0eee6;
}

.reading-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(30px, 3vw, 46px);
  border-top: 1px solid rgba(17, 21, 19, 0.15);
  border-bottom: 1px solid rgba(17, 21, 19, 0.15);
}

.reading-links > a {
  min-width: 0;
  min-height: 250px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 25px 48px 25px 24px;
  border-right: 1px solid rgba(17, 21, 19, 0.15);
  transition: background-color 180ms ease;
}

.reading-links > a:last-child {
  border-right: 0;
}

.reading-links > a:hover {
  background: rgba(255, 255, 255, 0.5);
}

.reading-links > a > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.reading-links > a > span svg {
  width: 18px;
  height: 18px;
}

.reading-links b {
  margin-top: auto;
  font-size: 18px;
  line-height: 1.35;
}

.reading-links small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.reading-links > a > svg {
  right: 22px;
  bottom: 27px;
}

.home-faq {
  padding-bottom: clamp(22px, 2.5vw, 38px);
}

.home-faq-list {
  margin-top: clamp(30px, 3vw, 46px);
  border-top: 1px solid rgba(17, 21, 19, 0.15);
}

.home-faq-list details {
  border-bottom: 1px solid rgba(17, 21, 19, 0.15);
}

.home-faq-list summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 24px;
  padding: 10px 2px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 800;
}

.home-faq-list summary::-webkit-details-marker {
  display: none;
}

.home-faq-list summary svg {
  width: 22px;
  height: 22px;
  justify-self: end;
  color: var(--green);
  transition: transform 180ms ease;
}

.home-faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.home-faq-list p {
  max-width: 820px;
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .home-section-intro-row,
  .home-trade-band,
  .home-expertise {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 42px;
  }

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

  .animal-guide-link-wide {
    grid-column: span 2;
  }

  .animal-guide-link:nth-child(4),
  .animal-guide-link:nth-child(5) {
    grid-column: auto;
  }

  .animal-guide-link {
    border-right: 1px solid rgba(17, 21, 19, 0.13);
  }

  .animal-guide-link:nth-child(odd),
  .animal-guide-link:last-child {
    border-right: 0;
  }

  .expertise-points {
    grid-template-columns: 1fr;
  }

  .expertise-points > div,
  .expertise-points > div:first-child,
  .expertise-points > div:last-child {
    display: grid;
    grid-template-columns: 36px minmax(150px, 0.5fr) minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .expertise-points > div:last-child {
    border-bottom: 0;
  }

  .expertise-points h3,
  .expertise-points p {
    min-height: 0;
    margin: 0;
  }

  .expertise-points a {
    grid-column: 2 / 4;
    margin: 0;
  }

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

  .reading-links > a:nth-child(2) {
    border-right: 0;
  }

  .reading-links > a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 21, 19, 0.15);
  }
}

@media (max-width: 760px) {
  .home-section,
  .home-reading {
    padding-top: 56px;
  }

  .home-section-intro-row,
  .home-trade-band,
  .home-expertise,
  .region-groups {
    grid-template-columns: 1fr;
  }

  .home-section-intro-row,
  .home-trade-band,
  .home-expertise,
  .region-groups {
    gap: 30px;
  }

  .home-trade-band,
  .home-expertise {
    margin-top: 64px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .home-section-intro-row > p {
    margin: 0;
  }

  .producer-links > a > span:nth-child(2) {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .region-link-list-compact {
    column-gap: 20px;
  }
}

@media (max-width: 560px) {
  .home-section,
  .home-reading {
    padding-top: 48px;
  }

  .home-section-intro h2,
  .home-trade-heading h2,
  .home-expertise h2 {
    font-size: 27px;
  }

  .animal-guide-grid {
    grid-template-columns: 1fr;
  }

  .animal-guide-link,
  .animal-guide-link-wide {
    grid-column: auto;
    min-height: 0;
    grid-template-columns: 108px minmax(0, 1fr);
    grid-template-rows: 108px;
    align-items: center;
    gap: 16px;
    padding: 14px 38px 14px 0;
    border-right: 0;
    background: transparent;
  }

  .animal-guide-link img {
    height: 108px;
    border-radius: 6px;
  }

  .animal-guide-link > span {
    padding-right: 0;
  }

  .animal-guide-link b {
    font-size: 16px;
  }

  .animal-guide-link small {
    font-size: 12px;
  }

  .animal-guide-link > svg {
    right: 2px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .home-trade-option {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
  }

  .home-trade-option > svg {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .producer-links > a {
    min-height: 92px;
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 12px;
  }

  .producer-links b {
    font-size: 20px;
  }

  .producer-links small {
    font-size: 12px;
  }

  .expertise-points > div,
  .expertise-points > div:first-child,
  .expertise-points > div:last-child {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .expertise-points p {
    grid-column: 2;
  }

  .expertise-points a {
    grid-column: 2;
  }

  .region-link-list > a {
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) 22px;
    gap: 10px;
  }

  .region-link-list > a small {
    grid-column: 1;
    margin-top: -12px;
  }

  .region-link-list > a svg {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .region-link-list-compact {
    grid-template-columns: 1fr;
  }

  .reading-links {
    grid-template-columns: 1fr;
  }

  .reading-links > a,
  .reading-links > a:nth-child(2),
  .reading-links > a:nth-child(-n + 2) {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 21, 19, 0.15);
  }

  .reading-links > a:last-child {
    border-bottom: 0;
  }

  .home-faq-list summary {
    min-height: 70px;
    font-size: 15px;
  }
}

/* CRO actions, empty-cart flow and responsive commerce tables. */
.site-footer small {
  max-width: 360px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.subhero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.subhero-actions .btn {
  min-width: 176px;
}

#product-prices,
#price-list,
#category-products,
#regional-products,
#manufacturer-products,
#manufacturer-list,
#wholesale-products,
#faq-sections,
#why-kombilex,
#quick-order {
  scroll-margin-top: 96px;
}

.cart-layout.cart-layout--empty {
  grid-template-columns: minmax(0, 1fr);
}

.empty-cart {
  max-width: 760px;
  min-height: 330px;
  align-content: center;
  margin: 0 auto;
  text-align: left;
}

.empty-cart > p {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.65;
}

.empty-cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.empty-cart-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 10px;
}

.empty-cart-links a {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .price-table-wrap,
  .table-scroll {
    overflow: visible;
    border: 0;
  }

  .responsive-price-table,
  .price-table-wrap .responsive-price-table,
  .table-scroll .responsive-price-table {
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .responsive-price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .responsive-price-table,
  .responsive-price-table tbody {
    display: block;
    width: 100%;
  }

  .responsive-price-table tbody {
    display: grid;
    gap: 12px;
  }

  .responsive-price-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(20, 90, 45, 0.14);
    border-radius: 8px;
    background: #fffdf8;
    box-shadow: 0 8px 20px rgba(24, 33, 28, 0.05);
  }

  .responsive-price-table td,
  .responsive-price-table tr:last-child td {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 4px;
    padding: 12px;
    border-right: 1px solid rgba(17, 21, 19, 0.07);
    border-bottom: 1px solid rgba(17, 21, 19, 0.07);
    overflow-wrap: anywhere;
    font-size: 14px;
  }

  .responsive-price-table td:nth-child(even) {
    border-right: 0;
  }

  .responsive-price-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .responsive-price-table .table-product-cell,
  .responsive-price-table .table-action-cell {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .responsive-price-table .table-product-cell {
    padding: 14px 12px;
    background: rgba(20, 90, 45, 0.045);
  }

  .responsive-price-table .table-product-link {
    font-size: 15px;
    line-height: 1.35;
  }

  .responsive-price-table .table-action-cell {
    padding: 10px 12px 12px;
    border-bottom: 0;
  }

  .responsive-price-table .table-action-cell::before {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .responsive-price-table .mini-cart-button {
    min-height: 46px;
    font-size: 13px;
  }

  .product-panel .responsive-price-table td[data-label^="Цена за"] {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .price-group {
    padding: 18px 14px;
  }
}

@media (max-width: 560px) {
  .subhero-actions,
  .empty-cart-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .subhero-actions .btn,
  .empty-cart-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .empty-cart {
    min-height: 0;
    padding: 28px 2px;
  }
}

/* Image geometry audit: preserve complete product photography and avoid the
   abrupt desktop-to-tablet hero jump while keeping every surface stable. */
@media (min-width: 901px) and (max-width: 1080px) {
  .hero {
    height: clamp(430px, 45vw, 490px);
    display: block;
    padding-top: 0;
  }

  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(255, 253, 248, 0.99) 0%,
      rgba(255, 253, 248, 0.97) 30%,
      rgba(255, 253, 248, 0.8) 45%,
      rgba(255, 253, 248, 0.2) 61%,
      rgba(255, 253, 248, 0) 74%
    );
  }

  .hero-copy {
    position: absolute;
    left: var(--side);
    top: 42px;
    z-index: 3;
    width: min(57vw, 610px);
    padding: 0;
  }

  .hero-copy h1 {
    max-width: 610px;
    font-size: clamp(34px, 4vw, 43px);
  }

  .hero-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background: var(--paper);
  }

  .hero-art img {
    position: absolute;
    top: 50%;
    right: 24px;
    width: auto;
    height: 94%;
    max-width: none;
    transform: translateY(-50%);
    object-fit: contain;
    object-position: center;
  }
}

@media (min-width: 1081px) and (max-width: 1280px) {
  .header-inner {
    grid-template-columns: 170px minmax(0, 1fr) 250px;
    gap: 12px;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .header-right {
    gap: 8px;
  }

  .header-right .phone strong {
    font-size: 14px;
  }
}

/* All current catalog photographs are authored at 3:2. Rendering them at the
   same ratio prevents pellets, grain and packaging from being clipped. */
.product-card img,
.offer-card > img,
.product-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.product-visual {
  aspect-ratio: 3 / 2;
}

.category-card {
  height: auto;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(78px, 1fr);
}

.category-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.category-card span {
  min-height: 78px;
}

/* Category imagery is decorative but still needs its complete subject in view.
   Height-based sizing avoids cutting off heads in the shallow subhero. */
.category-subhero {
  background-position: center right;
  background-size: auto, auto 100%;
}

.category-subhero-image {
  display: none;
}

.product-subhero {
  background-image:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.68)),
    var(--product-image);
  background-position: center right;
  background-size: auto, auto 100%;
  background-repeat: no-repeat;
}

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

@media (max-width: 900px) {
  .category-subhero,
  .product-subhero {
    min-height: 0;
    align-items: start;
    padding-bottom: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #fffdf8, #f6f1e5);
  }

  .category-subhero-image,
  .product-subhero-image {
    width: calc(100% + (var(--side) * 2));
    max-width: none;
    height: auto;
    display: block;
    aspect-ratio: 3 / 2;
    margin: 26px calc(var(--side) * -1) 0;
    object-fit: contain;
    object-position: center;
    background: #f4f1e8;
  }
}

@media (max-width: 560px) {
  .product-card img,
  .offer-card > img,
  .product-visual img {
    aspect-ratio: 3 / 2;
  }

  .category-card {
    grid-template-rows: auto minmax(72px, 1fr);
  }

  .category-card img {
    height: auto;
  }

  .category-card span {
    min-height: 72px;
  }

  .category-subhero-image,
  .product-subhero-image {
    margin-top: 22px;
  }
}

/* Direct, extractable answer block for people and answer engines. */
.answer-summary {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(300px, 1fr) minmax(330px, 0.82fr);
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
  margin: 28px var(--side) 0;
  padding: clamp(24px, 2.5vw, 36px);
  border: 1px solid rgba(20, 90, 45, 0.12);
  border-radius: 8px;
  background: linear-gradient(115deg, rgba(239, 247, 235, 0.84), rgba(255, 253, 248, 0.98) 58%);
}

.answer-summary-heading {
  min-width: 0;
}

.answer-summary h2 {
  margin-top: 7px;
  font-size: clamp(22px, 1.8vw, 28px);
}

.answer-summary > p {
  margin: 0;
  color: #27312c;
  font-size: 15px;
  line-height: 1.7;
}

.answer-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 90, 45, 0.12);
  border-radius: 7px;
  background: rgba(20, 90, 45, 0.12);
}

.answer-facts div {
  min-width: 0;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.92);
}

.answer-facts dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.answer-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #15251b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.article-answer-summary {
  margin-top: 0;
}

.article-answer-summary > .text-link {
  justify-self: end;
}

.animal-guide-link img {
  object-fit: contain;
  object-position: center;
  background: #f4f1e8;
}

.info-grid-heading {
  grid-column: 1 / -1;
  min-width: 0;
  margin-bottom: 2px;
}

.info-grid-heading h2 {
  margin-top: 6px;
}

.catalog-page > .info-grid-heading {
  margin: 28px 0 20px;
}

/* Editorial imagery can include panoramic delivery scenes as well as 3:2
   product photographs. Contain keeps the actual subject visible in both. */
.knowledge-feature > img,
.rubric-card img,
.editorial-card-image img,
.rubric-hero > img,
.article-hero > img {
  object-fit: contain;
  object-position: center;
  background: #f4f1e8;
}

@media (max-width: 1080px) {
  .answer-summary {
    grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  }

  .answer-facts,
  .article-answer-summary > .text-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .answer-summary {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;
    padding: 22px 18px;
  }

  .answer-facts,
  .article-answer-summary > .text-link {
    grid-column: auto;
  }

  .answer-facts {
    grid-template-columns: 1fr;
  }

  .article-answer-summary > .text-link {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .rubric-card img,
  .editorial-card-image img {
    width: 116px;
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
    align-self: start;
  }

  .crumbs {
    align-items: center;
    row-gap: 5px;
    overflow-wrap: anywhere;
  }

  .crumbs > * {
    min-width: 0;
  }
}

/* Visual price list: product photography stays visible while package prices
   remain compact enough for quick comparison and repeated ordering. */
.price-category-nav {
  display: flex;
  gap: 10px;
  margin: 24px var(--side) 0;
  padding: 2px 0 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.price-category-nav a {
  min-width: 164px;
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(20, 90, 45, 0.16);
  border-radius: 7px;
  background: #fff;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  scroll-snap-align: start;
}

.price-category-nav small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.visual-price-layout {
  gap: clamp(42px, 5vw, 76px);
  margin-top: 34px;
}

.visual-price-group {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scroll-margin-top: 96px;
}

.visual-price-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20, 90, 45, 0.18);
}

.visual-price-group-head h2 {
  margin-top: 6px;
}

.visual-price-count {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(20, 90, 45, 0.08);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 850;
}

.visual-price-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.visual-price-product {
  min-width: 0;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  grid-template-areas:
    "media copy"
    "variants variants";
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 19, 0.09);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 33, 28, 0.07);
}

.visual-price-media {
  grid-area: media;
  min-width: 0;
  min-height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid rgba(17, 21, 19, 0.07);
  border-bottom: 1px solid rgba(17, 21, 19, 0.07);
  background: #f5f2e9;
}

.visual-price-media img {
  width: 100%;
  height: 150px;
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: center;
}

.visual-price-copy {
  grid-area: copy;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 7px 12px;
  align-content: center;
  padding: 16px 16px 10px;
}

.visual-price-copy span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-price-copy h3 {
  font-size: 16px;
  line-height: 1.25;
}

.visual-price-copy h3 a {
  color: #17251c;
}

.visual-price-copy p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.visual-price-detail {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 90, 45, 0.2);
  border-radius: 50%;
  color: var(--green-dark);
}

.visual-price-detail svg {
  width: 16px;
  height: 16px;
}

.visual-price-variants {
  grid-area: variants;
  min-width: 0;
  padding: 12px 16px 16px;
}

.visual-price-variant-table {
  min-width: 0;
  border-color: rgba(20, 90, 45, 0.12);
  background: #fffdf8;
  font-size: 12px;
}

.visual-price-variant-table th,
.visual-price-variant-table td {
  padding: 8px 9px;
}

.visual-price-variant-table th:last-child,
.visual-price-variant-table td:last-child {
  width: 118px;
}

.visual-price-variant-table .mini-cart-button {
  min-width: 100px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.visual-price-variant-table .mini-cart-button svg {
  width: 15px;
  height: 15px;
}

@media (hover: hover) {
  .price-category-nav a:hover,
  .visual-price-detail:hover {
    border-color: rgba(20, 90, 45, 0.42);
    background: #f5f8f2;
  }

  .visual-price-product:hover {
    border-color: rgba(20, 90, 45, 0.22);
    box-shadow: 0 18px 38px rgba(24, 33, 28, 0.1);
  }
}

@media (max-width: 1280px) {
  .visual-price-products {
    grid-template-columns: 1fr;
  }

  .visual-price-product {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .visual-price-media img {
    height: 150px;
  }
}

@media (max-width: 720px) {
  .price-category-nav {
    margin-top: 18px;
  }

  .price-category-nav a {
    min-width: 150px;
  }

  .visual-price-layout {
    gap: 40px;
    margin-top: 26px;
  }

  .visual-price-group {
    padding: 0;
  }

  .visual-price-group-head {
    align-items: center;
    margin-bottom: 12px;
  }

  .visual-price-products {
    gap: 12px;
  }

  .visual-price-product {
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-areas:
      "media copy"
      "variants variants";
  }

  .visual-price-media {
    min-height: 104px;
    border-right: 1px solid rgba(17, 21, 19, 0.07);
    border-bottom: 1px solid rgba(17, 21, 19, 0.07);
  }

  .visual-price-media img {
    height: 104px;
    max-height: none;
  }

  .visual-price-copy {
    align-content: center;
    padding: 12px;
  }

  .visual-price-copy h3 {
    font-size: 15px;
  }

  .visual-price-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .visual-price-detail {
    width: 32px;
    height: 32px;
  }

  .visual-price-variants {
    padding: 10px;
  }

  .visual-price-variants .responsive-price-table,
  .visual-price-variants .responsive-price-table tbody {
    width: 100%;
    display: block;
  }

  .visual-price-variants .responsive-price-table tbody {
    display: grid;
    gap: 6px;
  }

  .visual-price-variants .responsive-price-table tr {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 0.85fr) 92px;
    align-items: stretch;
    border: 1px solid rgba(20, 90, 45, 0.11);
    border-radius: 6px;
    background: #fffdf8;
    box-shadow: none;
  }

  .visual-price-variants .responsive-price-table td,
  .visual-price-variants .responsive-price-table tr:last-child td {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 8px 6px;
    border-right: 1px solid rgba(17, 21, 19, 0.06);
    border-bottom: 0;
    overflow-wrap: normal;
    font-size: 12px;
  }

  .visual-price-variants .responsive-price-table td::before {
    color: var(--muted);
    font-size: 8px;
    line-height: 1;
  }

  .visual-price-variants .responsive-price-table .table-action-cell {
    grid-column: auto;
    width: auto;
    min-width: 0;
    padding: 5px;
    border-right: 0;
  }

  .visual-price-variants .responsive-price-table .table-action-cell::before {
    display: none;
  }

  .visual-price-variants .responsive-price-table .mini-cart-button {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 8px;
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .visual-price-copy p {
    display: none;
  }

  .visual-price-variants .responsive-price-table tr {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.95fr) 46px;
  }

  .visual-price-variants .responsive-price-table .mini-cart-button {
    width: 100%;
    padding: 0;
  }

  .visual-price-variants .responsive-price-table .mini-cart-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

/* Consolidated category routes keep the homepage concise while preserving
   direct SEO pages inside the catalog. */
.category-card--grouped span {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.category-card--grouped strong {
  display: block;
  font-size: 13px;
  line-height: 1.34;
}

.category-card--grouped small {
  display: block;
  color: var(--green);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 900;
}

.catalog-quick-nav {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.catalog-category-grid--bedding,
.catalog-category-grid--equipment {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-directory.is-anchor-highlighted {
  animation: catalog-anchor-highlight 1800ms ease-out;
}

@keyframes catalog-anchor-highlight {
  0% {
    background-color: rgba(244, 165, 74, 0.16);
    box-shadow: 0 0 0 10px rgba(244, 165, 74, 0.16);
  }
  100% {
    background-color: transparent;
    box-shadow: 0 0 0 10px rgba(244, 165, 74, 0);
  }
}

@media (max-width: 1100px) {
  .catalog-quick-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .catalog-quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .category-card--grouped {
    grid-template-rows: auto minmax(82px, 1fr);
  }

  .category-card--grouped span {
    min-height: 82px;
    padding: 11px 30px 10px 11px;
  }

  .category-card--grouped strong {
    font-size: 11px;
  }

  .category-card--grouped small {
    font-size: 9px;
  }

  .catalog-category-grid--bedding,
  .catalog-category-grid--equipment {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-directory.is-anchor-highlighted {
    animation: none;
  }
}

/* Tall farm equipment is supplied in square photographs. These scoped rules
   preserve the complete product instead of cropping it into the 3:2 frame. */
.offer-card--contained-image > img,
.product-card--contained-image img,
.product-visual--contained-image img,
.catalog-category-card--contained-image .catalog-category-media img,
.category-card--contained-image img {
  object-fit: contain;
  object-position: center;
  padding: 12px;
  background: #f4f1e8;
}

.product-visual--contained-image {
  background: #f4f1e8;
}

.product-subhero--contained-image,
.category-subhero--contained-image {
  background-size: auto, auto 86%;
}

.visual-price-media--contained-image img {
  padding: 10px;
}

.cart-product-image--contained {
  padding: 5px;
}

@media (max-width: 900px) {
  .product-subhero-image--contained,
  .category-subhero-image--contained {
    padding: 16px;
    background: #f4f1e8;
  }
}

@media (max-width: 560px) {
  .offer-card--contained-image > img,
  .product-card--contained-image img,
  .product-visual--contained-image img,
  .catalog-category-card--contained-image .catalog-category-media img,
  .category-card--contained-image img {
    padding: 10px;
  }

  .product-visual--contained-image img {
    padding: 14px;
  }
}
