/* ===== LANGUAGE SWITCHER BAR ===== */
.lang-bar {
  background: #07070b;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 6px 0;
  position: relative;
  z-index: 1001;
}
.lang-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}
.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 22px;
  border-radius: 3px;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}
.lang-link:hover {
  opacity: 0.85;
  transform: scale(1.1);
}
.lang-link.active {
  opacity: 1;
  border-color: rgba(74,124,255,0.5);
  box-shadow: 0 0 8px rgba(74,124,255,0.2);
}
.lang-link svg {
  width: 100%;
  height: 100%;
  display: block;
}
