/* beaute-community — styles votes + avis */

.vote-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 8px;
    background: var(--bg-secondary, #f4f3ef);
    color: var(--text-secondary, #5f5e5a);
    cursor: pointer;
    border: 0.5px solid transparent;
    transition: background 0.15s, color 0.15s;
    user-select: none;
}

.vote-pill:hover {
    border-color: var(--border-secondary, rgba(0,0,0,0.22));
}

.vote-pill.voted {
    background: var(--text-primary, #1a1a18);
    color: var(--bg-primary, #ffffff);
}

.vote-pill.loading {
    opacity: 0.6;
    pointer-events: none;
}

.vote-count {
    font-size: 9px;
    color: var(--text-tertiary, #888780);
}

/* Avis */
.beaute-review-stars {
    display: inline-flex;
    gap: 2px;
    font-size: 12px;
}

.beaute-review-average {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary, #1a1a18);
}
