.reviews{
  background:#ffffff;
}

.reviews-title{
  text-align:center;
  margin-bottom:32px;
}

.reviews-grid{
  display:flex;
  gap:24px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding-bottom:8px;
}

.reviews-grid .review{
  flex:0 0 calc((100% - 48px) / 3);
  scroll-snap-align:start;
}

.reviews-grid::-webkit-scrollbar{
  height:8px;
}

.reviews-grid::-webkit-scrollbar-thumb{
  background:#d1d5db;
  border-radius:999px;
}

.reviews-grid::-webkit-scrollbar-track{
  background:transparent;
}

.review{
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:18px;
  background:#ffffff;
  transition:box-shadow 0.2s ease, transform 0.2s ease;
}

.review:hover{
  box-shadow:0 8px 20px rgba(0,0,0,0.06);
  transform:translateY(-2px);
}

.review-stars{
  color:#f59e0b;
  font-size:16px;
  margin:6px 0 10px;
}

.review-text{
  font-size:14.5px;
  line-height:1.6;
  margin-bottom:10px;
}

.review-name{
  font-size:14px;
  color:#6b7280;
}

.reviews-proof{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  margin:16px 0 28px;
  flex-wrap:wrap;
  text-align:center;
}

.reviews-score{
  font-size:18px;
  font-weight:700;
  line-height:1.2;
  color:#111111;
}

.reviews-stars{
  color:#f59e0b;
}

.reviews-rating{
  color:#111111;
  margin-left:6px;
}

.reviews-count{
  color:#6b7280;
  font-size:15px;
  line-height:1.2;
}

.reviews-link{
  color:#2e7d32;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
}

.reviews-link:hover{
  text-decoration:underline;
}

.reviews-google-logo{
  height:16px;
  margin-left:6px;
  vertical-align:middle;
}

.reviews-google-logo{
  display:inline-block;
  width:16px;
  height:16px;
  margin-left:6px;
  vertical-align:middle;
}

.review-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.review-avatar{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:14px;
  color:#111111;
}

.review-meta{
  display:flex;
  flex-direction:column;
}

.review-time{
  font-size:13px;
  color:#9ca3af;
}

/* TABLET */
@media (max-width:1100px){
  .reviews-grid .review{
    flex:0 0 calc((100% - 24px) / 2);
  }
}

/* MOBILE */
@media (max-width:680px){
  .reviews-grid .review{
    flex:0 0 100%;
  }
}