
.lang-switcher {
  display: none;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(55, 65, 81, 0.2);
  color: #374151;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lang-btn:hover {
  background: rgba(230, 240, 255, 0.6);
  border-color: rgba(55, 65, 81, 0.3);
}

.lang-btn.active {
  background: #8abfff;
  color: white;
  border-color: #8abfff;
}

@media (max-width: 900px) {
  .lang-switcher {
    gap: 8px;
  }
  
  .lang-btn {
    font-size: 28px;
    padding: 8px 12px;
  }
}

