.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  width: calc(33.333% - 20px);
  border: 1px solid #e8e8e8;
  height: max-content;
}

/* HEADER */
.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* CONTENT */
.review-content {
  font-size: 1.05rem;
  line-height: 1.6;
}

.read-toggle {
  display: inline-block;
  margin-top: 6px;
  color: #1a73e8;
  font-weight: 600;
  cursor: pointer;
}

/* FOOTER */
.review-footer {
  border-top: 1px solid #eee;
  margin-top: 15px;
  padding-top: 10px;
}

/* CONTROLS */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  border: none;
  cursor: pointer;
  z-index: 5;
  opacity: 0.3;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* DOTS */
.indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
}

.indicator.active {
  background: #1a73e8;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .slide {
    justify-content: flex-start;
    gap: 0;
  }
  .user-info h3 {
    font-size: 19px !important;
  }
  .review-card {
    width: 100%;
    max-width: 100%;
  }
}
.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 50px;
  background: #fff;
  color: #3c4043;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid #dadce0;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  transition: all .25s ease;
  white-space: nowrap;
}

.google-review-btn i {
  font-size: 20px;
  color: #4285f4;
}

.google-review-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
}
