/* Powerhouse Generator — Google Reviews Widget Styles */
.phg-reviews-header {
  text-align: center;
  margin-bottom: 20px;
}
.phg-reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.phg-google-icon {
  width: 20px;
  height: 20px;
}
.phg-overall-rating {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}
.phg-overall-stars {
  font-size: 22px;
}
.phg-star-filled {
  color: #fbbc04;
}
.phg-star-empty {
  color: #ddd;
}
.phg-review-count {
  color: #666;
  font-size: 14px;
}

/* Slider */
.phg-reviews-slider {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}
.phg-reviews-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
}
.phg-review-card {
  flex: 0 0 calc(33.333% - 14px);
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 899px) {
  .phg-review-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 599px) {
  .phg-review-card {
    flex: 0 0 100%;
  }
}

/* Slider buttons */
.phg-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.phg-slider-btn:hover {
  background: #f5f5f5;
}
.phg-slider-prev { left: 0; }
.phg-slider-next { right: 0; }

/* Review card */
.phg-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.phg-reviewer-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.phg-reviewer-initial {
  background: #a0d262;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.phg-reviewer-name {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}
.phg-review-meta {
  font-size: 13px;
  color: #666;
}
.phg-review-meta .phg-star-filled,
.phg-review-meta .phg-star-empty {
  font-size: 14px;
}
.phg-review-time {
  margin-left: 4px;
  color: #999;
}
.phg-review-text {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  flex: 1;
  margin: 0 0 12px 0;
}
.phg-read-more {
  color: #2ea3f2;
  text-decoration: none;
  font-weight: 600;
}
.phg-review-platform {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #999;
  margin-top: auto;
}
.phg-review-platform img {
  width: 14px;
  height: 14px;
}

/* Footer */
.phg-reviews-footer {
  text-align: center;
  margin-top: 20px;
}
.phg-write-review-btn {
  display: inline-block;
  background: #a0d262;
  color: #fff;
  padding: 10px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.phg-write-review-btn:hover {
  background: #8bc34a;
  color: #fff;
}
