/* HaarLab — Dil Değiştirici CSS */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
}

.lang-switcher a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s, background .2s;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.lang-switcher a:hover {
  color: white;
  background: rgba(255,255,255,.08);
}

.lang-switcher a.active {
  color: var(--gold, #C9A96E);
  background: rgba(201,169,110,.12);
}

.lang-flag {
  font-size: 14px;
  line-height: 1;
}

.lang-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}

/* Mobilde sadece bayrak göster */
@media (max-width: 768px) {
  .lang-code { display: none; }
  .lang-switcher a { padding: 4px 6px; }
}
