.product-feature-section > div{
  padding-bottom: 3rem;
}
.view_all{
  text-decoration: none;
  letter-spacing: .1rem;
}
.product-feature-section .product-card {
  width: 100%;
  margin-right: 1rem;
}
.product-feature-section .product-card:last-of-type{
  margin-right: 0;
}
.product-feature-section img, .product-feature-section svg{
  padding: .25rem 1rem;
  width: calc(100% - 2rem);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

@media (max-width: 850px){
  .product-feature-section .products {
    flex-wrap: wrap;
  }
  .product-feature-section .product-card{
    width: calc(50% - 1rem);
    margin-bottom: 1rem;
  }
  .product-feature-section .product-card:nth-of-type(2n){
    margin-right: 0;
  }
}