.catalog-page .main-content {
  width: 100%;
  max-width: 1240px;
  min-height: 0;
  margin: 0 auto;
  padding: 62px 20px 96px;
  background: transparent;
}

.catalog-heading-calm {
  max-width: 760px;
  margin-bottom: 38px;
}

.catalog-page .catalog-heading-calm .catalog-title {
  margin: 0 0 14px;
  color: #151d23;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-align: left;
}

.catalog-page .catalog-heading-calm .catalog-title::after {
  display: none;
}

.catalog-heading-calm p {
  margin: 0;
  color: #6a757d;
  font-size: 15px;
  line-height: 1.6;
}

.catalog-page .product-categories {
  margin: 0 0 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.catalog-page .category-btn {
  min-height: 44px;
  padding: 11px 20px;
  color: #df4b44;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  background: transparent;
  border: 1px solid #ee5b54;
  border-radius: 5px;
  box-shadow: none;
}

.catalog-page .category-btn:hover {
  color: #ca3f38;
  background: rgba(233, 85, 77, 0.04);
  border-color: #d94a43;
}

.catalog-page .category-btn.active {
  color: #fff;
  background: #ed554d;
  border-color: #ed554d;
}

.catalog-results-bar {
  min-height: 26px;
  margin-bottom: 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.catalog-results-count {
  color: #7a858d;
  font-size: 13px;
  font-weight: 500;
}

.catalog-page .product-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.catalog-page .product-card {
  min-width: 0;
  height: 460px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  text-align: left;
  background: #f7f8f8;
  border: 1px solid #e3e7e9;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(17, 25, 32, 0.04);
  transition: border-color 160ms ease;
}

.catalog-page .product-card:hover {
  transform: none;
  border-color: #cfd6da;
  box-shadow: 0 8px 22px rgba(17, 25, 32, 0.04);
}

.catalog-page .product-image-container {
  width: 50%;
  height: 100%;
  padding: 0;
  display: block;
  flex: 0 0 50%;
  overflow: hidden;
  background: #fff;
  border: 0;
}

.catalog-page .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.catalog-page .product-info {
  width: 50%;
  min-width: 0;
  min-height: 0;
  padding: 34px;
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  justify-content: flex-start;
}

.catalog-page .product-category-label {
  display: none;
}

.catalog-page .product-name {
  margin: 0 0 24px;
  color: #111920;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.catalog-page .product-name a {
  color: inherit;
}

.catalog-page .product-description {
  margin: 0 0 26px;
  display: -webkit-box;
  overflow: hidden;
  color: #313c44;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.catalog-page .product-card-actions {
  width: 100%;
  margin-top: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 0;
}

.catalog-page .product-details-btn {
  min-width: 150px;
  min-height: 46px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: #ed554d;
  border-radius: 5px;
}

.catalog-page .product-details-btn:hover {
  color: #fff;
  background: #d7463f;
  transform: none;
}

.catalog-page .product-request-link {
  display: none;
}

.catalog-page .pagination {
  margin-top: 52px;
}

@media (max-width: 1024px) {
  .catalog-page .product-card {
    height: 420px;
  }

  .catalog-page .product-info {
    padding: 26px;
  }

  .catalog-page .product-name {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .catalog-page .main-content {
    padding: 48px 16px 76px;
  }

  .catalog-heading-calm {
    margin-bottom: 30px;
  }

  .catalog-page .catalog-heading-calm .catalog-title {
    font-size: 34px;
  }

  .catalog-page .product-categories {
    margin-bottom: 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .catalog-page .category-btn {
    width: 100%;
    text-align: left;
  }

  .catalog-page .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-page .product-card {
    height: auto;
    flex-direction: column;
  }

  .catalog-page .product-image-container {
    width: 100%;
    height: 270px;
    flex-basis: 270px;
  }

  .catalog-page .product-info {
    width: 100%;
    min-height: 280px;
    padding: 24px 22px;
  }
}
