/* ========================================================
   lang.css — Language Switcher Styles
   Include this AFTER your main CSS in <head>
   ======================================================== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.lang-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
  font-family: inherit;
  line-height: 1.6;
}
.lang-btn:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.lang-btn.active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
}
