@charset "utf-8";  
.reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  .review-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 300px;
  }

  .review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
  }

  .author-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .rating {
    color: #FFD700;
    font-weight: bold;
  }

  .review-text {
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .review-date {
    color: #888;
    font-size: 0.9em;
  }
@media (max-width: 768px) {
  .reviews-container {
    flex-direction: column; /* Une colonne sur mobile */
    align-items: center;
  }
  .review-card {
    width: 90%; /* Largeur adaptative */
  }
}
.google-rating-summary {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px auto;
  max-width: 400px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rating-bar {
  width: 100px;
  height: 12px;
  background: #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

.rating-score {
  height: 100%;
  background: #FFD700;
  border-radius: 6px;
}

.rating-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-value {
  font-size: 1.3em;
  font-weight: bold;
  color: #333;
}

 .stars-container {
        display: flex;
        justify-content: center;
        gap: 2px;
        margin-bottom: 15px;
    }

    .star-wrapper {
        position: relative;
        width: 30px;
        height: 30px;
        display: inline-block;
    }

    .star {
        position: absolute;
        width: 100%;
        height: 100%;
        font-size: 1.5em;
        color: #e0e0e0; /* Couleur par défaut (étoile vide) */
    }
 /* Étoile pleine */
    .star.full::before {
        content: "⭐";
        color: #FFD700; /* Or */
    }

    /* Demi-étoile (masque la moitié droite) */
    .star.half::before {
        content: "⭐";
        color: #FFD700;
        position: absolute;
        width: 60%;
        overflow: hidden;
		right: 15px;
    }

    /* Étoile vide (déjà en gris par défaut) */
    .star.empty::before {
       /* content: "⭐";*/
    }

.review-count {
  font-size: 0.9em;
  color: #888;
}