.pb-grw {
  --pb-blue: #1a73e8;
  --pb-blue-dark: #1557b0;
  --pb-star: #fbbc04;
  --pb-text: #202124;
  --pb-muted: #5f6368;
  --pb-border: #e8eaed;
  --pb-card: #ffffff;
  --pb-bg: #f8f9fa;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  max-width: 1100px;
  margin: 32px auto 40px;
  padding: 0 16px;
  box-sizing: border-box;
  color: var(--pb-text);
}
.pb-grw *, .pb-grw *::before, .pb-grw *::after { box-sizing: border-box; }

.pb-grw-shell {
  background: transparent;
}

/* Header — Elfsight-style centered summary */
.pb-grw-head {
  text-align: center;
  margin-bottom: 22px;
}
.pb-grw-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.pb-grw-gicon { width: 28px; height: 28px; }
.pb-grw-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--pb-text);
}
.pb-grw-scoreline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 6px 0 14px;
}
.pb-grw-rating-num {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}
.pb-grw-stars { display: inline-flex; gap: 3px; vertical-align: middle; }
.pb-grw-star {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: var(--pb-star);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.pb-grw-star.is-empty { background: #dadce0; }
.pb-grw-star.is-half {
  background: linear-gradient(90deg, var(--pb-star) 50%, #dadce0 50%);
}
.pb-grw-count {
  font-size: 14px;
  color: var(--pb-muted);
}
.pb-grw-count a {
  color: var(--pb-blue);
  text-decoration: none;
  font-weight: 500;
}
.pb-grw-count a:hover { text-decoration: underline; }
.pb-grw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: background .15s ease, box-shadow .15s ease;
}
.pb-grw-btn-primary {
  background: var(--pb-blue);
  color: #fff !important;
  box-shadow: 0 1px 2px rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}
.pb-grw-btn-primary:hover {
  background: var(--pb-blue-dark);
  color: #fff !important;
}

/* Carousel */
.pb-grw-carousel {
  position: relative;
  padding: 0 40px;
}
.pb-grw-viewport {
  overflow: hidden;
  margin: 0 -6px;
}
.pb-grw-track {
  display: flex;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.pb-grw-slide {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 6px 10px 16px;
}
.pb-grw-review {
  background: var(--pb-card);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(60,64,67,.2), 0 2px 8px rgba(60,64,67,.1);
  padding: 20px 18px 18px;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(0,0,0,.04);
  transition: box-shadow .2s ease, transform .2s ease;
}
.pb-grw-review:hover {
  box-shadow: 0 4px 12px rgba(60,64,67,.18), 0 2px 4px rgba(60,64,67,.12);
  transform: translateY(-2px);
}
.pb-grw-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pb-grw-avatar,
.pb-grw-avatar-fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.pb-grw-avatar {
  object-fit: cover;
  background: #e8eaed;
}
.pb-grw-avatar-fallback {
  background: #1a73e8;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
}
.pb-grw-author-name {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--pb-text);
  line-height: 1.3;
}
.pb-grw-author-meta {
  margin: 3px 0 0;
  font-size: 12px;
  color: var(--pb-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pb-grw-review-stars { display: inline-flex; gap: 2px; }
.pb-grw-review-stars .pb-grw-star { width: 14px; height: 14px; }
.pb-grw-google-badge {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}
.pb-grw-text-wrap { flex: 1; }
.pb-grw-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #3c4043;
}
.pb-grw-text.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pb-grw-more {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--pb-blue);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.pb-grw-more:hover { text-decoration: underline; }

/* Nav arrows */
.pb-grw-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 1px 3px rgba(60,64,67,.3), 0 4px 8px rgba(60,64,67,.15);
  color: #3c4043;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .15s ease, box-shadow .15s ease;
}
.pb-grw-nav:hover {
  background: #f1f3f4;
  box-shadow: 0 2px 6px rgba(60,64,67,.35);
}
.pb-grw-nav:disabled {
  opacity: .35;
  cursor: default;
  box-shadow: none;
}
.pb-grw-nav-prev { left: 0; }
.pb-grw-nav-next { right: 0; }
.pb-grw-nav svg { width: 20px; height: 20px; }

/* Dots removed — arrows only */
.pb-grw-dots,
.pb-grw-dot {
  display: none !important;
}

.pb-grw-foot {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--pb-muted);
}
.pb-grw-foot a {
  color: var(--pb-muted);
  text-decoration: none;
}
.pb-grw-foot a:hover { color: var(--pb-blue); text-decoration: underline; }

.pb-grw-empty,
.pb-grw-loading {
  text-align: center;
  padding: 36px 16px;
  color: var(--pb-muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .pb-grw-slide {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 640px) {
  .pb-grw { margin: 24px auto 32px; }
  .pb-grw-carousel { padding: 0 28px; }
  .pb-grw-slide {
    flex-basis: 100%;
    max-width: 100%;
  }
  .pb-grw-title { font-size: 17px; }
  .pb-grw-rating-num { font-size: 28px; }
  .pb-grw-nav { width: 34px; height: 34px; }
}
