.nf-other-category-products {
  /*margin: 30px 0;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.nf-othercatproducts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.nf-othercatproducts-grid .productCard {
  /*flex: 1 1 calc(25% - 15px);*/
  /*max-width: calc(25% - 15px);*/
}

@media (max-width: 991px) {
  .nf-othercatproducts-grid .productCard {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 575px) {
  .nf-othercatproducts-grid .productCard {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
