/* ===== ОТЗЫВЫ ===== */
.reviews {
  padding: 90px 0;
  background: white;
  position: relative;
  overflow: hidden;
}
.reviews__header {
  text-align: center;
  margin-bottom: 48px;
}
.reviews__header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.reviews__header-badge svg {
  width: 14px; height: 14px; stroke: var(--brand-teal); fill: none; stroke-width: 2;
}
.reviews h2 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.reviews__summary-block {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--brand-teal-light);
  padding: 14px 28px;
  border-radius: 14px;
}
.reviews__avg {
  font-size: 42px;
  font-weight: 900;
  color: var(--brand-dark);
  line-height: 1;
}
.reviews__avg-col { text-align: left; }
.reviews__avg-stars { color: var(--star-gold); font-size: 18px; letter-spacing: 1px; }
.reviews__count { color: #7A8A8F; font-size: 12px; margin-top: 2px; }
/* Карусель */
.reviews__track-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.reviews__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 20px;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--brand-light-gray);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  border-color: color-mix(in srgb, var(--brand-teal), transparent 75%);
}
.review-card__quote {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 48px;
  font-weight: 900;
  color: color-mix(in srgb, var(--brand-teal), transparent 88%);
  line-height: 1;
  font-family: Georgia, serif;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-teal) 0%, color-mix(in srgb, var(--brand-teal), black 14%) 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.review-card__author { font-weight: 700; font-size: 15px; }
.review-card__date { font-size: 12px; color: var(--brand-gray); }
.review-card__verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--success-green); font-weight: 600;
}
.review-card__verified svg { width: 12px; height: 12px; fill: var(--success-green); }
.review-card__stars { color: var(--star-gold); font-size: 15px; margin-bottom: 10px; }
.review-card__text {
  font-size: 14px; line-height: 1.75; color: #555;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__product {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--brand-teal); font-weight: 700;
  padding: 5px 10px; background: white; border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--brand-teal), transparent 80%);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
a.review-card__product:hover {
  background: var(--brand-teal-light);
  border-color: var(--brand-teal);
}
.review-card__product svg {
  width: 12px; height: 12px; stroke: var(--brand-teal); fill: none; stroke-width: 2;
}
.review-card__source {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; color: #aaa; font-weight: 600; margin-left: auto;
}
.review-card__source img { width: 14px; height: 14px; border-radius: 2px; }
/* Навигация карусели */
.reviews__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.reviews__nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid #dde9ec;
  background: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  color: var(--brand-teal);
}
.reviews__nav-btn:hover {
  background: var(--brand-teal);
  color: white;
  border-color: var(--brand-teal);
}
.reviews__nav-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.reviews__all-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand-teal);
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.reviews__all-link:hover { text-decoration: underline; }
.reviews__all-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
