.review-card {
  background: #fff1d6;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  font-family: 'Arial', sans-serif;
  display: flex;
  flex-direction: column;
  position: relative;
}

.review-header {
  padding: 1.5rem 1rem 3.5rem;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.review-header.azul {
  background-color: #2794b3;
}

.review-header.naranja {
  background-color: #ff9800;
}

.product-image-circle {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 57px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-circle img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
}

.borde-azul {
  border: 4px solid #2794b3;
}

.borde-naranja {
  border: 4px solid #ff9800;
}

.review-body {
  padding: 3.5rem 1rem 1rem;
  text-align: center;
}

.comment {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.75rem;
  min-height: 70px;
}

.stars {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.filled {
  color: #ff9800;
}

.empty {
  color: #ccc;
}

.user {
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

