.main-newest {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1rem;
}
.main-newest .product-card {
  padding: 8px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.main-newest .product-card img {
  height: 10rem;
  width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.main-newest .product-card h4 {
  font-size: 0.9rem;
  font-weight: 500;
}

.main-newest .product-card .price {
  position: absolute;
  top: 9rem;
  right: 0px;
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
  padding: 2.5px 5px;
  min-width: 50px;
  border-radius: 3px;
  font-size: 0.9rem;
}

.main-newest .product-card:hover img {
  transform: scale(1.05);
}

.main-newest .product-card p {
  padding-top: 2.5px;
  font-size: 0.7rem;
  font-weight: 300;
  color: rgb(74, 74, 74);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
