.catalog-page,
.product-page {
  min-width: 320px;
  background: var(--surface);
}

.desktop-nav > a.is-current {
  color: var(--brand-dark);
}

.desktop-nav > a.is-current::after {
  transform: scaleX(1);
}

.catalog-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 76px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(118deg, var(--surface) 0%, var(--surface) 58%, var(--surface-mint) 100%);
}

.catalog-orbit {
  position: absolute;
  top: -280px;
  right: -120px;
  width: 680px;
  aspect-ratio: 1;
  border: 1px solid rgba(11, 124, 121, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(11, 124, 121, 0.022), 0 0 0 140px rgba(11, 124, 121, 0.015);
}

.catalog-hero-inner {
  position: relative;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 58px;
  color: var(--ink-500);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--brand-dark);
}

.catalog-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.catalog-heading-grid h1 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5vw, 5.1rem);
}

.catalog-heading-grid > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.7;
}

.catalog-search-shell {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  max-width: 900px;
  min-height: 68px;
  margin-top: 54px;
  padding: 0 18px 0 22px;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(15, 55, 55, 0.065);
}

.catalog-search-shell:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 124, 121, 0.1), 0 18px 46px rgba(15, 55, 55, 0.065);
}

.catalog-search-shell > svg {
  width: 23px;
  fill: none;
  stroke: var(--brand-dark);
  stroke-linecap: round;
  stroke-width: 1.7;
}

.catalog-search-shell input {
  width: 100%;
  height: 66px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}

.catalog-search-shell input::placeholder {
  color: var(--ink-500);
}

.catalog-search-shell > button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--ink-700);
  font-size: 20px;
}

.catalog-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(15, 55, 55, 0.12);
}

.catalog-suggestions a {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
}

.catalog-suggestions a:last-child {
  border-bottom: 0;
}

.catalog-suggestions a:hover,
.catalog-suggestions a:focus-visible {
  background: var(--surface-mint);
}

.catalog-suggestions img {
  width: 76px;
  height: 64px;
  padding: 6px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.catalog-suggestions span {
  display: grid;
  gap: 3px;
}

.catalog-suggestions small,
.catalog-suggestions em {
  color: var(--ink-500);
  font-size: 10px;
  font-style: normal;
}

.catalog-suggestions strong {
  font-size: 14px;
}

.catalog-section {
  padding: 92px 0 124px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 54px;
}

.catalog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.filter-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface-soft);
}

.filter-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 22px;
  border-bottom: 1px solid var(--border);
}

.filter-panel-heading strong {
  font-size: 16px;
}

.filter-panel-heading button,
.active-filter-reset {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 700;
}

.filter-group {
  margin: 0;
  padding: 24px 22px 26px;
  border: 0;
  border-bottom: 1px solid var(--border);
}

.filter-group:last-child {
  border-bottom: 0;
}

.filter-group legend {
  width: 100%;
  margin-bottom: 16px;
  color: var(--brand-dark);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.filter-options {
  display: grid;
  gap: 12px;
}

.filter-option {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: start;
  gap: 10px;
  color: var(--ink-700);
  cursor: pointer;
  font-size: 13px;
  line-height: 1.45;
}

.filter-option input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--brand);
}

.filter-option small {
  color: var(--ink-500);
  font-family: var(--mono);
  font-size: 9px;
}

.catalog-results {
  min-width: 0;
}

.catalog-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 48px;
  margin-bottom: 24px;
}

.catalog-result-count {
  margin: 0;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 600;
}

.catalog-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-500);
  font-size: 11px;
}

.catalog-sort select {
  min-height: 44px;
  padding: 0 36px 0 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
}

.catalog-sort select:focus-visible {
  border-color: var(--brand);
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.active-filters > button:not(.active-filter-reset) {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface-mint);
  color: var(--ink-700);
  font-size: 10px;
}

.active-filters > button span {
  color: var(--brand-dark);
  font-size: 15px;
}

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

.catalog-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.catalog-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: 0 16px 38px rgba(15, 55, 55, 0.055);
}

.catalog-card-media {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 80% 18%, rgba(11, 124, 121, 0.08), transparent 35%),
    linear-gradient(145deg, var(--surface-mint), #fbfdfd);
}

.catalog-card-media img {
  position: relative;
  width: calc(100% - 56px);
  height: calc(100% - 56px);
  margin: auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 22px rgba(15, 55, 55, 0.1));
  transition: transform 300ms ease;
}

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

[data-product-media].is-image-error::after {
  position: relative;
  z-index: 1;
  max-width: 220px;
  padding: 24px;
  color: var(--ink-700);
  content: attr(data-fallback-label);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.catalog-card-media > span {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 6px 9px;
  border: 1px solid rgba(174, 203, 198, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-card-copy {
  display: flex;
  min-height: 286px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.catalog-card-brand {
  margin-bottom: 14px;
  color: var(--brand);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-card-copy h2 {
  margin: 0;
  font-size: clamp(1.22rem, 1.55vw, 1.55rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.catalog-card-copy p {
  display: -webkit-box;
  margin: 14px 0 22px;
  overflow: hidden;
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.catalog-card-foot {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.catalog-card-foot > span {
  max-width: 155px;
  color: var(--ink-500);
  font-size: 9px;
  line-height: 1.45;
}

.catalog-card-foot a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.catalog-card-foot i {
  font-style: normal;
  transition: transform 180ms ease;
}

.catalog-card:hover .catalog-card-foot i {
  transform: translateX(4px);
}

.catalog-skeleton {
  display: grid;
  gap: 14px;
  padding: 16px 18px 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.catalog-skeleton i,
.catalog-skeleton span {
  display: block;
  border-radius: 10px;
  background: linear-gradient(90deg, #edf4f2 20%, #f7faf9 50%, #edf4f2 80%) 0 0 / 220% 100%;
  animation: skeleton-shift 1.4s ease-in-out infinite;
}

.catalog-skeleton i { aspect-ratio: 4 / 3; }
.catalog-skeleton span { height: 18px; }
.catalog-skeleton span:nth-child(3) { width: 82%; }
.catalog-skeleton span:nth-child(4) { width: 62%; }

@keyframes skeleton-shift {
  to { background-position: -220% 0; }
}

.catalog-empty {
  min-height: 510px;
  padding: 70px 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface-soft);
  text-align: center;
}

.catalog-empty h2 {
  max-width: 620px;
  margin: 30px auto 16px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.catalog-empty p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--ink-700);
  line-height: 1.7;
}

.empty-logo {
  width: 152px;
  height: auto;
  margin: 0 auto;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 46px;
}

.catalog-pagination button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  font-size: 12px;
}

.catalog-pagination button[aria-current="page"] {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.catalog-mobile-tools,
.filter-drawer {
  display: none;
}

.catalog-footer {
  border-top: 1px solid var(--border);
}

/* Product detail */
.product-detail-main {
  min-height: 70vh;
}

.product-detail-hero {
  padding: 66px 0 104px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface) 72%, rgba(234, 245, 243, 0.75) 100%);
}

.product-detail-hero .breadcrumbs {
  margin-bottom: 46px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: 86px;
}

.product-detail-media {
  position: relative;
  display: grid;
  min-height: 530px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 75% 18%, rgba(11, 124, 121, 0.1), transparent 34%),
    linear-gradient(145deg, var(--surface-mint), #fbfdfd);
}

.product-detail-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  padding: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 26px 32px rgba(15, 55, 55, 0.12));
}

.product-detail-copy .product-brand-label {
  display: block;
  margin-bottom: 18px;
  color: var(--brand);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-copy h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.7vw, 4.8rem);
  letter-spacing: -0.045em;
  word-spacing: 0.06em;
}

.product-direction-label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--brand-dark);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-detail-lead {
  max-width: 640px;
  margin: 28px 0 34px;
  color: var(--ink-700);
  font-size: 18px;
  line-height: 1.7;
}

.product-availability {
  max-width: 580px;
  margin: 20px 0 0;
  color: var(--ink-500);
  font-size: 11px;
  line-height: 1.6;
}

.product-content-section {
  padding: 104px 0;
  border-bottom: 1px solid var(--border);
}

.product-content-section.is-soft {
  background: var(--surface-soft);
}

.product-section-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.product-section-title h2 {
  max-width: 460px;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
}

.product-description p {
  max-width: 780px;
  margin: 0 0 20px;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.8;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.product-feature {
  position: relative;
  min-height: 132px;
  padding: 24px 24px 24px 58px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.6;
}

.product-feature::before {
  position: absolute;
  top: 26px;
  left: 24px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--brand);
  border-radius: 100% 0 100% 100%;
  content: "";
}

.spec-groups {
  display: grid;
  gap: 34px;
}

.spec-group h3 {
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.spec-list {
  margin: 0;
  border-top: 1px solid var(--border-strong);
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
  gap: 32px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}

.spec-list dt {
  color: var(--ink-500);
  font-size: 13px;
  line-height: 1.55;
}

.spec-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

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

.document-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 96px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color 180ms ease, transform 180ms ease;
}

.document-card:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
}

.document-card > span:first-child {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-mint);
  color: var(--brand-dark);
  font-family: var(--mono);
  font-size: 10px;
}

.document-card div {
  display: grid;
  gap: 5px;
}

.document-card small {
  color: var(--ink-500);
  font-size: 10px;
  text-transform: uppercase;
}

.document-card strong {
  font-size: 14px;
  line-height: 1.4;
}

.document-card > span:last-child {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
}

.manufacturer-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
}

.manufacturer-card img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

.manufacturer-card div {
  display: grid;
  gap: 7px;
}

.manufacturer-card small {
  color: var(--ink-500);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.manufacturer-card strong {
  font-size: 20px;
}

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

.product-contact-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--surface-deep);
  color: var(--white);
}

.product-contact-cta::before {
  position: absolute;
  top: -280px;
  right: 10%;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(140, 209, 199, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(140, 209, 199, 0.02), 0 0 0 140px rgba(140, 209, 199, 0.015);
  content: "";
}

.product-contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
}

.product-contact-inner h2 {
  max-width: 760px;
}

.product-contact-inner p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

.product-not-found {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  place-items: center;
  padding: 90px 0;
  text-align: center;
}

.product-not-found h1 {
  margin: 30px auto 18px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.product-not-found p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .catalog-layout { grid-template-columns: 250px minmax(0, 1fr); gap: 34px; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail-grid { gap: 54px; }
  .product-detail-media { min-height: 480px; }
  .product-detail-media img { height: 450px; padding: 44px; }
}

@media (max-width: 900px) {
  .catalog-heading-grid { grid-template-columns: 1fr; gap: 24px; }
  .catalog-heading-grid > p { max-width: 700px; }
  .catalog-sidebar { display: none; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-mobile-tools { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 28px; }
  .catalog-mobile-tools .button { min-height: 46px; }
  .filter-drawer-open span { display: inline-grid; min-width: 22px; height: 22px; place-items: center; border-radius: 999px; background: var(--brand); color: var(--white); font-size: 10px; }
  .catalog-sort-mobile { display: block; }
  .catalog-results-head .catalog-sort { display: none; }
  .filter-drawer:not([hidden]) { position: fixed; z-index: 300; inset: 0; display: block; }
  .filter-drawer-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(6, 34, 35, 0.48); }
  .filter-drawer-panel { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; max-height: min(88dvh, 760px); border-radius: 24px 24px 0 0; outline: 0; background: var(--surface); box-shadow: 0 -24px 80px rgba(0, 20, 22, 0.18); }
  .filter-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border); }
  .filter-drawer-head h2 { font-size: 1.6rem; }
  .filter-drawer-body { overflow-y: auto; }
  .filter-drawer-actions { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 10px; padding: 16px 20px max(16px, env(safe-area-inset-bottom)); border-top: 1px solid var(--border); background: var(--surface); }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-copy { max-width: 760px; }
  .product-section-grid { grid-template-columns: 1fr; gap: 42px; }
  .manufacturer-card { grid-template-columns: 150px 1fr; }
  .manufacturer-card .button { grid-column: 1 / -1; }
  .product-contact-inner { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 640px) {
  .catalog-hero { padding: 44px 0 54px; }
  .breadcrumbs { margin-bottom: 38px; font-size: 8px; }
  .catalog-heading-grid h1 { font-size: clamp(2.55rem, 11vw, 3.7rem); }
  .catalog-search-shell { min-height: 58px; margin-top: 38px; padding-inline: 16px 12px; border-radius: 15px; }
  .catalog-search-shell input { height: 56px; font-size: 14px; }
  .catalog-section { padding: 62px 0 84px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-sort-mobile select { max-width: 190px; }
  .catalog-card-copy { min-height: 250px; }
  .catalog-suggestions a { grid-template-columns: 62px 1fr; min-height: 82px; padding: 10px 13px; }
  .catalog-suggestions img { width: 60px; height: 56px; }
  .product-detail-hero { padding: 44px 0 72px; }
  .product-detail-media { min-height: 350px; border-radius: 22px; }
  .product-detail-media img { height: 340px; padding: 28px; }
  .product-detail-copy h1 { font-size: clamp(2.55rem, 12vw, 3.65rem); }
  .product-detail-lead { font-size: 16px; }
  .product-content-section { padding: 76px 0; }
  .product-feature-grid { grid-template-columns: 1fr; }
  .spec-list div { grid-template-columns: 1fr; gap: 7px; padding: 15px 0; }
  .document-card { grid-template-columns: 48px 1fr; gap: 14px; }
  .document-card > span:first-child { width: 46px; height: 46px; }
  .document-card > span:last-child { grid-column: 2; }
  .manufacturer-card { grid-template-columns: 1fr; gap: 22px; }
  .manufacturer-card img { width: 180px; }
  .related-grid { grid-template-columns: 1fr; }
  .product-contact-cta { padding: 76px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-skeleton i,
  .catalog-skeleton span { animation: none; }
}
