/* ── CARROUSEL AVIS GOOGLE ───────────────────────────────────────── */

.reviews-section {
  background: var(--blanc);
  padding: 64px 24px;
  text-align: center;
}

.reviews-section .section-titre {
  margin-bottom: 36px;
}

.reviews-section .section-titre h2 {
  font-size: clamp(1.4rem, 5vw, 1.9rem);
  font-weight: 700;
  color: var(--bleu-texte);
}

.reviews-section .section-titre p {
  color: var(--texte-muted);
  margin-top: 8px;
  font-size: 0.92rem;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-track {
  position: relative;
  flex: 1;
  min-height: 210px;
  max-width: 660px;
  height: 260px;
  overflow-y: auto;
}

/* Carte individuelle */
.review-card {
  display: none;
  background: var(--blanc);
  border: 1.5px solid #c2dde3;
  border-radius: var(--rayon-grand);
  padding: 24px 28px;
  text-align: left;
  animation: reviewFadeIn 0.4s ease;
}

.review-card.active {
  display: block;
}

@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* En-tête : avatar + nom + logo Google */
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author-name {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--bleu-texte);
}

/* Coche de vérification */
.review-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #4285F4;
  flex-shrink: 0;
}

.review-verified svg {
  width: 9px;
  height: 9px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-date {
  display: block;
  font-size: 0.78rem;
  color: var(--texte-muted);
  margin-top: 2px;
}

/* Logo Google */
.review-source-logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Étoiles */
.review-stars {
  color: #e8a020;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* Texte de l'avis */
.review-text {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.94rem;
  color: var(--texte);
  line-height: 1.75;
  margin: 0;
}

/* Boutons précédent / suivant */
.carousel-btn {
  background: var(--blanc);
  border: 1.5px solid #c2dde3;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--bleu-texte);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.carousel-btn:hover {
  background: var(--bleu-pale);
  border-color: var(--bleu-doux);
  transform: translateY(-1px);
}

/* Points de navigation */
.carousel-dots {
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bleu-doux);
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.dot.active {
  background: var(--bleu-texte);
  transform: scale(1.25);
}

@media (max-width: 600px) {
  .carousel-wrapper { gap: 8px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1.1rem; }
  .review-card { padding: 18px 16px; }
}
