.review-card {
  background: #eff8ff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 20px;
  transition: background-color 0.3s ease;
}

.review-card:hover {
  background-color: #e2f2ff;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
  background: #eee;
}

.username {
  font-weight: bold;
  font-size: 1.1em;
}

.rating {
  color: #f5a623;
  font-size: 1.2em;
  margin-top: 2px;
}

.time {
  color: #777;
  font-size: 0.9em;
}

.product-name {
  font-style: italic;
  margin-bottom: 10px;
  color: #333;
}

.review-body {
  margin-top: 10px;
  line-height: 1.5;
}

.images {
  margin-top: 10px;
}

.images img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 6px;
  margin-bottom: 6px;
}