/* =========================================================
   BABYLONE CATALOGUE — Clean shop + simple sidebar
   Works with shop.html + catalog.js + commerce.css
========================================================= */

.catalog-page {
  background: #fff;
}

.catalog-page :focus-visible,
.product-dialog :focus-visible {
  outline: 2px solid var(--ink-3);
  outline-offset: 4px;
}

.catalog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
}

.catalog-breadcrumb a:hover {
  color: var(--ink);
}

/* Intro */
.catalog-intro {
  padding: 50px 0 42px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 8%, rgba(162,164,109,.18), transparent 28%),
    linear-gradient(180deg, #f7f2e8, #f1eadc);
}

.catalog-intro-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(34px, 7vw, 90px);
  align-items: end;
}

.catalog-intro h1 {
  max-width: 930px;
  font: 700 clamp(52px, 6.6vw, 100px)/.9 var(--font-display);
  letter-spacing: -.058em;
}

.catalog-intro h1 em {
  display: block;
  color: #747c50;
  font-weight: 500;
  font-style: italic;
}

.catalog-intro-note {
  padding-left: 22px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.catalog-intro-note strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.catalog-audience button {
  min-height: 40px;
  padding: 9px 17px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  font-size: 12px;
  font-weight: 850;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.catalog-audience button:hover {
  border-color: var(--ink);
}

.catalog-audience button[aria-pressed="true"] {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

/* Quick links — cleaner compact pills */
.catalog-quick-access {
  padding: 18px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.catalog-quick-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 12px;
}

.catalog-quick-head > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.catalog-quick-head > a {
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 850;
}

.catalog-quick-head > a:hover {
  color: var(--ink);
}

.catalog-quick-grid {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.catalog-quick-grid::-webkit-scrollbar {
  display: none;
}

.catalog-quick-grid > a {
  min-height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaf6;
  font-size: 12px;
  font-weight: 850;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.catalog-quick-grid > a:hover {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.catalog-quick-grid svg {
  width: 17px;
  height: 17px;
  color: #747c50;
  stroke-width: 1.5;
}

.catalog-quick-grid > a:hover svg {
  color: #d4d6a4;
}

/* Trust bar */
.catalog-trust {
  color: #fff;
  background: #68704a;
}

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

.catalog-trust-grid > div {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.catalog-trust-grid > div:first-child {
  border-left: 1px solid rgba(255,255,255,.18);
}

.catalog-trust-grid svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #ece8cd;
  stroke-width: 1.45;
}

.catalog-trust-grid strong,
.catalog-trust-grid small {
  display: block;
}

.catalog-trust-grid strong {
  margin-bottom: 3px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.catalog-trust-grid small {
  color: rgba(255,255,255,.7);
  font-size: 11px;
  line-height: 1.45;
}

/* Main layout */
.catalog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  padding-top: 46px;
  padding-bottom: 78px;
}

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

/* Cleaner sidebar */
.catalog-filters {
  align-self: start;
  position: sticky;
  top: 155px;
  max-height: calc(100vh - 178px);
  overflow-y: auto;
  padding: 16px 14px 18px;
  border: 1px solid var(--line);
  background: #fbfaf6;
  scrollbar-width: thin;
}

.catalog-filters > summary {
  display: none;
}

.filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.filter-title button,
.catalog-reset {
  padding: 0;
  color: var(--muted);
  border: 0;
  background: transparent;
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.department-list {
  display: grid;
  gap: 2px;
}

.department-button {
  min-height: 36px;
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  color: #586354;
  border: 0;
  border-radius: 3px;
  background: transparent;
  text-align: left;
  font-size: 11px;
}

.department-button svg {
  width: 15px;
  height: 15px;
  color: #747c50;
  stroke-width: 1.55;
}

.department-button span:nth-child(2) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.department-button span:last-child {
  color: #858b78;
  font-size: 9px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.department-button:hover {
  color: var(--ink);
  background: #eef1e8;
}

.department-button:disabled {
  opacity: .38;
  cursor: not-allowed;
  background: transparent;
}

.department-button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
  font-weight: 850;
}

.department-button[aria-pressed="true"] svg,
.department-button[aria-pressed="true"] span:last-child {
  color: #d0d3a1;
}

.filter-field,
.filter-checks {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.filter-field {
  display: grid;
  gap: 8px;
}

.filter-field label,
.catalog-mobile-category label,
.catalog-sort label {
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.filter-field select,
.catalog-sort select,
.catalog-mobile-category select {
  width: 100%;
  min-height: 39px;
  padding: 8px 28px 8px 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  font: 11px var(--font-sans);
  text-overflow: ellipsis;
}

.filter-checks {
  display: grid;
  gap: 11px;
}

.filter-checks label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #586354;
  font-size: 11px;
  line-height: 1.35;
  cursor: pointer;
}

.filter-checks input {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  accent-color: var(--ink);
}

.filter-advice {
  margin-top: 20px;
  padding: 16px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 11px;
}

.filter-advice strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
}

.filter-advice p {
  line-height: 1.55;
}

.filter-advice a {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 850;
}

/* Toolbar */
.catalog-toolbar {
  display: flex;
  align-items: end;
  gap: 14px;
  margin-bottom: 19px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: #faf9f5;
}

.catalog-mobile-category {
  display: none;
}

.catalog-search {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 3px;
  border-bottom: 1px solid var(--ink);
}

.catalog-search svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.catalog-search input {
  width: 100%;
  min-width: 0;
  padding: 6px 0;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

.catalog-search button {
  padding: 6px 0 6px 8px;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 850;
}

.catalog-sort {
  width: 176px;
  display: grid;
  gap: 5px;
  flex: 0 0 auto;
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.catalog-result-label {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-meta h2 {
  font: 700 clamp(18px, 2vw, 25px)/1.1 var(--font-display);
  letter-spacing: -.025em;
}

.catalog-meta p {
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.active-filters:not(:empty) {
  margin-top: 13px;
}

.active-filter {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 26px;
  padding-top: 19px;
}

.product-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 11px 11px 16px;
  border: 1px solid #edf0e9;
  background: #fff;
  transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24,58,39,.2);
  box-shadow: 0 20px 50px rgba(24,58,39,.08);
}

.product-image-link {
  position: relative;
  height: 228px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 25px 12px 20px;
  background: linear-gradient(180deg, #fff, #fbfbf7);
}

.product-image-link img {
  width: 100%;
  height: 100%;
  max-height: 178px;
  object-fit: contain;
  object-position: center;
  transition: transform .45s var(--ease);
}

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

.product-badge {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 1;
  padding: 4px 7px;
  color: #68704a;
  background: #f2f4ed;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-category {
  margin: 13px 0 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 63px;
  margin-bottom: 12px;
  font: 650 14px/1.5 var(--font-sans);
  overflow-wrap: anywhere;
}

.product-card h3 a {
  display: block;
  max-height: 4.5em;
  overflow: hidden;
}

.product-card h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.product-price {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.product-price small {
  margin-right: 4px;
  font-size: 10px;
  font-weight: 600;
}

.product-old-price {
  color: var(--muted);
  font-size: 11px;
}

.product-stock-note {
  margin-top: 5px;
  color: #74644a;
  font-size: 10px;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  gap: 9px;
  color: #858a7c;
  text-align: center;
  font-size: 11px;
}

.product-placeholder svg {
  width: 38px;
  height: 38px;
  margin: auto;
  stroke-width: 1;
}

.catalog-loading,
.catalog-empty {
  grid-column: 1 / -1;
  min-height: 330px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: var(--muted);
  text-align: center;
}

.catalog-loading svg {
  width: 34px;
  height: 34px;
  color: #747c50;
  stroke-width: 1.3;
}

.catalog-empty h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font: 700 32px/1 var(--font-display);
}

.catalog-empty p {
  max-width: 410px;
  font-size: 13px;
  line-height: 1.6;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 36px;
}

.catalog-pagination button {
  width: 36px;
  min-height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  font-size: 12px;
}

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

.catalog-pagination button:disabled {
  opacity: .35;
  cursor: default;
}

.catalog-disclaimer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  font-size: 10px;
  line-height: 1.5;
}

.catalog-noscript {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}

/* Homepage preview */
.catalog-preview {
  padding: 75px 0;
  background: #fff;
}

.catalog-preview .section-heading {
  align-items: end;
  margin-bottom: 28px;
}

.catalog-preview .section-heading h2 {
  font-size: clamp(35px, 4vw, 58px);
}

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

.catalog-preview .text-link {
  flex-shrink: 0;
}

/* Product modal */
.product-dialog {
  width: min(1000px, calc(100% - 40px));
  max-height: calc(100dvh - 48px);
  margin: auto;
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 4px;
  background: #fff;
  overscroll-behavior: contain;
}

.product-dialog::backdrop {
  background: rgba(16,31,22,.62);
  backdrop-filter: blur(4px);
}

.product-dialog-close {
  position: sticky;
  top: 15px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin: 15px 15px -51px auto;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 26px;
  line-height: 1;
}

.product-dialog-inner {
  display: grid;
  grid-template-columns: 45% minmax(0, 1fr);
}

.product-gallery {
  min-width: 0;
  align-self: start;
  padding: 65px 35px 30px;
}

.product-main-image {
  height: 350px;
  display: grid;
  place-items: center;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: contain;
  object-position: center;
}

.product-thumbnails {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.product-thumbnails button {
  width: 54px;
  height: 54px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}

.product-thumbnails button[aria-pressed="true"] {
  border-color: var(--ink);
}

.product-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-content {
  padding: 64px 42px 38px 20px;
}

.product-detail-content h2 {
  font: 700 clamp(30px, 3vw, 42px)/1.04 var(--font-display);
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}

.product-detail-content .product-category {
  margin-top: 0;
}

.product-detail-sku {
  margin: 15px 0;
  color: var(--muted);
  font-size: 10px;
  overflow-wrap: anywhere;
}

.product-detail-content .product-price {
  font-size: 26px;
}

.product-detail-stock {
  margin: 10px 0 19px;
  color: var(--muted);
  font-size: 11px;
}

.product-detail-notice {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.product-description,
.product-category-paths {
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.product-description h3,
.product-category-paths h3 {
  margin-bottom: 12px;
  font: 800 12px var(--font-sans);
}

.product-description p {
  color: #566052;
  white-space: pre-line;
  line-height: 1.75;
  overflow-wrap: anywhere;
  font-size: 12px;
}

.product-category-paths a {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.product-category-paths a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.product-variant-field {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 12px;
}

.product-variant-field select {
  padding: 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}

/* Bottom CTA */
.catalog-bottom-help {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #183a27;
}

.catalog-bottom-help::after {
  content: "BABYLONE";
  position: absolute;
  right: -25px;
  bottom: -65px;
  color: rgba(255,255,255,.035);
  font: 700 clamp(120px, 18vw, 280px)/.8 var(--font-display);
  pointer-events: none;
}

.catalog-bottom-help-inner {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
  padding-top: 70px;
  padding-bottom: 70px;
}

.catalog-bottom-help .eyebrow {
  color: #c9cb98;
}

.catalog-bottom-help h2 {
  max-width: 850px;
  font: 700 clamp(42px, 5vw, 72px)/.98 var(--font-display);
  letter-spacing: -.04em;
}

.catalog-bottom-help h2 em {
  display: block;
  color: #d3d5a4;
  font-weight: 500;
  font-style: italic;
}

.catalog-bottom-actions {
  display: grid;
  gap: 10px;
}

.catalog-bottom-actions .button {
  width: 100%;
  justify-content: space-between;
}

.catalog-bottom-actions .button-primary {
  color: var(--ink);
  background: #d2d4a4;
}

.catalog-bottom-actions .button-primary:hover {
  background: #e3e5b9;
}

.catalog-bottom-actions .button-ghost {
  border-color: rgba(255,255,255,.28);
}

@media (max-width: 1180px) {
  .catalog-layout {
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 24px;
  }

  .product-grid {
    column-gap: 18px;
  }

  .product-image-link {
    height: 210px;
  }

  .product-image-link img {
    max-height: 160px;
  }
}

@media (max-width: 900px) {
  .catalog-intro-content,
  .catalog-layout,
  .catalog-bottom-help-inner {
    grid-template-columns: 1fr;
  }

  .catalog-intro {
    padding-top: 38px;
  }

  .catalog-intro-note {
    max-width: 650px;
    padding-left: 0;
    border-left: 0;
  }

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

  .catalog-trust-grid > div,
  .catalog-trust-grid > div:first-child {
    min-height: 74px;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .catalog-trust-grid > div:last-child {
    border-bottom: 0;
  }

  .catalog-layout {
    gap: 22px;
    padding-top: 32px;
  }

  .catalog-filters {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
  }

  .catalog-filters > summary {
    display: flex;
    justify-content: space-between;
    padding-bottom: 17px;
    cursor: pointer;
    list-style: none;
    font-size: 13px;
    font-weight: 850;
  }

  .catalog-filters > summary::-webkit-details-marker {
    display: none;
  }

  .catalog-filters > summary::after {
    content: "+";
  }

  .catalog-filters[open] > summary::after {
    content: "−";
  }

  .catalog-filter-body {
    padding: 16px 0 22px;
  }

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

  .filter-advice {
    display: none;
  }

  .catalog-toolbar {
    flex-wrap: wrap;
  }

  .catalog-mobile-category {
    flex-basis: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
  }

  .product-dialog-inner {
    grid-template-columns: 42% minmax(0, 1fr);
  }

  .product-gallery {
    padding-inline: 20px;
  }

  .product-main-image {
    height: 280px;
  }

  .product-main-image img {
    max-height: 280px;
  }

  .product-detail-content {
    padding-right: 30px;
  }
}

@media (max-width: 560px) {
  .catalog-intro {
    padding: 28px 0 31px;
  }

  .catalog-intro h1 {
    font-size: clamp(44px, 14vw, 61px);
  }

  .catalog-intro-note {
    font-size: 12px;
  }

  .catalog-intro-note strong {
    display: none;
  }

  .catalog-breadcrumb {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .catalog-audience {
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalog-audience button {
    width: 100%;
  }

  .catalog-quick-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .catalog-layout {
    padding-bottom: 42px;
  }

  .catalog-toolbar {
    gap: 18px;
    margin-inline: -4px;
  }

  .catalog-search,
  .catalog-sort {
    width: 100%;
    flex-basis: 100%;
  }

  .catalog-sort {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
  }

  .catalog-sort select {
    max-width: 230px;
    margin-left: auto;
  }

  .catalog-meta {
    align-items: flex-end;
  }

  .catalog-meta h2 {
    font-size: 20px;
  }

  .catalog-meta p {
    white-space: nowrap;
    font-size: 10px;
  }

  .product-grid,
  .catalog-preview .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 17px;
  }

  .product-card {
    padding: 8px 8px 13px;
  }

  .product-image-link {
    height: 158px;
    padding: 20px 5px 12px;
  }

  .product-image-link img {
    max-height: 120px;
  }

  .product-category {
    margin-top: 9px;
    font-size: 8px;
  }

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

  .product-price {
    font-size: 14px;
  }

  .catalog-disclaimer {
    display: grid;
    gap: 7px;
  }

  .product-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .product-dialog-inner {
    display: block;
  }

  .product-gallery {
    padding: 48px 30px 10px;
  }

  .product-main-image {
    height: 230px;
  }

  .product-main-image img {
    max-height: 230px;
  }

  .product-detail-content {
    padding: 22px 25px 30px;
  }

  .product-detail-content h2 {
    font-size: 30px;
  }

  .product-description p {
    font-size: 13px;
  }

  .catalog-bottom-help-inner {
    padding-top: 62px;
    padding-bottom: 64px;
  }

  .catalog-bottom-help h2 {
    font-size: clamp(40px, 13vw, 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-audience button,
  .catalog-quick-grid > a,
  .product-card,
  .product-image-link img {
    transition: none;
  }

  .product-card:hover,
  .product-card:hover .product-image-link img {
    transform: none;
  }
}