/* =========================================
   🌐 GLOBAL LANG SWITCHER
   Logo Üzeri – SOLA & AŞAĞI AYARLI
   ========================================= */

/* Logo referans */
.site-branding{
  position: relative !important;
}

/* Switcher konumu */
#global-lang-switcher{
  position: absolute !important;
  top: -8px !important;      /* ⬇️ AŞAĞI (öncekinden daha aşağı) */
  right: -6px !important;    /* ⬅️ SOLA (öncekinden daha sola) */
  z-index: 999999 !important;

  width: 28px !important;
  height: 28px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  margin: 0 !important;
  line-height: 0 !important;
}

/* 🌐 Dünya ikonu */
#global-lang-switcher::after{
  content: "🌐" !important;
  font-size: 13px !important;
  color: #F6CE4C !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

/* Select görünmez ama tıklanabilir */
#global-lang-switcher select{
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 2 !important;

  border: 0 !important;
  background: transparent !important;

  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

/* UL / LI temizliği */
#global-lang-switcher ul,
#global-lang-switcher li{
  margin: 0 !important;
  padding: 0 !important;
}

/* ========= MOBİL ========= */
@media (max-width: 768px){
  #global-lang-switcher{
    top: -6px !important;     /* biraz daha aşağı */
    right: -4px !important;   /* biraz daha sola */
    width: 26px !important;
    height: 26px !important;
  }

  #global-lang-switcher::after{
    font-size: 12px !important;
    color: #F6CE4C !important;
  }
}
/* === KONUM İNCE AYAR (daha SOL + daha AŞAĞI) === */
#global-lang-switcher{
  top:20px !important;     /* AŞAĞI */
  right: -2px !important;   /* SOLA */
}

/* Mobilde de aynı oran */
@media (max-width: 768px){
  #global-lang-switcher{
    top:20px !important;
    right: 0px !important;
  }
}
/* 🌐 ikon rengi: SARI */
#global-lang-switcher::after{
  color: #FFD700 !important;   /* klasik sarı */
}
/* === MASAÜSTÜ İNCE AYAR === */
@media (min-width: 769px){
  #global-lang-switcher{
    top: 28px !important;     /* ⬇️ biraz daha aşağı */
    right: 4px !important;   /* ⬅️ biraz daha sola */
  }
}

