/* ============================================================
   PAYLAŞIM BARI - Profesyonel Tasarım
   ============================================================ */

.share-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 18px 24px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    margin-top: 20px;
}

.share-bar strong {
    font-weight: 700;
    color: #475569;
    font-size: 14px;
    margin-right: 8px;
}

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 16px;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: none;
    position: relative;
    overflow: hidden;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    color: #ffffff !important;
}

.share-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Hover'da ışıltı efekti */
.share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}
.share-btn:hover::before {
    width: 100%;
    height: 100%;
}

/* Platform Renkleri */
.share-fb, .share-facebook { background: #1877f2; }
.share-fb:hover, .share-facebook:hover { background: #166fe5; }

.share-tw, .share-twitter { background: #000000; }
.share-tw:hover, .share-twitter:hover { background: #1a1a1a; }

.share-wa, .share-whatsapp { background: #25d366; }
.share-wa:hover, .share-whatsapp:hover { background: #1ebe5d; }

.share-tg, .share-telegram { background: #0088cc; }
.share-tg:hover, .share-telegram:hover { background: #0077b6; }

.share-in, .share-linkedin { background: #0a66c2; }
.share-in:hover, .share-linkedin:hover { background: #095bb0; }

.share-cp, .share-copy { background: #64748b; }
.share-cp:hover, .share-copy:hover { background: #475569; }

/* Mobil */
@media (max-width: 576px) {
    .share-bar {
        padding: 14px 16px;
        gap: 8px;
        justify-content: center;
    }
    .share-bar strong {
        width: 100%;
        text-align: center;
        margin: 0 0 6px 0;
    }
    .share-btn {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}

/* Touch cihazlarda hover devre dışı */
@media (hover: none) {
    .share-btn:hover {
        transform: none;
    }
    .share-btn:active {
        transform: scale(0.92);
    }
}
