  .catalog-container {
    display: flex;
    flex-direction: column;
    color: #3b3e3e;
    text-align: center;
    justify-content: flex-start;
    font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    margin: 0 auto;
  }

  .product-row {
    display: flex;
    width: 100%;
    gap: 18px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .product-row:first-child {
    margin-top: 0;
  }

  .product-card {
    flex: 1 1 240px;
    min-width: 240px;
    max-width: calc(25% - 14px);
    border-radius: 10px;
    border: 1px solid #e7e7e7;
    background-color: #fff;
    padding: 20px;
    transition: border-color 0.2s ease;
  }

  .product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
  }

  .product-card:hover,
  .product-card:focus-within {
    border-color: #00a6aa;
    outline: none;
    transform: none;
  }

  .product-content {
    display: flex;
    min-height: 291px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .product-image {
    width: 163px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 0.71;
    object-fit: contain;
    object-position: center;
  }

  .product-title {
    margin-top: 20px;
    font-variant-numeric: lining-nums proportional-nums;
    color: #3b3e3e;
    text-align: center;
    word-wrap: break-word;
  }

  @media (max-width: 1200px) {
    .product-card {
      max-width: calc(33.333% - 12px);
    }
  }

  @media (max-width: 991px) {
    .catalog-container {
      padding: 15px;
    }

    .product-card {
      max-width: calc(50% - 9px);
    }

    .product-row {
      gap: 15px;
    }
  }

  @media (max-width: 767px) {
    .product-card {
      max-width: 100%;
    }

    .product-content {
      min-height: auto;
    }

    .product-image {
      width: 140px;
    }

    .product-title {
      font-size: 13px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .product-card {
      transition: none;
    }
  }

  @media screen and (forced-colors: active) {
    .product-card {
      border: 2px solid CanvasText;
    }
  }