/* assets/css/social-proof.css */

.osp-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 1rem 0;
    padding: 0;
}

.osp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 4px;
    background: var(--osp-color, #555);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: opacity 0.15s ease;
    cursor: pointer;
}

.osp-btn:hover {
    opacity: 0.85;
    color: #fff;
    text-decoration: none;
}

.osp-btn--total {
    background: #333;
    cursor: default;
}

.osp-icon {
    display: inline-flex;
    align-items: center;
}

.osp-icon svg {
    width: 16px;
    height: 16px;
}

.osp-count {
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
}

/* Mobile: icon-only, no labels */
@media (max-width: 600px) {
    .osp-btn {
        padding: 10px;
    }
    .osp-label {
        display: none;
    }
    .osp-count {
        font-size: 11px;
    }
}
