/* ============================================
   LANGUAGE SELECTOR STYLES
   ============================================ */

#langSwitcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 2px;
}

.lang-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.lang-btn.active {
  background: currentColor;
  color: #f7f4ec;
}

@media (max-width: 640px) {
  .lang-btn {
    font-size: 11px;
    padding: 3px 8px;
  }
}
