/* === STYLE GÉNÉRAL === */
.review-box {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: "Segoe UI", sans-serif;
}

.review-box h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.review-box p {
    color: #555;
    font-size: 14px;
}

/* === ÉTOILES === */
.stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.stars input {
    display: none;
}

.stars label {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.stars input:checked ~ label,
.stars label:hover,
.stars label:hover ~ label {
    color: #ffcc00;
}