.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}
.lang-switcher__current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.lang-switcher__current:hover {
  background: rgba(242,100,25,0.15);
  border-color: rgba(242,100,25,0.35);
}
.lang-switcher__arrow {
  font-size: 9px;
  transition: transform 0.25s ease;
  opacity: 0.7;
}
.lang-switcher.open .lang-switcher__arrow {
  transform: rotate(180deg);
}
.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: rgba(10, 18, 36, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  min-width: 170px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
  z-index: 10000;
}
.lang-switcher.open .lang-switcher__dropdown {
  display: block;
  animation: langDropIn 0.2s ease;
}
@keyframes langDropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  transition: all 0.2s ease;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lang-switcher__option:last-child {
  border-bottom: none;
}
.lang-switcher__option:hover {
  background: rgba(242,100,25,0.12);
  color: #fff;
  padding-left: 20px;
}
.lang-switcher__option.active {
  background: rgba(242,100,25,0.18);
  color: #FF9A5E;
  font-weight: 600;
}
/* Mobile: inside the hamburger dropdown */
@media (max-width: 1024px) {
  .lang-switcher {
    margin: 10px 0 0 0;
    width: 100%;
  }
  .lang-switcher__current {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
  .lang-switcher__dropdown {
    position: static;
    margin-top: 4px;
    width: 100%;
  }
}
