.header {
  position: fixed;
  width: 100%;
  height: 90px;
  backdrop-filter: blur(5px);
  z-index: 10;
}

.header__container,
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  height: 100%;
}

.header__inner {
  gap: 40px;
}

.header__logo {
  max-width: 220px;
  align-items: center;
  display: flex;
}

.header__logo.header__logo-mob {
  display: none;
}

.header__logo-link {
  align-items: center;
  display: flex;
}

.header__logo-img {
  width: 100%;
}

.header__switcher {
  display: flex;
  background-color: rgba(226, 230, 237, 0.45);
  border-radius: 24px;
  border: 1px solid #FFF;
}

.header__switcher-item {
  height: 28px;
  display: flex;
  align-items: center;
}

.header__switcher-link {
  color: #1D1C1C;
  padding: 6px 12px;
  transition: all 0.3s ease;
}

.header__switcher-link:hover {
  color: #FF1493;
}

.header__switcher-active {
  color: #FF1493;
  background-color: #eee;
  border: 1px solid #fff;
  border-radius: 16px;
}

.header__lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header__lang-flag {
  display: flex;
  align-items: center;
}

.header__lang-name {
  font-family: 'Montserrat-Medium';
  font-size: 12px;
  color: #1D1C1C;
}

.header__login-link {
  color: #1D1C1C;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header__login-link:hover {
  color: #FF1493;
}

.header__lang {
  position: relative;
  cursor: pointer;
}

.header__lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 100;
}

.header__lang--open .header__lang-dropdown {
  display: block;
}

.header__lang-current {
  display: flex;
  gap: 8px;
}

.header__lang-item {
  display: flex;
  gap: 8px;
  padding: 8px;
  transition: all 0.3s ease;
}

.header__lang-item:hover {
  background: #f5f5f5;
}

.header__lang-name {
  font-family: 'Montserrat-Medium';
  font-size: 12px;
  line-height: 25px;
  color: #1D1C1C;
}

@media (max-width: 768px) {
  .header__logo {
    display: none;
  }
  .header__logo.header__logo-mob {
    display: block;
  }
}

@media (max-width: 520px) {
  .header {
    height: 56px;
  }
  .header__switcher-link {
    font-size: 10px;
    line-height: 16px;
  }
  .header__inner {
    gap: 15px;
  }
  .header__login-link {
    font-size: 12px;
  }
}

@media (max-width: 420px) {

  .header__inner {
    gap: 6px;
  }

}