/* Language switcher - Deel-style dropdown */
.lang-switcher-trigger {
  border: 1px solid var(--color-purple-525, #7c5cbf);
  color: var(--color-purple-525, #7c5cbf);
}
.lang-switcher-trigger:hover {
  background-color: rgba(124, 92, 191, 0.08);
}
.lang-switcher-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 4px 0;
}
.lang-switcher-dropdown[hidden] {
  display: none !important;
}
.lang-switcher-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #1b1b1b;
  transition: background 0.15s ease;
}
.lang-switcher-item:hover {
  background: rgba(0, 0, 0, 0.04);
}
.lang-switcher-item.is-selected {
  background: #faf4ee;
  color: #1b1b1b;
}
.lang-switcher-item-flag {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.lang-switcher-item-flag.globe {
  border-radius: 0;
}
.lang-switcher-item-text {
  flex: 1;
}
.lang-switcher-item-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #1b1b1b;
}
