/* Hide all stars except the first one */
.yotpo .yotpo-stars .yotpo-icon:nth-child(n+2) {
    display: none !important;
}

/* Ensure the first star is always filled/visible */
.yotpo .yotpo-stars .yotpo-icon:first-child {
    display: inline-block !important;
    color: #ffd700 !important; /* Gold color for filled star */
    font-size: 16px;
}

/* Alternative approach - hide stars 2-5 specifically */
.yotpo .yotpo-stars .yotpo-icon:nth-child(2),
.yotpo .yotpo-stars .yotpo-icon:nth-child(3),
.yotpo .yotpo-stars .yotpo-icon:nth-child(4),
.yotpo .yotpo-stars .yotpo-icon:nth-child(5) {
    display: none !important;
}

/* Style the single star */
.yotpo .yotpo-stars {
    display: inline-flex;
    align-items: center;
}

/* Optional: Adjust spacing since you're showing fewer stars */
.yotpo .yotpo-bottomline {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Keep the review count visible next to the single star */
.yotpo .yotpo-label {
    font-size: 12px;
    color: #596066;
    font-family: 'Inter', sans-serif;
    margin-left: 4px;
}