/* ── Language Switcher ── */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.lang-switcher .globe-icon {
  cursor: pointer;
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 120px;
  z-index: 200;
  overflow: hidden;
}
.lang-switcher.open .lang-dropdown {
  display: block;
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s;
}
.lang-dropdown a:hover {
  background: #f5f5f5;
}
.lang-dropdown a.active {
  font-weight: 700;
  color: #111;
  background: #f0f0f0;
}
.lang-flag {
  font-size: 18px;
  line-height: 1;
}
