.product-tiles-container{
    background-color: #F9F9FA;
    padding: 32px 15px 32px 15px;
}
.product-tiles-container h2{
    border: none;
    background: none;
    font-weight: normal;
    color: #333;
    margin-bottom: 20px;
    color: #000;
    font-weight: 300;
    font-size: 20px;
    margin: 0 0 20px 0;
    padding: 0;
}
.product-grid > a {
  display: flex; 
}
.product-tiles-container a:hover {
    text-decoration: none;
}
.product-card:hover {
  border-color: #0085D5;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 15px 5px;
}
.product-grid{
    display: grid;
    gap: 16px;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
}
.product-grid > a{
  display: flex;
}
.product-card {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*justify-content: space-between;*/
  justify-content: center;
  padding: 15px 5px;
  background-color: #fff;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  flex: 1;
}
.card-image-container {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}
.product-card img {
  max-height: 120px;
  width: auto;
  max-width: 100%;
  display: block;
}
.product-card .card-text {
  font-family: 'robotoregular';
  font-size: 16px;
  font-weight: 400;
  color: #202020;
  line-height: 1.3;
  margin: 0;
  padding-top: 3px;
}

@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
body.sp .product-tiles-container {
    padding: 20px 10px;
}