.slider {
  display: flex;
  width: 100%;
  overflow-x: clip;
  justify-content: space-around;
  gap: 32px;
  box-shadow: inset 0px -1.5px 3px -3px;
  padding: 24px 0;
  font-family: Montserrat;
}
.slider > * {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.slider > div > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.slider > div > a > img {
  width: 250px;
  min-width: 250px;
  height: 250px;
  border-radius: 4px 4px 0px 0px;

  overflow: hidden;
  object-fit: cover;
}

.slider > div > a > h3 {
  height: 1lh;
  margin-top: 16px;
  overflow: hidden;
  font-size: 12pt;
  text-overflow: clip;
  font-weight: 400;
  text-align: center;
  padding: 0px 16px;
}
.product-price {
  color: black;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .slider {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    flex: 0;
  }
  .slider > * {
    width: fit-content;
  }
  .slider > div > a > img {
    min-width: 130px;
    width: 130px;
    height: 130px;
    /* border-radius: 100%; */
  }
  .slider > div > a > h3 {
    font-size: 10pt;
    overflow: hidden;
    height: 2lh;
    width: 130px;
  }
}
