.whatsapp-popup {
    position: fixed;
    bottom: 130px; /* Masaüstü için yukarı */
    right: 40px; /* Masaüstü için sola kaydırma */
    z-index: 1000;
}

.whatsapp-popup a {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    text-align: center;
    line-height: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: blink 1s infinite; /* Yanıp sönme efekti */
    transition: transform 0.3s ease-in-out;
}

.whatsapp-popup a img {
    width: 40px;
    height: 40px;
}

.whatsapp-popup a:hover {
    transform: scale(1.1);
}

/* Yanıp sönme animasyonu */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Mobil ekranlar için özel düzenleme */
@media (max-width: 768px) {
    .whatsapp-popup {
        bottom: 90px; /* Daha aşağı */
        right: 10px; /* Daha sağda */
    }

    .whatsapp-popup a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .whatsapp-popup a img {
        width: 40px;
        height: 40px;
    }
}