/* ── RCHM Language Switcher v2 ── */
.rchm-ls {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.rchm-ls-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 4px 10px 4px 8px;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s;
  line-height: 1;
}
.rchm-ls-btn:hover,
.rchm-ls.open .rchm-ls-btn {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.45);
  color: #fbbf24;
}
.rchm-ls-btn svg {
  transition: transform .22s;
  flex-shrink: 0;
  opacity: .65;
  margin-left: 1px;
}
.rchm-ls.open .rchm-ls-btn svg { transform: rotate(180deg); }

/* Dropdown */
.rchm-ls-drop {
  display: none;
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  background: #0a2647;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.55);
  list-style: none;
  padding: 4px 0;
  min-width: 175px;
  z-index: 99999;
  animation: lsIn .18s ease;
}
.rchm-ls.open .rchm-ls-drop { display: block; }

@keyframes lsIn {
  from { opacity:0; transform:translateY(-5px) scale(.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

.rchm-ls-drop li { margin:0; padding:0; }
.rchm-ls-drop a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.78);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .14s, color .14s;
  white-space: nowrap;
}
.rchm-ls-drop a:hover {
  background: rgba(255,255,255,0.07);
  color: #fbbf24;
}
.rchm-ls-drop a.rchm-ls-active { color: #fbbf24; }
.rchm-ls-name { font-size: 11px; opacity: .55; font-weight: 400; font-family: 'Roboto', sans-serif; }
