/* =========================================== */
/* === TEMEL (MASAÜSTÜ) BUTON STİLLERİ === */
/* =========================================== */

.fixed-button {
    position: fixed;
    bottom: 20px;
    padding: 12px 18px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem; /* Sadece yazının font boyutu */
    /* font-weight: bold; <-- HATA BUNDAYDI, SİLİNDİ */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.fixed-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.fixed-button i {
    /* İkonun boyutunu ve boşluğunu buradan ayarla */
    font-size: 1.4rem; /* İkon boyutu */
    margin-right: 8px; /* Masaüstünde ikon ve yazı arası boşluk */
}

/* WhatsApp Butonu (Sağda) */
.whatsapp {
    background-color: #25D366;
    right: 20px;
}

/* Telefon Butonu (Solda) */
.phone {
    background-color: #007bff;
    left: 20px;
}


/* =========================================== */
/* === MOBİL CİHAZ DÜZELTMESİ (PATLAMA ÇÖZÜMÜ) === */
/* =========================================== */

@media (max-width: 768px) {
    
    .fixed-button {
        width: 55px;  
        height: 55px; 
        padding: 0;   
        justify-content: center;
    }

    /* 2. Buton içindeki tüm YAZILARI GİZLE */
    .fixed-button span {
        display: none; 
    }

    /* 3. İkonun sağındaki boşluğu (artık yazı yok) sıfırla */
    .fixed-button i {
        margin-right: 0;
        font-size: 1.6rem; /* Mobilde ikonu biraz daha büyüt */
    }

    /* 4. HER İKİ BUTONU DA SAĞA YASLA ve ÜST ÜSTE DİZ */
    
    .whatsapp {
        bottom: 20px;
        right: 20px;
    }

    .phone {
        left: auto; 
        right: 20px;
        bottom: 85px; /* WhatsApp'ın 10px üstü */
    }
}