/* Language Switcher Styles */
.language-switcher {
  display: inline-flex;
  gap: 8px;
  margin-right: 15px;
  vertical-align: middle;
}

.lang-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Dark theme (site-black) */
.site-black .lang-btn {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.site-black .lang-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.site-black .lang-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* White theme adjustments */
.site-white .lang-btn {
  border-color: rgba(0, 0, 0, 0.3);
  color: #333;
  background: rgba(255, 255, 255, 0.9);
}

.site-white .lang-btn:hover {
  border-color: rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 1);
  color: #000;
}

.site-white .lang-btn.active {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* Google Translate Widget'ını Tamamen Gizle */
#google_translate_element {
  display: none !important;
}

.goog-te-gadget {
  display: none !important;
}

.goog-te-combo {
  display: none !important;
}

/* Google Translate üst bar'ını gizle */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
  position: static !important;
}

/* Frame'leri gizle */
iframe.goog-te-banner-frame {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}

/* Google logo ve powered by'ı gizle */
.goog-logo-link {
  display: none !important;
}

.goog-te-gadget > span > a {
  display: none !important;
}

/* Skiptranslate iframe'lerini gizle */
body > .skiptranslate {
  display: none !important;
}

/* Responsive */
@media (max-width: 991px) {
  .language-switcher {
    display: none;
  }
}
