/* ── Social Share Bar ─────────────────────────────────── */

.share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.share-bar__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.share-bar__buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
    background: var(--bg-card, rgba(255, 255, 255, 0.06));
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-decoration: none;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.share-btn:hover,
.share-btn:focus-visible {
    background: var(--bg-hover, rgba(255, 255, 255, 0.12));
    color: var(--text-primary);
    border-color: var(--border-hover, rgba(255, 255, 255, 0.25));
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Platform brand colors on hover */
.share-btn--x:hover        { color: #fff; background: #000; border-color: #000; }
.share-btn--facebook:hover  { color: #fff; background: #1877F2; border-color: #1877F2; }
.share-btn--whatsapp:hover  { color: #fff; background: #25D366; border-color: #25D366; }
.share-btn--telegram:hover  { color: #fff; background: #26A5E4; border-color: #26A5E4; }
.share-btn--line:hover      { color: #fff; background: #06C755; border-color: #06C755; }
.share-btn--band:hover      { color: #fff; background: #6BC745; border-color: #6BC745; }
.share-btn--email:hover     { color: #fff; background: #6366f1; border-color: #6366f1; }
.share-btn--copy:hover      { color: #fff; background: #6366f1; border-color: #6366f1; }
.share-btn--native:hover    { color: #fff; background: #6366f1; border-color: #6366f1; }

/* Copy feedback */
.share-btn--copy.copied {
    color: #22c55e;
    border-color: #22c55e;
}

/* Mobile: larger tap targets */
@media (max-width: 640px) {
    .share-btn {
        width: 40px;
        height: 40px;
    }
    .share-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* RTL */
[dir="rtl"] .share-bar {
    direction: rtl;
}
