.grid-productos {
  display: grid;
  grid-template-columns: repeat(4, 250px);
  justify-content: center;
  gap: 20px;
}

.card-producto {
  border: 1px solid #eee;
  padding: 15px;
  text-align: center;
  background: #fff;
}

.card-producto img {
  width: 100%;
  height: auto;
}

.card-producto h3 {
  font-size: 16px;
  min-height: 50px;
}

.btn-ver {
  display: inline-block;
  margin: 10px 0;
  background: #e0b85c;
  padding: 8px 15px;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
}

.estrellas {
  color: #f5b301;
  font-size: 18px;
}