/* assets/mobil-ucretsiz-ilan-button.css */

.mobile-fab-circular {
    display: none; /* Buton varsayılan olarak gizli */
}

/* Sadece 768px ve altı ekranlarda butonu göster */
@media (max-width: 768px) {
    .mobile-fab-circular {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 25px;
        right: 25px;
        
        /* DÜZELTME: Stiller yazıya göre ayarlandı */
        width: auto; /* Genişlik artık otomatik */
        height: 50px; /* Yükseklik ayarlandı */
        padding: 0 1.25rem; /* İç boşluk eklendi */
        border-radius: 9999px; /* Tam yuvarlak kenarlar */
        font-size: 1rem; /* Yazı boyutu */
        font-weight: 700; /* Kalın yazı */

        background-image: linear-gradient(to right, #f97316, #fb923c);
        color: #fff;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 999;
        animation: pulse-fab 2s infinite;
        transition: transform 0.2s ease-in-out;
    }

    .mobile-fab-circular:hover {
        transform: scale(1.05);
    }
    
    /* Animasyonun rengi güncellendi */
    @keyframes pulse-fab {
        0% {
            box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
        }
    }
}
