.products-page {
  background: var(--white);
}

.catalog-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    var(--navy);
  color: var(--white);
}

.catalog-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background:
    radial-gradient(circle at 91% -12%, rgba(131, 174, 72, 0.16), transparent 28%),
    radial-gradient(circle at 5% 85%, rgba(131, 174, 72, 0.14), transparent 25%),
    linear-gradient(rgba(208, 213, 221, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 213, 221, 0.1) 1px, transparent 1px);
  background-size: auto, auto, 128px 128px, 128px 128px;
}

.catalog-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 46px 0;
}

.catalog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 24px;
}

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

.catalog-breadcrumb span:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--green);
  font-weight: 500;
}

.catalog-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 52px;
  letter-spacing: 0;
}

.catalog-hero p {
  max-width: 640px;
  margin: 16px 0 0;
  color: #b7bdcd;
  font-size: 18px;
  line-height: 24px;
}

.catalog-list {
  padding: 80px 0;
  background: var(--white);
}

.catalog-list__inner {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.catalog-sidebar {
  display: grid;
  gap: 12px;
}

.filter-card,
.catalog-promise {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.filter-card {
  padding: 16px;
}

.filter-card--summary {
  min-height: 82px;
}

.filter-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.filter-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 20px;
  color: var(--ink);
}

.filter-title svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #aeb8c8;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.filter-title strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.filter-summary p {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin: 10px 0 0;
  color: #9ba6b8;
  font-size: 12px;
  line-height: 1;
}

.filter-summary p span:first-child {
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}

.filter-reset {
  min-width: 75px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #b0b8c7;
  font-size: 13px;
  font-weight: 600;
}

.filter-reset:hover {
  color: var(--ink);
  border-color: #ccd4df;
}

.filter-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  margin-bottom: 12px;
}

.filter-heading span,
.filter-heading small {
  color: #a7b0bf;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
}

.filter-heading strong {
  min-width: 0;
  flex: 1 1 auto;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
}

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

.filter-option {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  width: 100%;
  padding: 0 8px;
  border-radius: var(--radius);
  background: transparent;
  color: #727a8d;
  text-align: left;
}

.filter-option:hover {
  background: #f7f9fb;
}

.filter-option span:nth-child(2) {
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-option small {
  color: #9ca6b8;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.radio-dot {
  width: 14px;
  height: 14px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 3px var(--white);
}

.filter-option.is-selected .radio-dot,
.year-options button.is-selected::before {
  border-color: var(--green);
  background: var(--green);
}

.filter-option.is-selected {
  color: var(--ink);
}

.filter-option--bar {
  grid-template-columns: minmax(0, 1fr) 14px;
  border: 1px solid var(--line);
  color: var(--ink);
}

.filter-option--bar span:first-child {
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-option--bar.is-selected {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.filter-option--bar.is-selected .radio-dot {
  border-color: rgba(255, 255, 255, 0.88);
  background: var(--green);
  box-shadow: inset 0 0 0 4px var(--green), inset 0 0 0 6px var(--white);
}

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

.year-options button {
  position: relative;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #8d96a7;
  font-size: 13px;
  font-weight: 700;
}

.year-options button:hover,
.year-options button.is-selected {
  border-color: var(--green);
  color: var(--green-strong);
}

.catalog-promise {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 14px 16px;
  background:
    radial-gradient(circle at 85% -10%, rgba(131, 174, 72, 0.18), transparent 34%),
    radial-gradient(circle at 0% 80%, rgba(131, 174, 72, 0.14), transparent 30%),
    linear-gradient(135deg, #071d33, #08243a 52%, #061827);
  color: var(--white);
}

.catalog-promise::before {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    linear-gradient(rgba(208, 213, 221, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 213, 221, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
}

.catalog-promise > * {
  position: relative;
  z-index: 1;
}

.catalog-promise p {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
}

.catalog-promise h2 {
  max-width: 288px;
  margin: 0 0 14px;
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  line-height: 23px;
}

.catalog-promise dl {
  display: grid;
  flex: 1 1 auto;
  align-content: space-between;
  gap: 8px;
  margin: 0;
}

.catalog-promise dl div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.catalog-promise dt,
.catalog-promise dd {
  margin: 0;
}

.catalog-promise dt {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  line-height: 28px;
}

.catalog-promise dt span {
  color: var(--green);
  font-size: 12px;
  line-height: 12px;
}

.catalog-promise dd {
  max-width: 110px;
  color: #b7bdcd;
  font-size: 12px;
  font-weight: 700;
  line-height: 17px;
  text-align: right;
}

.catalog-promise__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.catalog-promise__button::after {
  margin-left: 18px;
  content: "→";
}

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

.catalog-results__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 20px;
  margin-bottom: 12px;
}

.catalog-results__top p {
  margin: 0;
  color: #7a8291;
  font-size: 14px;
  line-height: 20px;
}

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

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

.catalog-card {
  position: relative;
  min-width: 0;
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-card__link {
  display: flex;
  min-height: 332px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.catalog-card__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.catalog-card__media {
  position: relative;
  display: block;
  height: 182px;
  overflow: hidden;
  background: #f1f3f6;
}

.catalog-card__media > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.catalog-card:nth-child(2) .catalog-card__media > img:first-child,
.catalog-card:nth-child(8) .catalog-card__media > img:first-child {
  object-position: 46% 50%;
}

.catalog-card:nth-child(7) .catalog-card__media > img:first-child {
  object-position: center;
}

#product-2020-zoomlion-zlj5541thbse-unit-6 .catalog-card__media > img:first-child {
  object-position: 50% 62%;
}

.catalog-card__logo {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 70px;
  height: 21px;
  object-fit: contain;
  pointer-events: none;
}

.catalog-card:first-child .catalog-card__logo {
  width: 76px;
  height: 24px;
}

.catalog-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.14);
  color: var(--white);
  backdrop-filter: blur(4px);
  cursor: pointer;
  z-index: 3;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.catalog-favorite svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill .2s ease, stroke .2s ease, transform .2s ease;
}

.catalog-favorite:hover,
.catalog-favorite:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  transform: translateY(-1px);
}

.catalog-favorite.is-saved {
  border-color: rgba(141, 198, 63, 0.35);
  background: var(--white);
  color: var(--green);
}

.catalog-favorite.is-saved svg {
  fill: currentColor;
}

.catalog-favorite.is-pulsing svg {
  animation: catalogFavoritePop .34s ease;
}

@keyframes catalogFavoritePop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.catalog-toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1000;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(141, 198, 63, 0.24);
  border-radius: 999px;
  background: rgba(7, 23, 43, 0.92);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(7, 23, 43, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease;
}

.catalog-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.catalog-card__body {
  display: grid;
  gap: 7px;
  padding: 12px 16px;
}

.catalog-card__body strong {
  min-width: 0;
  overflow: hidden;
  color: #06203b;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-meta {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  color: #717182;
  font-size: 14px;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-meta i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  margin: 0 8px;
  border-radius: 50%;
  background: #d2d8e1;
}

.catalog-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  white-space: nowrap;
}

.catalog-price small {
  color: #717182;
  font-size: 14px;
  line-height: 20px;
}

.catalog-price b {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
  text-overflow: ellipsis;
}

.catalog-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 36px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}

.catalog-detail-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: center;
  transition: transform .22s ease;
}

.catalog-detail-button:hover,
.catalog-card__link:focus-visible .catalog-detail-button,
.catalog-card__link:active .catalog-detail-button,
.catalog-card__link.is-active .catalog-detail-button {
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
}

.catalog-detail-button:hover svg,
.catalog-card__link:focus-visible .catalog-detail-button svg,
.catalog-card__link:active .catalog-detail-button svg,
.catalog-card__link.is-active .catalog-detail-button svg {
  transform: rotate(-45deg);
}

.catalog-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-left: auto;
  white-space: nowrap;
}

.catalog-pagination[hidden] {
  display: none;
}

.catalog-pagination__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
}

.catalog-pagination__arrow {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.catalog-pagination__arrow:hover,
.catalog-pagination__arrow:focus-visible {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 10px 24px rgba(141, 198, 63, 0.16);
}

.catalog-pagination__arrow:active {
  transform: translateY(1px);
}

.catalog-pagination__arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.catalog-empty {
  display: none;
  margin: 28px 12px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f9fb;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.catalog-empty.is-visible {
  display: block;
}

@media (min-width: 1280px) and (max-width: 1919.98px) {
  .catalog-hero {
    min-height: clamp(270px, 18.75vw, 360px);
  }

  .catalog-hero__inner {
    min-height: clamp(270px, 18.75vw, 360px);
    padding: 36px 0;
  }

  .catalog-list {
    padding: clamp(60px, 4.1667vw, 80px) 0;
  }

  .catalog-list__inner {
    grid-template-columns: clamp(250px, 16.6667vw, 320px) minmax(0, 1fr);
    gap: clamp(30px, 2.0833vw, 40px);
  }

  .catalog-grid {
    gap: clamp(16px, 1.0417vw, 20px);
    padding: clamp(9px, 0.625vw, 12px);
  }

  .catalog-card__link {
    min-height: 338px;
  }

  .catalog-card__media {
    height: 180px;
  }
}

@media (min-width: 1280px) and (max-width: 1599.98px) {
  .catalog-breadcrumb {
    font-size: 16px;
    line-height: 22px;
  }

  .catalog-hero h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .catalog-hero p {
    max-width: 560px;
    font-size: 16px;
    line-height: 23px;
  }

  .catalog-card__body {
    gap: 6px;
    padding: 10px 12px;
  }

  .catalog-card__body strong {
    font-size: 16px;
    line-height: 22px;
  }

  .catalog-meta {
    font-size: 12px;
    line-height: 18px;
  }

  .catalog-meta i {
    margin: 0 6px;
  }

  .catalog-price {
    gap: 8px;
  }

  .catalog-price small {
    font-size: 12px;
    line-height: 18px;
  }

  .catalog-price b {
    font-size: 15px;
    line-height: 22px;
  }

  .catalog-detail-button {
    min-height: 32px;
    font-size: 12px;
    line-height: 18px;
  }
}

@media (min-width: 1680px) {
  .catalog-list__inner {
    grid-template-columns: minmax(320px, 22.222%) minmax(0, 1fr);
    gap: 2.778%;
  }

  .catalog-grid {
    gap: clamp(22px, 1.14vw, 24px);
    padding: clamp(13px, 0.73vw, 15px);
  }

  .catalog-card__link {
    min-height: 0;
  }

  .catalog-card__media {
    height: auto;
    aspect-ratio: 338 / 182;
  }

  .catalog-promise {
    min-height: clamp(313px, calc(34.375vw - 264.5px), 430px);
  }

}

@media (min-width: 1920px) {
  .catalog-promise {
    padding: clamp(16px, 0.88vw, 18px) 16px;
  }

  .catalog-promise h2 {
    margin-bottom: clamp(16px, 1.04vw, 20px);
  }

  .catalog-promise dl {
    gap: clamp(10px, 0.73vw, 14px);
  }

  .catalog-promise dl div {
    min-height: clamp(48px, 3.03vw, 62px);
    padding-bottom: clamp(10px, 0.73vw, 14px);
  }

  .catalog-promise__button {
    min-height: clamp(38px, 2.05vw, 42px);
    margin-top: clamp(14px, 0.93vw, 18px);
  }

}

@media (max-width: 1279.98px) {
  .catalog-hero {
    min-height: 320px;
  }

  .catalog-hero__inner {
    min-height: 320px;
  }

  .catalog-hero h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .catalog-list__inner {
    grid-template-columns: 284px minmax(0, 1fr);
    gap: 28px;
  }

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

  .catalog-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

}

@media (max-width: 1023.98px) {
  .catalog-list {
    padding: 48px 0;
  }

  .catalog-list__inner {
    display: block;
  }

  .catalog-sidebar {
    display: none;
    margin-bottom: 20px;
  }

  .catalog-sidebar.is-open {
    display: grid;
  }

  .catalog-results__top {
    justify-content: flex-end;
    min-height: 28px;
    margin-bottom: 16px;
  }

  .catalog-results__top p {
    display: none;
  }

  .catalog-mobile-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
    margin-bottom: 16px;
  }

  .catalog-mobile-toolbar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 101px;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font-weight: 700;
  }

  .catalog-mobile-toolbar button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .catalog-mobile-toolbar span {
    color: #7a8291;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
  }

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

  .catalog-card__link {
    min-height: 0;
  }

  .catalog-promise {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .catalog-hero {
    min-height: 208px;
  }

  .catalog-hero__pattern {
    background-size: auto, auto, 64px 64px, 64px 64px;
  }

  .catalog-hero__inner {
    min-height: 208px;
    padding: 36px 0 32px;
  }

  .catalog-breadcrumb {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 20px;
  }

  .catalog-breadcrumb span:last-child {
    min-height: 28px;
  }

  .catalog-hero h1 {
    font-size: 28px;
    line-height: 32px;
    white-space: normal;
  }

  .catalog-hero p {
    max-width: 335px;
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  .catalog-list {
    padding: 20px 0 48px;
  }

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

  .catalog-card__media {
    height: auto;
    aspect-ratio: 335 / 182;
  }

  .catalog-price {
    flex-direction: row;
    align-items: center;
  }

}

@media (max-width: 389.98px) {
  .catalog-mobile-toolbar span {
    font-size: 13px;
  }

  .catalog-price b,
  .catalog-card__body strong {
    font-size: 17px;
  }
}
