/* ===== LANGUAGE SWITCHER ===== */
.lang-wrap {
  position: relative;
}

.lang-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; font-size: 11px; color: white;
  background: none; border: none; cursor: pointer;
  white-space: nowrap;
}
.lang-btn span { font-size: 11px; max-width: 72px; overflow: hidden; text-overflow: ellipsis; }

.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: white; border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  min-width: 160px; z-index: 500;
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
}
.lang-menu.open {
  opacity: 1; pointer-events: all; transform: translateY(0);
}

.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 16px;
  background: none; border: none;
  font-size: 14px; font-weight: 600; cursor: pointer;
  color: #212121; text-align: left;
  transition: background 0.15s;
}
.lang-option:hover { background: #f5f5f5; }
.lang-option.active { background: #fff5f5; color: #e53935; }
