.rrv-reviews-widget {
  margin: 20px 0;
}

.rrv-reviews-summary {
  margin-bottom: 20px;
  text-align: center;
}

.rrv-reviews-stars {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}

.rrv-star {
  display: inline-block;
  margin: 0 1px;
}

.rrv-star-full,
.rrv-star-half {
  color: #94c11f;
}

.rrv-star-empty {
  color: #ddd;
}

.rrv-reviews-average {
  font-size: 18px;
  margin-bottom: 5px;
}

.rrv-reviews-average span {
  color: #777;
  font-size: 14px;
}

.rrv-reviews-count {
  color: #666;
  font-size: 14px;
}

/* Slider */
.rrv-reviews-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rrv-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.rrv-slider-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.rrv-slider-slide {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 5px;
}

.rrv-review-item {
  min-height: 180px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.rrv-review-meta {
  margin-bottom: 12px;
}

.rrv-review-author {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.rrv-review-date {
  color: #888;
  font-size: 13px;
}

.rrv-review-content {
  line-height: 1.6;
  color: #333;
}

.rrv-slider-arrow {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  line-height: 34px;
  text-align: center;
  padding: 0;
  transition:
      background 0.2s ease,
      border-color 0.2s ease;
}

.rrv-slider-arrow:hover {
  background: #f7f7f7;
  border-color: #ccc;
}

.rrv-slider-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.rrv-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.rrv-slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #ddd;
  padding: 0;
  cursor: pointer;
}

.rrv-slider-dot.is-active {
  background: #94c11f;
}

.rrv-see-all-reviews-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  text-align: center;
}

.rrv-see-all-reviews {
  background-color: #94c11f;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.rrv-see-all-reviews:hover {
  background-color: #87b31a;
}

@media (max-width: 767px) {
  .rrv-reviews-slider {
      gap: 5px;
  }

  .rrv-slider-arrow {
      flex: 0 0 30px;
      width: 30px;
      height: 30px;
      line-height: 28px;
      font-size: 14px;
  }

  .rrv-review-item {
      min-height: 160px;
      padding: 15px;
  }
}