.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  /* height: 64px; */

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 24px;
  z-index: 10;

  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.header-left .logo img {
  height: 36px;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Язык */

.lang-dropdown {
  display: none;
}

.lang-dropdown.open {
  display: flex;
  flex-direction: column;
}


/* .lang-select {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  width: 56px;
} */

/* Стили для выпадающего списка */
/* .lang-select option {
  background: #ffffff;
  color: #000000;
} */

/* Кнопка входа */
.login-btn img {
  width: 28px;
  height: 28px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.login-btn:hover img {
  opacity: 1;
}

/* ===== HAMBURGER ===== */
/* .burger {
  display: none;            
  flex-direction: column;
  justify-content: center;
  gap: 5px;

  background: none;
  border: none;
  cursor: pointer;

  padding: 8px;
} */

/* .burger span {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  display: block;
} */

/* ===== Language Switcher ===== */

.lang-switcher {
  position: relative;
  margin-right: 12px;
}

.lang-current {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);

  display: none;
  flex-direction: column;
  gap: 4px;

  background: rgba(0, 0, 0, 0.85);
  border-radius: 8px;
  padding: 6px;
  z-index: 1000;
}

.lang-dropdown button {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  text-align: right;
  cursor: pointer;
  border-radius: 6px;
}

.lang-dropdown button:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* open state */
.lang-switcher.open .lang-dropdown {
  display: flex;
}


@media (max-width: 768px) {
  .burger {
    display: flex;
  }
}


@media (max-width: 600px) {
  .header {
    padding: 10px 16px;
  }

  .header-left .logo img {
    height: 28px;
  }

  .lang-select {
    font-size: 13px;
  }
}