/* ── Plugin Social Share - Styles ─────────────────────── */

.social-share {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
}

.social-share-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #6c757d;
    margin-right: 4px;
    white-space: nowrap;
}

.social-share-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #6c757d;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
    padding: 0;
    line-height: 1;
}

.social-share-btn:hover {
    transform: scale(1.15);
    background: rgba(0, 0, 0, 0.05);
}

/* Colori brand al hover */
.social-share-btn--facebook:hover  { color: #1877F2; }
.social-share-btn--twitter:hover   { color: #000000; }
.social-share-btn--whatsapp:hover  { color: #25D366; }
.social-share-btn--telegram:hover  { color: #26A5E4; }
.social-share-btn--pinterest:hover { color: #E60023; }
.social-share-btn--linkedin:hover  { color: #0A66C2; }
