.menu-btn {
  color: #FFFFFF !important;
  background-color: transparent !important;
  padding: 8px 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.menu-btn:hover {
  background-color: #F4E221 !important;
  color: #000000 !important;
}
/* Контейнер сверху */
.top-controls {
  position: fixed;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  z-index: 10005;
}

/* Бургер */
.burger-icon {
  font-size: 32px;
  color: #000 !important;
  cursor: pointer;
  line-height: 1;
  background: transparent;
  border: none;
}

/* Язык */
/* Стиль кнопки по умолчанию */
.lang-selector select {
  padding: 2px 4px;
  font-size: 10px;
  font-weight: bold;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #000;
  cursor: pointer;
  height: 20px;
  width: 20px;
  position: fixed;
  top: 55px;
  right: 10px;
  z-index: 10001;
  -webkit-appearance: none; /* убираем стандартный стиль в Safari/Chrome */
  -moz-appearance: none;    /* убираем стандартный стиль в Firefox */
  appearance: none;         /* убираем стандартный стиль */
}

/* При наведении */
.lang-selector select:hover {
  background-color: #F4E221;
  color: #000;
  border-color: #F4E221;
}

/* При клике (focus) */
.lang-selector select:focus {
  background-color: #F4E221;
  color: #000;
  border-color: #F4E221;
  outline: none;

}

/* Меню */
.zb-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #333;
  padding: 20px;
  transition: right 0.4s ease;
  z-index: 10004;
}

.zb-menu.active {
  right: 0;
}

.zb-menu a {
  display: block;
  color: #fff !important;
  font-size: 18px;
  text-decoration: none;
  margin: 20px 0;
  border-left: 2px solid #F4E221;
  padding-left: 10px;
}

.zb-menu a:hover {
  color: #F4E221;
}

/* Кнопка закрытия */
.close-btn {
  font-size: 36px;
  color: #fff;
  text-align: right;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Фон */
.overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 10003;
}

.overlay-bg.active {
  opacity: 1;
  visibility: visible;
}

/* Скрывать на ПК */
@media (min-width: 961px) {
  .top-controls,
  .zb-menu,
  .overlay-bg {
    display: none !important;
  }
}
