.flor-review-box {
    background: #f9f9f9;
    border: 2px solid #e2e2e2;
    border-radius: 10px;
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.flor-review-form textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
    font-size: 14px;
    resize: none;
}

/* <-- aquí está la clave: imprimimos inputs 5→1 en el DOM y usamos direction: rtl
   para que visualmente queden 1→5 de izquierda a derecha -->
*/
.flor-stars {
    direction: rtl;
    unicode-bidi: bidi-override;
    display: inline-flex;
    gap: 5px;
    margin: 10px 0 15px;
}

.flor-stars input {
    display: none;
}

.flor-stars label {
    font-size: 30px;
    cursor: pointer;
    color: #ccc;
    transition: color 0.2s, transform 0.15s;
    user-select: none;
}

/* Hover: colorea la estrella y las "anteriores" visualmente */
.flor-stars label:hover,
.flor-stars label:hover ~ label {
    color: gold;
    transform: scale(1.15);
}

/* Checked: colorea la estrella seleccionada y las anteriores (visual) */
.flor-stars input:checked ~ label {
    color: gold;
}

.flor-btn {
    background: #458854;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.flor-btn:hover {
    background: #367046; /* un tono más oscuro para hover */
}


.flor-thankyou {
    text-align: center;
    margin: 20px;
    font-size: 16px;
    color: green;
    font-weight: bold;
}
