/* clone-reviews.css - real Google reviews block (replaces the template swiper).
   Brand: gold #E8C96A, near-black. Static, no Elementor/Swiper JS needed. */

.pk-reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px auto 6px;
  color: #fff;
}
.pk-reviews-summary .pk-rs-score {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--pk-gold, #E8C96A);
}
.pk-reviews-summary .pk-rs-stars { display: inline-flex; gap: 2px; }
.pk-reviews-summary .pk-rs-meta { display: flex; flex-direction: column; gap: 2px; }
.pk-reviews-summary .pk-rs-count { font-size: 14px; color: rgba(255,255,255,.7); }
.pk-reviews-summary .pk-rs-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pk-gold, #E8C96A);
  text-decoration: none;
}
.pk-reviews-summary .pk-rs-google:hover { text-decoration: underline; }
.pk-rs-gicon { width: 18px; height: 18px; display: inline-block; }

.pk-star { width: 18px; height: 18px; display: inline-block; }
.pk-star path { fill: var(--pk-gold, #E8C96A); }

.pk-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 0;
}
.pk-review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #111;
  border: 1px solid rgba(232,201,106,.18);
  border-radius: 16px;
  padding: 22px 22px 24px;
  box-shadow: 0 14px 34px rgba(0,0,0,.4);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.pk-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0,0,0,.5);
  border-color: rgba(232,201,106,.4);
}
.pk-review-head { display: flex; align-items: center; gap: 12px; }
.pk-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #222;
  flex: 0 0 auto;
}
.pk-avatar-fallback {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--pk-ink, #1A1A1A);
  background: var(--pk-gold, #E8C96A);
  flex: 0 0 auto;
}
.pk-review-who { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pk-review-name { font-weight: 600; color: #fff; font-size: 15.5px; }
.pk-review-time { font-size: 12.5px; color: rgba(255,255,255,.55); }
.pk-review-stars { display: inline-flex; gap: 2px; }
.pk-review-gbadge {
  position: absolute;
  top: 18px; right: 18px;
  width: 20px; height: 20px;
  opacity: .9;
}
.pk-review-text {
  font-size: 14.5px;
  line-height: 1.62;
  color: rgba(255,255,255,.82);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pk-review-card.pk-expanded .pk-review-text { -webkit-line-clamp: unset; }
.pk-review-more {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--pk-gold, #E8C96A);
  cursor: pointer;
}
.pk-review-more:hover { text-decoration: underline; }
