.floating-sidebar {
    /* 1. Kural: fixed kalsın ama 'bottom' değerini zorlayalım */
    position: fixed;
    right: 2%;

    /* 2. Kural: 30px bırakıyoruz, eğer hala yukarıdaysa 10px yap */
    bottom: 5%;

    /* 3. Kural: Diğer her şeyden bağımsız hareket etmesini sağlar */
    left: auto;
    top: auto;

    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999999;
    /* En üst katmana çıkarıyoruz */
}

/* Genel İkon Buton Yapısı (Senin btn-i2 stilin) */
.floating-sidebar .btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* E-Mail Butonu (Siyah/Koyu) */
.floating-sidebar .btn-i2 {
    background-color: var(--primary-black);
}

.floating-sidebar .btn-i2:hover {
    background-color: #333;
    transform: scale(1.1) translateY(-3px);
}

/* WhatsApp Butonu (Yeşil) */
.floating-sidebar .btn-whatsapp {
    background-color: #25d366;
}

.floating-sidebar .btn-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1) translateY(-3px);
}

/* Yukarı Çık Butonu (Turuncu - Navigasyon Odaklı) */
.floating-sidebar .btn-up {
    background-color: var(--primary-orange);
}

.floating-sidebar .btn-up:hover {
    background-color: #e63e00;
    /* Biraz daha koyu turuncu */
    transform: scale(1.1) translateY(-3px);
}