.ps-reviews-carousel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 15px;
}

.ps-review-card {
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ps-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.ps-avatar {
  width: 40px;
  height: 40px;
  background: #007bff;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
  margin-right: 10px;
}

.ps-info strong {
  font-size: 14px;
}

.ps-date {
  font-size: 12px;
  color: #777;
}

.ps-google-logo {
  height: 20px;
  margin-left: auto;
}

.ps-rating {
  color: #fbc02d;
  font-size: 16px;
  margin-bottom: 8px;
}

.star.empty {
  color: #ccc;
}

.ps-verified {
  font-size: 14px;
  color: green;
  margin-left: 5px;
}

.ps-review-content {
  font-size: 14px;
  color: #333;
}
.ps-review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ps-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.ps-verified {
  display: inline-block;
  background-color: #e0e0e0;
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 18px;
  margin-left: 5px;
  vertical-align: middle;
  content: "✓";
}

.ps-verified::before {
  content: "✓";
}
