/* ===========================
   LANGUAGE SWITCHER
   =========================== */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.5rem;
}

.lang-btn {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-secondary-dark);
  transition: color 0.2s, background 0.2s;
  line-height: 1.5;
}

.light-mode .lang-btn {
  color: var(--text-secondary-light);
}

.lang-btn:hover {
  color: var(--text-dark);
  background: rgba(255,255,255,0.08);
}

.light-mode .lang-btn:hover {
  color: var(--text-light);
  background: rgba(0,0,0,0.06);
}

.lang-btn.active {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.12);
}

.lang-divider {
  color: var(--border-dark);
  font-size: 0.75rem;
  line-height: 1;
}

.light-mode .lang-divider {
  color: var(--border-light);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .lang-switcher {
    margin-left: 0;
  }
}
