:root {
  --page: #f2f0eb;
  --paper: #f8f7f2;
  --ink: #090909;
  --muted: #5f5f5a;
  --line: rgba(0,0,0,.13);
  --line-strong: rgba(0,0,0,.28);
  --yellow: #d99b13;
  --yellow-2: #f1bc34;
  --black: #080808;
  --radius: 18px;
  --container: min(1440px, calc(100vw - 36px));
  --gutter: clamp(20px, 4.2vw, 72px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: #050505;
  color: var(--ink);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.35;
}
body::selection { background: var(--yellow); color: #000; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.site-shell {
  width: 100%;
  margin: 0 auto;
  background:
    linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px),
    var(--page);
  background-size: 52px 52px, 52px 52px, auto;
  border-radius: 0;
  overflow: hidden;
  min-height: 100vh;
}

.topbar {
  height: 86px;
  display: grid;
  grid-template-columns: minmax(110px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  padding: 0 var(--gutter);
  position: sticky;
  top: 10px;
  z-index: 80;
  border: 1px solid rgba(0,0,0,.12);
  border-top: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  background: rgba(248,247,242,.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  margin-top: 10px;
}
.topbar__left { display: flex; align-items: center; gap: 22px; }
.brand { font-weight: 950; font-size: 34px; letter-spacing: -.07em; }
.topnav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 30px);
  font-size: 16px;
}
.topnav a { position: relative; }
.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--ink);
  transition: width .24s ease;
}
.topnav a:hover::after { width: 100%; }
.menu-button {
  width: 44px;
  height: 36px;
  border: 0;
  background: transparent;
  display: grid;
  gap: 7px;
  padding: 5px 0;
}
.menu-button span { height: 3px; background: #050505; display: block; }
.topbar__contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: max-content;
}
.topbar__contacts a,
.topbar__contacts button {
  min-height: 40px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.58);
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  font-weight: 900;
}
.topbar__contacts button {
  background: #111;
  color: #fff;
}

.site-search {
  position: relative;
  z-index: 70;
  width: min(100%, var(--container));
  margin: 16px auto 0;
  padding: 0 var(--gutter);
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  min-height: 40px;
}
.site-search__control {
  min-height: 40px;
  /*max-width: 620px;*/
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 6px;
  background: rgba(248,247,242,.72);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 4px 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.site-search:focus-within .site-search__control {
  border-color: rgba(217,155,19,.65);
  box-shadow: 0 0 0 3px rgba(217,155,19,.12);
}
.site-search__icon {
  display: none;
}
.site-search input {
  min-width: 0;
  height: 30px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
}
.site-search__clear {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0,0,0,.13);
  border-radius: 5px;
  background: rgba(0,0,0,.04);
  padding: 0;
  font-weight: 900;
}
.site-search__suggestions {
  left: var(--gutter);
  right: auto;
  top: calc(100% + 4px);
  width: min(620px, calc(100vw - var(--gutter) * 2));
}

.section { padding: clamp(48px, 6vw, 92px) var(--gutter); }
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.24fr);
  gap: clamp(28px, 5vw, 72px);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .91;
  text-transform: none;
}
h1 {
  margin: 0 0 34px;
  font-size: clamp(68px, 6.3vw, 124px);
  text-transform: uppercase;
}
h2 { font-size: clamp(40px, 5.1vw, 82px); }
h3 { letter-spacing: -.035em; }

.hero {
  min-height: 730px;
  padding: clamp(72px, 8vw, 122px) var(--gutter) 0;
  align-items: end;
  position: relative;
}
.hero__copy {
  padding-bottom: clamp(74px, 10vw, 140px);
  position: relative;
  z-index: 3;
}
.hero__lead {
  width: min(440px, 100%);
  font-size: clamp(17px, 1.3vw, 22px);
  color: #242421;
  margin-bottom: 38px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  min-height: 58px;
  border: 1px solid var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 30px;
  background: transparent;
  color: var(--black);
  font-weight: 720;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: var(--black); color: #fff; }
.btn--outline { background: rgba(248,247,242,.35); }
.btn--light { border-color: rgba(255,255,255,.6); color: #fff; background: transparent; }
.btn span { font-size: 24px; line-height: 1; }

.hero__visual {
  align-self: stretch;
  position: relative;
  min-height: 630px;
  margin-right: calc(var(--gutter) * -1);
  overflow: visible;
}
.hero__letters {
  position: absolute;
  z-index: 1;
  left: -8%;
  top: 11%;
  width: min(780px, 64vw);
  opacity: .78;
  pointer-events: none;
}
.hero__machine {
  position: absolute;
  z-index: 3;
  right: -7%;
  bottom: -5%;
  width: min(1080px, 86vw);
  max-width: none;
  filter: saturate(1.03) contrast(1.03);
}
.hero__pager {
  position: absolute;
  z-index: 4;
  right: 5.2vw;
  top: 18%;
  display: grid;
  gap: 22px;
  font-size: 22px;
  color: #858580;
}
.hero__pager span, .hero__pager strong { display: block; position: relative; }
.hero__pager span::after, .hero__pager strong::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: rgba(0,0,0,.16);
  margin-top: 14px;
}
.hero__pager strong { color: #000; }
.hero__pager strong::before {
  content: "";
  width: 2px;
  height: 34px;
  background: var(--yellow);
  position: absolute;
  right: -42px;
  top: -5px;
}

.stats-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(246,244,238,.78);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.6);
  padding: 30px var(--gutter);
}
.stats-panel__item {
  min-height: 78px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(10px, 2vw, 28px);
}
.stats-panel__item:first-child { padding-left: 0; }
.stats-panel__item:last-child { border-right: 0; }
.stats-panel strong { font-size: clamp(28px, 3vw, 44px); line-height: 1; letter-spacing: -.06em; }
.stats-panel span { color: var(--muted); margin-top: 5px; }

.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 18px; max-width: 580px; }

.why { border-top: 1px solid var(--line); }
.why .section-head h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.advantage-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.advantage-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.3));
  min-height: 260px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.advantage-card::before {
  content: "";
  min-height: 118px;
  border: 1px dashed rgba(0,0,0,.18);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(0,0,0,.08), transparent),
    rgba(230,228,219,.72);
  margin-bottom: 22px;
}
.advantage-card:nth-child(2) {
  transform: translateY(28px);
}
.advantage-card:nth-child(3)::before {
  min-height: 154px;
}
.advantage-card span {
  width: max-content;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
  background: rgba(255,255,255,.64);
}
.advantage-card h3 { margin: 22px 0 10px; font-size: clamp(24px, 2.3vw, 34px); }
.advantage-card p { color: var(--muted); margin-bottom: 0; font-size: 17px; }

.catalog-section { border-top: 1px solid var(--line); align-items: start; }
.catalog-section__head { position: sticky; top: 24px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.category-card {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(248,247,242,.74);
  display: grid;
  grid-template-rows: 165px 1fr;
}
.category-card__media { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.category-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.05));
}
.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.category-card:hover .category-card__media img { transform: scale(1.045); }
.category-card__media span {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(248,247,242,.88);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-weight: 900;
}
.category-card__body { padding: 22px; display: flex; flex-direction: column; justify-content: space-between; }
.category-card h3 { font-size: 28px; margin-bottom: 8px; }
.category-card p { color: var(--muted); margin-bottom: 28px; }
.category-card__footer { display: flex; justify-content: space-between; align-items: center; }
.category-card small { color: #2a2926; font-weight: 800; }
.category-card button {
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-size: 24px;
}

.supply { border-top: 1px solid var(--line); align-items: stretch; }
.supply__panel {
  border: 1px solid var(--line);
  padding: clamp(30px, 4vw, 54px);
  background: rgba(255,255,255,.38);
}
.supply__panel p:not(.eyebrow) { color: var(--muted); font-size: 18px; margin-bottom: 32px; }
.supply__steps { display: grid; gap: 12px; }
.supply__steps article {
  border: 1px solid var(--line);
  background: rgba(248,247,242,.6);
  padding: 28px;
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 18px;
  align-items: start;
}
.supply__steps b { font-size: 40px; letter-spacing: -.08em; color: var(--yellow); line-height: 1; }
.supply__steps h3 { font-size: 26px; margin-bottom: 8px; }
.supply__steps p { grid-column: 2; color: var(--muted); margin-bottom: 0; }

.parts-band {
  min-height: 480px;
  margin: 0 clamp(10px, 1vw, 18px);
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #090909;
  color: #fff;
  position: relative;
  display: grid;
  grid-template-columns: 1fr .86fr;
}
.parts-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .35;
}
.parts-band__image { position: relative; overflow: hidden; }
.parts-band__image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(90%) brightness(98.1%) contrast(155%);
  opacity: .8;
}
.parts-band__copy {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 5vw, 72px);
  align-self: end;
}
.parts-band h2 { color: #fff; }
.parts-band p:not(.eyebrow) { color: rgba(255,255,255,.74); font-size: 18px; }

.service { align-items: center; border-top: 1px solid var(--line); }
.service__image {
  min-height: 580px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #e9e6df;
}
.service__image img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; }
.service__copy ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 34px;
  border-top: 1px solid var(--line);
}
.service__copy li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: #252522;
  font-size: 18px;
}
.service__copy li::before { content: "—"; margin-right: 12px; color: var(--yellow); font-weight: 900; }

.cases { border-top: 1px solid var(--line); }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.case-grid article {
  border: 1px solid var(--line);
  min-height: 230px;
  background: rgba(248,247,242,.72);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case-grid span { font-size: 34px; font-weight: 950; color: var(--yellow); letter-spacing: -.08em; }
.case-grid h3 { font-size: 28px; margin-bottom: 10px; }
.case-grid p { color: var(--muted); margin-bottom: 0; }

.lead-block {
  border-top: 1px solid var(--line);
  /*background: rgba(255,255,255,.28);*/
  align-items: start;
}

.lead-block h2 {
  font-size: clamp(38px, 11vw, 58px);
}

.lead-block p:not(.eyebrow) { color: var(--muted); max-width: 520px; font-size: 18px; }
.inline-form {
  border: 1px solid var(--line);
  background: rgba(248,247,242,.78);
  padding: 24px;
  display: grid;
  gap: 12px;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.62);
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  outline: none;
}
textarea { min-height: 116px; padding-top: 15px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: #000; }
input:focus, textarea:focus, select:focus { border-color: #000; }
.form-status { margin: 0; min-height: 20px; color: var(--muted); }
.form-status.is-error { color: #a40000; }
.form-status.is-success { color: #226321; }

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 34px var(--gutter);
  border-top: 1px solid var(--line);
  color: #262622;
}
.footer strong { font-size: 30px; letter-spacing: -.07em; }
.footer p { max-width: 500px; color: var(--muted); margin: 6px 0 0; }
.footer div:nth-child(2) { display: grid; gap: 8px; text-align: right; font-weight: 800; }
.footer small { grid-column: 1 / -1; color: var(--muted); }

.lead-modal[hidden], .mobile-menu[hidden] { display: none; }
.lead-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 18px; }
.lead-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.54); backdrop-filter: blur(5px); }
.lead-modal__card {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
  padding: 30px;
  display: grid;
  gap: 12px;
}
.lead-modal__card h2 { font-size: 46px; margin-bottom: 0; }
.lead-modal__card p { color: var(--muted); margin: 0; }
.lead-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-size: 28px;
  line-height: 1;
}

.contact-island {
  position: fixed;
  right: max(24px, calc((100vw - 1440px) / 2 + 24px));
  bottom: 24px;
  z-index: 70;
  display: grid;
  justify-items: end;
  gap: 10px;
}
.contact-island__toggle {
  min-width: 118px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 48px rgba(0,0,0,.32), 0 0 0 0 rgba(217,155,19,.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  animation: contactPulse 2.35s ease-in-out infinite;
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}
.contact-island__toggle b {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #050505;
  line-height: 1;
  transition: transform .24s ease;
}
.contact-island__toggle:hover { transform: translateY(-3px) scale(1.02); }
.contact-island.is-open .contact-island__toggle,
.contact-island:focus-within .contact-island__toggle { animation-play-state: paused; }
.contact-island.is-open .contact-island__toggle b,
.contact-island:focus-within .contact-island__toggle b { transform: rotate(45deg); }
.contact-island__panel {
  width: min(310px, calc(100vw - 48px));
  background: rgba(8,8,8,.94);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 12px;
  display: grid;
  gap: 8px;
  box-shadow: 0 26px 70px rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.94);
  visibility: hidden;
  transition: opacity .24s ease, transform .24s ease, visibility 0s linear .24s;
}
.contact-island.is-open .contact-island__panel,
.contact-island:focus-within .contact-island__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}
.contact-island__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-island__head b { display: block; font-size: 18px; letter-spacing: -.03em; }
.contact-island__head span { display: block; margin-top: 2px; color: rgba(255,255,255,.62); font-size: 13px; }
.contact-island__head button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}
.contact-island__panel a {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px;
  background: rgba(255,255,255,.035);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.contact-island__panel a:hover {
  background: rgba(217,155,19,.16);
  border-color: rgba(217,155,19,.52);
  transform: translateX(-3px);
}
.contact-island__panel a span { color: var(--yellow-2); font-size: 20px; }

@media (max-width: 1180px) {
  .topnav { display: none; }
  .topbar {
    grid-template-columns: auto minmax(0, 1fr) 44px;
  }
  .menu-button {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .topbar__left {
    grid-column: 1;
    grid-row: 1;
  }
  .topbar__contacts {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
  }
  .hero, .section-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero__copy { padding-bottom: 10px; }
  .hero__visual {
    min-height: 480px;
    margin-right: 0;
    margin-left: -18px;
  }
  .hero__machine { width: min(1120px, 124vw); right: -18vw; }
  .hero__letters { width: min(720px, 96vw); left: -2%; top: 5%; }
  .catalog-section__head { position: static; }
  .parts-band { grid-template-columns: 1fr; }
  .parts-band__image { min-height: 270px; }
}

@media (max-width: 760px) {
  :root { --container: 100vw; }
  .site-shell { margin: 0; border-radius: 0; min-height: 100vh; }
  .topbar { height: 72px; padding: 0 12px; grid-template-columns: auto minmax(0, 1fr) 34px; gap: 12px; top: 8px; margin-top: 8px; }
  .brand { font-size: 26px; }
  .topbar__left { gap: 18px; }
  .menu-button { width: 34px; }
  .topbar__contacts a { display: none; }
  .topbar__contacts button { min-height: 36px; padding: 0 9px; font-size: 13px; }
  .site-search { min-height: 40px; margin-top: 14px; padding: 0 18px; }
  .site-search__control { max-width: none; }
  .site-search__suggestions { left: 18px; right: 18px; width: auto; }
  .site-search input { font-size: 14px; }
  .hero { padding: 40px 18px 0; }
  h1 { font-size: clamp(58px, 17vw, 84px); }
  h2 { font-size: clamp(38px, 11vw, 58px); }
  .hero__lead { font-size: 16px; }
  .hero__actions .btn { width: 100%; justify-content: space-between; }
  .hero__visual { min-height: 410px; margin-left: -18px; margin-right: -18px; overflow: hidden; }
  .hero__letters { width: 118vw; left: -22vw; top: 8%; }
  .hero__machine { width: 980px; right: -470px; bottom: -20px; }
  .hero__pager { display: none; }
  .stats-panel { grid-template-columns: repeat(2,1fr); padding: 18px; }
  .stats-panel__item { border-bottom: 1px solid var(--line); padding: 18px 0; }
  .stats-panel__item:nth-child(2n) { border-right: 0; padding-left: 18px; }
  .stats-panel__item:nth-child(n+3) { border-bottom: 0; }
  .section { padding: 54px 18px; }
  .advantage-grid, .category-grid, .case-grid { grid-template-columns: 1fr; }
  .advantage-card:nth-child(2) { transform: none; }
  .category-card { min-height: 330px; }
  .supply__steps article { grid-template-columns: 1fr; }
  .supply__steps p { grid-column: auto; }
  .parts-band { margin: 0; border-radius: 0; }
  .footer { grid-template-columns: 1fr; }
  .footer div:nth-child(2) { text-align: left; }
  .contact-island { right: 14px; bottom: 14px; }
  .contact-island__panel { width: calc(100vw - 28px); }
  .lead-modal__card { padding: 24px 18px; }
}


/* Motion polish */
.site-shell {
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 58% 24%, rgba(241,188,52,.18), transparent 30%);
  pointer-events: none;
  animation: heroGlow 7s ease-in-out infinite alternate;
}
.hero__copy, .topbar, .hero__visual {
  animation: introLift .72s cubic-bezier(.2,.8,.2,1) both;
}
.hero__visual { animation-delay: .08s; }
.hero__visual img {
  will-change: transform;
  transition: transform .35s ease;
}
.hero__badge {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 1px;
  min-width: 124px;
  padding: 13px 15px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  background: rgba(248,247,242,.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 52px rgba(0,0,0,.11);
  animation: floatBadge 5.4s ease-in-out infinite;
}
.hero__badge b { font-size: 25px; line-height: 1; letter-spacing: -.06em; }
.hero__badge span { color: var(--muted); font-size: 13px; }
.hero__badge--one { left: 2%; bottom: 18%; }
.hero__badge--two { right: 12%; bottom: 9%; animation-delay: -2s; }
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255,255,255,.22) 48%, transparent 61%);
  transform: translateX(-120%);
  transition: transform .6s ease;
  pointer-events: none;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover span { transform: translateX(4px); }
.btn span { transition: transform .22s ease; }
.category-card, .advantage-card, .case-grid article, .supply__steps article, .supply__panel, .service__image, .inline-form {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.category-card:hover, .advantage-card:hover, .case-grid article:hover, .supply__steps article:hover {
  transform: translateY(-7px);
  border-color: rgba(217,155,19,.45);
  box-shadow: 0 22px 54px rgba(0,0,0,.08);
  background: rgba(255,255,255,.5);
}
.category-card button:hover {
  background: var(--black);
  color: #fff;
  transform: rotate(-12deg) scale(1.04);
}
.category-card button { transition: transform .22s ease, background .22s ease, color .22s ease; }
.parts-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 42%, rgba(255,255,255,.11) 50%, transparent 58%);
  transform: translateX(-120%);
  animation: bandSweep 6s ease-in-out infinite;
  pointer-events: none;
}
.service__copy li {
  position: relative;
  transition: padding-left .22s ease, color .22s ease;
}
.service__copy li:hover { padding-left: 8px; color: #000; }
.stats-panel strong { font-variant-numeric: tabular-nums; }
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s cubic-bezier(.2,.8,.2,1), transform .72s cubic-bezier(.2,.8,.2,1);
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.category-grid .js-reveal:nth-child(2), .advantage-grid .js-reveal:nth-child(2), .case-grid .js-reveal:nth-child(2) { transition-delay: .08s; }
.category-grid .js-reveal:nth-child(3), .advantage-grid .js-reveal:nth-child(3), .case-grid .js-reveal:nth-child(3) { transition-delay: .16s; }
.category-grid .js-reveal:nth-child(4) { transition-delay: .24s; }
@keyframes introLift {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroGlow {
  from { opacity: .45; transform: translate3d(-1%, 0, 0); }
  to { opacity: 1; transform: translate3d(2%, 1%, 0); }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes contactPulse {
  0% { box-shadow: 0 18px 48px rgba(0,0,0,.32), 0 0 0 0 rgba(217,155,19,.55); }
  70% { box-shadow: 0 18px 48px rgba(0,0,0,.32), 0 0 0 18px rgba(217,155,19,0); }
  100% { box-shadow: 0 18px 48px rgba(0,0,0,.32), 0 0 0 0 rgba(217,155,19,0); }
}
@keyframes bandSweep {
  0%, 56% { transform: translateX(-120%); }
  76%, 100% { transform: translateX(120%); }
}
@media (max-width: 760px) {
  .hero__badge { display: none; }
  .contact-island { right: 14px; bottom: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .js-reveal { opacity: 1; transform: none; }
}

/* UI refinement pass: calmer page, wider layout, stronger contact form */
.topbar,
.hero,
.stats-panel,
.section,
.footer {
  width: min(100%, var(--container));
  margin-left: auto;
  margin-right: auto;
}

.site-shell {
  box-shadow: none;
}

.hero::before,
.parts-band::after {
  content: none;
  animation: none;
}

.hero__visual img {
  box-shadow: none;
}

.lead-modal {
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
}

.lead-modal__backdrop {
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(8px);
  animation: modalBackdropIn .24s ease both;
}

.lead-modal__card {
  width: min(980px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  padding: 0;
  border-radius: 28px;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(420px, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.72);
  background: #f7f5ef;
  box-shadow: 0 34px 120px rgba(0,0,0,.42);
  animation: modalCardIn .34s cubic-bezier(.2,.8,.2,1) both;
}

.lead-modal__info {
  min-height: 620px;
  background: #090909;
  color: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.lead-modal__info::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .34;
  pointer-events: none;
}

.lead-modal__visual,
.lead-modal__contacts {
  position: relative;
  z-index: 1;
}

.lead-modal__visual {
  min-height: 315px;
  border-radius: 22px;
  overflow: hidden;
  background: #171717;
  display: flex;
  align-items: flex-end;
}

.lead-modal__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .64;
  filter: saturate(.88) contrast(1.08) brightness(.72);
}

.lead-modal__visual div {
  position: relative;
  z-index: 1;
  padding: 20px;
  display: grid;
  gap: 8px;
}

.lead-modal__visual span {
  width: max-content;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 950;
  letter-spacing: -.05em;
  background: rgba(0,0,0,.32);
}

.lead-modal__visual b {
  max-width: 270px;
  font-size: 26px;
  line-height: .98;
  letter-spacing: -.055em;
}

.lead-modal__contacts {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
}

.lead-modal__contacts .eyebrow {
  color: rgba(255,255,255,.58);
  margin-bottom: 12px;
}

.lead-modal__contacts > a {
  display: block;
  width: max-content;
  max-width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -.025em;
  margin: 8px 0;
}

.lead-modal__contacts > a:hover,
.lead-modal__socials a:hover {
  opacity: .78;
}

.lead-modal__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.lead-modal__socials a {
  min-height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.lead-modal__form {
  padding: clamp(24px, 4vw, 30px);
  display: grid;
  gap: 13px;
  align-content: start;
}

.lead-modal__card h2 {
  font-size: clamp(38px, 4.2vw, 58px);
  margin: 0;
  max-width: 560px;
}

.lead-modal__hint {
  color: var(--muted);
  margin: 0 0 4px;
  max-width: 560px;
  font-size: 17px;
}

.lead-modal__context {
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(0,0,0,.13);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.55);
  color: #2d2d29 !important;
  font-size: 13px;
  font-weight: 850;
}

.lead-modal__close {
  z-index: 5;
  top: 18px;
  right: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(8px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.lead-form input,
.lead-form textarea,
.lead-form select {
  border-radius: 15px;
  border: 1px solid rgba(0,0,0,.15);
  background: rgba(255,255,255,.76);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(0,0,0,.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(217,155,19,.13);
}

.file-drop {
  min-height: 112px;
  border: 1.5px dashed rgba(0,0,0,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.48);
  padding: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #20201d;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.file-drop input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-drop span {
  display: block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.025em;
}

.file-drop small {
  color: var(--muted);
  margin-top: 4px;
}

.file-drop.is-dragover {
  border-color: rgba(217,155,19,.8);
  background: rgba(241,188,52,.18);
  transform: translateY(-2px);
}

.file-drop--compact {
  min-height: 92px;
}

.file-list {
  display: grid;
  gap: 6px;
}

.file-list:empty {
  display: none;
}

.file-pill {
  min-height: 36px;
  border: 1px solid rgba(0,0,0,.11);
  border-radius: 999px;
  padding: 0 8px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255,255,255,.62);
  font-size: 13px;
}

.file-pill button {
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.08);
  line-height: 1;
}

.inline-form {
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.84), rgba(248,247,242,.6)),
    var(--paper);
  box-shadow: 0 24px 72px rgba(0,0,0,.08);
}

@keyframes modalBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalCardIn {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
  .lead-modal__card {
    grid-template-columns: 1fr;
  }
  .lead-modal__info {
    min-height: auto;
  }
  .lead-modal__visual {
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: 100vw;
    --gutter: 18px;
  }
  .lead-modal {
    padding: 10px;
    align-items: end;
  }
  .lead-modal__card {
    max-height: 94vh;
    border-radius: 22px 22px 0 0;
  }
  .lead-modal__info {
    display: none;
  }
  .lead-modal__form {
    padding: 24px 16px 18px;
  }
  .form-grid,
  .form-grid--inline {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-modal__backdrop,
  .lead-modal__card {
    animation: none !important;
  }
}

/* UI pass 2: less noise, stronger catalog/delivery/footer */
:root {
  --container: min(1540px, calc(100vw - 32px));
}

body {
  background:
    radial-gradient(circle at 14% -8%, rgba(217,155,19,.22), transparent 30vw),
    radial-gradient(circle at 82% 8%, rgba(255,255,255,.12), transparent 28vw),
    #050505;
}

.site-shell {
  position: relative;
  isolation: isolate;
  background: var(--page);
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.site-shell::before {
  background:
    radial-gradient(ellipse at 72% 8%, rgba(217,155,19,.12), transparent 34%),
    radial-gradient(ellipse at 8% 52%, rgba(0,0,0,.055), transparent 35%),
    repeating-radial-gradient(circle at 76% 24%, transparent 0 28px, rgba(0,0,0,.035) 29px 30px, transparent 31px 62px),
    linear-gradient(115deg, transparent 0 45%, rgba(0,0,0,.035) 45.2% 45.55%, transparent 45.8% 100%);
  opacity: .72;
}

.site-shell::after {
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(0,0,0,.026) 19px 20px),
    radial-gradient(circle at 22% 88%, rgba(255,255,255,.7), transparent 32%);
  mix-blend-mode: multiply;
  opacity: .58;
}

.topbar,
.hero,
.stats-panel,
.section,
.footer,
.catalog-hero,
.catalog-layout {
  width: min(100%, var(--container));
  margin-left: auto;
  margin-right: auto;
}

.hero__visual img {
  transition: none;
  will-change: auto;
  filter: saturate(110%) brightness(100%) contrast(108.6%) blur(0px) sepia(0.4%);
}

.delivery-strip .delivery-strip__copy h2 {
  font-size: clamp(40px, 5.1vw, 69px);
}

.delivery-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(248,247,242,.52);
}

.delivery-strip__copy p:not(.eyebrow) {
  color: var(--muted);
  max-width: 620px;
  font-size: 18px;
}

.delivery-strip__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.delivery-strip__facts span {
  min-height: 40px;
  border: 1px solid rgba(0,0,0,.13);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: rgba(255,255,255,.54);
  font-weight: 850;
  font-size: 14px;
}

.delivery-strip__map {
  min-height: clamp(560px, 54vw, 760px);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(229,226,217,.62));
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 24px 70px rgba(0,0,0,.08);
}

.delivery-strip__map::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  pointer-events: none;
}
.delivery-map__stage {
  position: absolute;
  inset: 8px 6px;
  display: grid;
  place-items: center;
}
.delivery-map__stage svg {
  position: relative;
  z-index: 1;
  width: min(100%, 1480px);
  height: 100%;
  object-fit: contain;
  transform-origin: center center;
  pointer-events: auto;
}
.delivery-map__stage rect,
.delivery-map__stage [id="logo"] > rect {
  fill: transparent !important;
}
.delivery-map__stage path {
  cursor: pointer;
  outline: none;
  pointer-events: all;
  transition: fill .18s ease, opacity .18s ease, filter .18s ease, transform .18s ease;
}
.delivery-map__stage path:hover,
.delivery-map__stage path:focus,
.delivery-map__stage .is-map-active {
  fill: #f1bc34 !important;
  opacity: 1;
  filter: drop-shadow(0 7px 10px rgba(0,0,0,.24));
}
.delivery-map__stage .is-map-auto {
  fill: #d99b13 !important;
  animation: map-region-glow 1.45s ease-in-out both;
}
.delivery-strip__map::after {
  content: attr(data-region-title);
  position: absolute;
  left: var(--region-label-x, 50%);
  top: var(--region-label-y, 50%);
  z-index: 3;
  max-width: min(300px, calc(100% - 28px));
  padding: 8px 10px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 8px;
  background: rgba(17,17,17,.92);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -100%) scale(.96);
  transition: opacity .16s ease, transform .16s ease;
  box-shadow: 0 16px 34px rgba(0,0,0,.2);
}
.delivery-strip__map.has-region-label::after {
  opacity: 0;
  transform: translate(-50%, -100%) scale(.96);
}
.delivery-map__fallback {
  color: var(--muted);
  font-weight: 900;
}

@keyframes map-region-glow {
  0% {
    opacity: .72;
    filter: drop-shadow(0 0 0 rgba(217,155,19,0));
  }
  38% {
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(217,155,19,.72));
  }
  100% {
    opacity: 1;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,.22));
  }
}

.footer {
  grid-template-columns: minmax(260px, .74fr) minmax(520px, 1.26fr);
  align-items: start;
  gap: clamp(28px, 5vw, 80px);
  padding-top: 52px;
  padding-bottom: 44px;
}

.footer__contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  text-align: left !important;
}

.footer__contacts a {
  min-height: 58px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  padding: 11px 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,.46);
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.footer__contacts a:hover {
  transform: translateY(-3px);
  border-color: rgba(217,155,19,.45);
  background: rgba(255,255,255,.74);
}

.footer__contacts span {
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
  margin-top: 2px;
}

.contact-island {
  align-items: end;
}

.contact-island__panel {
  visibility: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(360px, calc(100vw - 48px));
}

.contact-island__head {
  grid-column: 1 / -1;
}

.contact-island.is-open .contact-island__panel,
.contact-island:focus-within .contact-island__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.contact-island:hover .contact-island__panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(.94);
}

.contact-island__panel a {
  min-height: 46px;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  white-space: nowrap;
}

.contact-island__panel a:last-child,
.contact-island__panel a:nth-last-child(2) {
  grid-column: auto;
}

.contact-island__panel a span {
  flex: 0 0 auto;
  align-self: auto;
  margin-top: 0;
}

/* Catalog */
.site-shell--catalog {
  min-height: 100vh;
}

.catalog-hero {
  padding: clamp(44px, 6vw, 86px) var(--gutter) 34px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  margin-bottom: 15px;
  font-size: 14px;
}

.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs b { color: var(--ink); }

.catalog-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, .92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.catalog-hero h1 {
  font-size: clamp(56px, 7vw, 118px);
  margin-bottom: 22px;
}

.catalog-hero__lead {
  color: var(--muted);
  max-width: 620px;
  font-size: clamp(17px, 1.4vw, 22px);
}

.catalog-search {
  position: relative;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 26px;
  padding: 16px;
  background: rgba(248,247,242,.78);
  box-shadow: 0 24px 72px rgba(0,0,0,.08);
}

.catalog-search label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 10px 4px;
}

.catalog-search__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.catalog-search input {
  min-height: 60px;
  border-radius: 18px;
  background: #fff;
}

.catalog-search__reset {
  display: inline-flex;
  margin: 12px 0 0 4px;
  color: var(--muted);
  font-weight: 800;
}

.site-search__suggestions {
  position: absolute;
  z-index: 20;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 6px;
  background: rgba(242,240,235,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(0,0,0,.14);
  padding: 6px;
  display: grid;
  gap: 6px;
}

.site-search__suggestions[hidden] {
  display: none !important;
}

.suggest-group {
  display: grid;
  gap: 4px;
  padding: 0;
}

.suggest-item {
  min-height: 52px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 10px;
  padding: 5px;
  background: rgba(248,247,242,.54);
}

.suggest-item:hover {
  background: rgba(217,155,19,.11);
  border-color: rgba(217,155,19,.42);
}

.suggest-item i {
  width: 52px;
  height: 42px;
  border-radius: 3px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.08);
  color: #111;
  font-style: normal;
  font-weight: 950;
}
.suggest-item img {
  width: 52px;
  height: 42px;
  border-radius: 3px;
  object-fit: cover;
  background: rgba(0,0,0,.08);
}

.suggest-item b { display: block; color: #111; font-size: 14px; line-height: 1.1; letter-spacing: 0; }
.suggest-item span { display: block; color: var(--muted); font-size: 12px; }
.suggest-item--category { border-left: 3px solid var(--yellow); }
.suggest-item--product { border-left: 3px solid #4fa472; }

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(8px, 0.7vw, 14px);
  align-items: start;
  border-top: 0;
  padding-top: 34px;
}

.catalog-sidebar {
  position: sticky;
  top: 158px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 26px;
  background: rgba(248,247,242,.72);
  padding: 12px;
}

.catalog-sidebar__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px 14px;
  font-size: 18px;
  font-weight: 950;
}

.catalog-sidebar__head span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  font-size: 13px;
}

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

.catalog-category-pill {
  min-height: 72px;
  border: 1px solid transparent;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  background: rgba(255,255,255,.45);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.catalog-category-pill--all {
  grid-template-columns: 1fr auto;
  min-height: 44px;
  padding-left: 12px;
  background: rgba(17,17,17,.08);
}

.catalog-category-pill:hover,
.catalog-category-pill.is-active {
  transform: translateX(4px);
  border-color: rgba(217,155,19,.42);
  background: rgba(255,255,255,.82);
}

.catalog-category-pill img {
  width: 58px;
  height: 54px;
  object-fit: cover;
  border-radius: 13px;
  /*background: #ddd;*/
}

.catalog-category-pill span {
  font-weight: 900;
  letter-spacing: -.025em;
}

.catalog-category-pill small {
  color: var(--muted);
  font-weight: 900;
}

.catalog-results__bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.catalog-results__bar h2 {
  font-size: clamp(38px, 4.4vw, 68px);
  margin: 0;
}
.catalog-title-panel {
  border: none;
  border-radius: 12px;
  background: none;
  padding: clamp(18px, 3vw, 28px);
  margin-bottom: 18px;
}
.catalog-title-panel .breadcrumbs { margin-bottom: 18px; }
.catalog-title-panel .eyebrow { margin-bottom: 8px; font-size: 10px; }
.catalog-title-panel h1 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1;
  letter-spacing: -.05em;
}
.catalog-filters {
  border-top: 1px solid rgba(0,0,0,.1);
  margin-top: 12px;
  padding: 14px 4px 4px;
  display: grid;
  gap: 14px;
}
.catalog-filters > b { padding: 0 6px; font-size: 18px; letter-spacing: -.025em; }
.catalog-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 4px;
}
.catalog-filter-group span {
  flex: 0 0 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.catalog-filter-group a,
.catalog-active-filters a {
  min-height: 32px;
  border: 1px solid color-mix(in srgb, var(--badge-color, #111) 45%, rgba(0,0,0,.12));
  border-radius: 999px;
  background: color-mix(in srgb, var(--badge-color, #fff) 12%, #fff 88%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  font-size: 13px;
  font-weight: 900;
}
.catalog-filter-group a.is-active,
.catalog-filter-group a:hover,
.catalog-active-filters a:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}
.catalog-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 18px;
}
.catalog-active-filters__reset { color: var(--muted); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  min-height: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 4px;
  background: rgba(248,247,242,.74);
  overflow: hidden;
  display: grid;
  grid-template-rows: 210px 1fr;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,155,19,.42);
  box-shadow: 0 24px 68px rgba(0,0,0,.1);
}

.product-card__image,
.product-card__media {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.045);
}

.product-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card__meta,
.product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-card__meta a,
.product-card__meta span,
.product-card__specs span {
  min-height: auto;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.product-card h3 {
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.02;
  margin: 0;
}

.product-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.product-card__footer {
  margin-top: auto;
  padding-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__footer b {
  font-size: 20px;
  letter-spacing: -.035em;
}

.product-card__footer button {
  min-height: 40px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  padding: 0 14px;
  font-weight: 900;
}

.empty-catalog {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 52px);
  background: rgba(255,255,255,.55);
}

.empty-catalog h3 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 12px;
}

.empty-catalog p {
  color: var(--muted);
  max-width: 560px;
  font-size: 18px;
}

@media (max-width: 1180px) {
  .delivery-strip,
  .catalog-hero__grid,
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .catalog-sidebar {
    position: static;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root { --container: 100vw; }
  .delivery-strip__map { min-height: 300px; border-radius: 20px; }
  .catalog-search__box { grid-template-columns: 1fr; }
  .catalog-layout, .catalog-hero { padding-left: 18px; padding-right: 18px; }
  .product-grid, .footer__contacts { grid-template-columns: 1fr; }
  .catalog-results__bar { align-items: stretch; flex-direction: column; }
  .catalog-results__bar .btn { width: 100%; justify-content: space-between; }
  .contact-island__panel { grid-template-columns: 1fr; width: calc(100vw - 28px); }
  .contact-island__panel a:last-child,
  .contact-island__panel a:nth-last-child(2) { grid-column: auto; }
  .footer { grid-template-columns: 1fr; }
}

/* UI pass: less sterile, cleaner catalog/navigation */
:root {
  --radius: 12px;
  --container: min(1540px, calc(100vw - 32px));
}
.site-shell {
  background:
    radial-gradient(circle at 12% 18%, rgba(217,155,19,.16), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(0,0,0,.08), transparent 22%),
    linear-gradient(135deg, rgba(0,0,0,.045) 0 1px, transparent 1px 28px),
    linear-gradient(90deg, rgba(255,255,255,.34), rgba(255,255,255,0) 38%),
    var(--page);
  background-size: auto, auto, 28px 28px, auto, auto;
}
.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image: radial-gradient(rgba(0,0,0,.18) .65px, transparent .65px);
  background-size: 9px 9px;
  mix-blend-mode: multiply;
}
.btn, .catalog-search input, .lead-modal__card, .catalog-sidebar, .category-card, .advantage-card, .footer__contacts a { border-radius: 12px !important; }
.hero__machine, .hero__letters { transition: none !important; animation: none !important; transform: none !important; }

.topnav__catalog { position: relative; padding: 32px 0; margin: -32px 0; }
.mega-catalog {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  width: min(1120px, calc(100vw - 48px));
  transform: translateX(-24%) translateY(12px);
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.16);
  background: rgba(246,244,238,.96);
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.topnav__catalog.is-open .mega-catalog {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-24%) translateY(0);
}
.mega-catalog__roots {
  display: grid;
  grid-auto-rows: minmax(52px, auto);
  gap: 6px;
  align-content: start;
}
.mega-catalog__children {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(56px, auto);
  gap: 8px;
}
.mega-catalog__roots a, .mega-catalog__children a {
  min-height: 52px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.48);
  font-weight: 900;
  line-height: 1.08;
}
.mega-catalog__roots img, .mega-catalog__children img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  /*border-radius: 6px;*/
  /*background: #ddd;*/
}
.mega-catalog__roots span,
.mega-catalog__children span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.mega-catalog__roots a.is-active, .mega-catalog__roots a:hover, .mega-catalog__children a:hover {  border-color: #111; }
.mega-catalog__roots small, .mega-catalog__children small { color: inherit; opacity: .62; }
.mega-catalog__content {
  height: min(58vh, 430px);
  min-height: 360px;
  overflow: hidden;
  padding: 12px;
  background: rgba(255,255,255,.46);
  border: 1px solid rgba(0,0,0,.08);
}

.mega-catalog__pane { display: none; }
.mega-catalog__pane.is-active {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  height: 100%;
}
.mega-catalog__pane b { font-size: 24px; letter-spacing: -.04em; display: block; }
.mega-catalog__pane span { color: var(--muted); font-weight: 800; }
.mega-catalog__pane > div:first-child {
  min-height: 58px;
}
.mega-catalog__pane .mega-catalog__children {
  min-height: 0;
  overflow: auto;
  align-content: start;
  padding-right: 4px;
}

.catalog-section { border-top: 1px solid var(--line); display: grid; gap: 26px; }
.catalog-section__head { position: static; max-width: 920px; }
.catalog-section__head .btn { margin-top: 10px; }
.home-catalog { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: start; }
.home-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.home-category {
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: minmax(132px, 1fr) auto auto;
  gap: 10px 12px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.46);
  font-weight: 950;
  overflow: hidden;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.home-category.is-active,
.home-category:hover {
  border-color: color-mix(in srgb, var(--category-accent, #d99b13) 62%, transparent);
  background: rgba(255,255,255,.82);
}
.home-category:hover { transform: translateY(-2px); }
.home-category__media {
  grid-column: 1 / -1;
  position: relative;
  min-height: 138px;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
}
.home-category__media > img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  transition: transform .28s ease;
}
.home-category:hover .home-category__media > img { transform: scale(1.035); }
.home-category__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0,0,0,.4));
  pointer-events: none;
}
.home-category__thumbs {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  display: flex;
  gap: 6px;
}
.home-category__thumbs img {
  width: 46px;
  height: 36px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 5px;
  background: #ddd;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.home-category__body {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.home-category__body b {
  font-size: 18px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.home-category__body em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}
.home-category small {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  padding: 0 8px;
  border: 1px solid color-mix(in srgb, var(--category-accent, #d99b13) 48%, rgba(0,0,0,.16));
  border-radius: 4px;
  background: color-mix(in srgb, var(--category-accent, #d99b13) 12%, rgba(255,255,255,.72));
  color: color-mix(in srgb, var(--category-accent, #d99b13) 76%, #000);
  font-size: 12px;
  white-space: nowrap;
}
.home-products { min-width: 0; }
.home-products__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; font-weight: 950; }
.home-products__head b { font-size: 28px; letter-spacing: -.04em; }
.home-products__head a { color: var(--muted); }
.product-grid--home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-grid--home .product-card { grid-template-rows: auto 1fr; }
.product-grid--home .product-card__media { aspect-ratio: 16 / 9; }
.product-card { background: rgba(248,247,242,.82); box-shadow: 0 1px 0 rgba(255,255,255,.7) inset; }
.product-card__media { position: relative; overflow: hidden; background: #ddd; }
.product-card__image { position: absolute; inset: 0; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.product-card__video, .product-gallery__video {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  background: #111;
  color: var(--yellow-2);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-card__badges,
.product-gallery__badges {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  pointer-events: none;
}
.product-card__badges a,
.product-card__badges span,
.product-gallery__badges a,
.product-gallery__badges span,
.product-card__meta a,
.product-card__meta span,
.product-summary__badges a,
.product-summary__badges span {
  min-height: 28px;
  border: 1px solid color-mix(in srgb, var(--badge-color, #111) 70%, transparent);
  border-radius: 4px;
  background: color-mix(in srgb, var(--badge-color, #111) 14%, transparent);
  color: color-mix(in srgb, var(--badge-color, #111) 74%, #000);
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  font-weight: 950;
  font-size: 12px;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.product-card__badges a,
.product-card__badges span,
.product-gallery__badges a {
  pointer-events: auto;
}
.product-card__badges a:hover,
.product-card__badges span:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.product-card__badges .product-card__video,
.product-gallery__badges .product-card__video {
  border-color: #111;
  background: #111;
  color: var(--yellow-2);
}
.product-card__meta a,
.product-card__meta span {
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
}
.product-card__spec-table { display: grid; grid-template-columns: 1fr; gap: 5px; margin: 12px 0 0; }
.product-card__spec-table span { min-height: 38px; border: 1px solid rgba(0,0,0,.11); background: rgba(255,255,255,.52); padding: 6px 9px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.product-card__spec-table small { color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.product-card__spec-table b { font-size: 14px; letter-spacing: -.02em; text-align: right; }
.product-card p, .product-card__specs { display: none; }
.product-card__footer button { border-radius: 8px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0,0,0,.34);
  opacity: 0;
  transition: opacity .18s ease;
  padding: 0;
  display: block;
}
.mobile-menu.is-open { opacity: 1; }
.mobile-menu__card {
  width: min(430px, 100vw);
  height: 100vh;
  min-height: 100vh;
  margin: 0 0 0 auto;
  background: rgba(246,244,238,.98);
  border-left: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 28px 90px rgba(0,0,0,.32);
  transform: translateX(100%);
  transition: transform .22s ease;
  overflow: hidden;
  display: grid;
  grid-template-rows: 68px minmax(0, 1fr);
}
.mobile-menu.is-open .mobile-menu__card { transform: translateX(0); }
.mobile-menu__top { height: 68px; padding: 0 16px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(0,0,0,.12); }
.mobile-menu__top b { font-size: 24px; letter-spacing: -.04em; }
.mobile-menu__top button, .mobile-menu__panel button { border: 0; background: #111; color: #fff; min-height: 38px; padding: 0 13px; font-size: 16px; font-weight: 900; }
.mobile-menu__viewport { position: relative; min-height: 0; overflow: hidden; }
.mobile-menu__panel { position: absolute; inset: 0; display: grid; align-content: start; gap: 7px; padding: 14px; transform: translateX(105%); transition: transform .25s ease; overflow: auto; }
.mobile-menu__panel.is-active { transform: translateX(0); }
.mobile-menu__panel[data-menu-panel="root"]:not(.is-active) { transform: translateX(-105%); }
.mobile-menu__panel a { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 12px; border: 1px solid rgba(0,0,0,.12); background: rgba(255,255,255,.34); color: #111; font-size: 18px; font-weight: 900; letter-spacing: 0; }
.mobile-menu__panel a:hover { border-color: rgba(0,0,0,.28); background: rgba(255,255,255,.58); }
.mobile-menu__panel a.mobile-menu__all { background: #111; color: #fff; border-color: #111; }
.mobile-menu__panel small { color: var(--muted); }
.mobile-menu__panel a.mobile-menu__all small { color: rgba(255,255,255,.68); }

.contact-island__panel { border-radius: 14px !important; background: linear-gradient(145deg, rgba(15,15,14,.96), rgba(40,35,25,.96)); color: #fff; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 28px 86px rgba(0,0,0,.28); }
.contact-island__head span { color: rgba(255,255,255,.62); }
.contact-island__head button { color: #fff; }
.contact-island__panel a { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: #fff; border-radius: 10px; }
.contact-island__panel a:hover { background: rgba(217,155,19,.22); border-color: rgba(217,155,19,.5); }
.contact-island__toggle { border-radius: 12px !important; box-shadow: 0 12px 34px rgba(0,0,0,.28), 0 0 0 8px rgba(217,155,19,.12); }

.product-detail { padding-top: 42px; }
.product-detail__grid { display: grid; grid-template-columns: minmax(420px, .96fr) minmax(0, .9fr); gap: clamp(24px, 4vw, 58px); align-items: start; }
.product-gallery { position: relative; border: 1px solid rgba(0,0,0,.13); background: rgba(255,255,255,.46); padding: 10px; }
.product-gallery__main { width: 100%; aspect-ratio: 1.18; object-fit: cover; background: #ddd; }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 8px; }
.product-gallery__thumbs img { height: 86px; width: 100%; object-fit: cover; opacity: .82; }
.product-summary h1 { font-size: clamp(46px, 5.4vw, 86px); margin-bottom: 18px; }
.product-summary__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.product-summary__badges span { border: 1px solid rgba(0,0,0,.12); background: rgba(255,255,255,.56); min-height: 32px; display: inline-flex; align-items: center; padding: 0 10px; font-weight: 900; }
.product-summary__text { color: var(--muted); font-size: 19px; max-width: 700px; }
.product-price { margin: 22px 0; padding: 18px; border: 1px solid rgba(0,0,0,.13); background: #111; color: #fff; display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.product-price span { color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 900; }
.product-price b { font-size: 34px; letter-spacing: -.05em; }
.product-card__spec-table--detail { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-summary__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.product-info { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 460px); gap: 28px; border-top: 1px solid var(--line); }
.product-info__main { border: 1px solid rgba(0,0,0,.12); background: rgba(255,255,255,.46); padding: clamp(22px, 3vw, 38px); }
.product-info h2 { font-size: clamp(38px, 4vw, 64px); }
.product-description { color: #242421; font-size: 18px; }
.product-docs { display: grid; gap: 8px; margin-top: 10px; }
.product-docs a { min-height: 50px; border: 1px solid rgba(0,0,0,.12); display: flex; justify-content: space-between; align-items: center; padding: 12px; background: rgba(255,255,255,.55); font-weight: 900; }
.spec-group { border-top: 1px solid rgba(0,0,0,.12); padding-top: 14px; margin-top: 14px; }
.spec-group > b { display: block; font-size: 18px; margin-bottom: 8px; }
.spec-group p { display: flex; justify-content: space-between; gap: 14px; margin: 0; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.08); }
.spec-group span { color: var(--muted); }
.spec-group strong { text-align: right; }

@media (max-width: 1180px) {
  .topnav { display: none; }
  .home-catalog, .product-detail__grid, .product-info { grid-template-columns: 1fr; }
  .home-categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid--home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card__spec-table--detail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-button { display: grid; }
}
@media (min-width: 1181px) {
  .menu-button { display: none; }
}
@media (max-width: 760px) {
  .home-categories { grid-template-columns: 1fr; }
  .home-category { min-height: 168px; }
  .home-category__media { min-height: 118px; }
  .home-category__media > img { height: 118px; }
  .product-grid--home { grid-template-columns: 1fr; }
  .product-detail, .product-info { padding-left: 18px; padding-right: 18px; }
  .product-gallery__thumbs { grid-template-columns: repeat(3, 1fr); }
  .product-summary__actions .btn { width: 100%; justify-content: space-between; }
  .product-card__spec-table { grid-template-columns: 1fr; }
}

/* Recovery pass: catalog usability and complete footer */
.catalog-search__quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0 4px;
}

.catalog-search__quick span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.catalog-search__quick a {
  min-height: 32px;
  border: 1px solid rgba(0,0,0,.11);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  background: rgba(255,255,255,.54);
  color: #252522;
  font-size: 13px;
  font-weight: 850;
}

.catalog-search__quick a:hover {
  border-color: rgba(217,155,19,.5);
  background: rgba(255,255,255,.86);
}

.catalog-overview {
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 6px;
  background: rgba(248,247,242,.42);
}

.catalog-overview__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 16px;
}

.catalog-overview__head h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1;
}

.catalog-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.catalog-overview-card {
  min-height: 92px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 4px;
  background: rgba(255,255,255,.24);
  overflow: hidden;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.catalog-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,0,0,.28);
  background: rgba(255,255,255,.52);
}

.catalog-overview-card img {
  width: 92px;
  height: 72px;
  object-fit: cover;
  border-radius: 3px;
  filter: saturate(.9) contrast(.96);
}

.catalog-overview-card span,
.catalog-overview-card small {
  margin: 0;
}

.catalog-overview-card span {
  color: #111;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.1;
}

.catalog-overview-card small {
  color: var(--muted);
  font-weight: 850;
  white-space: nowrap;
}

.catalog-more {
  margin-top: 24px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255,255,255,.45);
}

.catalog-more p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.catalog-sidebar__head span {
  min-width: 34px;
  padding: 0 8px;
  border-radius: 999px;
}

.catalog-category-list {
  max-height: min(62vh, 680px);
  overflow: auto;
  padding-right: 2px;
}

.catalog-category-list::-webkit-scrollbar {
  width: 8px;
}

.catalog-category-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0,0,0,.18);
}

.footer--complete {
  grid-template-columns: minmax(240px, .9fr) minmax(160px, .42fr) minmax(420px, 1.18fr);
  align-items: start;
  gap: clamp(24px, 4vw, 58px);
  padding-top: 58px;
  padding-bottom: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.54), rgba(255,255,255,.14)),
    rgba(248,247,242,.54);
}

.footer__cta {
  margin-top: 22px;
}

.footer__nav {
  display: grid;
  gap: 9px;
}

.footer__nav b {
  margin-bottom: 4px;
  color: #111;
  font-size: 18px;
  letter-spacing: -.025em;
}

.footer__nav a {
  width: max-content;
  color: var(--muted);
  font-weight: 850;
}

.footer__nav a:hover {
  color: #111;
}

.footer__bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(0,0,0,.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.footer__bottom small {
  grid-column: auto;
}

@media (max-width: 1180px) {
  .catalog-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer--complete {
    grid-template-columns: 1fr 1fr;
  }
  .footer__contacts {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .catalog-search__quick {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .catalog-search__quick a,
  .catalog-search__quick span {
    flex: 0 0 auto;
  }
  .catalog-overview__head {
    align-items: stretch;
    flex-direction: column;
  }
  .catalog-overview__head .btn {
    width: 100%;
    justify-content: space-between;
  }
  .catalog-overview__grid {
    grid-template-columns: 1fr;
  }
  .catalog-category-list {
    max-height: none;
  }
  .catalog-more {
    align-items: stretch;
    flex-direction: column;
  }
  .catalog-more .btn {
    width: 100%;
    justify-content: space-between;
  }
  .footer--complete {
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }
  .footer__contacts {
    grid-column: auto;
  }
  .footer__bottom {
    flex-direction: column;
  }
}

/* Final catalog visual overrides */
.topbar {
  grid-template-columns: minmax(160px, 1fr) auto minmax(220px, 1fr);
  top: 0;
  margin-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.topnav { justify-self: center; }

.menu-button,
.catalog-filter-button {
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 10px;
  place-content: center;
  padding: 0;
}

.menu-button span,
.catalog-filter-button span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #111;
}

/* Reference-aligned hero */
:root {
  --container: 1440px;
  --gutter: clamp(24px, 4.45vw, 64px);
}

.site-shell {
  background:
    linear-gradient(rgba(0,0,0,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.018) 1px, transparent 1px),
    var(--page);
  background-size: 34px 34px, 34px 34px, auto;
}

.site-shell::before {
  content: none;
}

.topbar {
  width: min(100%, var(--container));
  height: 96px;
  padding: 0 var(--gutter);
  margin: 0 auto;
  align-items: center;
  background: rgba(248,246,239,.96);
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.brand {
  font-size: 42px;
  line-height: 1;
}

.topnav,
.topbar__left,
.topbar__contacts {
  align-items: center;
}

.topbar__contacts a,
.topbar__contacts button {
  min-height: 44px;
  border-radius: 8px;
}

.hero {
  width: min(100%, var(--container));
  min-height: 820px;
  grid-template-columns: minmax(420px, .86fr) minmax(0, 1.14fr);
  align-items: start;
  padding: 0 var(--gutter);
  overflow: hidden;
}

.hero__copy {
  width: min(520px, 100%);
  margin-top: 124px;
  padding-bottom: 0;
}

.hero h1 {
  margin-bottom: 0;
  font-size: 96px;
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.04em;
}

.hero__lead {
  width: min(400px, 100%);
  margin: 32px 0 0;
  font-size: 21px;
  line-height: 1.35;
}

.hero__actions {
  margin-top: 32px;
}

.hero .btn {
  min-height: 58px;
  border-radius: 8px !important;
  padding: 0 32px;
  gap: 24px;
}

.hero__visual {
  position: absolute;
  inset: 0;
  min-height: auto;
  margin: 0;
  pointer-events: none;
}

.hero__letters {
  left: auto;
  right: clamp(130px, 10.5vw, 180px);
  top: 270px;
  width: clamp(620px, 48vw, 740px);
  opacity: .22;
  z-index: 1;
}

.hero__machine {
  right: 80px;
  top: 5%;
  width: min(760px, 52%);
  z-index: 2;
}

.stats-panel {
  width: min(100%, var(--container));
  min-height: 122px;
  margin: -122px auto 0;
  padding: 0 var(--gutter);
  background: #f5f1ea;
  border-top: 1px solid rgba(0,0,0,.08);
  backdrop-filter: none;
}

.stats-panel__item {
  min-height: 122px;
  padding-left: 28px;
  border-right: 1px solid rgba(0,0,0,.12);
}

.stats-panel strong {
  font-size: 34px;
  letter-spacing: -.04em;
}

.stats-panel span {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.25;
}

@media (max-width: 1180px) {
  #top.hero {
    min-height: auto;
    /*grid-template-columns: 1fr;*/
    padding-top: 54px;
    width:100%;
  }

  .hero__copy {
    margin-top: 0;
  }

  .hero h1 {
    font-size: 84px;
  }

  .hero__visual {
    position: relative;
    min-height: 500px;
  }

  .hero__letters {
    right: auto;
    left: 16%;
    top: 56px;
    width: min(720px, 88vw);
  }

  .hero__machine {
    width: min(760px, 92vw);
    right: -80px;
    bottom: 48px;
  }

  .stats-panel {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --container: 100vw;
    --gutter: 18px;
  }

  .topbar {
    height: 72px;
    padding: 0 12px;
  }

  .brand {
    font-size: 28px;
  }

  .hero {
    padding: 40px 18px 0;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__visual {
    min-height: 410px;
    margin-left: -18px;
    margin-right: -18px;
    overflow: hidden;
  }

  .hero__letters {
    width: 118vw;
    left: -22vw;
    top: 8%;
  }

  .hero__machine {
    width: 980px;
    right: -470px;
    bottom: -20px;
  }

  .stats-panel {
    min-height: auto;
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
  }

  .stats-panel__item {
    min-height: 92px;
    padding: 18px 0;
  }
}

.catalog-filter-button {
  width: 44px;
  height: 36px;
  display: none;
  gap: 5px;
}

.catalog-filter-button em {
  display: none;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.catalog-filter-button span:nth-child(1) { width: 22px; }
.catalog-filter-button span:nth-child(2) { width: 14px; }
.catalog-filter-button span:nth-child(3) { width: 18px; }

.site-shell {
  background:
    radial-gradient(circle at 10% 14%, rgba(217,155,19,.14), transparent 28vw),
    radial-gradient(circle at 88% 12%, rgba(79,164,114,.12), transparent 24vw),
    linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px),
    var(--page);
  background-size: auto, auto, 52px 52px, 52px 52px, auto;
}

.site-search__control {
  min-height: 46px;
  max-width: 100%;
  border-color: rgba(0,0,0,.2);
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  grid-template-columns: 1fr auto;
  padding-left: 14px;
}

.site-search__icon {
  display: none;
}

.site-search input { height: 34px; font-size: 15px; }
.site-search__clear { border-radius: 8px; background: rgba(217,155,19,.15); }

.catalog-layout {
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 16px;
}

.catalog-sidebar {
  top: 116px;
  border-radius: 12px !important;
  background: rgba(255,255,255,.64);
  padding: 10px;
  box-shadow: 0 16px 44px rgba(0,0,0,.07);
}

.catalog-sidebar__close { display: none; }
.catalog-sidebar__head { padding: 6px 8px 10px; font-size: 15px; }
.catalog-sidebar__head span { width: auto; min-width: 28px; height: 26px; font-size: 12px; }
.catalog-category-list { gap: 5px; }

.catalog-category-pill {
  min-height: 48px;
  grid-template-columns: 36px 1fr auto;
  gap: 8px;
  border-radius: 9px;
  padding: 6px;
}

.catalog-category-pill--all {
  grid-template-columns: 1fr auto;
}

.catalog-category-pill img { width: 36px; height: 34px; border-radius: 7px; }
.catalog-category-pill span { font-size: 13px; line-height: 1.08; }
.catalog-category-pill small { font-size: 12px; }
.catalog-filter-group { gap: 5px; }

.catalog-filter-group a,
.catalog-active-filters a {
  min-height: 28px;
  padding: 0 9px;
  font-size: 12px;
}

.catalog-title-panel {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 16px 18px 12px;
  margin-bottom: 14px;

}

.catalog-title-panel .eyebrow { margin-bottom: 5px; }
.catalog-title-panel h1 { font-size: clamp(28px, 3.2vw, 46px); }
.catalog-title-panel .breadcrumbs { margin: 12px 0 0; color: var(--muted); font-size: 13px; font-weight: 850; }
.product-grid { gap: 14px; }

.product-card {
  border-color: rgba(0,0,0,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.64), rgba(248,247,242,.88));
}

.product-card h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  font-size: clamp(19px, 1.45vw, 24px);
}

.product-card__category {
  min-height: 24px;
  border: 1px solid rgba(217,155,19,.38);
  border-radius: 4px;
  background: rgba(217,155,19,.13);
  color: #7a5305;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.product-card__badges a,
.product-card__badges span {
  background: color-mix(in srgb, #616161a8 18%, #16161600 82%);
  backdrop-filter: blur(12px);
}

.catalog-more {
  border-radius: 10px;
  padding: 12px;
  background: rgba(17,17,17,.94);
  color: #fff;
}

.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.catalog-pagination__page,
.catalog-pagination__arrow,
.catalog-pagination__gap {
  min-width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  color: #fff;
  font-weight: 950;
}

.catalog-pagination__page,
.catalog-pagination__arrow {
  background: rgba(255,255,255,.08);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.catalog-pagination__page:hover,
.catalog-pagination__arrow:hover,
.catalog-pagination__page.is-active {
  transform: translateY(-2px);
  border-color: var(--yellow);
  background: var(--yellow);
  color: #111;
}

.catalog-pagination__page.is-active {
  pointer-events: none;
}

.catalog-pagination__arrow.is-disabled {
  opacity: .35;
  pointer-events: none;
}

.catalog-pagination__gap {
  border-color: transparent;
  color: rgba(255,255,255,.6);
}

.catalog-more p {
  color: rgba(255,255,255,.72);
}

.contact-island {
  left: max(18px, calc((100vw - 1440px) / 2 + 18px));
  right: auto;
  justify-items: start;
}

.contact-island__panel { transform-origin: bottom left; }
.contact-island__panel a:hover { transform: translateX(3px); }

@media (max-width: 1180px) {
  .topbar { grid-template-columns: auto minmax(0, 1fr) auto auto; }
  .menu-button { grid-column: 3; justify-self: end; }
  .site-shell--catalog .catalog-filter-button {
    display: inline-grid;
    width: auto;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    align-items: center;
    padding: 0 10px;
    grid-column: 4;
    grid-row: 1;
    justify-self: end;
  }
  .site-shell--catalog .catalog-filter-button em {
    display: block;
  }
  .catalog-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 115;
    width: min(360px, calc(100vw - 42px));
    max-height: none;
    border-radius: 0 !important;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    padding: 72px 12px 16px;
    overflow: auto;
    transform: translateX(104%);
    opacity: 0;
    pointer-events: none;
    transition: transform .24s ease, opacity .24s ease;
  }
  .catalog-sidebar.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: -30px 0 90px rgba(0,0,0,.32);
  }
  body.is-catalog-sidebar-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 114;
    background: rgba(0,0,0,.36);
    backdrop-filter: blur(3px);
  }
  .catalog-sidebar__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0,0,0,.18);
    border-radius: 10px;
    background: #111;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 24px;
    line-height: 1;
  }
}

@media (max-width: 760px) {
  .topbar {
    top: 0;
    margin-top: 0;
    grid-template-columns: auto minmax(0, 1fr) 36px 36px;
  }
  .menu-button,
  .catalog-filter-button {
    width: 36px;
    height: 36px;
  }
  .site-shell--catalog .catalog-filter-button {
    width: 36px;
    grid-auto-flow: row;
    padding: 0;
  }
  .site-shell--catalog .catalog-filter-button em {
    display: none;
  }
  .site-search { margin-top: 12px; }
  .catalog-layout { padding-top: 22px; }
  .catalog-title-panel { padding: 13px 14px 11px; }
  .catalog-title-panel h1 { font-size: clamp(27px, 9vw, 38px); letter-spacing: -.035em; }
  .product-card h3 { font-size: 21px; }
  .contact-island { left: 14px; right: auto; bottom: 14px; }
}

/* Final homepage hero lock */
.site-shell {
  background:
    linear-gradient(rgba(0,0,0,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.018) 1px, transparent 1px),
    var(--page);
  background-size: 34px 34px, 34px 34px, auto;
}

.site-shell::before {
  content: none;
}

.topbar,
.hero,
.stats-panel {
  width: min(100%, var(--container));
}

.topbar {
  height: 96px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background: rgba(248,246,239,.96);
}

.hero {
  min-height: 820px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.hero h1 {
  font-size: clamp(72px, 5.8vw, 86px);
  line-height: .92;
}

.hero__copy {
  margin-top: 55px;
}

.hero__lead {
  width: auto;
  margin-top: 26px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__letters {
  right: clamp(10px, 3.5vw, 70px);
  top: 58px;
  width: clamp(900px, 72vw, 1120px);
  max-width: none;
  opacity: .2;
}

.stats-panel {
  margin-top: -122px;
}

@media (max-width: 1180px) {
  .stats-panel {
    margin-top: 0;
  }

  .hero h1 {
    font-size: clamp(62px, 8vw, 76px);
  }

  .hero__letters {
    left: 4%;
    right: auto;
    top: -18px;
    width: min(1040px, 118vw);
  }
}

@media (max-width: 760px) {
  .topbar {
    height: 72px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero {
    min-height: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 58px);
  }

  .hero__lead {
    font-size: 17px;
    margin-top: 20px;
  }

  .hero__letters {
    width: 152vw;
    left: -34vw;
    top: -4%;
  }
}

/* Full-width sticky header and enlarged animated delivery map */
.site-shell {
  overflow: visible;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 120;
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.delivery-strip {
  width: 100%;
  max-width: none;
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-right: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}

.delivery-strip__copy,
.delivery-strip__map {
  width: 100%;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
}

.delivery-strip__map {
  min-height: clamp(590px, 56vw, 790px);
}

@media (max-width: 760px) {
  .delivery-strip {
    padding-left: 12px;
    padding-right: 12px;
  }

  .delivery-strip__map {
    min-height: 430px;
    border-radius: 12px;
  }

  .delivery-map__stage {
    inset: 4px 0;
  }

  .delivery-strip__map::after {
    max-width: calc(100% - 24px);
  }
}

/* Final content/contact refinements */
.why {
  background:
    linear-gradient(180deg, rgba(255,255,255,.26), rgba(232,229,220,.34)),
    var(--page);
}

.why .section-head h2 {
  max-width: 980px;
}

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

.advantage-card {
  min-height: 0;
  padding: clamp(18px, 2vw, 26px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.66), rgba(243,239,228,.78)),
    radial-gradient(circle at 18px 18px, rgba(217,155,19,.18), transparent 120px);
  border-color: rgba(0,0,0,.14);
  box-shadow: 0 18px 48px rgba(0,0,0,.06);
}

.advantage-card::before {
  content: none;
}

.advantage-card:nth-child(2) {
  transform: none;
}

.advantage-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(217,155,19,.2);
}

.advantage-card span,
.advantage-card h3,
.advantage-card p {
  position: relative;
  z-index: 1;
}

.advantage-card h3 {
  margin-top: 56px;
}

.catalog-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.catalog-section__head h2 {
  margin: 0;
}

.parts-band__copy {
  max-width: 760px;
}

.parts-band p:not(.eyebrow),
.service__copy li {
  line-height: 1.55;
}

.delivery-strip__map::after {
  content: attr(data-region-title);
  display: block;
}

.delivery-strip__map.has-region-label::after {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 10px)) scale(1);
}

.contact-island {
  right: max(18px, calc((100vw - 1440px) / 2 + 18px));
  left: auto;
  bottom: 18px;
  justify-items: end;
  align-items: end;
}

.contact-island__panel {
  width: min(360px, calc(100vw - 36px));
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 14px !important;
  background: linear-gradient(145deg, rgba(16,16,15,.98), rgba(35,32,26,.98));
  transform-origin: bottom right;
}

.contact-island.is-open .contact-island__panel,
.contact-island:focus-within .contact-island__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.contact-island__head {
  grid-column: auto;
  padding: 8px 8px 12px;
}

.contact-island__section {
  display: grid;
  gap: 8px;
  /*padding: 10px;*/
  /*border: 1px solid rgba(255,255,255,.11);*/
  border-radius: 12px;
  /*background: rgba(255,255,255,.045);*/
}

.contact-island__section--direct {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-island__section--socials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.contact-island__panel a,
.contact-island__request,
.contact-split__trigger,
.contact-social,
.contact-split__links a {
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.contact-island__panel a,
.contact-island__request,
.contact-split__trigger,
.contact-social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
}

.contact-island__panel a {
  flex-direction: row;
  align-items: center;
  min-width: 0;
  white-space: nowrap;
}

.contact-island__panel a:hover,
.contact-island__request:hover,
.contact-split:hover .contact-split__trigger,
.contact-split:focus-within .contact-split__trigger,
.contact-social:hover {
  background: rgba(217,155,19,.2);
  border-color: rgba(217,155,19,.52);
  transform: none;
}

.contact-island__panel a span,
.contact-island__request span {
  flex: 0 0 auto;
  align-self: auto;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1;
}

.contact-island__request {
  width: 100%;
  min-height: 54px;
  cursor: pointer;
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
  display: flex;
  justify-content: center;
}

.contact-island__request span {
  color: #111;
  font-size: 18px;
}

.contact-split {
  min-width: 0;
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: 10px;
}

.contact-split__trigger,
.contact-social {
  width: 100%;
  min-width: 0;
  justify-content: center;
  padding: 0 8px;
  overflow: hidden;
  transition: opacity .2s ease, transform .24s ease, background .18s ease, border-color .18s ease;
}

.contact-split__trigger img,
.contact-social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  pointer-events: none;
}

.contact-split__links {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  opacity: 0;
  transform: translateY(6px) scale(.88);
  transform-origin: center;
  overflow: visible;
  pointer-events: none;
  transition: opacity .18s ease, transform .24s cubic-bezier(.2, .9, .2, 1);
}

.contact-split:hover .contact-split__links,
.contact-split:focus-within .contact-split__links {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.contact-split:hover .contact-split__trigger,
.contact-split:focus-within .contact-split__trigger {
  opacity: 0;
  transform: translateY(-8px) scale(.82);
}

.contact-split__links a {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 0 8px;
  font-size: 13px;
  border-radius: 10px;
  text-align: center;
}

.contact-split__links a + a {
  border-left: 1px solid rgba(255,255,255,.13);
}

.contact-direct-card {
  position: relative;
  min-width: 0;
  min-height: 48px;
}

.contact-direct-card a {
  width: 100%;
  height: 100%;
  min-height: 48px;
  padding: 0 0 0 0;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: normal;
  word-break: break-word;
}

.contact-direct-card button {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(17,17,17,.72);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, background .16s ease, border-color .16s ease;
}

.contact-direct-card:hover button,
.contact-direct-card:focus-within button {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-direct-card button:hover,
.contact-direct-card button.is-copied {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
}

.contact-island__toggle {
  border-radius: 12px !important;
}

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

  .advantage-card h3 {
    margin-top: 38px;
  }
}

@media (max-width: 760px) {
  .catalog-section__head {
    display: grid;
    align-items: start;
  }

  .contact-island {
    right: 14px;
    left: auto;
    bottom: 14px;
  }

  .contact-island__panel {
    width: calc(100vw - 28px);
  }

  .contact-island__section--direct {
    grid-template-columns: 1fr;
  }

  .contact-direct-card button {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .contact-island.is-open .contact-split__links { min-height: 46px; }
}

/* Catalog and contact interaction refinements */
[data-catalog-app] {
  position: relative;
}

[data-catalog-app]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 20;
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 26%, rgba(217,155,19,.26) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 38%, rgba(47,111,159,.22) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 76%, rgba(22,38,31,.18) 0 1.5px, transparent 3px),
    rgba(248,247,242,.7);
  background-size: 42px 42px, 58px 58px, 34px 34px, auto;
  opacity: 0;
  pointer-events: none;
  transform: scale(.992);
  transition: opacity .16s ease, transform .28s ease;
}

[data-catalog-app].is-loading::before {
  opacity: 1;
  transform: scale(1);
  animation: catalog-placeholder 1.45s ease-in-out infinite;
}

[data-catalog-surface] {
  transform-origin: top center;
  transition: opacity .22s ease, transform .26s ease, filter .26s ease;
}

[data-catalog-app].is-exiting [data-catalog-surface] {
  opacity: .35;
  transform: translateY(8px) scale(.992);
  filter: blur(2px);
}

[data-catalog-app].is-entering [data-catalog-surface] {
  animation: catalog-surface-enter .36s cubic-bezier(.2, .9, .2, 1) both;
}

@keyframes catalog-placeholder {
  0%, 100% {
    background-position: 0 0, 14px 6px, -8px 10px, 0 0;
    filter: saturate(.94);
  }
  50% {
    background-position: 10px -8px, 0 18px, 8px -4px, 0 0;
    filter: saturate(1.08);
  }
}

@keyframes catalog-surface-enter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.catalog-title-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.catalog-title-nav__card {
  min-height: 64px;
  border: 1px solid color-mix(in srgb, var(--nav-accent, #d99b13) 35%, rgba(0,0,0,.12));
  border-radius: 8px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 7px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--nav-accent, #d99b13) 18%, transparent), transparent 46%),
    rgba(255,255,255,.62);
  color: var(--black);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.catalog-title-nav__card:hover,
.catalog-title-nav__card.is-active {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--nav-accent, #d99b13) 72%, rgba(0,0,0,.12));
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--nav-accent, #d99b13) 26%, transparent), transparent 54%),
    rgba(255,255,255,.88);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.catalog-title-nav__card--back {
  --nav-accent: #4fa472;
}

.catalog-title-nav__card--current {
  --nav-accent: #d99b13;
}

.catalog-title-nav__card--child {
  --nav-accent: #432f8a;
}

.catalog-title-nav__card--sibling {
  --nav-accent: #7c65aa;
}

.catalog-title-nav__card.is-active {
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--nav-accent, #d99b13) 26%, transparent), 0 14px 30px rgba(0,0,0,.08);
  pointer-events: none;
}

.catalog-title-nav__image {
  width: 48px;
  height: 48px;
  border-radius: 7px;
  overflow: hidden;
  /*background: rgba(0,0,0,.08);*/
}

.catalog-title-nav__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-title-nav__card b {
  display: block;
  overflow: hidden;
  color: inherit;
  font-size: 13px;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.catalog-title-nav__card em {
  min-width: 28px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.catalog-category-list {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.catalog-category-pill {
  position: relative;
  overflow: hidden;
  transition: transform .2s cubic-bezier(.2, .9, .2, 1), border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.catalog-category-pill::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: transparent;
  transition: background .2s ease, width .2s ease;
}

.catalog-category-pill:hover,
.catalog-category-pill.is-active {
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.catalog-category-pill.is-active::before {
  width: 6px;
  background: var(--yellow);
}

.catalog-category-pill:hover::before {
  background: rgba(217,155,19,.55);
}

.catalog-category-pill img,
.catalog-category-pill span,
.catalog-category-pill small {
  position: relative;
  z-index: 1;
}

.product-card__category {
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.product-card__category::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: translateX(-110%);
  transition: transform .42s ease;
}

.product-card__category:hover,
.product-card__category:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217,155,19,.72);
  background: rgba(217,155,19,.24);
  color: #111;
  box-shadow: 0 8px 18px rgba(217,155,19,.2);
}

.product-card__category:hover::before,
.product-card__category:focus-visible::before {
  transform: translateX(110%);
}

.contact-direct-card a {
  justify-content: center;
  text-align: center;
}

.contact-direct-card button::after {
  content: "Скопировано";
  position: absolute;
  right: 0;
  top: -34px;
  min-width: 96px;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(17,17,17,.94);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}

.contact-direct-card button.is-copied::after {
  opacity: 1;
  transform: translateY(0);
}

.delivery-strip__map.has-region-label::after {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 10px)) scale(1);
}

.delivery-strip__map.delivery-map__stage {
  position: relative;
  inset: auto;
  display: grid;
  place-items: center;
}

@media (max-width: 760px) {
  .catalog-title-nav {
    grid-template-columns: 1fr;
  }
}

/* Final UX polish */
.site-search {
  width: min(100%, var(--container));
}

.site-search__control,
.site-search__suggestions {
  width: 100%;
  max-width: none;
}

.site-search__suggestions {
  left: var(--gutter);
  right: var(--gutter);
  width: auto;
}

.suggest-group--category .suggest-item {
  border-color: rgba(67,47,138,.24);
  background:
    linear-gradient(90deg, rgba(67,47,138,.12), transparent 55%),
    rgba(255,255,255,.78);
}

.suggest-item--category {
  border-left: 0;
}

.suggest-item--product {
  border-left: 0;
  background: rgba(248,247,242,.68);
}

.suggest-item,
.suggest-item > span {
  width: 100%;
  min-width: 0;
}

.why {
  position: relative;
  overflow: hidden;
  border-top: 0;
  background:
    linear-gradient(135deg, rgba(17,17,17,.96), rgba(47,43,34,.94)),
    #111;
  color: #fff;
}

.why .section-head {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: end;
  text-align: left;
}

.why .eyebrow {
  color: var(--yellow);
}

.why .section-head h2 {
  max-width: 980px;
  color: #fff;
}

.why .advantage-grid {
  margin-top: 30px;
  grid-template-columns: 1.15fr .85fr 1fr;
  align-items: stretch;
}

.why .advantage-card {
  min-height: 260px;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: #fff;
  box-shadow: none;
}

.why .advantage-card:nth-child(1) {
  transform: translateY(30px);
}

.why .advantage-card:nth-child(2) {
  transform: none;
  background: rgba(217,155,19,.18);
}

.why .advantage-card h3,
.why .advantage-card p,
.why .advantage-card span {
  color: inherit;
}

.mega-catalog {
  left: 50%;
  /*transform: translateX(-50%) translateY(12px);*/
}

.topnav__catalog.is-open .mega-catalog {
  /*transform: translateX(-50%) translateY(0);*/
}

.catalog-title-nav__card,
.catalog-category-pill {
  --nav-accent: #6f725c;
  border-color: color-mix(in srgb, var(--nav-accent) 34%, rgba(0,0,0,.12));
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--nav-accent) 16%, transparent), transparent 58%),
    rgba(255,255,255,.68);
}

.catalog-title-nav__card--back,
.catalog-category-pill--all {
  --nav-accent: #4d6f64;
}

.catalog-title-nav__card--current,
.catalog-category-pill.is-active {
  --nav-accent: #b88518;
}

.catalog-title-nav__card--child {
  --nav-accent: #5f6755;
}

.catalog-title-nav__card--sibling {
  --nav-accent: #776b58;
}

.catalog-title-nav__card:hover,
.catalog-title-nav__card.is-active,
.catalog-category-pill:hover,
.catalog-category-pill.is-active {
  border-color: color-mix(in srgb, var(--nav-accent) 64%, rgba(0,0,0,.14));
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--nav-accent) 26%, transparent), transparent 64%),
    rgba(255,255,255,.88);
}

.catalog-filter-group--brands {
  max-height: 230px;
  overflow: auto;
  align-content: start;
}

.catalog-filter-search {
  flex: 1 1 100%;
  min-height: 34px;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 13px;
  background: rgba(255,255,255,.72);
}

.catalog-filter-group a[hidden] {
  display: none;
}

.footer__contacts a.footer__messenger {
  grid-template-columns: 28px 1fr;
  align-items: center;
}

.footer__contacts a.footer__messenger img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.lead-modal.is-closing .lead-modal__backdrop {
  animation: modalBackdropOut .2s ease both;
}

.lead-modal.is-closing .lead-modal__card {
  animation: modalCardOut .22s ease both;
}

@keyframes modalBackdropOut {
  to { opacity: 0; }
}

@keyframes modalCardOut {
  to {
    opacity: 0;
    transform: translateY(18px) scale(.97);
  }
}

@media (max-width: 760px) {
  .why .section-head,
  .why .advantage-grid {
    grid-template-columns: 1fr;
  }

  .why .advantage-card:nth-child(1) {
    transform: none;
  }
}

/* Request pass: company clarity, forms, footer splits */
.company-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
}

.company-section__media {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, .36fr);
  gap: 12px;
  min-height: 520px;
}

.company-section__main,
.company-section__stack a {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #171717;
}

.company-section__main img,
.company-section__stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
}

.company-section__main figcaption,
.company-section__stack span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(8,8,8,.72);
  color: #fff;
  font-weight: 900;
  line-height: 1.08;
  font-size: 14px;
}

.company-section__stack {
  display: grid;
  gap: 12px;
}

.company-section__copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 22px;
}

.company-section__copy h2 {
  max-width: 760px;
  margin: 0;
}

.company-section__copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.company-section__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.company-section__facts span {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.58);
  display: grid;
  align-content: space-between;
}

.company-section__facts b {
  font-size: 22px;
  letter-spacing: -.035em;
}

.company-section__facts small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.22;
}

.company-section .advantage-grid {
  grid-column: 1 / -1;
}

.company-section .advantage-card {
  transform: none !important;
}

.supply.section-grid {
  gap: clamp(14px, 2vw, 28px);
}

.supply__panel {
  padding: clamp(24px, 3vw, 40px);
}

.supply__panel h2 {
  font-size: clamp(40px, 5.1vw, 69px);
}

.supply__panel p:not(.eyebrow) {
  margin-bottom: 20px;
}

.supply__steps {
  gap: 8px;
}

.supply__steps article {
  padding: clamp(18px, 2vw, 24px);
}

.policy-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.48);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.policy-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--yellow);
}

.policy-consent a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

input.is-invalid,
textarea.is-invalid,
.policy-consent.is-invalid {
  border-color: #d7382f !important;
  background: #fff1ef !important;
  box-shadow: 0 0 0 4px rgba(215,56,47,.13) !important;
  animation: fieldShake .28s ease both;
}

@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-3px); }
}

.footer__contacts .footer-split {
  min-width: 0;
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: 12px;
}

.footer__contacts .footer-split .contact-split__trigger {
  min-height: 62px;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255,255,255,.72);
  border-color: rgba(0,0,0,.1);
}

.footer__contacts .footer-split .contact-split__trigger img {
  width: 22px;
  height: 22px;
}

.footer__contacts .footer-split .contact-split__links {
  gap: 8px;
}

.footer__contacts .footer-split .contact-split__links a {
  min-height: 62px;
  border-color: rgba(0,0,0,.1);
  background: var(--yellow);
  color: #111;
}

.footer__contacts .footer-split:hover .contact-split__trigger,
.footer__contacts .footer-split:focus-within .contact-split__trigger {
  opacity: 0;
  transform: translateY(-8px) scale(.9);
}

.privacy-page {
  min-height: 100vh;
  padding: clamp(28px, 6vw, 80px);
  background: var(--page);
  color: var(--ink);
}

.privacy-page h1 {
  max-width: 860px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .92;
  letter-spacing: -.06em;
}

.privacy-page p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

@media (max-width: 900px) {
  .company-section {
    grid-template-columns: 1fr;
  }

  .company-section__media {
    min-height: 420px;
  }

  .company-section__facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .company-section__media {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .company-section__main {
    aspect-ratio: 1 / .82;
  }

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

  .company-section__stack a {
    aspect-ratio: 1;
  }

  .company-section__stack span {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 7px;
    font-size: 12px;
  }
}

/* Request fixes: catalog pagination, footer split links, modal sizing and anchors */
.catalog-category-list {
  overflow-x: visible;
  padding: 8px 8px 8px 2px;
  margin: -8px -8px -8px -2px;
}

.catalog-category-pill:hover,
.catalog-category-pill.is-active {
  transform: translateX(4px);
}

.catalog-more {
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  border-color: rgba(77,111,100,.2);
  background:
    linear-gradient(135deg, rgba(77,111,100,.1), rgba(217,155,19,.08)),
    rgba(255,255,255,.78);
}

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

.catalog-pagination__page,
.catalog-pagination__arrow,
.catalog-pagination__gap {
  width: 38px;
  min-height: 38px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.72);
  color: #262622;
  font-weight: 900;
}

.catalog-pagination__page:hover,
.catalog-pagination__arrow:hover {
  border-color: rgba(77,111,100,.5);
  background: rgba(77,111,100,.14);
}

.catalog-pagination__page.is-active {
  border-color: #4d6f64;
  background: #4d6f64;
  color: #fff;
  pointer-events: none;
}

.catalog-pagination__arrow.is-disabled {
  opacity: .38;
  pointer-events: none;
}

.catalog-pagination__gap {
  width: 24px;
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.lead-modal__card {
  width: min(900px, 100%);
  max-height: min(90vh, 760px);
  grid-template-columns: minmax(250px, .75fr) minmax(390px, 1fr);
}

.lead-modal__info {
  min-height: 560px;
  padding: 18px;
}

.lead-modal__visual {
  min-height: 260px;
}

.lead-modal__contacts {
  padding: 15px;
}

.lead-modal__form {
  padding: clamp(20px, 3vw, 26px);
  gap: 10px;
}

.lead-modal__card h2 {
  font-size: clamp(34px, 3.6vw, 48px);
}

.lead-modal__hint {
  font-size: 15px;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  min-height: 48px;
}

.lead-form textarea {
  min-height: 92px;
}

.file-drop {
  min-height: 86px;
  padding: 14px;
}

.footer__contacts .footer-split {
  min-height: 62px;
  overflow: hidden;
}

.footer__contacts .footer-split .contact-split__trigger,
.footer__contacts .footer-split .contact-split__single {
  transition: opacity .18s ease, transform .22s ease, background .18s ease, border-color .18s ease;
}

.footer__contacts .footer-split .contact-split__links,
.footer__contacts .footer-split .contact-split__single {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px) scale(.94);
  pointer-events: none;
}

.footer__contacts .footer-split .contact-split__single {
  min-height: 62px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #111;
  font-weight: 950;
}

.footer__contacts .footer-split:hover .contact-split__links,
.footer__contacts .footer-split:focus-within .contact-split__links,
.footer__contacts .footer-split:hover .contact-split__single,
.footer__contacts .footer-split:focus-within .contact-split__single {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.footer__contacts .footer-split:hover .contact-split__trigger,
.footer__contacts .footer-split:focus-within .contact-split__trigger {
  opacity: 0;
  transform: translateY(-8px) scale(.9);
  pointer-events: none;
}

@media (max-width: 980px) {
  .lead-modal__card {
    width: min(620px, 100%);
    grid-template-columns: 1fr;
  }

  .lead-modal__info {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 92px;
  }

  .catalog-category-list {
    overflow-x: auto;
    margin: 0;
    padding: 4px 0 8px;
  }

  .catalog-category-pill:hover,
  .catalog-category-pill.is-active {
    transform: none;
  }

  .catalog-more {
    align-items: center;
  }

  .catalog-pagination__page,
  .catalog-pagination__arrow,
  .catalog-pagination__gap {
    width: 34px;
    min-height: 34px;
    border-radius: 9px;
  }

  .lead-modal__card {
    max-height: 94vh;
  }
}

/* Request pass: delivery interaction, product page cleanup and navigation placeholder */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  background:
    radial-gradient(circle at 14% 22%, rgba(217,155,19,.28) 0 2px, transparent 3px) 0 0 / 46px 46px,
    radial-gradient(circle at 66% 62%, rgba(47,111,159,.24) 0 2px, transparent 3px) 10px 4px / 62px 62px,
    radial-gradient(circle at 36% 78%, rgba(22,38,31,.18) 0 1.5px, transparent 3px) -8px 14px / 34px 34px,
    rgba(242,240,235,.92);
  opacity: 0;
  pointer-events: none;
  transform: scale(.995);
  transition: opacity .16s ease, transform .28s ease;
}

body.is-navigating::before {
  opacity: 1;
  transform: scale(1);
  animation: page-placeholder-pulse 1.5s ease-in-out infinite;
}

@keyframes page-placeholder-pulse {
  0%, 100% {
    background-position: 0 0, 10px 4px, -8px 14px, 0 0;
    filter: saturate(.94);
  }
  50% {
    background-position: 12px -10px, -2px 20px, 8px 4px, 0 0;
    filter: saturate(1.08);
  }
}

.delivery-strip {
  grid-template-columns: minmax(300px, .48fr) minmax(0, 1fr);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(17,17,17,.96), rgba(54,49,39,.94)),
    #111;
  color: #fff;
}

.delivery-strip__copy {
  position: relative;
  z-index: 2;
}

.delivery-strip__copy .eyebrow {
  color: var(--yellow);
}

.delivery-strip__copy h2 {
  color: #fff;
}

.delivery-strip__copy p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
}

.delivery-strip__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.delivery-strip__facts span {
  border-color: rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: #fff;
}

.delivery-strip__map {
  min-height: clamp(620px, 50vw, 820px);
  border-color: rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 72% 20%, rgba(217,155,19,.24), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 28px 90px rgba(0,0,0,.24);
}

.delivery-route-panel {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 4;
  width: min(360px, calc(100% - 44px));
  display: grid;
  gap: 8px;
}

.delivery-route-panel span {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  background: rgba(8,8,8,.72);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.delivery-route-panel b {
  color: var(--yellow-2);
  font-size: 12px;
  letter-spacing: .08em;
}

.delivery-map__stage path:hover,
.delivery-map__stage path:focus,
.delivery-map__stage .is-map-active {
  fill: #f1bc34 !important;
  filter: drop-shadow(0 10px 14px rgba(241,188,52,.28));
}

.product-detail {
  padding-top: 22px;
  padding-bottom: 22px;
}

.product-detail__grid {
  grid-template-columns: minmax(420px, .9fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
}

.product-gallery {
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 18px 52px rgba(0,0,0,.08);
}

.product-gallery__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #e7e5de;
}

.product-gallery__open {
  width: 100%;
  border: 0;
  padding: 0;
  display: block;
  background: transparent;
}

.product-gallery__main {
  display: block;
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  transition: opacity .24s ease, transform .24s ease;
}

.product-gallery__main.is-swapping {
  animation: galleryImageIn .24s ease both;
}

@keyframes galleryImageIn {
  from { opacity: .72; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

.product-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(17,17,17,.72);
  color: #fff;
  font-weight: 950;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.product-gallery__nav--prev {
  left: 12px;
}

.product-gallery__nav--next {
  right: 12px;
}

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0 2px;
  margin-top: 0;
}

.product-gallery__thumbs button {
  flex: 0 0 92px;
  height: 72px;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  opacity: .72;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--yellow);
  opacity: 1;
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary {
  display: grid;
  gap: 16px;
  align-content: start;
}

.product-summary h1 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: .94;
}

.product-summary__text {
  max-width: 760px;
  margin: 0;
  color: #3a3a35;
  font-size: 18px;
}

.product-summary__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-summary__meta span {
  min-height: 74px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  padding: 12px;
  display: grid;
  align-content: center;
  gap: 3px;
  background: rgba(255,255,255,.62);
}

.product-summary__meta small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-summary__meta b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 17px;
}

.product-price {
  margin: 0;
  border-radius: 12px;
}

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

.product-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border-top: 0;
}

.product-info__main,
.product-notice {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.58);
  padding: clamp(22px, 3vw, 34px);
}

.product-info h2,
.product-info h3 {
  margin-top: 0;
}

.product-info__side {
  order: 2;
}

.product-notice {
  order: 3;
  display: grid;
  gap: 8px;
  border-color: rgba(217,155,19,.28);
  background:
    linear-gradient(135deg, rgba(217,155,19,.12), rgba(255,255,255,.72)),
    rgba(255,255,255,.68);
}

.product-notice b {
  font-size: 22px;
}

.product-notice p {
  max-width: 860px;
  margin: 0;
  color: #3f3f3a;
  font-size: 16px;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.9);
  padding: 22px;
}

.product-lightbox img {
  max-width: min(1200px, 100%);
  max-height: 88vh;
  object-fit: contain;
}

.product-lightbox__close,
.product-lightbox__nav {
  position: absolute;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.product-lightbox__close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 26px;
}

.product-lightbox__nav {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}

.product-lightbox__nav--prev {
  left: 18px;
}

.product-lightbox__nav--next {
  right: 18px;
}

@media (max-width: 1180px) {
  .delivery-strip,
  .product-detail__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .delivery-strip {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .delivery-strip__facts,
  .product-summary__meta,
  .product-card__spec-table--detail {
    grid-template-columns: 1fr;
  }

  .delivery-route-panel {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .delivery-route-panel span {
    min-height: 42px;
  }

  .product-detail,
  .product-info {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-gallery__main {
    aspect-ratio: 1;
  }

  .product-gallery__thumbs button {
    flex-basis: 78px;
    height: 60px;
  }

  .product-lightbox {
    padding: 10px;
  }

  .product-lightbox__nav {
    width: 42px;
    height: 42px;
  }
}

/* Product finish pass */
.delivery-route-panel {
  display: none !important;
}

.product-detail__grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, 1fr);
  align-items: start;
}

.product-gallery {
  padding: 12px;
  background: rgba(255,255,255,.72);
}

.product-gallery__badges {
  display: none;
}

.product-gallery__main {
  aspect-ratio: 1.34;
}

.product-summary {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: clamp(20px, 2.6vw, 30px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(248,247,242,.62)),
    rgba(255,255,255,.68);
  box-shadow: 0 18px 52px rgba(0,0,0,.07);
}

.product-summary__badges {
  margin: 0;
  gap: 7px;
}

.product-summary__badges .product-card__video {
  border-radius: 6px;
}

.product-summary__text {
  padding-bottom: 4px;
}

.product-info__main,
.product-notice {
  background: rgba(255,255,255,.7);
  box-shadow: 0 14px 44px rgba(0,0,0,.055);
}

.product-help {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  background:
    linear-gradient(135deg, rgba(17,17,17,.96), rgba(43,39,32,.94)),
    #111;
  color: #fff;
}

.product-help .eyebrow {
  color: var(--yellow);
}

.product-help h2 {
  max-width: 780px;
  color: #fff;
}

.product-help p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}

.product-related {
  display: grid;
  gap: 20px;
}

.product-related .product-related__head{
  width: 100%;
  max-width: 100%
}

.product-related__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 0;
}

.product-related__head .eyebrow,
.product-related__head h2 {
  grid-column: 1;
  margin: 0;
}

.product-related__head .btn {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.product-related__all {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: max-content;
  min-height: 42px;
  border-bottom: 2px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  color: #111;
  font-weight: 950;
}

.product-related__carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x mandatory;
}

.product-card--related {
  scroll-snap-align: start;
}

.product-card--related .product-card__media {
  aspect-ratio: 1.12;
}

.product-card--related .product-card__body {
  gap: 14px;
}

.product-card--related h3 {
  font-size: 18px;
}

.footer__contacts .footer-split {
  min-height: 54px;
  border-radius: 10px;
}

.footer__contacts .footer-split .contact-split__trigger {
  min-height: 54px;
  border-radius: 10px;
  background: rgba(255,255,255,.7);
}

.footer__contacts .footer-split .contact-split__links {
  gap: 6px;
  padding: 0;
}

.footer__contacts .footer-split .contact-split__links a,
.footer__contacts .footer-split .contact-split__single {
  min-height: 54px;
  border-radius: 10px;
  border-color: rgba(0,0,0,.84);
  background: #111;
  color: #fff;
  font-size: 14px;
}

.footer__contacts .footer-split .contact-split__links a:hover,
.footer__contacts .footer-split .contact-split__single:hover {
  background: #252525;
  border-color: #111;
}

@media (max-width: 1180px) {
  .product-detail__grid,
  .product-help {
    grid-template-columns: 1fr;
  }

  .product-help .btn {
    width: max-content;
  }
}

@media (max-width: 760px) {
  .product-gallery__main {
    aspect-ratio: 1;
  }

  .product-summary {
    padding: 18px;
  }

  .product-help {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-help .btn,
  .product-related__all {
    width: 100%;
    justify-content: space-between;
  }

  .product-related {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-related__head {
    grid-template-columns: 1fr;
  }

  .product-related__all {
    grid-column: 1;
    grid-row: auto;
  }

  .product-related__carousel {
    grid-auto-columns: minmax(240px, 82vw);
  }
}

/* Final product/layout corrections */
:root {
  --container: min(1560px, calc(100vw - 28px));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  background:
    linear-gradient(90deg, transparent 0, rgba(255,255,255,.62) 48%, transparent 100%) -260px 0 / 260px 100% no-repeat,
    #f2f0eb;
  opacity: 1;
  pointer-events: none;
  animation: initialPagePlaceholder .36s ease forwards;
}

body.is-navigating::before {
  opacity: 1;
  transition-duration: .06s;
}

body.is-navigating-visible::before {
  opacity: 1;
}

@keyframes initialPagePlaceholder {
  0% { opacity: 1; background-position: -260px 0, 0 0; }
  70% { opacity: 1; background-position: calc(100vw + 260px) 0, 0 0; }
  100% { opacity: 0; background-position: calc(100vw + 260px) 0, 0 0; }
}

.topbar,
.hero,
.stats-panel,
.section,
.footer,
.catalog-hero,
.catalog-layout,
.site-search {
  width: min(100%, var(--container));
}

@media (min-width: 1181px) {
  .section,
  .footer,
  .catalog-layout,
  .catalog-hero,
  .site-search {
    width: min(96vw, var(--container));
  }

  .topbar,
  .hero,
  .stats-panel {
    width: min(98vw, var(--container));
  }
}

.product-detail__grid {
  grid-template-columns: minmax(0, 1.48fr) minmax(380px, .98fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
}

.product-gallery,
.product-summary {
  min-height: 100%;
}

.product-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.product-gallery__viewport {
  min-height: 0;
}

.product-gallery__main {
  aspect-ratio: 1.28;
  opacity: 1;
  transform: scale(1);
  transition: opacity .28s ease, transform .36s ease;
}

.product-gallery__main.is-fading {
  opacity: 0;
  transform: scale(1.018);
}

.product-gallery__main.is-swapping {
  animation: none;
}

.product-summary {
  gap: 12px;
  align-content: start;
  overflow: hidden;
}

.product-summary h1 {
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1;
}

.product-summary__text {
  font-size: 16px;
  line-height: 1.38;
}

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

.product-summary__meta span {
  min-height: 62px;
  padding: 10px;
}

.product-price {
  padding: 14px 16px;
}

.product-price b {
  font-size: clamp(26px, 2.6vw, 34px);
}

.product-card__spec-table--detail {
  grid-template-columns: 1fr;
}

.product-card__spec-table--detail span {
  min-height: 34px;
  padding: 6px 8px;
}

.product-summary__actions {
  margin-top: 4px;
}

.product-info__side {
  padding: clamp(18px, 2.4vw, 28px);
}

.spec-group {
  margin-top: 10px;
  padding-top: 12px;
}

.spec-group p {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
}

.spec-group span {
  min-width: 0;
}

.spec-group strong {
  min-width: 0;
  text-align: left;
  overflow-wrap: anywhere;
}

.product-related__carousel {
  grid-auto-columns: minmax(300px, 360px);
}

.product-card--related {
  min-width: 0;
}

.product-card--related .product-card__body {
  min-height: 0;
}

@media (max-width: 1180px) {
  .product-detail__grid {
    grid-template-columns: 1fr;
  }

  .product-gallery,
  .product-summary {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .section,
  .footer,
  .catalog-layout,
  .catalog-hero,
  .site-search,
  .topbar,
  .hero,
  .stats-panel {
    width: 100%;
  }

  .product-summary__meta,
  .spec-group p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-related__carousel {
    grid-auto-columns: minmax(250px, 84vw);
  }
}

/* Final requested cleanup */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1001;
  background:
    linear-gradient(90deg, transparent 0, rgba(255,255,255,.7) 48%, transparent 100%) -280px 0 / 280px 100% no-repeat,
    #f2f0eb;
  opacity: 1;
  pointer-events: none;
  animation: pageLoadSweep .9s linear infinite;
  transition: opacity .2s ease, visibility .2s ease;
}

body.is-ready::after {
  opacity: 0;
  visibility: hidden;
  animation-play-state: paused;
}

@keyframes pageLoadSweep {
  to { background-position: calc(100vw + 280px) 0, 0 0; }
}

.catalog-more {
  border-color: rgba(17,17,17,.18);
  background:
    linear-gradient(135deg, rgba(17,17,17,.94), rgba(45,42,36,.9)),
    #111;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
}

.catalog-more p {
  color: rgba(255,255,255,.78);
}

.catalog-more .catalog-pagination__page,
.catalog-more .catalog-pagination__arrow {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.catalog-more .catalog-pagination__page:hover,
.catalog-more .catalog-pagination__arrow:hover {
  border-color: rgba(241,188,52,.58);
  background: rgba(241,188,52,.16);
}

.catalog-more .catalog-pagination__page.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #111;
}

.catalog-more .catalog-pagination__gap {
  color: rgba(255,255,255,.54);
}

.product-detail__grid {
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, .88fr);
  align-items: start;
}

.product-gallery,
.product-summary {
  min-height: 0;
}

.product-gallery {
  display: block;
}

.product-gallery__main {
  aspect-ratio: 1.38;
}

.product-summary {
  align-self: start;
  gap: 14px;
}

.product-summary__text {
  display: none;
}

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

.product-price {
  display: block;
  padding: 16px 18px;
}

.product-price span {
  display: none;
}

.product-price b {
  display: block;
}

.product-summary__actions .btn {
  width: 100%;
  justify-content: space-between;
}

.product-help {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(8,8,8,.9), rgba(8,8,8,.62) 54%, rgba(8,8,8,.24)),
    url('/assets/product-help.webp') center / cover no-repeat;
}

.product-help::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .28;
  pointer-events: none;
}

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

.product-help .btn {
  min-height: 64px;
  padding: 0 26px;
  font-size: 18px;
  border-color: var(--yellow);
  background: var(--yellow);
  color: #111;
}

@media (max-width: 1180px) {
  .product-detail__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .product-gallery__main {
    aspect-ratio: 1;
  }

  .product-help {
    min-height: 420px;
    background:
      linear-gradient(180deg, rgba(8,8,8,.9), rgba(8,8,8,.62)),
      url('/assets/product-help.webp') center / cover no-repeat;
  }
}

/* Final design pass: full-width chrome, product page polish */
.topbar {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: max(18px, calc((100vw - var(--container)) / 2 + 18px));
  padding-right: max(18px, calc((100vw - var(--container)) / 2 + 18px));
}

.footer {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: max(22px, calc((100vw - var(--container)) / 2 + 22px));
  padding-right: max(22px, calc((100vw - var(--container)) / 2 + 22px));
}

.delivery-strip {
  width: 100% !important;
  max-width: none !important;
  grid-template-columns: minmax(280px, .36fr) minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 42px);
  padding-left: max(22px, calc((100vw - var(--container)) / 2 + 22px));
  padding-right: max(22px, calc((100vw - var(--container)) / 2 + 22px));
}

.delivery-strip__copy {
  max-width: 520px;
  margin: 0;
}

.delivery-strip__map {
  max-width: none;
  min-height: clamp(640px, 54vw, 710px);
}

.product-detail__grid {
  grid-template-columns: minmax(0, 1.34fr) minmax(340px, .82fr);
  gap: clamp(20px, 2.6vw, 36px);
}

.product-gallery {
  background:
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(228,225,216,.64)),
    rgba(255,255,255,.72);
}

.product-gallery__viewport {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(17,17,17,.045), rgba(255,255,255,.32)),
    #ebe8df;
}

.product-gallery__open {
  display: grid;
  place-items: center;
}

.product-gallery__main {
  width: 100%;
  height: auto;
  aspect-ratio: 1.38;
  object-fit: contain !important;
  background: #ebe8df;
}

.product-summary {
  padding: clamp(18px, 2vw, 24px);
  gap: 10px;
}

.product-summary h1 {
  font-size: clamp(30px, 2.9vw, 46px);
  line-height: 1.04;
}

.product-summary__meta span {
  min-height: 56px;
}

.product-summary__badges a,
.product-summary__badges span {
  min-height: 26px;
  font-size: 11px;
}

.product-price {
  padding: 13px 15px;
}

.product-card__spec-table--detail {
  margin-top: 4px;
}

.product-card__spec-table--detail span {
  min-height: 32px;
}

.product-info {
  position: relative;
  width: min(96vw, var(--container));
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(34px, 5vw, 72px);
  border-top: 0;

}

.product-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .38;
  pointer-events: none;
}

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

.product-info__main,
.product-notice {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.075);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.product-info h2,
.product-info h3,
.product-info__main p,
.product-description,
.spec-group strong,
.product-notice b,
.product-notice p {
  color: inherit;
}


.product-description h2 {
  font-size: clamp(18px, 1vw, 24px);


}

.spec-group {
  border-top-color: rgba(255,255,255,.12);
}

.spec-group p {
  border-bottom-color: rgba(255,255,255,.08);
}

.spec-group span {
  color: rgba(255,255,255,.62);
}

.product-notice {
  border-color: rgba(217,155,19,.35);
  background: rgba(217,155,19,.12);
}

/* Product info: calmer light surface and cleaner spec dividers */
.product-info {

  color: var(--ink);
}

.product-info::before {
  background:
    linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);
  opacity: .5;
}

.product-info__main,
.product-notice {
  border-color: rgba(0,0,0,.12);
  background: rgba(255,255,255,.7);
  color: var(--ink);
  box-shadow: 0 14px 42px rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
}

.product-description,
.product-info__main p,
.product-notice p {
  color: #363631;
}

.spec-group {
  border-top: 0;
  padding-top: 0;
  margin-top: 18px;
}

.spec-group + .spec-group {
  margin-top: 24px;
}

.spec-group > b {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.14);
}

.spec-group p {
  border-bottom: 0;
}

.spec-group p + p {
  border-top: 1px solid rgba(0,0,0,.08);
}

.spec-group span {
  color: var(--muted);
}

.spec-group strong {
  color: var(--ink);
}

.product-notice {
  border-color: rgba(217,155,19,.28);
  background:
    linear-gradient(135deg, rgba(217,155,19,.12), rgba(255,255,255,.72)),
    rgba(255,255,255,.72);
}

/* Product info: richer light design */
.product-info {
  overflow: hidden;
  border-radius: 18px;
}

.product-info::before {
  opacity: .34;
}

.product-info__main,
.product-notice {
  border-radius: 14px;
  border-color: rgba(77,111,100,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62)),
    rgba(255,255,255,.68);
  box-shadow: 0 18px 46px rgba(30,28,24,.08);
}

.product-info h2,
.product-info h3 {
  width: max-content;
  max-width: 100%;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--yellow);
  letter-spacing: -.04em;
}

.product-info__side h3 {
  margin-bottom: 18px;
}

.spec-group {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 14px;
  background: rgba(248,247,242,.72);
}

.spec-group > b {
  margin-bottom: 4px;
  color: #111;
  border-bottom-color: rgba(217,155,19,.34);
}

.spec-group p {
  min-height: 38px;
}

.spec-group strong {
  font-weight: 950;
}

.product-notice {
  border-color: rgba(217,155,19,.34);
  background:
    linear-gradient(135deg, rgba(217,155,19,.18), rgba(255,255,255,.74)),
    rgba(255,255,255,.78);
}

/* Search suggestions polish */
.site-search__suggestions {
  overflow: hidden;
  transform-origin: top center;
  animation: suggestionsIn .18s ease both;
}

@keyframes suggestionsIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.suggest-group {
  gap: 6px;
}

.suggest-item {
  position: relative;
  overflow: hidden;
  min-height: 64px;
  border-radius: 8px;
  grid-template-columns: 58px minmax(0, 1fr);
  background: rgba(255,255,255,.72);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.suggest-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(217,155,19,.18), transparent 62%);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.suggest-item:hover,
.suggest-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217,155,19,.55);
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 30px rgba(0,0,0,.1);
}

.suggest-item:hover::before,
.suggest-item:focus-visible::before {
  opacity: 1;
}

.suggest-item img,
.suggest-item i,
.suggest-item__body {
  position: relative;
  z-index: 1;
}

.suggest-item--category {
  grid-template-columns: 48px minmax(0, 1fr);
}

.suggest-item--category img,
.suggest-item--category i {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
}

.suggest-item--product {
  grid-template-columns: 74px minmax(0, 1fr);
}

.suggest-item--product img,
.suggest-item--product i {
  width: 70px;
  height: 56px;
  border-radius: 7px;
  object-fit: cover;
}

.suggest-item__body {
  display: grid !important;
  gap: 2px;
}

.suggest-item__body b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggest-item__body em {
  display: block;
  color: #111;
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
}

.suggest-group--category .suggest-item:hover,
.suggest-group--category .suggest-item:focus-visible {
  border-color: rgba(67,47,138,.42);
  box-shadow: 0 14px 30px rgba(67,47,138,.12);
}

@media (max-width: 760px) {
  .suggest-item--product {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .suggest-item--product img,
  .suggest-item--product i {
    width: 60px;
    height: 50px;
  }
}

/* Catalog mobile/header fixes */
.site-search__control {
  z-index: 100;
  grid-template-columns: 1fr;
}

.site-search__clear {
  display: none !important;
}

.topbar__contacts button {
  width: auto;
  min-width: 44px;
  gap: 8px;
  padding: 0 14px;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

.topbar__contacts button span {
  font-size: 18px;
}

.topbar__contacts button em {
  font-style: normal;
}

.catalog-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  overflow: visible;
}

.catalog-active-filters a {
  max-width: 100%;
  min-width: 0;
  white-space: normal;
}

.catalog-active-filters a span {
  flex: 0 0 auto;
}

.catalog-title-nav__toggle {
  display: none;
  width: 100%;
  min-height: 40px;
  margin-top: 8px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 9px;
  background: rgba(255,255,255,.74);
  color: #111;
  font-weight: 950;
}

@media (max-width: 1180px) {
  .site-shell--catalog .catalog-filter-button {
    grid-column: 3;
  }

  .menu-button {
    grid-column: 4;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: auto minmax(0, 1fr) 36px 36px 36px;
  }

  .topbar__contacts {
    display: flex;
    grid-column: 5;
    justify-self: end;
    min-width: 0;
  }

  .topbar__contacts a {
    display: none;
  }

  .topbar__contacts button {
    width: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 0;
    font-size: 17px;
  }

  .topbar__contacts button em {
    display: none;
  }

  .site-shell--catalog .catalog-filter-button {
    grid-column: 3;
    grid-row: 1;
  }

  .menu-button {
    grid-column: 4;
    grid-row: 1;
  }

  .catalog-layout {
    grid-template-columns: 1fr !important;
  }

  .catalog-title-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow: hidden;
    max-height: 64px;
  }

  .catalog-title-nav.is-expanded {
    flex-wrap: wrap;
    max-height: none;
    overflow: visible;
  }

  .catalog-title-nav__card {
    flex: 0 0 min(78vw, 320px);
  }

  .catalog-title-nav__toggle {
    display: block;
  }

  .catalog-active-filters {
    margin-top: 0;
  }
}

@media (max-width: 1180px) {
  .delivery-strip,
  .product-detail__grid {
    grid-template-columns: 1fr;
  }

  .delivery-strip__copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .topbar,
  .footer,
  .delivery-strip {
    padding-left: 14px;
    padding-right: 14px;
  }

  .delivery-strip__map {
    min-height: 460px;
  }

  .product-info {
    width: 100%;
  }
}

/* Product cards should show full machinery photos */
.product-card__image img {
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(255,255,255,.54), rgba(229,226,217,.62)),
    #ebe8df;
}

.product-card:hover .product-card__image img {
  transform: scale(1.025);
}

/* Final stabilization pass */
body::after {
  opacity: 0;
  visibility: hidden;
}

body:not(.is-ready)::after,
body.is-navigating::after,
body.is-navigating-visible::after {
  opacity: 1;
  visibility: visible;
}

.site-shell {
  opacity: 1;
}

body:not(.is-ready) .site-shell {
  opacity: .01;
}

body.is-ready .site-shell {
  transition: opacity .16s ease;
}

.topbar:not(.topbar--has-filter) {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
}

.topbar.topbar--has-filter {
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
}

.catalog-more {
  align-items: center;
  justify-items: center;
  text-align: center;
  border: 1px solid rgba(34,34,31,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(236,233,224,.84)),
    #f4f1e8;
  color: #111;
}

.catalog-more p {
  color: #56534b;
}

.catalog-more .catalog-pagination__page,
.catalog-more .catalog-pagination__arrow {
  border-color: rgba(17,17,17,.12);
  background: rgba(255,255,255,.78);
  color: #111;
}

.catalog-more .catalog-pagination__page:hover,
.catalog-more .catalog-pagination__arrow:hover {
  border-color: rgba(217,155,19,.5);
  background: rgba(217,155,19,.16);
}

.catalog-more .catalog-pagination__page.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.catalog-more .catalog-pagination__gap {
  color: rgba(17,17,17,.48);
}

.site-search__suggestions {
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}

.suggest-item {
  will-change: transform, background, box-shadow;
}

.suggest-item__body {
  min-width: 0;
}

.suggest-item__body span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-detail__grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, .98fr);
}

.product-summary {
  align-self: start;
  max-width: 100%;
}

.product-price {
  border-radius: 12px;
  background: #000000;
}

.product-price b {
  font-size: clamp(25px, 2.3vw, 38px);
  line-height: 1;
}

.product-summary__badges {
  margin-bottom: 6px;
}

.product-summary__meta {
  gap: 8px;
}

.product-gallery__main {
  max-height: min(74vh, 720px);
  object-fit: contain !important;
}

.product-gallery__thumbs img {
  object-fit: contain;
  background: #ebe8df;
}

.product-info {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr);
  grid-template-areas:
    "main side"
    "notice notice";
  gap: clamp(16px, 2vw, 24px);
  background:
    radial-gradient(circle at 12% 0%, rgba(217,155,19,.18), transparent 34%),
    linear-gradient(135deg, rgba(245,244,239,.92), rgba(226,233,227,.78)),
    #f2f0eb;
}

.product-info__main {
  grid-area: main;
}

.product-info__side {
  grid-area: side;
}

.product-notice {
  grid-area: notice;
}

.product-info__main,
.product-notice {
  border-color: rgba(22,38,31,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.68)),
    rgba(255,255,255,.72);
}

.product-info::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  top: clamp(18px, 4vw, 52px);
  width: clamp(120px, 14vw, 210px);
  height: clamp(120px, 14vw, 210px);
  border: 1px solid rgba(217,155,19,.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,155,19,.18), transparent 68%);
  pointer-events: none;
}

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

.spec-group {
  background: rgba(255,255,255,.58);
}

.spec-group p {
  display: grid;
  grid-template-columns: minmax(120px, .54fr) minmax(0, .46fr);
  align-items: start;
  gap: 14px;
}

.spec-group strong {
  text-align: left;
}

/* Follow-up fixes: catalog filters, gallery controls, product info order */
.product-card__image img {
  object-fit: cover;
  background: transparent;
}

.product-card:hover .product-card__image img {
  transform: scale(1.045);
}

.product-gallery__nav {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: 28px;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(255,255,255,.9);
  backdrop-filter: none;
}

.product-gallery__nav--prev {
  left: 8px;
}

.product-gallery__nav--next {
  right: 8px;
}

.product-info {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "main"
    "side"
    "notice";
  background: transparent;
  padding-top: 24px;
}

.product-info::before,
.product-info::after {
  display: none;
}

.product-info__main,
.product-notice {
  background: rgba(255, 255, 255, 0.24);
}

.catalog-sidebar {
  z-index: 200;
  background: #f4f1ea;
}

.catalog-sidebar.is-open {
  z-index: 200;
  background: #f4f1ea;
  opacity: 1;
}

.catalog-sidebar__close {
  display: none !important;
}

.catalog-filter-group--brands {
  position: relative;
  max-height: 310px;
  padding-bottom: 22px;
  scrollbar-width: thin;
  scrollbar-color: rgba(17,17,17,.22) transparent;
}

.catalog-filter-group--brands::-webkit-scrollbar,
.catalog-category-list::-webkit-scrollbar {
  width: 3px;
}

.catalog-filter-group--brands::-webkit-scrollbar-thumb,
.catalog-category-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17,17,17,.2);
}

.catalog-filter-group--brands::after {
  content: "";
  position: sticky;
  left: 0;
  right: 0;
  bottom: -22px;
  display: block;
  height: 34px;
  margin: -34px -2px 0;
  background: linear-gradient(180deg, rgba(244,241,234,0), #f4f1ea 78%);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

body.is-catalog-sidebar-open,
body:has(.mobile-menu.is-open) {
  overflow: hidden;
}

.product-gallery__viewport {
  touch-action: pan-y;
}

.product-gallery__thumbs {
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
}

.product-help .btn {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.breadcrumbs {
  line-height: 1.25;
}

.site-shell--catalog .site-search {
  z-index: 260;
}

.site-shell--catalog .site-search__suggestions {
  z-index: 270;
}

.product-info__side {
  padding: 0;
}

.product-info__side h3 {
  margin-bottom: 12px;
}

.product-info__side .spec-group {
  padding: 12px 12px 10px;
}

.product-info__side .spec-group + .spec-group {
  margin-top: 12px;
}

.product-info__side .spec-group p {
  padding: 8px 0;
  gap: 10px;
}

.product-info__side .spec-group > b {
  margin-bottom: 6px;
}

.product-notice {
  border-color: rgba(217,155,19,.52);
  background:
    linear-gradient(135deg, rgba(217,155,19,.2), rgba(255,255,255,.86)),
    rgba(255,255,255,.86);
  box-shadow: 0 18px 44px rgba(217,155,19,.12);
}

.product-notice b {
  color: #111;
}

.topbar {
  z-index: 360;
}

.mega-catalog {
  z-index: 380;
}

body.is-mega-catalog-open .site-shell--catalog .site-search,
body.is-mega-catalog-open .site-shell--catalog .site-search__suggestions {
  z-index: 120;
  pointer-events: none;
}

body.is-mega-catalog-open .catalog-sidebar,
body.is-mega-catalog-open .catalog-sidebar.is-open {
  z-index: 110;
  pointer-events: none;
}

body.is-mega-catalog-open::before {
  z-index: 100;
}

body.is-mega-catalog-open .topbar {
  z-index: 1002;
}


body.is-mega-catalog-open #header-catalog-panel {
  z-index: 1003;
}


/* Tablet catalog repair: 761-1180 */
@media (min-width: 761px) and (max-width: 1180px) {
  .site-shell--catalog .site-search {
    position: relative;
    z-index: 260;
    width: min(100%, calc(100vw - 28px));
    padding: 0;
  }

  .site-shell--catalog .site-search__suggestions {
    z-index: 320;
    width: min(680px, calc(100vw - 28px));
  }

  .catalog-layout {
    width: min(100%, calc(100vw - 28px));
    grid-template-columns: 1fr !important;
    padding: 18px 0 54px;
    gap: 14px;
  }

  .catalog-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 275;
    width: min(390px, calc(100vw - 52px));
    max-height: none;
    overflow-y: auto;
    padding: 74px 14px 18px;
    background: #f4f1ea;
    transform: translateX(104%);
    opacity: 0;
    pointer-events: none;
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
  }

  .catalog-sidebar.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: -30px 0 90px rgba(0,0,0,.28);
  }

  body.is-catalog-sidebar-open::before {
    z-index: 260;
  }

  .catalog-results {
    min-width: 0;
  }

  .catalog-title-panel {
    padding: 18px;
  }

  .catalog-title-nav {
    display: none;
  }

  .catalog-title-nav__toggle {
    display: none;
  }

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

  .catalog-filter-group--brands {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    max-height: min(54vh, 440px);
    overflow-y: auto;
    padding-bottom: 42px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    mask-image: linear-gradient(180deg, #000 0, #000 calc(100% - 44px), transparent 100%);
  }

  .catalog-filter-group--brands::after {
    content: "";
    position: sticky;
    left: 0;
    right: 0;
    bottom: -42px;
    flex: 1 0 100%;
    height: 42px;
    margin-top: -42px;
    background: linear-gradient(180deg, rgba(244,241,234,0), rgba(244,241,234,.96) 72%);
    backdrop-filter: blur(5px);
    pointer-events: none;
  }
}

/* Hero switches to mobile composition below 1081px */
@media (min-width: 761px) and (max-width: 1080px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr !important;
    min-height: auto;
    padding: clamp(36px, 5vw, 58px) max(22px, var(--gutter)) 0;
    text-align: center;
    overflow: hidden;
  }

  .hero__copy {
    display: grid;
    justify-items: center;
    margin-top: 0;
    padding: 0;
    position: relative;
    z-index: 3;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(58px, 8.4vw, 82px);
    line-height: .92;
  }

  .hero__lead {
    max-width: 420px;
    margin-top: 18px;
    font-size: clamp(16px, 2.1vw, 22px);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 430px);
    gap: 10px;
    margin-top: 18px;
  }

  .hero__actions .btn,
  .hero .btn {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    min-height: clamp(320px, 36svh, 722px);
    margin: clamp(12px, 2vw, 22px) 0 0;
    overflow: visible;
    pointer-events: none;
  }

  .hero__visual::after {
    content: "";
    position: absolute;
    left: calc(var(--gutter) * -1);
    right: calc(var(--gutter) * -1);
    bottom: 0;
    height: 36%;
    background: linear-gradient(180deg, rgba(17,17,17,0), rgba(17,17,17,.48) 68%, rgba(17,17,17,.66));
    pointer-events: none;
    z-index: 0;
  }

  .hero__visual picture {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: end center;
    z-index: 2;
  }

  .hero__machine {
    position: relative;
    width: min(86vw, 520px);
    max-height: clamp(450px, 70svh, 720px);
    height: auto;
    inset: auto;
    right: auto;
    bottom: auto;
    transform: none !important;
    object-fit: contain;
    z-index: 2;
  }

  .hero__letters {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: clamp(18px, 4vw, 42px);
    top: auto;
    width: min(108vw, 820px);
    transform: translateX(-50%) !important;
    opacity: .52;
    z-index: 1;
  }
}

/* Unified hero composition for tablet and phone breakpoints */
@media (max-width: 1080px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr !important;
    align-items: start;
    min-height: auto;
    padding: clamp(24px, 5vw, 58px) max(12px, var(--gutter)) 0;
    text-align: center;
    overflow: hidden;
  }

  .hero__copy {
    display: grid;
    justify-items: center;
    width: min(100%, 640px);
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 3;
  }

  .hero h1 {
    max-width: min(100%, 620px);
    margin-inline: auto;
    font-size: clamp(38px, 8vw, 82px);
    line-height: .92;
  }

  .hero__lead {
    max-width: min(100%, 420px);
    margin: clamp(12px, 2vw, 18px) auto 0;
    font-size: clamp(14px, 2.1vw, 22px);
    line-height: 1.3;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 430px);
    gap: clamp(8px, 1.6vw, 12px);
    margin-top: clamp(12px, 2.2vw, 20px);
  }

  .hero__actions .btn,
  .hero .btn {
    width: 100%;
    min-height: clamp(40px, 5.2vw, 48px);
    justify-content: center;
    padding: 0 clamp(10px, 2vw, 16px);
    font-size: clamp(12px, 1.5vw, 14px);
    line-height: 1.08;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    min-height: clamp(360px, min(72svh, 82vw), 760px);
    margin: clamp(10px, 2vw, 22px) 0 0;
    overflow: visible;
    pointer-events: none;
  }

  .hero__visual::after {
    content: "";
    position: absolute;
    left: calc(max(12px, var(--gutter)) * -1);
    right: calc(max(12px, var(--gutter)) * -1);
    bottom: 0;
    height: 38%;
    background: linear-gradient(180deg, rgba(17,17,17,0), rgba(17,17,17,.46) 68%, rgba(17,17,17,.68));
    pointer-events: none;
    z-index: 0;
  }

  .hero__visual picture {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: end center;
  }

  .hero__machine {
    position: relative;
    inset: auto;
    right: auto;
    bottom: auto;
    top: 30%;
    width: auto;
    max-width: min(96vw, 560px);
    max-height: clamp(330px, min(68svh, 78vw), 720px);
    height: auto;
    transform: none !important;
    object-fit: contain;
    z-index: 2;
  }

  .hero__letters {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: clamp(14px, 4vw, 42px);
    width: min(112vw, 820px);
    transform: translateX(-50%) !important;
    opacity: .58;
    z-index: 1;
  }
}

/* Final interaction polish: catalog drawer, product content and gallery */
body.is-catalog-sidebar-open:not(.is-mega-catalog-open) .catalog-sidebar.is-open {
  z-index: 1004;
  opacity: 1;
  background: #f4f1ea;
  pointer-events: auto;
}

body.is-catalog-sidebar-open:not(.is-mega-catalog-open)::before {
  z-index: 1003;
}

body.is-catalog-sidebar-open:not(.is-mega-catalog-open) .topbar,
body.is-catalog-sidebar-open:not(.is-mega-catalog-open) .site-search,
body.is-catalog-sidebar-open:not(.is-mega-catalog-open) .site-search__control,
body.is-catalog-sidebar-open:not(.is-mega-catalog-open) .site-search__suggestions {
  z-index: 120;
}

.product-description :where(h1, h2, h3, h4, h5, h6) {
  margin: 24px 0 10px;
  color: #171714;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

.product-description :where(h1, h2, h3, h4, h5, h6):first-child {
  margin-top: 0;
}

.product-description :where(p, li) {
  color: #34342f;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.58;
  letter-spacing: 0;
  text-transform: none;
}

.product-gallery {
  padding: clamp(10px, 1.2vw, 16px);
  border: 1px solid rgba(17,17,17,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(242,240,233,.86));
}

.product-gallery__viewport {
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 15%, rgba(217,155,19,.12), transparent 34%),
    #ece9df;
}

.product-gallery__open {
  position: relative;
  z-index: 1;
  cursor: zoom-in;
}

.product-gallery__nav {
  z-index: 8;
  width: 38px;
  height: 46px;
  border: 1px solid rgba(17,17,17,.1);
  border-radius: 9px;
  background: rgba(255,255,255,.84);
  color: #151512;
  font-size: 26px;
  line-height: 1;
  text-shadow: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.product-gallery__nav:hover,
.product-gallery__nav:focus-visible {
  background: #bcbcbc;
  color: #fff;
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.product-gallery__nav--prev {
  left: 10px;
}

.product-gallery__nav--next {
  right: 10px;
}

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  padding: 10px;
  overflow-x: auto;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 10px;
  background: rgba(17,17,17,.035);
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(17,17,17,.26) transparent;
}

.product-gallery__thumbs::-webkit-scrollbar {
  height: 4px;
}

.product-gallery__thumbs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17,17,17,.24);
}

.product-gallery__thumbs button {
  flex: 0 0 clamp(72px, 8vw, 104px);
  height: auto;
  aspect-ratio: 4 / 3;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 4px;
  background: rgba(255,255,255,.7);
  opacity: .68;
  box-shadow: none;
  cursor: pointer;
  transition: opacity .18s ease, border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.product-gallery__thumbs button:hover,
.product-gallery__thumbs button:focus-visible {
  opacity: 1;
  background: #fff;
  transform: translateY(-1px);
}

.product-gallery__thumbs button.is-active {
  /*border-color: #171714;*/
  opacity: 1;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(217,155,19,.24);
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: contain;
  background: #edeae1;
}

/* Header SVG actions */
.catalog-filter-button,
.topbar__contacts button {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
}

.catalog-filter-button img,
.topbar__contacts button img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.catalog-filter-button {
  gap: 8px;
}

.catalog-filter-button img {
  width: 19px;
  height: 19px;
}

.catalog-filter-button em,
.topbar__contacts button em {
  white-space: nowrap;
}

@media (min-width: 761px) {
  .site-shell--catalog .catalog-filter-button {
    width: auto;
    min-width: 44px;
    padding: 0 12px;
  }

  .site-shell--catalog .catalog-filter-button em {
    display: block;
  }
}

@media (max-width: 760px) {
  .catalog-filter-button,
  .topbar__contacts button {
    grid-auto-flow: row;
    gap: 0;
  }

  .catalog-filter-button img,
  .topbar__contacts button img {
    width: 18px;
    height: 18px;
  }

  .catalog-filter-button em,
  .topbar__contacts button em {
    display: none !important;
  }
}

/* Header action order: filter, feedback, phone, burger */
.topbar {
  grid-template-columns: minmax(160px, 1fr) auto minmax(0, max-content) auto;
}

.topbar__contacts {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.menu-button {
  grid-column: 4;
  justify-self: end;
}

.topbar__contacts .catalog-filter-button,
.topbar__contacts button,
.topbar__contacts a {
  min-height: 40px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 10px;
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.topbar__contacts .catalog-filter-button,
.topbar__contacts button {
  width: auto;
  min-width: 44px;
  background: #111;
  color: #fff;
}

.topbar__contacts .catalog-filter-button {
  display: inline-grid;
}

.topbar__contacts .catalog-filter-button img {
  filter: brightness(0) invert(1);
}

.topbar__contacts a {
  background: rgba(255,255,255,.58);
  color: #111;
}

.topbar__contacts .catalog-filter-button em,
.topbar__contacts button em {
  display: block;
  font-style: normal;
}

@media (max-width: 1180px) {
  .topbar,
  .topbar.topbar--has-filter {
    grid-template-columns: auto minmax(0, 1fr) minmax(0, max-content) 36px;
  }

  .topbar__contacts,
  .topbar.topbar--has-filter .topbar__contacts {
    grid-column: 3;
  }

  .menu-button,
  .topbar--has-filter .menu-button {
    grid-column: 4;
  }
}

/* Header repair: stable columns, single logo, catalog item underline and pulse placeholders */
.topbar {
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr) auto;
  column-gap: clamp(16px, 2vw, 32px);
}

.topbar.topbar--has-filter {
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr) auto;
}

.topbar__left {
  min-width: 0;
}

.topbar .brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.topbar__contacts {
  min-width: 0;
}

.topbar__contacts a,
.topbar__contacts button,
.topbar__contacts .catalog-filter-button {
  white-space: nowrap;
}

/*#header-catalog-panel a::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  left: 12px;*/
/*  right: 12px;*/
/*  bottom: 8px;*/
/*  width: auto;*/
/*  height: 2px;*/
/*  border-radius: 999px;*/
/*  background: currentColor;*/
/*  opacity: 0;*/
/*  transform: scaleX(.22);*/
/*  transform-origin: left center;*/
/*  transition: transform .24s ease, opacity .2s ease;*/
/*}*/

#header-catalog-panel .mega-catalog__children a::after {
  left: 10px;
  right: 10px;
  bottom: 6px;
  background: #2f6f9f;
}

#header-catalog-panel a:hover::after,
#header-catalog-panel a:focus-visible::after,
#header-catalog-panel a.is-active::after {
  opacity: .9;
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-catalog-app].is-loading::before,
  body.is-navigating::before {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .topbar,
  .topbar.topbar--has-filter {
    grid-template-columns: auto minmax(0, 1fr) minmax(0, max-content) auto;
  }
}

@media (max-width: 760px) {
  .topbar,
  .topbar:not(.topbar--has-filter),
  .topbar.topbar--has-filter {
    grid-template-columns: auto minmax(0, 1fr) minmax(0, max-content) 34px;
    gap: 6px;
  }

  .topbar__contacts,
  .topbar.topbar--has-filter .topbar__contacts {
    grid-column: 3;
    gap: 5px;
    justify-self: end;
  }

  .topbar__contacts .catalog-filter-button,
  .topbar__contacts button {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px;
    min-height: 34px;
    padding: 0 !important;
    border-radius: 8px;
  }

  .topbar__contacts a {
    display: inline-grid !important;
    min-height: 34px;
    max-width: 118px;
    padding: 0 7px;
    border-radius: 8px;
    font-size: 11px;
    letter-spacing: -.02em;
  }

  .topbar__contacts .catalog-filter-button em,
  .topbar__contacts button em {
    display: none !important;
  }

  .topbar__contacts .catalog-filter-button img,
  .topbar__contacts button img {
    width: 17px;
    height: 17px;
  }

  .menu-button,
  .topbar--has-filter .menu-button {
    grid-column: 4;
    width: 34px !important;
    min-width: 34px !important;
    height: 34px;
    min-height: 34px;
  }
}

/* Product gallery controls and header filter color */
.topbar__contacts .catalog-filter-button {
  border-color: rgba(0,0,0,.14);
  background: rgba(255,255,255,.58);
  color: #111;
}

.topbar__contacts .catalog-filter-button:hover,
.topbar__contacts .catalog-filter-button:focus-visible {
  background: rgba(255,255,255,.82);
}

.topbar__contacts .catalog-filter-button img {
  filter: none;
}

.product-gallery__viewport {
  position: relative;
  display: grid;
  isolation: isolate;
}

.product-gallery__open {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 100%;
  place-items: center;
  pointer-events: auto;
}

.product-gallery__main {
  cursor: zoom-in;
}

.product-gallery__nav {
  z-index: 20;
  pointer-events: auto;
}

.product-gallery__nav img {
  width: 18px;
  height: 18px;
  display: block;
  pointer-events: none;
}

.product-gallery__nav--next img {
  transform: rotate(-45deg);
}

.product-gallery__nav--prev img {
  transform: scaleX(-1) rotate(-45deg);
}

/* Mobile header, modal and menu polish */
.menu-button {
  display: inline-grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  padding: 0;
}

.menu-button span {
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: #050505;
}

.mobile-menu {
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(4px);
}

.mobile-menu__card {
  background:
    radial-gradient(circle at 80% 0, rgba(217,155,19,.12), transparent 34%),
    #f5f2ea;
}

.mobile-menu__top {
  height: 62px;
  padding: 0 14px;
  border-bottom-color: rgba(0,0,0,.09);
}

.mobile-menu__top b {
  font-size: 22px;
}

.mobile-menu__top button {
  width: 38px;
  min-height: 38px;
  padding: 0;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.68);
  color: #111;
  font-size: 24px;
  line-height: 1;
}

.mobile-menu__panel {
  gap: 8px;
  padding: 12px;
}

.mobile-menu__panel a {
  min-height: 48px;
  border-radius: 10px;
  background: rgba(255,255,255,.55);
  font-size: 16px;
  letter-spacing: -.015em;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.mobile-menu__panel a:hover,
.mobile-menu__panel a:focus-visible {
  background: #fff;
  transform: translateX(2px);
}

.mobile-menu__panel button {
  width: max-content;
  min-height: 38px;
  border-radius: 10px;
  background: rgba(17,17,17,.9);
}

.mobile-menu__panel a.mobile-menu__all {
  border-radius: 10px;
}

@media (max-width: 760px) {
  .lead-modal {
    align-items: center !important;
    justify-items: center !important;
    place-items: center !important;
    padding: 12px;
    overflow: auto;
  }

  .lead-modal__card {
    width: min(100%, 440px);
    max-height: calc(100svh - 24px);
    margin: auto;
    overflow: auto;
  }

  .lead-modal__form {
    align-content: center;
    min-height: min(620px, calc(100svh - 24px));
    padding: 18px;
  }

  .topbar__contacts a {
    min-width: 126px;
    max-width: none;
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .menu-button,
  .topbar--has-filter .menu-button {
    display: inline-grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    padding: 0 !important;
  }

  .menu-button span {
    width: 19px;
    height: 2px;
  }
}

/* Product page final refinements */
.site-shell--catalog {
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,.24) 0 1px, transparent 1.7px),
    radial-gradient(circle at 64% 42%, rgba(0,0,0,.05) 0 1px, transparent 1.6px),
    radial-gradient(circle at 32% 76%, rgba(217,155,19,.09) 0 1px, transparent 1.8px),
    linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px),
    var(--page);
  background-size: 19px 19px, 27px 27px, 35px 35px, 52px 52px, 52px 52px, auto;
}

.product-info {
  border-radius: 16px;
  background-size: 23px 23px, 31px 31px, auto, auto;
}

.product-info__main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(0,0,0,.045) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 58%, rgba(255,255,255,.48) 0 1px, transparent 1.6px),
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.52)),
    rgba(255,255,255,.6);
  background-size: 17px 17px, 29px 29px, auto, auto;
}

.product-description :where(h1, h2, h3, h4, h5, h6) {
  width: auto;
  max-width: 760px;
  padding-bottom: 0;
  border-bottom: 0;
  color: #20201c;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.18;
  letter-spacing: 0;
}

.product-description :where(h2) {
  font-size: clamp(19px, 1.55vw, 25px);
}

.product-related__carousel {
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
}

.product-lightbox {
  z-index: 5000;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.08), transparent 42%),
    rgba(0,0,0,.92);
}

.product-lightbox img {
  border-radius: 8px;
  background: #ece9df;
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}

.product-lightbox__close,
.product-lightbox__nav {
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.product-lightbox__close:hover,
.product-lightbox__close:focus-visible,
.product-lightbox__nav:hover,
.product-lightbox__nav:focus-visible {
  background: rgba(255,255,255,.22);
}

.product-neighbor-categories {
  display: grid;
  gap: 18px;
}

.product-neighbor-categories__head {
  margin-bottom: 0;
}

.product-neighbor-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-neighbor-category {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  min-height: 96px;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(239,236,226,.72)),
    #f5f3ec;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.product-neighbor-category:hover,
.product-neighbor-category:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217,155,19,.45);
  box-shadow: 0 18px 38px rgba(30,28,24,.12);
}

.product-neighbor-category__image {
  display: block;
  width: 92px;
  height: 96px;
  background: #e8e4d8;
}

.product-neighbor-category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-neighbor-category__body {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 12px;
}

.product-neighbor-category__body b {
  overflow: hidden;
  color: #111;
  font-size: 16px;
  line-height: 1.12;
  text-overflow: ellipsis;
}

.product-neighbor-category__body small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

@media (max-width: 1180px) {
  .product-neighbor-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .product-info {
    border-radius: 0;
  }

  .product-neighbor-categories__grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .product-neighbor-category {
    flex: 0 0 min(84vw, 330px);
    scroll-snap-align: start;
  }
}

/* Compact category thumbnails inside related products */
.product-related .product-neighbor-categories__grid {
  display: flex;
  grid-template-columns: none;
  gap: 8px;
  margin-top: 14px;
  padding: 2px 0 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(17,17,17,.22) transparent;
}

.product-related .product-neighbor-category {
  grid-template-columns: 54px minmax(92px, 138px);
  flex: 0 0 auto;
  min-height: 58px;
  border-radius: 7px;
  background: rgba(255,255,255,.72);
  box-shadow: none;
}

.product-related .product-neighbor-category:hover,
.product-related .product-neighbor-category:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(30,28,24,.1);
}

.product-related .product-neighbor-category__image {
  width: 54px;
  height: 58px;
}

.product-related .product-neighbor-category__body {
  padding: 8px 10px;
}

.product-related .product-neighbor-category__body b {
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.12;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

/* Visible Mesh Gradient + Noise background */
.site-shell--catalog {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(244,241,232,.94), rgba(229,235,227,.88)),
    var(--page);
}

.site-shell--catalog::before,
.site-shell--catalog::after {
  content: "" !important;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-shell--catalog::before {
  z-index: 0;
  background:
    radial-gradient(circle at 14% 9%, rgba(217,155,19,.34), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(96,132,116,.24), transparent 30%),
    radial-gradient(circle at 25% 58%, rgba(235,218,174,.42), transparent 34%),
    radial-gradient(circle at 78% 70%, rgba(142,122,184,.18), transparent 32%),
    radial-gradient(circle at 52% 38%, rgba(255,255,255,.52), transparent 28%);
  filter: blur(150px) saturate(118%);
  transform: scale(1.08);
  opacity: .92;
}

.site-shell--catalog::after {
  z-index: 1;
  background-image:
    radial-gradient(circle at 16% 24%, rgba(0,0,0,.16) 0 .55px, transparent .7px),
    radial-gradient(circle at 72% 46%, rgba(255,255,255,.34) 0 .55px, transparent .75px),
    radial-gradient(circle at 42% 78%, rgba(0,0,0,.1) 0 .45px, transparent .7px);
  background-size: 7px 7px, 11px 11px, 13px 13px;
  mix-blend-mode: soft-light;
  opacity: .38;
}

.site-shell--catalog > * {
  position: relative;
  z-index: 2;
}

/* Product page fixes: gallery clarity, neutral grainy mesh, related cards */
.site-shell--catalog {
  background:
    linear-gradient(135deg, #efede6 0%, #e3e5dc 48%, #f3f1ea 100%),
    var(--page);
}

.site-shell--catalog::before {
  background:
    radial-gradient(circle at 8% 4%, rgba(83,91,82,.26), transparent 31%),
    radial-gradient(circle at 84% 7%, rgba(212,172,82,.24), transparent 29%),
    radial-gradient(circle at 18% 62%, rgba(255,255,255,.7), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(97,112,103,.2), transparent 33%),
    radial-gradient(circle at 52% 36%, rgba(225,213,186,.34), transparent 28%);
  filter: blur(190px) saturate(108%);
  transform: scale(1.12);
  opacity: .95;
}

.site-shell--catalog::after {
  background-image:
    radial-gradient(circle, rgba(0,0,0,.34) 0 .7px, transparent .95px),
    radial-gradient(circle, rgba(255,255,255,.42) 0 .65px, transparent .95px),
    repeating-radial-gradient(circle at 30% 20%, rgba(0,0,0,.08) 0 .45px, transparent .9px 2.4px);
  background-position: 0 0, 3px 4px, 0 0;
  background-size: 5px 5px, 7px 7px, 9px 9px;
  mix-blend-mode: multiply;
  opacity: .24;
}

.site-shell--catalog {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.5), transparent 34%),
    radial-gradient(circle at 82% 76%, rgba(83,91,82,.14), transparent 34%),
    rgba(248,247,242,.5);
  backdrop-filter: blur(18px);
}

.product-summary__badges .product-summary__badge--category {
  --badge-color: #5f6f63;
  border-color: rgba(95,111,99,.42);
  background: rgba(95,111,99,.13);
  color: #26342b;
}

.product-gallery__open,
.product-gallery__main {
  cursor: zoom-in;
}

.product-lightbox {
  z-index: 10000;
}

.product-related__carousel {
  align-items: stretch;
  grid-auto-columns: clamp(260px, 24vw, 340px);
  padding: 4px 2px 16px;
}

.product-related__carousel .product-card--related {
  display: grid;
  grid-template-rows: clamp(170px, 15vw, 220px) minmax(0, 1fr);
  min-height: 100%;
  overflow: hidden;
}

.product-related__carousel .product-card--related .product-card__media {
  position: relative;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
}

.product-related__carousel .product-card--related .product-card__image {
  position: absolute !important;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.product-related__carousel .product-card--related .product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-related__carousel .product-card--related .product-card__body {
  position: relative;
  z-index: 2;
  min-height: 0;
  padding: 14px;
  background: rgba(248,247,242,.94);
}

.product-related__carousel .product-card--related h3 {
  display: grid;
  gap: 6px;
  min-height: 0;
  margin: 0;
  font-size: 17px;
  line-height: 1.12;
}

/* Industrial pastel interactive grain background */
.site-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 24%, rgba(232, 224, 210, .85) 0%, transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(210, 218, 225, .78) 0%, transparent 36%),
    radial-gradient(circle at 70% 82%, rgba(225, 210, 185, .58) 0%, transparent 40%),
    radial-gradient(circle at 22% 88%, rgba(205, 220, 215, .58) 0%, transparent 34%),
    linear-gradient(135deg, #fbf8f2 0%, #f2eee7 48%, #eef2f3 100%);
}

.site-shell::before,
.site-shell::after {
  content: none !important;
}

.industrial-mesh,
.industrial-grain-canvas,
.industrial-particle-canvas,
.industrial-static-grain {
  position: fixed;
  pointer-events: none;
}

.industrial-blueprint {
  position: absolute;
  pointer-events: none;
}

.industrial-mesh {
  inset: -24%;
  z-index: 0;
  opacity: .82;
  filter: blur(115px);
  background:
    radial-gradient(circle at 20% 26%, rgba(220, 205, 180, .56), transparent 36%),
    radial-gradient(circle at 76% 24%, rgba(190, 205, 215, .5), transparent 40%),
    radial-gradient(circle at 55% 78%, rgba(215, 195, 165, .42), transparent 43%),
    radial-gradient(circle at 34% 64%, rgba(190, 215, 205, .38), transparent 34%);
  animation: industrialMeshBreath 30s ease-in-out infinite alternate;
}

.industrial-blueprint {
  inset: 0;
  z-index: 1;
  opacity: .26;
  mix-blend-mode: multiply;
  background:
    linear-gradient(rgba(48, 62, 62, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 62, 62, .11) 1px, transparent 1px),
    linear-gradient(rgba(48, 62, 62, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 62, 62, .055) 1px, transparent 1px),
    repeating-linear-gradient(135deg, transparent 0 62px, rgba(48, 62, 62, .055) 63px 64px, transparent 65px 128px);
  background-size: 96px 96px, 96px 96px, 24px 24px, 24px 24px, auto;
  mask-image: radial-gradient(circle at 50% 45%, #000 0 58%, transparent 88%);
}

.industrial-grain-canvas,
.industrial-particle-canvas {
  inset: 0;
  width: 100%;
  height: 100%;
}

.industrial-grain-canvas {
  z-index: 2;
  mix-blend-mode: multiply;
}

.industrial-particle-canvas {
  z-index: 3;
  mix-blend-mode: multiply;
}

.industrial-static-grain {
  inset: 0;
  z-index: 4;
  opacity: .4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.8'/%3E%3C/svg%3E");
  background-size: 90px 90px;
}

.site-shell > :not(.industrial-mesh):not(.industrial-blueprint):not(.industrial-grain-canvas):not(.industrial-particle-canvas):not(.industrial-static-grain) {
  position: relative;
  z-index: 10;
}

@keyframes industrialMeshBreath {
  0% { transform: translate3d(-1.2%, -1%, 0) scale(1) rotate(0deg); }
  50% { transform: translate3d(1.4%, 1.2%, 0) scale(1.045) rotate(1deg); }
  100% { transform: translate3d(-.8%, 1.6%, 0) scale(1.075) rotate(-1.2deg); }
}

@media (max-width: 768px) {
  .industrial-mesh {
    filter: blur(90px);
  }

  .industrial-static-grain {
    opacity: .16;
    background-size: 110px 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industrial-mesh {
    animation: none;
  }
}

/* Header catalog panel must stay centered and above page layers */
.topbar {
  z-index: 11900;
}

.topnav__catalog {
  position: static;
}

#header-catalog-panel {
  position: fixed !important;
  left: 50% !important;
  top: clamp(86px, 9vw, 112px) !important;
  z-index: 2147483000 !important;
  width: min(1120px, calc(100vw - 48px));
  max-height: min(72vh, 720px);
  overflow: auto;
  pointer-events: none;
  transform: translate3d(-50%, 12px, 0) !important;
}

.topnav__catalog.is-open #header-catalog-panel,
#header-catalog-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
  transform: translate3d(-50%, 0, 0) !important;
}

body.is-mega-catalog-open .topbar {
  z-index: 11900;
}

body.is-mega-catalog-open #header-catalog-panel {
  z-index: 2147483000 !important;
  pointer-events: auto !important;
}

body > #header-catalog-panel {
  position: fixed !important;
  z-index: 2147483000 !important;
}

.product-gallery__viewport {
  cursor: zoom-in;
}

.product-gallery__nav {
  cursor: pointer;
}

/* Search suggestions must float above content and sit below the input */
.site-search {
  position: relative;
  z-index: 11800 !important;
}

.site-search__control {
  position: relative;
  z-index: 2;
}

.site-search__suggestions {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: var(--gutter) !important;
  right: var(--gutter) !important;
  width: auto !important;
  max-height: min(62vh, 560px);
  overflow: auto;
  z-index: 11850 !important;
  pointer-events: auto;
}

body.is-catalog-sidebar-open:not(.is-mega-catalog-open) .site-search,
body.is-catalog-sidebar-open:not(.is-mega-catalog-open) .site-search__control,
body.is-catalog-sidebar-open:not(.is-mega-catalog-open) .site-search__suggestions {
  z-index: 11850 !important;
}

body.is-mega-catalog-open .site-search,
body.is-mega-catalog-open .site-search__suggestions {
  z-index: 120 !important;
  pointer-events: none;
}

/* Stable top hero composition */
#top.hero {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(480px, 1.2fr);
  align-items: center;
  gap: clamp(18px, 2.8vw, 44px);
  min-height: clamp(610px, 44vw, 720px);
  padding-bottom: clamp(22px, 2.8vw, 38px);
  overflow: hidden;
}

#top .hero__copy {
  align-self: center;
  margin-top: 0;
  padding-bottom: 0;
}

#top .hero h1 {
  margin-bottom: 0;
}

#top .hero__lead {
  margin: clamp(14px, 1.6vw, 22px) 0 0;
}

#top .hero__actions {
  margin-top: clamp(18px, 2vw, 26px);
}

#top .hero__visual {
  position: relative;
  align-self: center;
  display: grid;
  place-items: center end;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  min-height: 0;
  max-height: clamp(460px, 38vw, 590px);
  margin: 0;
  overflow: visible;
  isolation: isolate;
}

#top .hero__visual picture {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center end;
}

#top .hero__machine {
  position: absolute;
  width: min(100%, 920px);
  max-width: none;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  object-position: center right;
  transform: none !important;
}

#top .hero__letters {
  position: absolute;
  z-index: 1;
  left: 45%;
  right: auto;
  top: 50%;
  bottom: auto;
  /*width: min(92%, 900px);*/
  max-width: none;
  opacity: .22;
  transform: translate(-50%, -50%) !important;
  pointer-events: none;
}

#top + .stats-panel {
  margin-top: clamp(-36px, -2.2vw, -18px);
}

@media (max-width: 1080px) {
  #top.hero {
    grid-template-columns: 1fr !important;
    gap: clamp(8px, 1.8vw, 16px);
    min-height: auto;
    padding: clamp(22px, 4vw, 40px) max(14px, var(--gutter)) 0;
    text-align: center;
  }

  #top .hero__copy {
    width: min(100%, 640px);
    margin: 0 auto;
    display: grid;
    justify-items: center;
  }

  #top .hero__lead {
    margin-top: clamp(12px, 2vw, 18px);
  }

  #top .hero__actions {
    margin-top: clamp(14px, 2.4vw, 22px);
  }

  #top .hero__visual {
    aspect-ratio: 1.18 / 1;
    margin-top: 0;
  }

  #top .hero__visual picture {
    place-items: end center;
  }

  #top .hero__machine {
    width: auto;
    max-width: min(92vw, 540px);
    max-height: 96%;
    object-position: center bottom;
  }

  #top .hero__letters {
    top: auto;
    bottom: clamp(12px, 3vw, 30px);
    /*width: min(92vw, 720px);*/
    opacity: .42;

    transform: translateX(-50%) !important;
  }

  #top + .stats-panel {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  #top.hero {
    padding: 18px 12px 0 !important;
  }

  #top .hero h1 {
    max-width: 360px;
    font-size: clamp(42px, 13vw, 56px);
  }

  #top .hero__visual {
    aspect-ratio: 1.8 / 1.02;
    margin-top: 4px;
  }

  #top .hero__machine {
    max-width: min(94vw, 420px);
    max-height: 96%;
  }

  #top .hero__letters {
    bottom: 14px;
    /*width: min(90vw, 480px);*/
    opacity: .56;
  }
}

/* Final top surface polish */
.topbar {
  position: sticky;
  top: 0;
  z-index: 2147482000;
  background: rgba(248, 247, 242, .82);
  color: var(--ink);
  border-color: rgba(0, 0, 0, .1);
  border-bottom-color: rgba(0, 0, 0, .12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.topbar .brand,
.topbar .topnav,
.topbar .topnav a {
  color: var(--ink);
}

.topnav a::after {
  background: var(--ink);
}

.topbar__contacts a,
.topbar__contacts button,
.topbar__contacts .catalog-filter-button,
.menu-button {
  color: var(--ink);
  border-color: rgba(0, 0, 0, .18);
  background: rgba(255, 255, 255, .42);
}

.menu-button span,
.catalog-filter-button span {
  background: var(--ink);
}

#top + .stats-panel {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-inline: var(--gutter);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 -18px 54px rgba(0, 0, 0, .12);
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
}

#top + .stats-panel .stats-panel__item {
  border-right-color: rgba(255, 255, 255, .16);
}

#top + .stats-panel strong,
#top + .stats-panel span {
  color: #fff;
}

#top + .stats-panel span {
  opacity: .72;
}

@media (max-width: 760px) {
  .topbar {
    top: 0;
  }

  #top + .stats-panel {
    padding-inline: 18px;
  }

  #top + .stats-panel .stats-panel__item {
    border-color: rgba(255, 255, 255, .14);
  }
}

/* Request pass: lighter home delivery/stats and independent sticky header */
.topbar {
  position: sticky !important;
  top: 0 !important;
  width: min(calc(100% - 24px), 1500px);
  margin-top: 0 !important;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  z-index: 2147482000;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(248,247,242,.82));
  box-shadow: 0 12px 34px rgba(37, 34, 25, .12);
}

.topbar__left {
  grid-column: 1;
  justify-self: start;
}

.topnav {
  grid-column: 2;
  justify-self: center;
}

.topbar__contacts {
  grid-column: 3;
  justify-self: end;
}

.menu-button {
  width: 54px;
  min-width: 54px;
  min-height: 48px;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  gap: 6px;
}

.menu-button span {
  width: 31px;
  height: 3px;
  border-radius: 999px;
  background: #111;
}

.topbar__contacts button[data-lead-open] img {
  filter: brightness(0);
}

#top + .stats-panel {
  background:
    radial-gradient(circle at 14% 0, rgba(217,155,19,.06), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(244,241,232,.12));
  color: var(--ink);
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 -10px 34px rgba(50,44,30,.08), inset 0 1px 0 rgba(255,255,255,.68);
  backdrop-filter: blur(16px) saturate(1.04);
  -webkit-backdrop-filter: blur(16px) saturate(1.04);
}

#top + .stats-panel .stats-panel__item {
  border-right-color: rgba(0,0,0,.1);
}

#top + .stats-panel strong {
  color: #15130f;
}

#top + .stats-panel span {
  color: #5f594d;
  opacity: 1;
}

.delivery-strip {
  background:
          radial-gradient(circle at 100% 0, rgba(47,111,159,.12), transparent 34%),
          linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(238,235,226,.12));
  color: var(--ink);
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 24px 70px rgba(45,39,27,.09);
}

.delivery-strip__copy,
.delivery-strip__copy p:not(.eyebrow),
.delivery-strip__copy h2 {
  color: var(--ink);
}

.delivery-strip__copy p:not(.eyebrow) {
  color: #5f594d;
}

.delivery-strip__facts span {
  border-color: rgba(0,0,0,.1);
  background: rgba(255,255,255,.62);
  color: #25221d;
}

.delivery-strip__map {
  background:
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(229,226,217,.58));
  border-color: rgba(0,0,0,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.delivery-route-panel {
  background: rgba(255,255,255,.9);
  color: var(--ink);
  border-color: rgba(0,0,0,.1);
  box-shadow: 0 18px 44px rgba(37,34,25,.14);
}

.delivery-route-panel span {
  color: #6a6254;
}

@media (max-width: 1180px) {
  .topbar,
  .topbar.topbar--has-filter {
    grid-template-columns: auto minmax(0, 1fr) minmax(0, max-content) auto;
  }

  .topnav {
    grid-column: 2;
  }

  .topbar__contacts,
  .topbar.topbar--has-filter .topbar__contacts {
    grid-column: 3;
  }

  .menu-button,
  .topbar--has-filter .menu-button {
    grid-column: 4;
  }
}

/* Final request overrides */
.topbar,
.topbar.topbar--has-filter {
  grid-template-columns: minmax(128px, 1fr) minmax(0, 1fr) minmax(128px, 1fr) !important;
}

.topbar .brand {
  width: 48px !important;
  min-width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border-radius: 12px;
  background: transparent !important;
  overflow: hidden;
}

.topbar .brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.topbar .topnav {
  position: absolute !important;
  left: 50%;
  top: 50%;
  grid-column: auto !important;
  justify-self: auto !important;
  width: max-content;
  max-width: min(720px, calc(100% - 360px));
  transform: translate(-50%, -50%) !important;
}

#header-catalog-panel :where(.mega-catalog__roots a, .mega-catalog__children a)::after {
  content: "" !important;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  width: auto;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), opacity .2s ease;
}

#header-catalog-panel :where(.mega-catalog__roots a, .mega-catalog__children a):hover::after,
#header-catalog-panel :where(.mega-catalog__roots a, .mega-catalog__children a):focus-visible::after,
#header-catalog-panel .mega-catalog__roots a.is-active::after {
  opacity: .85;
  transform: scaleX(1);
}

.topnav__catalog > a::after {
  transform-origin: left center;
  transition: width .24s ease, transform .24s ease, opacity .2s ease;
}

#header-catalog-panel {
  transition: opacity .22s ease, visibility .22s ease, transform .28s cubic-bezier(.2, .8, .2, 1) !important;
}

#header-catalog-panel :where(.mega-catalog__roots a, .mega-catalog__children a) {
  position: relative;
  overflow: visible;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
  outline: 0;
  transition:
    border-color .22s ease,
    background-color .22s ease,
    box-shadow .22s ease,
    color .22s ease;
}

#header-catalog-panel :where(.mega-catalog__roots a, .mega-catalog__children a)::after,
#header-catalog-panel .mega-catalog__children a::after {
  content: "" !important;
  position: absolute;
  left: 8px !important;
  right: 8px !important;
  bottom: 6px !important;
  height: 2px;
  border-radius: 999px;
  background: #000000 !important;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease, opacity .18s ease;
}

#header-catalog-panel .mega-catalog__roots,
#header-catalog-panel .mega-catalog__children {
  row-gap: 8px;
  overflow: visible;
}

#header-catalog-panel .mega-catalog__pane .mega-catalog__children {
  overflow-y: auto;
  overflow-x: visible;
  padding-bottom: 4px;
}

#header-catalog-panel :where(.mega-catalog__roots a, .mega-catalog__children a):hover,
#header-catalog-panel :where(.mega-catalog__roots a, .mega-catalog__children a):focus-visible,
#header-catalog-panel .mega-catalog__roots a.is-active {
  border-color: rgba(17,17,17,.22) !important;
  background-color: rgba(255,255,255,.84);
  box-shadow: 0 14px 34px rgba(37,34,25,.1);
}

#header-catalog-panel :where(.mega-catalog__roots a, .mega-catalog__children a):hover::after,
#header-catalog-panel :where(.mega-catalog__roots a, .mega-catalog__children a):focus-visible::after,
#header-catalog-panel .mega-catalog__roots a.is-active::after,
#header-catalog-panel .mega-catalog__pane .mega-catalog__children a:hover::after,
#header-catalog-panel .mega-catalog__pane .mega-catalog__children a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.mega-catalog__pane.is-active {
  animation: none;
}

@keyframes mega-pane-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catalog-title-nav__card,
.catalog-category-pill,
.product-card {
  transform: translateY(0);
  transition:
    transform .24s cubic-bezier(.2, .8, .2, 1),
    border-color .22s ease,
    background-color .22s ease,
    box-shadow .22s ease;
}

.catalog-title-nav__card:hover,
.catalog-title-nav__card:focus-visible,
.catalog-title-nav__card.is-active,
.catalog-category-pill:hover,
.catalog-category-pill:focus-visible,
.catalog-category-pill.is-active {
  transform: translateY(-2px);
  border-color: rgba(217,155,19,.46);
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 32px rgba(37,34,25,.1);
}

.catalog-category-pill:hover {
  transform: translateY(-2px);
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(217,155,19,.5);
  box-shadow: 0 18px 46px rgba(37,34,25,.13);
}

.product-card__image img {
  transition: transform .42s cubic-bezier(.2, .8, .2, 1);
}

.footer-contact {

  gap: 8px;
  align-items: stretch;
}

.footer__contacts .footer-contact a {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 58px;
  padding: 11px 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 10px;
  background: rgba(255,255,255,.7);
  color: var(--ink);
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}

.footer__contacts .footer-contact a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer__contacts .footer-contact a:hover,
.footer__contacts .footer-contact a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217,155,19,.55);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 30px rgba(37,34,25,.12);
}

.footer__contacts .footer-contact button {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 58px;
  padding: 0;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.footer__contacts .footer-contact button:hover,
.footer__contacts .footer-contact button:focus-visible {
  transform: translateY(-2px);
  border-color: #111;
  background: var(--yellow);
  color: #111;
}

.footer__contacts .footer-contact button.is-copied {
  background: #2f6f9f;
  color: #fff;
}

.contact-island {
  pointer-events: none;
}

.contact-island__toggle {
  pointer-events: auto;
}

.contact-island.is-open {
  pointer-events: auto;
}

.contact-island:not(.is-open) .contact-island__panel {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(16px) scale(.94) !important;
}

.contact-island.is-open .contact-island__panel {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

[data-catalog-app]::before {
  display: none !important;
}

[data-catalog-results] {
  transform-origin: top center;
  transition: opacity .24s ease, transform .3s ease, filter .3s ease;
  will-change: opacity, transform;
}

[data-catalog-app].is-loading [data-catalog-results] {
  opacity: .78;
  transform: translateY(4px);
  filter: none !important;
  pointer-events: none;
}

[data-catalog-app]::after {
  content: none !important;
}

[data-catalog-app].is-loading::after {
  content: none !important;
}

[data-catalog-app].is-exiting [data-catalog-results] {
  opacity: 0;
  transform: translateY(8px);
  filter: none !important;
}

[data-catalog-app].is-entering [data-catalog-results] {
  animation: catalog-results-enter .42s cubic-bezier(.2, .9, .2, 1) both;
}

@keyframes catalog-results-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes catalog-ghost-sheen {
  0% { background-position: -280px 0, 0 0, 0 88px, 34.5% 88px, 69% 88px, 0 266px, 34.5% 266px, 69% 266px; }
  100% { background-position: calc(100% + 280px) 0, 0 0, 0 88px, 34.5% 88px, 69% 88px, 0 266px, 34.5% 266px, 69% 266px; }
}

@media (max-width: 1180px) {
  .topbar,
  .topbar.topbar--has-filter {
    grid-template-columns: auto minmax(0, 1fr) minmax(0, max-content) auto !important;
  }

  .topbar .topnav {
    position: static !important;
    grid-column: 2 !important;
    justify-self: center !important;
    max-width: 100%;
    transform: none !important;
  }

  .topbar .brand {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
  }
}

@media (max-width: 760px) {
  .topbar .brand {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    border-radius: 8px;
  }

  [data-catalog-app]::after {
    top: 96px;
    height: 360px;
    background:
      linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,.62), rgba(255,255,255,.16)) 0 0 / 220px 100% no-repeat,
      linear-gradient(rgba(255,255,255,.78), rgba(255,255,255,.55)) 0 0 / 100% 62px no-repeat,
      linear-gradient(90deg, rgba(255,255,255,.68), rgba(255,255,255,.38)) 0 82px / 100% 116px no-repeat,
      linear-gradient(90deg, rgba(255,255,255,.58), rgba(255,255,255,.32)) 0 214px / 100% 116px no-repeat;
  }

  @keyframes catalog-ghost-sheen {
    0% { background-position: -240px 0, 0 0, 0 82px, 0 214px; }
    100% { background-position: calc(100% + 240px) 0, 0 0, 0 82px, 0 214px; }
  }
}

/* Final header/footer fixes */
.topbar,
.topbar.topbar--has-filter {
  position: sticky !important;
  top: 0 !important;
  z-index: 2147483000 !important;
}

.topbar .brand {
  width: 64px !important;
  min-width: 64px !important;
  height: 64px !important;
  border-radius: 14px;
}

.topbar .brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header-catalog-panel,
.topnav__catalog.is-open #header-catalog-panel,
#header-catalog-panel.is-open,
body.is-mega-catalog-open #header-catalog-panel {
  z-index: 2147483001 !important;
}

.footer-contact {
  display: grid;
  align-items: center;
  min-height: 58px;
}

.footer__contacts .footer-contact a {
  min-height: 58px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.footer__contacts .footer-contact a span {
  display: block;
  margin-top: 3px;
  text-align: center;
}

@media (max-width: 1180px) {
  .topbar .brand {
    width: 54px !important;
    min-width: 54px !important;
    height: 54px !important;
  }
}

@media (max-width: 760px) {
  .topbar .brand {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    border-radius: 10px;
  }
}
