.share-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 14px 0 0;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.share-bar-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.share-bar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.share-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

.share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.share-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.share-btn-facebook {
    background: #1877f2;
    color: #ffffff;
}

.share-btn-twitter {
    background: #0f172a;
    color: #ffffff;
}

.share-btn-telegram {
    background: #229ed9;
    color: #ffffff;
}

.share-btn-copy {
    background: #fff7ed;
    color: #c2410c;
    border-color: #fed7aa;
}

.share-btn-copy.is-copied {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.detail-side-column .share-bar {
    margin-top: 14px;
}
