/* --- ÜST BİLGİ MENÜSÜ (TELEFON, SOSYAL MEDYA VB.) --- */
.top-info-bar {
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Tam genişlik hilesi */
    padding: 8px 0;
    font-family: 'Gilroy', 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Altına çok narin bir çizgi */
}

.top-info-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end; /* Tüm elemanları sağ tarafa şıkça yaslar */
    align-items: center;
    gap: 25px; /* Elemanlar arası boşluk */
    flex-wrap: wrap; /* Sığmazsa alt satıra geçsin */
}

.top-info-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a.top-info-item:hover {
    opacity: 0.7; /* Link olanların üzerine gelince hafif solma efekti */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .top-info-container {
        justify-content: center; /* Mobilde her şeyi tam ortaya alırız */
        gap: 15px;
    }
    .top-info-bar {
        font-size: 0.8rem;
        padding: 6px 0;
    }
}