.star-rating {
    display: flex;
    gap: 2px;
}
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
}
.star-input {
    display: none;
}
.star-input + label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}
.star-input:checked + label,
.star-input:checked ~ label {
    color: #ffc107;
}
.star-input:checked ~ label:hover,
.star-input:hover + label {
    color: #ffc107;
}
.qty-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}