/* social.css – CSS-Variablen-kompatibel */

.social-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 24px 0;
}

.social-bar__title {
    width: 100%;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.social-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
    color: #fff;
}

.social-bar__link:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.social-bar__link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: #fff;
}

.social-bar__link--facebook  { background-color: #1877F2; }
.social-bar__link--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-bar__link--staige    { background-color: #1a1a2e; }

.share-buttons {
    margin: 32px 0 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-col);
}

.share-buttons__title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.share-buttons__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.15s ease;
    color: #fff;
    line-height: 1;
}

.share-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.share-btn svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    fill: #fff;
}

.share-btn--whatsapp  { background-color: #25D366; }
.share-btn--facebook  { background-color: #1877F2; }
.share-btn--twitter   { background-color: #000; }
.share-btn--copy      { background-color: #555; }
.share-btn--copy.copied { background-color: #2e7d32; }

@media (max-width: 480px) {
    .social-bar__link,
    .share-btn {
        padding: 9px 13px;
        font-size: 0.82rem;
    }
}
