.product-list .filters{
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  border-bottom: 1px solid #f5f5f5;
}
.filters .filter-buttons{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 50%;
  flex-wrap: wrap;
  gap: 10px;

}
.filter-buttons button{
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 400;
  background: white;
  width: 30%;
  box-sizing: border-box;
  width: max-content;


}
.filter-buttons button.active{
  background: linear-gradient(110.6deg, rgb(184, 142, 252) 2.2%, rgb(104, 119, 244) 100.2%);
  color: white;
}

.filters .search-bar{
  height: 100%;
  width: 20%;

}
.search-bar input{
  height: 100%;
  width: 100%;
  border-radius: 20px;
  padding: 10px;
  font-weight: 500;
  transition: all .2s ease-in;
}
.search-bar input:focus{
  transform: translateY(-10px);

}
.results-info{
  text-align: center;
  margin-top: 2rem;
  padding-bottom: 10px;
  border-bottom: 2px solid #f5f5f5;
  font-weight: 400;
  font-size: 1.2rem;
}
.products-grid{
  display: grid;
  grid-template-columns: 30% 30% 30%;
  gap: 3%;
  justify-content: center;
  align-items: center;
  padding-bottom: 4rem;
  padding-top: 1rem;
}
.products-grid .product-card{
  padding: 5px;
  box-sizing: border-box;
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--neutral-gray);
}
.products-grid img{
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border-bottom: 1px solid #f5f5f5;
}
.products-grid .product-info{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-info .product-category{
  color: var(--primary-blue);
  font-size: 1.1rem;
  font-weight: 400;


}
.product-info .product-name{
  color: #001F3F;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px;
  text-align: center;

}
.product-info .news-title{
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  font-weight: 400;
  font-size: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6; 
  max-height: calc(1.6 * 2rem);
  font-size: 0.9rem;
  text-overflow: ellipsis;
  font-style: italic;

}
.product-info .product-price{
  font-weight: 700;
  color: rgba(255, 0, 0, 1);
  font-size: 1.rem;
  padding: 20px;

}
.product-info a{
  margin: 2rem 0 1rem 0;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 20px;
  background: white;
  font-weight: 400;
  color: var(--primary-blue);
  border: 1px solid black;
  box-shadow: 2px 2px 2px 3px #f5f5f5;
  transition: all .5s ease;
}
.product-info a:hover{
  box-shadow: 2px 2px 2px 2px white;
  color: white;
  background: var(--secondary-green);
}
.pagination{
  margin: 1.5rem auto;
  display: flex;
  justify-content: center;
  align-items: center;

}
.pagination button{
  padding: 5px 10px;
  border-radius: 10px;
  margin: 0 5px;
  background: white;
  font-weight: 500;
  transition: all .5s ease;
}
.pagination button.active{
  background: var(--primary-blue);
  color: white;
}