#mobile-sticky-bar {
    display: none; /* Başlangıçta gizli, JS veya medya sorgusu ile gösterilecek */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #212529; /* Varsayılan, admin panelinden değiştirilebilir */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 99999; /* Diğer elementlerin üzerinde olması için yüksek bir değer */
    padding: 0;
    transform: translateY(100%); /* Başlangıçta ekran dışında */
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#mobile-sticky-bar.is-visible {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
}

#mobile-sticky-bar nav {
    display: flex;
    justify-content: space-around;
    align-items: stretch; /* Butonların yüksekliğini eşitler */
    width: 100%;
}

.mobile-sticky-button {
    color: #D4AF37 !important; /* Varsayılan, admin panelinden değiştirilebilir */
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-basis: 0; /* Eşit dağılım için */
    flex-grow: 1;
    padding: 10px 5px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
    line-height: 1.3;
    border: none !important; /* Temadan gelebilecek kenarlıkları kaldır */
    box-shadow: none !important; /* Temadan gelebilecek gölgeleri kaldır */
}

/* Hover rengi admin panelinden ayarlanacak */
/* .mobile-sticky-button:hover,
.mobile-sticky-button:active,
.mobile-sticky-button:focus {
    background-color: #D4AF37 !important;
    color: #212529 !important;
} */

.mobile-sticky-button i {
    font-size: 18px; /* İkon boyutu */
    margin-bottom: 5px;
}

/* Medya sorgusu ile sadece belirli bir genişlik altında göster */
@media (max-width: 768px) {
    #mobile-sticky-bar {
        display: flex; /* block yerine flex, nav'ın doğru çalışması için */
    }
}