.lang-switcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 9999;
}

.lang-switcher button {
  border: none;
  background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s ease;
}

.lang-switcher button.active {
  background: #28a4fa;
  color: #fff;
  opacity: 1;
}

.lang-switcher button:hover {
  opacity: 1;
}

/* Mobile */
@media (max-width: 480px) {
  .lang-switcher {
    right: 12px;
    bottom: 12px;
    transform: scale(0.95);
  }
}
