.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
}

.product-item img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
}

#product-info {
  text-align: center;
  color: #25313C;
}

#product-info h2 {
  font-size: 1.125rem;
}

#product-info hr {
  width: 1.375rem;
  margin: 0 auto;
  background-color: #25313C;
  height: 1px;
  border: none;
}

#product-info p {
  font-size: 1rem;
  margin: 0.25rem 0;
  color: #626262;
}