/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
.language-menu a.show-submenu {
    display: flex;
    gap:5px;
    align-items: center;
}

.language-menu .flag-img {
    border-radius: 20px;
}

.language-menu ul>li>a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.fixed-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.fixed-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.fixed-buttons a:hover {
    transform: scale(1.1);
}

.whatsapp-button {
    background-color: #25D366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.phone-button {
    background-color: #007bff;
    /* Mobil için varsayılan stil */
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.instagram-button {
    background-color: #E4405F;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.phone-button .mobile-phone-icon {
    display: flex; /* Mobil ikonu göster */
}

.phone-button .desktop-phone-text {
    display: none; /* Masaüstü yazısını başlangıçta gizle */
}

/* Masaüstü görünümü için stil düzenlemeleri */
@media (min-width: 769px) {
    .phone-button {
        width: auto; /* Genişliği içeriğe göre ayarla */
        height: 50px;
        border-radius: 25px; /* Yuvarlak köşeler */
        padding: 0 25px;
        gap: 10px; /* İkon ve yazı arasında boşluk */
    }

    .phone-button .mobile-phone-icon {
        display: flex; /* Masaüstünde de ikonu göster (isteğe bağlı) */
    }

    .phone-button .desktop-phone-text {
        display: flex; /* Masaüstünde yazıyı göster */
        font-size: 16px;
        align-items: center;
        font-weight: 600;
    }

    /* İkonun yazının solunda görünmesi için flex-direction'ı ayarla */
    .phone-button {
        flex-direction: row;
    }
}

/* Mobil cihazlar için stil düzenlemeleri (isteğe bağlı) */
@media (max-width: 768px) {
    .fixed-buttons {
        bottom: 15px;
        gap: 10px;
    }

    .fixed-buttons a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .phone-button .mobile-phone-icon {
        display: flex; /* Mobil cihazlarda ikonu göster */
    }

    .phone-button .desktop-phone-text {
        display: none !important; /* Mobil cihazlarda yazı gösterilmez */
    }
}