/**
 * Trust-Badge unter dem Produktnamen (PDP) — zweizeilige Anatomie:
 * Eyebrow-Label (Kennzeichnung + Quelle) über der kompakten
 * Sterne/Wert/Anzahl-Zeile. Besonders mobil schmal gehalten.
 */
.bv-trust-rating {
    margin: 2px 0 12px;
    line-height: 1.4;
}

.bv-trust-rating__link {
    display: inline-block;
    color: #666;
    text-decoration: none;
}

.bv-trust-rating__link:hover,
.bv-trust-rating__link:focus {
    color: #333;
    text-decoration: none;
}

.bv-trust-rating__link:hover .bv-trust-rating__count {
    text-decoration: underline;
}

/* Zeile 1: Kennzeichnung ("SHOP-BEWERTUNGEN · AUSGEZEICHNET.org") */
.bv-trust-rating__eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9a9a9a;
    margin-bottom: 3px;
    white-space: nowrap;
}

.bv-trust-rating__eyebrow-source {
    font-weight: 400;
    letter-spacing: 0.08em;
}

/* Zeile 2: Sterne + Wert + Anzahl */
.bv-trust-rating__row {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    white-space: nowrap;
}

/*
 * Sterne als Zwei-Ebenen-Overlay: graue Basis, orangefarbene Ebene mit
 * width = Füllgrad. Gleiche Glyphen + gleiche Typo in beiden Ebenen →
 * pixelgenaue Teilfüllung ohne SVG/Bilder.
 */
.bv-trust-rating__stars {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 2px;
    color: #dcdcdc;
}

.bv-trust-rating__stars-fg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    /* ausgezeichnet.org-Orange */
    color: #f7a600;
}

.bv-trust-rating__value {
    font-weight: 700;
    color: #333;
}

@media (max-width: 767px) {
    .bv-trust-rating {
        margin-bottom: 10px;
    }
}
