.google-reviews-widget {
  padding: 40px 20px;
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

.sliderGoogle-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
}

.sliderGoogle {
  display: flex;
  transition: transform 0.5s ease;
  background: #fff;
}

.google-review {
  min-width: 100%;
  box-sizing: border-box;
  padding: 30px 60px; /* ← mehr horizontaler Innenabstand */
  background: #fff;
  border-radius: 0;
  text-align: left;
  position: relative; /* wichtig, damit z-index greift */
  z-index: 1;
}

.google-review .author {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.google-review .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #ccc;
}

.google-review .stars {
  margin-bottom: 10px;
  font-size: 17px;
  color: #ffb400;
}

.google-review .text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.sliderGoogle-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 8px 14px;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.sliderGoogle-nav.left {
  left: 10px;
}

.sliderGoogle-nav.right {
  right: 10px;
}

.sliderGoogle-nav:hover {
  background: #e3f2ff;
}

.google-reviews-link {
  text-align: center;
  margin-top: 25px;
}

.google-reviews-link a {
  color: #004b99;
  font-weight: bold;
  text-decoration: none;
}

.google-reviews-link a:hover {
  text-decoration: underline;
}

.google-overall-rating {
  margin: 25px 0 10px;
  text-align: center;
}

.google-overall-rating .stars {
  color: #ffb400;
  font-size: 20px;
  margin-bottom: 5px;
}

.google-overall-rating .rating-number {
  font-size: 14px;
  color: #333;
}
.google-review-date {
  font-size: 13px;
  color: #777;
  margin-top: 8px;
}
.google-review-reply {
  margin-top: 12px;
  padding: 10px 15px;
  background-color: #eef7ff;
  border-left: 4px solid #007acc;
  font-size: 14px;
  color: #333;
  border-radius: 6px;
}