.reviews-badge-container {
    display: inline-flex;
    align-items: center;
    padding: 12px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    gap: 12px;
}

.reviews-badge-container:hover {
    background-color: #EFEFE0;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #1877F2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    color: #fff;
    font-size: 20px;
}

.badge-icon svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}

.badge-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.badge-stars {
    display: flex;
    gap: 2px;
}

.badge-stars svg {
    fill: #FFB400;
}

.badge-percentage {
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
}

.badge-label {
    font-size: 12px;
    color: #666;
    line-height: 1.2;
}
