.trust-badge-wrapper {
    display: flex;
    gap: 15px;
}
.tb-avatars {
    display: flex;
    align-items: center;
}
.tb-avatar-item {
    margin-right: -10px;
    z-index: 1;
    transition: transform 0.2s ease;
}
.tb-avatar-item:hover {
    z-index: 10;
}
.tb-avatar-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-sizing: border-box;
}
.tb-content {
    display: flex;
    flex-direction: column;
}
.tb-heading {
    font-weight: bold;
    margin-bottom: 5px;
}
.tb-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tb-stars {
    display: flex;
    gap: 2px;
}
.tb-stars svg {
    fill: #fbbc04;
}
.tb-rating-label {
    font-size: 0.9em;
    color: #666;
}