/* ========================================
   SOSYAL MEDYA PAYLAŞIM BUTONLARI (KOMPAKT)
   ======================================== */

/* Kompakt Paylaşım Konteyneri */
.social-share-compact {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.social-share-compact h3 {
    color: #667eea;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.social-share-compact h3 i {
    font-size: 18px;
}

/* Ana Butonlar (Görünür) */
.share-buttons-main {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    color: white;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.share-btn-compact:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/* Platform Renkleri */
.share-btn-compact.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
}

.share-btn-compact.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-btn-compact.twitter {
    background: linear-gradient(135deg, #000000 0%, #14171a 100%);
}

.share-btn-compact.more {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.share-btn-compact.more.active {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: rotate(90deg);
}

/* Yeni Eklenen Platformlar (Compact) */
.share-btn-compact.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
}

.share-btn-compact.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #00669c 100%);
}

.share-btn-compact.email {
    background: linear-gradient(135deg, #ea4335 0%, #d33426 100%);
}

.share-btn-compact.copy {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Dropdown Menü (Gizli Butonlar) */
.share-buttons-more {
    display: none;
    /* Grid yerine flex kullanıp yan yana dizebiliriz veya grid ile ikonları dizebiliriz */
    display: none;
    /* JS ile flex/grid yapılacak */
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    animation: slideDown 0.3s ease;
    flex-wrap: wrap;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .share-btn-compact {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .share-btn-compact {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .share-buttons-main {
        gap: 10px;
    }
}