.cssr-form {
  max-width: 600px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cssr-row { margin-bottom: 15px; }
.cssr-row label { font-weight: 600; display: block; margin-bottom: 6px; }
.cssr-form input[type="text"],
.cssr-form input[type="email"],
.cssr-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
}
.cssr-btn {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
}
.cssr-btn:hover { background: #005f8d; }
.cssr-rating { display: flex; flex-direction: row-reverse; justify-content: flex-start; }
.cssr-rating input { display: none; }
.cssr-rating label {
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}
.cssr-rating input:checked ~ label,
.cssr-rating label:hover,
.cssr-rating label:hover ~ label { color: #ffcc00; }

.custom-reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    background: #ccc; /* cercle gris si pas d’image */
}

.review-header {
    margin-bottom: 5px;
}

.review-author {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.review-date {
    font-size: 13px;
    color: #777;
}

.review-rating {
    margin: 8px 0;
}

.star {
    font-size: 18px;
    color: #ddd;
    margin: 0 2px;
}

.star.filled {
    color: #FFD700; /* Jaune or */
}

.review-content {
    font-size: 15px;
    color: #444;
    margin-top: 10px;
}

