/* ── Star rating input ───────────────────────────────── */
.star-input {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 2px;
}
.star-input input[type="radio"] {
    display: none;
}
.star-input label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    line-height: 1;
    transition: color .1s;
}
[data-bs-theme="dark"] .star-input label {
    color: #444;
}
.star-input input:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label {
    color: #cfa400;
}

/* ── Valoración media ────────────────────────────────── */
.valoracion-media {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}
.stars-display .bi-star-fill,
.stars-display .bi-star-half {
    color: #cfa400;
}
.stars-display .bi-star {
    color: #cfa400;
    opacity: .25;
}

/* ── Tarjetas de reseña ──────────────────────────────── */
.review-card {
    border: 1px solid var(--bs-border-color);
    border-left: 3px solid #00bf63;
    border-radius: 0 6px 6px 0;
}
.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #00bf63;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}
.review-stars {
    white-space: nowrap;
}
.review-stars .bi-star-fill {
    color: #cfa400;
}
.review-stars .bi-star {
    color: #cfa400;
    opacity: .25;
}
