.lang-switcher-dropdown {
  display: inline-block;
  position: relative;
}
.lang-switcher-dropdown .lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: none;
  color: #174583;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.lang-switcher-dropdown .lang-toggle.dropdown-toggle::after {
  display: none !important;
}
.lang-switcher-dropdown .flag-label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lang-switcher-dropdown .flag-circle, .lang-switcher-dropdown .dropdown-menu .lang-dropdown-item .flag-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  flex-shrink: 0;
}
.lang-switcher-dropdown .lang-label {
  display: inline-flex;
  align-items: center;
  gap: 0px;
}
.lang-switcher-dropdown .lang-code, .lang-switcher-dropdown .dropdown-menu .lang-dropdown-item .lang-code  {
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  font-size: 14px;
}
.lang-switcher-dropdown .lang-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url('/modules/custom/lang_switcher_dropdown/images/icons/arrow-down.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.lang-switcher-dropdown .dropdown-menu {
  padding: 1px 0px;
  border-radius: 8px;
  border: 1px solid #174583;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  min-width: 100px;
  background-color: #fff;
  margin-top: 7px !important;
}
.lang-switcher-dropdown .dropdown-menu .lang-dropdown-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px;
  padding: 6px 7px;
  color: #174583 !important;
  font-weight: 500 !important;
  font-family: 'Inter', sans-serif;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap;
  border-radius: 6px;
}
.lang-switcher-dropdown .dropdown-menu .lang-dropdown-item:hover {
  background-color: #fff !important;
  color: #174583 !important;
  text-decoration: none !important;
}
.lang-switcher-dropdown .lang-dropdown-auto-width {
  min-width: unset !important;
  max-width: 110% !important;
  box-sizing: border-box;
  margin-top: 5px;
}
.lang-switcher-dropdown .dropdown-menu::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid #174583;
  border-top: 1px solid #174583;
  z-index: 1;
}
.lang-switcher-dropdown.dropdown:not(.dropup) .dropdown-menu::before {
  top: -6px;
}
.lang-switcher-dropdown.dropup .dropdown-menu::before {
  bottom: -6px;
  transform: rotate(225deg);
}
